:root {
    --primary: #0066cc;
    --primary-hover: #0052a3;
    --bg-dark: #0a0a0c;
    --bg-light: #ffffff;
    --bg-gray: #f8f9fa;
    --text-dark: #1a1a2e;
    --text-light: #ffffff;
    --text-gray: #6b7280;
    --border: #e5e7eb;
    --font-main: 'Poppins', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.bg-gray {
    background-color: var(--bg-gray);
}

.text-primary {
    color: var(--primary);
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 102, 204, 0.3);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--text-light);
    border-color: var(--text-light);
}

.btn-outline-white:hover {
    background-color: var(--text-light);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-white:hover {
    background-color: var(--primary);
    color: var(--text-light);
    transform: translateY(-3px);
}

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

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

.section-subtitle {
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

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

.header-right {
    max-width: 400px;
    text-align: right;
}

.header-right p {
    color: var(--text-gray);
    margin-bottom: 15px;
    font-size: 15px;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 10, 12, 0);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    transition: all 0.3s ease;
}

.logo h1 {
    color: var(--text-light);
    font-size: 24px;
    letter-spacing: 3px;
    line-height: 1;
}

.logo span {
    color: var(--primary);
    font-size: 9px;
    letter-spacing: 4px;
    display: block;
    text-align: center;
    margin-top: 4px;
}

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

.nav-links a {
    color: var(--text-light);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

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

.hamburger {
    display: none;
    color: var(--text-light);
    font-size: 24px;
    cursor: pointer;
}

.social-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    background-color: var(--bg-light);
    box-shadow: -5px 0 20px rgba(0,0,0,0.05);
    z-index: 99;
    border-radius: 8px 0 0 8px;
}

.social-sidebar a {
    color: var(--text-dark);
    padding: 15px;
    font-size: 18px;
    text-align: center;
    transition: all 0.3s ease;
}

.social-sidebar a:hover {
    color: var(--primary);
    background-color: var(--bg-gray);
}

.hero {
    background-color: var(--bg-dark);
    padding: 150px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(0, 102, 204,0.1) 0%, rgba(10,10,12,0) 70%);
    pointer-events: none;
}

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

.hero-content {
    color: var(--text-light);
}

.hero-content .subtitle {
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.hero-content .title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 18px;
    color: #a1a1aa;
    margin-bottom: 40px;
    max-width: 480px;
}

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

.trusted-by p {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    letter-spacing: 1px;
    margin-bottom: 15px;
}


.brands img {
    filter: grayscale(100%) brightness(200%) opacity(0.7);
    transition: all 0.3s ease;
    object-fit: contain;
    max-height: 35px;
    max-width: 130px;
}
.brands img:hover {
    filter: none;
    opacity: 1;
}

.brands {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    color: #a1a1aa;
    font-size: 20px;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.billboard-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 40px rgba(0, 102, 204,0.2);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.billboard-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.billboard-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.6);
}

.billboard-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
}

.billboard-content h2 {
    color: #fff;
    font-size: 40px;
    letter-spacing: 4px;
    margin-bottom: 5px;
}

.billboard-content p {
    color: var(--primary);
    font-size: 12px;
    letter-spacing: 6px;
    margin-bottom: 20px;
}

.billboard-content span {
    color: #fff;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 300;
}

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

.service-card {
    background: var(--bg-light);
    padding: 40px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    grid-column: span 1;
}

@media(max-width: 1200px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); gap: 30px; }
}
@media(max-width: 768px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 480px) {
    .services-grid { grid-template-columns: 1fr; }
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--primary);
    background-color: rgba(0, 102, 204, 0.05);
    border: 2px solid rgba(0, 102, 204, 0.2);
    border-radius: 16px;
    transition: all 0.4s ease;
}

.service-card:hover .icon-wrapper {
    background-color: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.arrow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(0, 102, 204, 0.1);
    color: var(--primary);
    transition: all 0.3s ease;
}

.service-card:hover .arrow-btn {
    background-color: var(--primary);
    color: #fff;
}

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

