* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
    background: #0a0a0a;
    color: #ffffff;
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}

nav {
    position: fixed;
    width: 100%;
    padding: .5rem 2rem;
    z-index: 10;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffffff;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    color: #ffffff;
    text-decoration: none;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
}

main {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
    padding:  4rem;
    background: transparent;
}

.heroic{
    height: calc(100vh - 15vh);
}

.content {
    max-width: 1140px;
    padding: 0 1rem;
    margin: 0 auto;
}

h1 {
    font-size: 4.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #fff, #00a2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-button {
    padding: 0.4rem 1rem;
    font-size: 0.45rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 162, 255, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    padding: 0.7rem 1.9rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 162, 255, 0.5);
}

@media (max-width: 768px) {
    nav {
        padding: 1rem;
    }

    .nav-links {
        display: none;
    }

    main {
        padding: 150px 2rem;
    }

    h1 {
        font-size: 2.2rem;
    }

    p {
        font-size: 1rem;
    }

    .cta-button.primary,
    .cta-button.secondary {
        padding: 0.7rem 1.8rem;
        font-size: 0.9rem;
    }
}

.section {
    position: relative;
    z-index: 3;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent);
    padding: 4rem 2rem;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h2 {
    font-size: 2rem;
    letter-spacing: -0.5px;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #fff, #00a2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.achievements {
    list-style: none;
    margin-top: 2rem;
}

.achievements li {
    margin: 1rem 0;
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card i {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #00a2ff;
}

.projects-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
    width: 100%;
}

.project-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    backdrop-filter: blur(10px);
}

.project-card.reverse {
    grid-template-columns: 1fr 300px;
    grid-auto-flow: dense;
}

.project-card.reverse .project-image {
    grid-column: 2;
}

.project-card.reverse .project-info {
    grid-column: 1;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(0, 162, 255, 0.2);
    background: rgba(0, 0, 0, 0.6);
}

.project-image {
    position: relative;
    height: 100%;
    min-height: 300px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, transparent, rgba(0,0,0,0.8));
}

.project-overlay.reverse {
    background: linear-gradient(to left, transparent, rgba(0,0,0,0.8));
}

.project-info {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
}

.project-header {
    margin-bottom: 1.5rem;
}

.project-category {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 162, 255, 0.1);
    color: #00a2ff;
    border-radius: 50px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(5px);
}

.project-info h3 {
    font-size: 2rem;
    background: linear-gradient(45deg, #fff, #00a2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(0, 162, 255, 0.3);
}

.project-info p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.project-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.project-features span {
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.project-features span:hover {
    background: rgba(0, 162, 255, 0.1);
    color: #00a2ff;
}

@media (max-width: 768px) {
    .project-card,
    .project-card.reverse {
        grid-template-columns: 1fr;
    }

    .project-card.reverse .project-image {
        grid-column: 1;
    }

    .project-card.reverse .project-info {
        grid-column: 1;
    }

    .project-image {
        min-height: 200px;
    }

    .project-info {
        padding: 1.5rem;
    }

    .project-info h3 {
        font-size: 1.5rem;
    }

    .project-features {
        gap: 0.5rem;
    }

    .project-features span {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

.project-svg {
    width: 100%;
    height: 100%;
    padding: 2rem;
    color: #00a2ff;
    opacity: 0.8;
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 10px rgba(0, 162, 255, 0.3));
}

.project-card:hover .project-svg {
    color: #ffffff;
    opacity: 1;
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(0, 162, 255, 0.5));
}

.project-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
}


.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-header i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.contact-header h3 {
    font-size: 1.2rem;
    color: #fff;
    margin: 0;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0;
}

.contact-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
}

.form-header {
    margin-bottom: 2rem;
    text-align: center;
}

.form-header h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    color: #000000;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.08);
    outline: none;
}

.contact-form button {
    width: 100%;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form {
        order: 1;
    }
}

footer {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem 1.5rem;
    position: relative;
    z-index: 3;
    border-top: 1px solid rgba(0, 162, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #00a2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #00a2ff;
}

.footer-section p {
    color: #888;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul a {
    color: #888;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul a:hover {
    color: #00a2ff;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: #888;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #00a2ff;
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: none;
    background: linear-gradient(45deg, #00a2ff, #0077ff);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 162, 255, 0.3);
}

.footer-bottom {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #666;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }
}

.content h1, 
.content h2, 
.content p,
.service-card,
.project-info {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.why-us-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.why-us-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.highlight-text {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin: 0 auto;
    width: 100%;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #fff, #00a2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #00a2ff;
    margin-bottom: 0.5rem;
}

.stat-detail {
    font-size: 0.9rem;
    color: #888;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 2rem;
    color: #00a2ff;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.feature-card p {
    color: #888;
    font-size: 1rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .highlight-text {
        font-size: 1.2rem;
    }
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
    position: relative;
}

.hero-content {
    max-width: 800px;

}

.hero-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    align-items: center;
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 162, 255, 0.4);
}

.cta-button.secondary:hover {
    background: rgba(0, 162, 255, 0.1);
    border-color: #00a2ff;
    transform: translateY(-2px);
}

@media (max-width: 1200px) {
    .hero-section {
        padding: 0 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 0 1.5rem;
        text-align: center;
        align-items: center;
        justify-content: center;
        min-height: 80vh;
    }

    .hero-content {
        padding-top: 5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 0.9rem;
        margin: 0 auto 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    animation: fadeUp 0.8s ease-out forwards;
}

.hero-description {
    animation: fadeUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.hero-buttons {
    animation: fadeUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

:root {
    --primary-color: #2563eb;
    --accent-color: #60a5fa;
    --text-color: #f8fafc;
    --spacing-sm: 0.75rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 3rem;
}

.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.4s; }
.service-card:nth-child(4) { animation-delay: 0.6s; }

.form-control:focus, .form-select:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--bs-primary);
    box-shadow: none;
    color: white;
}

.form-control::placeholder, .form-select {
    color: rgba(255, 255, 255, 0.6);
}

.form-control, .form-select {
    padding: 0.8rem 1rem;
}

.card {
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.btn-primary {
    background: linear-gradient(45deg, #0d6efd, #0dcaf0);
    border: none;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #0dcaf0, #0d6efd);
    transform: translateY(-2px);
}

/* Add these styles to fix text visibility and scrollbar */
:root {
    --primary-color: #2563eb;
    --accent-color: #60a5fa;
    --text-color: #f8fafc;
}

/* Make text more visible */
.form-control, .form-select {
    color: #ffffff !important;  /* Force white text */
    background: rgba(255, 255, 255, 0.05) !important;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

.card {
    background: rgba(0, 0, 0, 0.3) !important;
}

.card-text, .text-light-emphasis {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Custom scrollbar styles */
::-webkit-scrollbar {
    width: 8px;  /* Reduced width */
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb {
    background: rgba(96, 165, 250, 0.5);  /* Using accent color */
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(96, 165, 250, 0.7);
}

/* For Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(96, 165, 250, 0.5) rgba(0, 0, 0, 0.2);
}

/* Ensure text contrast */
.card-title, h3, h4, h5 {
    color: #ffffff !important;
}

.btn-primary {
    color: #ffffff !important;
}

/* Improve form field contrast */
.form-select option {
    background-color: #1a1a1a;
    color: #ffffff;
}