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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
}

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

/* Header */
.header {
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #1976d2;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
    margin-right: 16px;
    vertical-align: middle;
}

.navbar .logo {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #000 !important;
}

.btn-get-started {
    background-color: #1976d2;
    color: #ffffff !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-get-started:hover {
    background-color: #1565c0;
    transform: translateY(-2px);
}

/* Hero Section - Home Page */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
*/

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #1976d2;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section - What We Do Page */
.hero.what-we-do {
    min-height: 60vh;
    justify-content: flex-start;
    text-align: left;
    padding-top: 100px;
}

.hero.what-we-do::before {
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="stars" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.2"/></pattern></defs><rect width="100%" height="100%" fill="url(%23stars)"/></svg>');
}

.hero.what-we-do .hero-content {
    margin-left: 2rem;
    text-align: left;
}

.hero.what-we-do .hero-content h1 {
    font-size: 3rem;
}

.hero.what-we-do .hero-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    max-width: 600px;
    margin-bottom: 2rem;
}

.hero-underline {
    width: 200px;
    height: 3px;
    background-color: #1976d2;
    margin-top: 1rem;
}

/* Transform Section */
.transform-section {
    background: linear-gradient(45deg, #1a5f4a 0%, #0a4d3a 100%);
    padding: 100px 0;
    text-align: center;
}

.transform-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
}

.transform-section p {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-impact {
    display: inline-block;
    background-color: #1976d2;
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-impact:hover {
    background-color: #1565c0;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(25, 118, 210, 0.3);
}

/* Trending Section */
.trending-section {
    background-color: #1a1a1a;
    padding: 100px 0;
}

.trending-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

.trending-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.trending-card {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.trending-card:hover {
    transform: translateY(-5px);
    border-color: #1976d2;
    box-shadow: 0 15px 30px rgba(25, 118, 210, 0.2);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1976d2;
}

.trending-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.trending-card p {
    opacity: 0.8;
    line-height: 1.6;
}

/* Services Section - What We Do Page */
.services-section {
    background-color: #1a1a1a;
    padding: 80px 0;
}

.services-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #ffffff;
}

.service-card {
    background-color: #2a2a2a;
    border-radius: 10px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #1976d2;
    box-shadow: 0 15px 30px rgba(25, 118, 210, 0.2);
}

.service-icon {
    font-size: 3rem;
    color: #000000;
    background-color: #1976d2;
    width: 80px;
    height: 80px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.service-content p {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.learn-more {
    color: #1976d2;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: #1565c0;
}

/* Technologies Section - What We Do Page */
.technologies-section {
    background-color: #0a0a0a;
    padding: 80px 0;
}

.technologies-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tech-card {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #333;
    text-align: left;
}

.tech-card:hover {
    transform: translateY(-5px);
    border-color: #1976d2;
    box-shadow: 0 15px 30px rgba(25, 118, 210, 0.2);
}

.tech-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1976d2;
}

.tech-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.tech-card p {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Why Services Section - What We Do Page */
.why-services-section {
    background-color: #1a1a1a;
    padding: 80px 0;
}

.why-services-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #333;
    border-bottom: 3px solid #1976d2;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: #1976d2;
    box-shadow: 0 15px 30px rgba(25, 118, 210, 0.2);
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.benefit-card p {
    opacity: 0.8;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    background-color: #0a0a0a;
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.contact-info p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item .icon {
    font-size: 1.2rem;
    color: #1976d2;
    margin-top: 0.2rem;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    background-color: #2a2a2a;
    border: 1px solid #444;
    border-radius: 5px;
    padding: 1rem;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #1976d2;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #888;
}

.btn-send {
    background-color: #1976d2;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-send:hover {
    background-color: #1565c0;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: #000000;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #1976d2;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #888;
}

/* Footer - What We Do Page Simplified */
.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: left;
}

.footer-section h3 {
    color: #1976d2;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: #888;
    margin-bottom: 0.3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero.what-we-do .hero-content {
        margin-left: 0;
        text-align: center;
    }
    
    .transform-section h2 {
        font-size: 2rem;
    }
    
    .trending-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        flex-direction: column;
        text-align: center;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero.what-we-do .hero-content h1 {
        font-size: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}