.about-content p {
    color: var(--text-gray);
    margin-bottom: 30px;
    font-size: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature i {
    color: var(--primary);
    font-size: 24px;
}

.feature span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.about-images {
    position: relative;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    position: relative;
}

.img-large {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    border-radius: 12px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-small-1 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    border-radius: 12px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-small-2 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    border-radius: 12px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-box {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background-color: var(--primary);
    color: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 102, 204, 0.3);
}

.experience-box h3 {
    font-size: 36px;
    margin-bottom: 5px;
}

.experience-box p {
    font-size: 14px;
    opacity: 0.9;
}

.projects-carousel {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.projects-wrapper {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.projects-wrapper::-webkit-scrollbar {
    display: none;
}

.project-card {
    flex: 0 0 calc(50% - 12px);
    scroll-snap-align: start;
}

.project-img {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
    aspect-ratio: 4/3;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-img img {
    transform: scale(1.05);
}

.project-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.project-info p {
    color: var(--text-gray);
    font-size: 14px;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: rgba(0, 102, 204, 0.1);
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.nav-btn:hover {
    background-color: var(--primary);
    color: #fff;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--primary);
    width: 24px;
    border-radius: 4px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 60px 0;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px dashed var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
}

.stat-text h3 {
    font-size: 32px;
    color: var(--text-dark);
}

.stat-text p {
    color: var(--text-gray);
    font-size: 14px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-top: 40px;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 75px;
    left: 10%;
    width: 80%;
    height: 2px;
    background-image: linear-gradient(to right, #e5e7eb 50%, transparent 50%);
    background-size: 20px 100%;
    z-index: 1;
}

.step {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 200px;
}

.step-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--bg-light);
    border: 2px solid var(--border);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.step:hover .step-icon {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 10px 20px rgba(0, 102, 204, 0.1);
}

.step span {
    font-size: 14px;
    color: var(--text-gray-light);
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.step h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.step p {
    font-size: 13px;
    color: var(--text-gray);
}


.testimonial-dots {
    display: none;
}
.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}
.testimonial-dot.active {
    background-color: var(--primary);
    width: 24px;
    border-radius: 4px;
}

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

.testimonial-card {
    background-color: var(--bg-gray);
    padding: 40px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background-color: var(--bg-light);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.stars {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 14px;
}

.quote {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-style: italic;
}

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

.client img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.client h4 {
    font-size: 16px;
}

.client span {
    font-size: 12px;
    color: var(--text-gray);
}

.cta-container {
    background-color: var(--primary);
    border-radius: 12px;
    padding: 50px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.2);
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.cta-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.cta-content h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.footer {
    padding: 80px 0 20px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 16px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

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

.footer-col ul li a {
    color: var(--text-gray);
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.brand-col .logo {
    margin-bottom: 20px;
}

.brand-col .logo h2 {
    font-size: 24px;
    letter-spacing: 3px;
    line-height: 1;
}

.brand-col .logo span {
    color: var(--primary);
    font-size: 9px;
    letter-spacing: 4px;
    display: block;
    margin-top: 4px;
}

.brand-col p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 25px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--bg-gray);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    background-color: var(--primary);
    color: #fff;
}

.contact-col ul li {
    display: flex;
    gap: 15px;
    color: var(--text-gray);
    font-size: 14px;
}

.contact-col ul li i {
    color: var(--primary);
    margin-top: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    color: var(--text-gray-light);
    font-size: 13px;
}

.legal-links a {
    color: var(--text-gray-light);
}

.legal-links a:hover {
    color: var(--primary);
}

@media (max-width: 1024px) {
    .hero-content .title { font-size: 48px; }
    .about-container { grid-template-columns: 1fr; gap: 40px; }
    .image-grid { max-width: 600px; margin: 0 auto; }
    .stats-container { grid-template-columns: 1fr 1fr; }
    .process-steps { flex-wrap: wrap; justify-content: center; gap: 30px; }
    .process-steps::before { display: none; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .project-card { flex: 0 0 calc(50% - 12px); }
}

@media (max-width: 768px) {
    .nav-links, .btn-outline-white { display: none; }
    .hamburger { display: block; }
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-content p { margin: 0 auto 40px; }
    .hero-buttons { justify-content: center; }
    .brands { justify-content: center; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .header-right { text-align: left; }
    .project-card { flex: 0 0 100%; }
    .cta-container { flex-direction: column; text-align: center; gap: 30px; }
    .cta-content { flex-direction: column; }
    .testimonials-grid { 
        display: flex; 
        grid-template-columns: none;
        overflow-x: auto; 
        scroll-snap-type: x mandatory; 
        scrollbar-width: none; 
        -ms-overflow-style: none; 
        gap: 20px; 
        padding-bottom: 10px;
    }
    .testimonials-grid::-webkit-scrollbar { 
        display: none; 
    }
    .testimonial-card { 
        flex: 0 0 85%; 
        scroll-snap-align: center; 
        display: flex;
        flex-direction: column;
    }
    .testimonial-card .quote {
        flex: 1;
    }
    .testimonial-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 30px;
    }
    .testimonial-nav {
        display: none !important;
    }
    .social-sidebar { display: none; }
}

@media (max-width: 480px) {
    .hero-content .title { font-size: 36px; }
    .stats-container { grid-template-columns: 1fr; }
    .project-card { flex: 0 0 100%; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
}

/* Inner Pages CSS Additions */
.inner-hero {
    background-color: var(--bg-dark);
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10,10,12,0.9) 0%, rgba(10,10,12,0.7) 50%, rgba(10,10,12,0.2) 100%);
    z-index: 1;
}

.inner-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.6;
}

.inner-hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.inner-hero-content {
    max-width: 600px;
    color: var(--text-light);
}

.inner-hero-content .subtitle {
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.inner-hero-content .title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.inner-hero-content p {
    font-size: 16px;
    color: #a1a1aa;
    margin-bottom: 30px;
}

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

.hero-stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-stat-item i {
    font-size: 32px;
    color: var(--primary);
}

.hero-stat-item h4 {
    font-size: 24px;
    margin-bottom: 5px;
    color: #fff;
}

.hero-stat-item p {
    font-size: 13px;
    color: #a1a1aa;
    margin: 0;
}

.services-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.service-card-horizontal {
    display: flex;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.4s ease;
    border: 1px solid var(--border);
}

.service-card-horizontal:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.service-card-content {
    padding: 40px 30px;
    flex: 1;
}

.service-card-image {
    width: 40%;
    position: relative;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-content .icon-wrapper {
    margin: 0 0 20px 0;
}

.service-card-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card-content p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.learn-more {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.learn-more:hover {
    color: var(--primary-hover);
    gap: 15px;
}

.why-choose-us {
    background-color: #110915;
    color: #fff;
    padding: 80px 0;
    background-image: radial-gradient(circle at right center, rgba(0, 102, 204,0.15) 0%, transparent 60%);
}

.why-header {
    display: flex;
    align-items: center;
    gap: 50px;
}

.why-header-left {
    flex: 1;
}

.why-header-left .section-subtitle {
    margin-bottom: 10px;
}

.why-header-left .section-title {
    color: #fff;
    margin: 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    flex: 2;
}

.why-card {
    text-align: center;
}

.why-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    border: 1px dashed var(--primary);
    border-radius: 50%;
}

.why-card h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #fff;
}

.why-card p {
    font-size: 13px;
    color: #a1a1aa;
}

.cta-dark {
    background-color: #0a0a0c;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-dark::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle at right, rgba(0, 102, 204,0.2) 0%, transparent 70%);
}

.cta-dark-container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-dark h2 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 10px;
}

.cta-dark p {
    color: #a1a1aa;
    font-size: 16px;
}

.who-we-are {
    padding: 100px 0;
}

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

.who-images {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.who-img-1 {
    grid-column: 1 / 3;
    border-radius: 12px;
    width: 100%;
}

.who-img-2, .who-img-3 {
    border-radius: 12px;
    width: 100%;
}

.who-content p {
    color: var(--text-gray);
    margin-bottom: 40px;
}

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

.who-feature {
    display: flex;
    gap: 15px;
}

.who-feature i {
    font-size: 24px;
    color: var(--primary);
}

.who-feature h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.who-feature p {
    font-size: 13px;
    color: var(--text-gray);
}

.our-values {
    background-color: #0a0a0c;
    padding: 100px 0;
    color: #fff;
    text-align: center;
}

.our-values .section-subtitle {
    justify-content: center;
}

.our-values .section-title {
    color: #fff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.value-card i {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 20px;
}

.value-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 13px;
    color: #a1a1aa;
}

.stats-row-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}

.stats-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-item-row i {
    font-size: 32px;
    color: var(--primary);
}

.stat-item-row h3 {
    font-size: 28px;
    margin-bottom: 0;
    color: var(--text-dark);
}

.stat-item-row p {
    font-size: 13px;
    color: var(--text-gray);
    margin: 0;
}

.cta-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: var(--primary);
    position: relative;
    overflow: hidden;
}

.cta-split-content {
    padding: 100px 80px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary) 0%, #003366 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.cta-split-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-split-content p {
    font-size: 16px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-split-image {
    position: relative;
}

.cta-split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .inner-hero .container { flex-direction: column; text-align: center; gap: 40px; }
    .inner-hero-content { margin: 0 auto; }
    .hero-stats { justify-content: center; }
    .services-list-grid { grid-template-columns: 1fr; }
    .why-header { flex-direction: column; text-align: center; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .who-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: repeat(3, 1fr); }
    .cta-dark-container { flex-direction: column; text-align: center; gap: 20px; }
    .cta-dark-container div { text-align: center !important; }
}

@media (max-width: 768px) {
    .service-card-horizontal { flex-direction: column; }
    .service-card-image { width: 100%; height: 250px; }
    .stats-row { flex-wrap: wrap; gap: 30px; justify-content: center; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-split { grid-template-columns: 1fr; }
    .cta-split-content { padding: 60px 30px; text-align: center; align-items: center; }
    .cta-split-content .btn-white { align-self: center !important; }
    .inner-hero-content .title { font-size: 36px; }
}

@media (max-width: 480px) {
    .why-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .who-features { grid-template-columns: 1fr; }
}

.bg-dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.bg-dark .section-title,
.bg-dark h3,
.bg-dark h4 {
    color: var(--text-light);
}

.bg-dark .section-subtitle {
    color: var(--primary);
}

.bg-dark .project-info p,
.bg-dark p {
    color: var(--text-gray-light);
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
}
.contact-info-card {
    background-color: var(--bg-dark);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border);
    color: var(--text-light);
}
.contact-info-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-light);
}
.contact-info-card p {
    color: var(--text-gray-light);
    margin-bottom: 30px;
    font-size: 15px;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.contact-detail-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(0, 102, 204, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.contact-detail-text h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--text-light);
}
.contact-detail-text p {
    margin-bottom: 0;
    font-size: 14px;
}
.contact-form-wrapper {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.contact-form-wrapper h3 {
    font-size: 24px;
    margin-bottom: 20px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}
.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    font-family: inherit;
    font-size: 15px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}
.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}
textarea.form-control {
    resize: vertical;
    min-height: 150px;
}
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
