/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #fff;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #0f1419 100%);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 113, 227, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 113, 227, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(0, 113, 227, 0.06) 0%, transparent 50%);
    animation: floatingShapes 20s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes floatingShapes {

    0%,
    100% {
        transform: translateY(0px);
    }

    25% {
        transform: translateY(-20px);
    }

    50% {
        transform: translateY(10px);
    }

    75% {
        transform: translateY(-15px);
    }
}

/* Floating particles */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(0, 113, 227, 0.15) 1px, transparent 1px),
        radial-gradient(circle at 90% 80%, rgba(0, 113, 227, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, rgba(0, 113, 227, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 70% 10%, rgba(0, 113, 227, 0.12) 1px, transparent 1px),
        radial-gradient(circle at 30% 90%, rgba(0, 113, 227, 0.09) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 200px 200px, 120px 120px, 180px 180px;
    animation: floatParticles 25s linear infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes floatParticles {
    0% {
        transform: translateY(0px) translateX(0px);
    }

    33% {
        transform: translateY(-30px) translateX(20px);
    }

    66% {
        transform: translateY(20px) translateX(-15px);
    }

    100% {
        transform: translateY(0px) translateX(0px);
    }
}






.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    font-size: 1.125rem;
    line-height: 1.7;
}


/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 20, 25, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h1 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
}

.nav-logo span {
    font-size: 0.75rem;
    color: #ffffff;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0071e3;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 120px 0;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero-title span {
    color: #ffffff;
}

.hero-subtitle {
    margin-bottom: 2rem;
    font-size: 1.25rem;
    color: #ffffff;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    min-width: 140px;
}

.btn-primary {
    background: #0071e3;
    color: white;
}

.btn-primary:hover {
    background: #0056cc;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 113, 227, 0.3);
}

.btn-secondary {
    background: rgba(0, 113, 227, 0.1);
    color: #ffffff;
    border: 1px solid rgba(0, 113, 227, 0.2);
}

.btn-secondary:hover {
    background: rgba(0, 113, 227, 0.2);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid #0071e3;
}

.btn-outline:hover {
    background: #0071e3;
    color: white;
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
    animation: slideInRight 1s ease-out 0.2s both;
}

.hero-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    object-fit: cover;
    border-radius: 20px;
}

.hero-image:hover img {
    transform: scale(1.05);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.02);
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.1) 0%, rgba(0, 113, 227, 0.05) 100%);
    pointer-events: none;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeInUp 1s ease-out 1s both;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-size: 0.875rem;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

/* About Section */
.about {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a2332 0%, #2a3441 100%);
    color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-content h2 {
    margin-bottom: 2rem;
    color: white;
}

.about-text {
    margin-bottom: 1.5rem;
}

.about-quote {
    margin-top: 2rem;
    padding: 2rem;
    background: #1d1d1f;
    border-radius: 12px;
    border-left: 4px solid #0071e3;
}

.about-quote blockquote {
    font-style: italic;
    font-size: 1.25rem;
    color: #fff;
    margin: 0;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission-approach {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-top: 4rem;
}

.mission-card {
    background: linear-gradient(135deg, #0071e3 0%, #0056cc 100%);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 113, 227, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mission-card h3 {
    margin-bottom: 1rem;
    color: white;
}

mission-card p {
    color: white !important;
}

.approach-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.approach-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.approach-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.approach-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.approach-item h4 {
    margin-bottom: 0.5rem;
    color: #fff;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
    color: white;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.125rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 113, 227, 0.3);
    border-color: rgba(0, 113, 227, 0.3);
}

.service-card.featured {
    border: 2px solid #0071e3;
}

.service-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 0;
    right: 0;
    background: #0071e3;
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-bottom-left-radius: 12px;
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: white;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #ffffff;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: bold;
}

.service-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin: 1.5rem 0;
}

/* Industries Section */
.industries {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a2332 0%, #2a3441 100%);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.industry-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 113, 227, 0.2);
    border-color: rgba(0, 113, 227, 0.3);
}

.industry-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.industry-card h3 {
    margin-bottom: 0.5rem;
    color: white;
}

/* Why Choose Section */
.why-choose {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.why-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 113, 227, 0.2);
    border-color: rgba(0, 113, 227, 0.3);
}

.why-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.why-item h3 {
    margin-bottom: 1rem;
    color: white;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a2332 0%, #2a3441 100%);
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header h2 {
    margin-bottom: 1rem;
    color: #fff;
    font-size: 3rem;
}

.contact-header p {
    max-width: 600px;
    margin: 0 auto;
    color: #ffffff;
    font-size: 1.125rem;
    line-height: 1.7;
}

.contact-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1200px) {
    .contact-cards {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 113, 227, 0.3);
    border-color: rgba(0, 113, 227, 0.4);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    color: #ffffff;
    margin-bottom: 1.5rem;
    background: rgba(0, 113, 227, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card-content h3 {
    margin-bottom: 0.75rem;
    color: white;
    font-size: 1.25rem;
}

.contact-card-content p {
    margin-bottom: 0.5rem;
    color: #ffffff;
    line-height: 1.6;
}

.contact-card-content p a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-card-content p a:hover {
    color: #0056cc;
    text-decoration: underline;
}

.contact-label {
    display: block;
    font-size: 0.875rem;
    color: #ffffff;
    font-style: italic;
}

.contact-image-section {
    position: relative;
}

.contact-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    height: 350px;
}

.contact-image-container img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.contact-image-container:hover img {
    transform: scale(1.05);
}

.contact-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(29, 29, 31, 0.95) 0%, rgba(15, 20, 25, 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-image-container:hover .contact-image-overlay {
    opacity: 1;
}

.contact-image-content {
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 400px;
}

.contact-image-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-image-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-quick-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-image-overlay .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.contact-image-overlay .btn-outline:hover {
    background: white;
    color: #ffffff;
}


/* Footer */
.footer {
    background: #1d1d1f;
    color: #f5f5f7;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: #ffffff;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-column a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #424245;
    padding-top: 2rem;
    text-align: center;
    color: #ffffff;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 100px 0;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-grid,
    .mission-approach {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }


    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .approach-items {
        grid-template-columns: 1fr;
    }

    .industries-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .approach-icon {
        font-size: 2.5rem;
    }

    .service-icon {
        font-size: 3rem;
    }

    .industry-icon {
        font-size: 3rem;
    }

    .why-icon {
        font-size: 3rem;
    }

    .contact-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-image-container {
        height: 250px;
    }

    .contact-image-content {
        padding: 1.5rem;
    }

    .contact-image-content h3 {
        font-size: 1.5rem;
    }

    .contact-quick-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-container,
    .about-grid {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .service-card {
        padding: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .approach-icon {
        font-size: 2rem;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .industry-icon {
        font-size: 2.5rem;
    }

    .why-icon {
        font-size: 2.5rem;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.2s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Mobile menu dark theme */
.nav-menu.active {
    display: flex !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 35, 50, 0.98) !important;
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-menu.active .nav-link {
    margin: 0.5rem 0;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
}

.nav-menu.active .nav-link:last-child {
    border-bottom: none;
}

/* Restore blue color for specific elements */
a:not(.btn):not(.nav-link) {
    color: #0071e3 !important;
}

.contact-item a {
    color: #0071e3 !important;
}

.btn-outline {
    color: #0071e3 !important;
}

.contact-card-icon {
    color: #0071e3 !important;
}

/* Smooth transitions for all interactive elements */
* {
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}