@import url(https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Courier+Prime:wght@400;700&display=swap)

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter',  -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #030304;
    overflow-x: hidden;
}

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

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    gap: 0.5rem;
}

.btn-primary {
    background-color: #65b32e;
    color: #111827;
}

.btn-primary:hover {
    background-color: #65b32e;
    transform: scale(1.05);
}

.btn-secondary {
    border: 2px solid rgba(101, 179, 46, 0.5);
    color: #65b32e;
    background-color: transparent;
}

.btn-secondary:hover {
    background-color: rgba(101, 179, 46, 0.1);
}

.btn-danger {
    background-color: #ef4444;
    color: white;
}

.btn-danger:hover {
    background-color: #dc2626;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
    background-color: rgba(3, 3, 4, 0.5);
    backdrop-filter: blur(8px);
}

.header.scrolled {
    background-color: rgba(3, 3, 4, 0.5);
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    position: relative;
    width: 2rem;
    height: 4rem;
}

.logo-icon i {
    width: 2rem;
    height: 2rem;
    color: #65b32e;
}

.logo-pulse {
    position: absolute;
    inset: 0;
    animation: pulse 2s infinite;
}

.logo-pulse i {
    width: 2rem;
    height: 2rem;
    color: rgba(0, 255, 136, 0.3);
}

.brand-name {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
}

.brand-tagline {
    color: #65b32e;
    font-size: 0.75rem;
    font-family: 'Courier Prime', monospace;
    letter-spacing: 0.1em;
}

/* Navigation */
.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    color: #d1d5db;
    font-weight: 500;
    background: none;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #65b32e;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: flex;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    transition: color 0.2s ease-in;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn:hover {
    color: #65b32e;
}

.mobile-menu-btn .close-icon {
    display: none;
}

.mobile-menu-btn.active .menu-icon {
    display: none;
}

.mobile-menu-btn.active .close-icon {
    display: block;
}

.mobile-menu {
    display: none;
    background-color: rgba(18, 18, 23, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 0.5rem;
    border: 2px solid #65B32E;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    gap: 1rem;
    flex-direction: column;
}

.mobile-menu.active {
    display: flex;
}

.mobile-nav-link {
    display: block;
    width: 100%;
    text-align: center;
    color: #d1d5db;
    font-weight: 500;
    font-size: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
}

.mobile-nav-link:hover {
    color: #65b32e;
}

.btn-mobile {
    background-color: #65b32e;
    color: #111827;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.btn-mobile:hover {
    background-color: #79CD3C;
    color: #ffffff;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #030304;
}

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.4;
}

.hero-circles {
    position: absolute;
    inset: 0;
}

.circle {
    position: absolute;
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 50%;
    animation: pulse 3s infinite;
}

.circle-1 {
    top: 2.5rem;
    left: 2.5rem;
    width: 24rem;
    height: 24rem;
}

.circle-2 {
    top: 5rem;
    right: 5rem;
    width: 16rem;
    height: 16rem;
    animation-delay: 1s;
}

.circle-3 {
    bottom: 5rem;
    left: 5rem;
    width: 12rem;
    height: 12rem;
    animation-delay: 2s;
}

.circle-4 {
    bottom: 2.5rem;
    right: 2.5rem;
    width: 20rem;
    height: 20rem;
    animation-delay: 0.5s;
}

.hero-lines {
    position: absolute;
    inset: 0;
    opacity: 0.2;
}

.hero-lines svg {
    width: 100%;
    height: 100%;
}

.line-1 {
    animation: pulse 3s infinite;
}

.line-2 {
    animation: pulse 3s infinite;
    animation-delay: 1s;
}

.line-3 {
    animation: pulse 3s infinite;
    animation-delay: 2s;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-text {
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-text {
        text-align: left;
    }
}

.hero-badge {
    display: inline-block;
    background-color: rgba(0, 255, 136, 0.1);
    color: #65b32e;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-family: 'Courier Prime', monospace;
    letter-spacing: 0.1em;
    border: 1px solid rgba(3, 3, 4, 0.2);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-title-accent {
    display: block;
    color: #65b32e;
    animation: pulse 2s infinite;
}

.hero-description {
    color: #d1d5db;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

@media (min-width: 1024px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .hero-buttons {
        justify-content: flex-start;
    }
}

/* Hero Graphic */
.hero-graphic {
    position: relative;
    width: 100%;
    max-width: 32rem;
    margin: 0 auto;
}

.hero-shield {
    position: relative;
    z-index: 10;
}

.shield-outer {
    background: linear-gradient(135deg, rgba(18, 18, 23, 0.2), rgba(0, 255, 136, 0.1));
    border-radius: 50%;
    padding: 2rem;
    border: 1px solid rgba(101, 179, 46, 0.3);
    backdrop-filter: blur(8px);
}

.shield-inner {
    background-color: rgba(101, 179, 46, 0.1);
    border-radius: 50%;
    padding: 1.5rem;
    border: 1px solid rgba(101, 179, 46, 0.4);
}

.shield-icon {
    width: 6rem;
    height: 6rem;
    color: #65b32e;
    margin: 0 auto;
    display: block;
    animation: pulse 2s infinite;
}

.floating-icons {
    position: absolute;
    inset: 0;
}

.floating-icon {
    position: absolute;
    background-color: rgba(18, 18, 23, 0.8);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    padding: 1rem;
    border: 2px solid rgba(101, 179, 46, 0.3);
    animation: bounce 2s infinite;
}

.floating-icon i {
    width: 1.5rem;
    height: 1.5rem;
    color: #65b32e;
}

.icon-1 {
    top: 1rem;
    left: -1rem;
}

.icon-2 {
    top: 3rem;
    right: -2rem;
    animation-delay: 1s;
}

.icon-3 {
    bottom: -1rem;
    left: 2rem;
    animation-delay: 2s;
}

.circuit-rings {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.circuit-rings svg {
    width: 100%;
    height: 100%;
}

.ring-1 {
    animation: spin 20s linear infinite;
}

.ring-2 {
    animation: spin 15s linear infinite reverse;
}

/* Services Section */
.services {
    position: relative;
    padding: 5rem 0;
    background-color: #121217;
    overflow: hidden;
}

.services-bg {
    position: absolute;
    inset: 0;
    opacity: 0.05;
}

.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 2rem;
}

.grid-pattern::before {
    content: '';
    grid-column: 1 / -1;
    grid-row: 1 / -1;
    background-image: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2rem,
        rgba(0, 255, 136, 0.1) 2rem,
        rgba(0, 255, 136, 0.1) 2.1rem
    ),
    repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2rem,
        rgba(0, 255, 136, 0.1) 2rem,
        rgba(0, 255, 136, 0.1) 2.1rem
    );
    animation: pulse 3s infinite;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-top: 5rem;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background-color: rgba(101, 179, 46, 0.1);
    color: #65b32e;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-family: 'Courier Prime', monospace;
    letter-spacing: 0.1em;
    border: 1px solid rgba(101, 179, 46, 0.2);
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-title-accent {
    display: block;
    color: #65b32e;
}

.section-description {
    color: #d1d5db;
    font-size: 1.125rem;
    max-width: 48rem;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background-color: rgba(3, 3, 4, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 0.75rem;
    padding: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: rgba(101, 179, 46, 0.5);
    transform: scale(1.05);
}

.service-icon {
    position: relative;
    background-color: rgba(101, 179, 46, 0.1);
    border-radius: 0.5rem;
    padding: 1rem;
    width: fit-content;
    border: 2px solid rgba(101, 179, 46, 0.2);
    margin-bottom: 1.5rem;
    transition: border-color 0.3s ease;
}

.service-card:hover .service-icon {
    border-color: rgba(255, 255, 255, 0.4);
}

.service-icon i {
    width: 2rem;
    height: 2rem;
    color: #65b32e;
}

.service-icon-dot {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    width: 1rem;
    height: 1rem;
    background-color: #65b32e;
    border-radius: 50%;
    animation: pulse 2s infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-icon-dot {
    opacity: 1;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: #65b32e;
}

.service-description {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    margin-bottom: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.feature-dot {
    width: 0.375rem;
    height: 0.375rem;
    background-color: #65b32e;
    border-radius: 50%;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.service-link {
    color: #65b32e;
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.service-link:hover {
    color: #ffffff;
}

.service-link i {
    width: 1rem;
    height: 1rem;
    transition: transform 0.2s ease;
}

.service-link:hover i {
    transform: translateX(0.25rem);
}

/* Projects Section */
.projects {
    position: relative;
    padding: 5rem 0;
    background-color: #030304;
    overflow: hidden;
}

.projects-bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.spinning-circle {
    position: absolute;
    border: 1px solid #65b32e;
    border-radius: 50%;
}

.circle-left {
    top: 25%;
    left: 2.5rem;
    width: 16rem;
    height: 16rem;
    animation: spin 30s linear infinite;
}

.circle-right {
    bottom: 25%;
    right: 2.5rem;
    width: 12rem;
    height: 12rem;
    animation: spin 20s linear infinite reverse;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    text-align: center;
    background-color: rgba(18, 18, 23, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: rgba(101, 179, 46, 0.5);
}

.stat-icon {
    width: 2rem;
    height: 2rem;
    color: #65b32e;
    margin: 0 auto 1rem;
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
}

.stat-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
    .stat-value {
        font-size: 2.25rem;
    }
}

.stat-label {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.project-card {
    background-color: rgba(18, 18, 23, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 0.75rem;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: rgba(101, 179, 46, 0.5);
    transform: scale(1.05);
}
  
.project-image {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

.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;
    inset: 0;
    background: linear-gradient(to top, #111827, transparent);
}

.project-content {
    padding: 1.5rem;
}

.project-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.project-category {
    color: #65b32e;
    font-size: 0.875rem;
    font-weight: 600;
}

.project-link-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #9ca3af;
    transition: color 0.3s ease;
}

.project-card:hover .project-link-icon {
    color: #65b32e;
}

.project-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.project-card:hover .project-title {
    color: #65b32e;
}

.project-client {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.project-description {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.project-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.result {
    text-align: center;
    color: #65b32e;
    font-weight: 600;
    font-size: 0.875rem;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background-color: rgba(31, 41, 55, 0.5);
    color: #d1d5db;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    border: 2px solid #374151;
}

/* About Section */
.about {
    position: relative;
    padding: 5rem 0;
    background-color: #121217;
    overflow: hidden;
}

.about-bg {
    position: absolute;
    inset: 0;
    opacity: 0.05;
}

.about-bg svg {
    width: 100%;
    height: 100%;
}

.about-content {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
}

.about-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 24rem;
    object-fit: cover;
}

@media (min-width: 1024px) {
    .image-container img {
        height: 31.25rem;
    }
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(101, 179, 46, 0.1), transparent);
}

.floating-stat {
    position: absolute;
    background-color: rgba(101, 179, 46, 0.8);
    backdrop-filter: blur(8px);
    border-radius: 0.5rem;
    padding: 1rem;
    border: 2px solid rgba(101, 179, 46, 0.3);
}

.stat-1 {
    top: 1.5rem;
    left: 1.5rem;
}

.stat-2 {
    bottom: 1.5rem;
    right: 1.5rem;
}

.floating-stat .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #65b32e;
}

.floating-stat .stat-label {
    color: #d1d5db;
    font-size: 0.875rem;
}

.decorative-circle {
    position: absolute;
    border: 1px solid rgba(101, 179, 46, 0.3);
    border-radius: 50%;
    animation: pulse 3s infinite;
}

.circle-1 {
    top: -1rem;
    right: -1rem;
    width: 6rem;
    height: 6rem;
}

.circle-2 {
    bottom: -2rem;
    left: -2rem;
    width: 8rem;
    height: 8rem;
    animation-delay: 1s;
}

.about-description {
    color: #d1d5db;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    text-align: center;
}

.values-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.value-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    min-height: 5vh;
}

.value-item {
    background-color: rgba(18, 18, 23, 0.3);
    backdrop-filter: blur(8px);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: border-color 0.3s ease;
}

.value-item:hover {
    border-color: rgba(101, 179, 46, 0.5);
    transform: translateY(-3px);
}

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

.value-icon {
    background-color: rgba(101, 179, 46, 0.1);
    border-radius: 0.5rem;
    padding: 0.5rem;
    border: 2px solid rgba(101, 179, 46, 0.2);
    flex-shrink: 0;
}

.value-icon i {
    width: 1.25rem;
    height: 1.25rem;
    color: #65b32e;
}

.value-title {
    color: white;
    font-weight: 600;
    margin: auto;
    text-align: left;
}

.value-description {
    color: #9ca3af;
    font-size: 0.875rem;
    margin: auto;
    text-align: left;
}

.certifications {
    background-color: rgba(31, 41, 55, 0.3);
    backdrop-filter: blur(8px);
    border-radius: 0.5rem;
    padding: 1.5rem;
    border: 1px solid rgba(55, 65, 81, 0.5);
}

.certifications-title {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.certifications-title i {
    width: 1.25rem;
    height: 1.25rem;
    color: #65b32e;
}

.certifications-grid {
    display: grid;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.certification {
    display: flex;
    align-items: center;
    color: #d1d5db;
    font-size: 0.875rem;
    gap: 0.75rem;
}

.certification i {
    width: 1rem;
    height: 1rem;
    color: #65b32e;
    flex-shrink: 0;
}

/* Contact Section */
.contact {
    position: relative;
    padding: 5rem 0;
    background-color: #000000;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.contact-circle {
    position: absolute;
    border: 2px solid #65b32e;
    border-radius: 50%;
    animation: ping 2s infinite;
}

.contact-circle.circle-1 {
    top: 5rem;
    left: 5rem;
    width: 24rem;
    height: 24rem;
}

.contact-circle.circle-2 {
    bottom: 5rem;
    right: 5rem;
    width: 16rem;
    height: 16rem;
    animation-delay: 1s;
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    min-height: 10vh;
}


@media (min-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* Contact Form */
.contact-form-container {
    background-color: rgba(18, 18, 23, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    padding: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.form-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.form-header i {
    width: 1.5rem;
    height: 1.5rem;
    color: #65b32e;
}

.form-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

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

.form-row {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #d1d5db;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background-color: rgba(31, 41, 55, 0.5);
    border: 1px solid #4b5563;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    color: white;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #65b32e;
    box-shadow: 0 0 0 1px #65b32e;
}

.form-group textarea {
    resize: none;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    background-color: rgba(18, 18, 23, 0.3);
    backdrop-filter: blur(8px);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: border-color 0.3s ease;
}

.contact-item:hover {
    border-color: rgba(101, 179, 46, 0.5);
    transform: translateY(-3px);
}

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

.contact-icon {
    background-color: rgba(101, 179, 46, 0.1);
    border-radius: 0.5rem;
    padding: 1rem;
    border: 2px solid rgba(101, 179, 46, 0.6);
}

.contact-icon i {
    width: 1.5rem;
    height: 1.5rem;
    color: #65b32e;
}

.contact-details h4 {
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    margin: auto;
}

.contact-details p {
    color: #d1d5db;
    margin-bottom: auto;
}

.contact-sub {
    color: #9ca3af !important;
    font-size: 0.875rem !important;
}

.emergency-contact {
    background: linear-gradient(135deg, rgba(153, 27, 27, 0.2), rgba(194, 65, 12, 0.2));
    backdrop-filter: blur(8px);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid rgba(248, 113, 113, 0.3);
}

.emergency-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.emergency-icon {
    background-color: rgba(248, 113, 113, 0.1);
    border-radius: 0.5rem;
    padding: 0.75rem;
    border: 1px solid rgba(248, 113, 113, 0.2);
}

.emergency-icon i {
    width: 1.5rem;
    height: 1.5rem;
    color: #f87171;
}

.emergency-header h4 {
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
}

.emergency-header p {
    color: #d1d5db;
}

/* Footer */
.footer {
    background-color: #121217;
    border-top: 2px solid #65B32E;
}

.footer .container {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.footer-content {
    display: grid;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-company {
    max-width: 28rem;
}

.footer-description {
    color: #9ca3af;
    margin: 1.5rem 0;
    line-height: 1.7;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    color: #9ca3af;
    gap: 0.75rem;
}

.footer-contact-item i {
    width: 1rem;
    height: 1rem;
    color: #65b32e;
    flex-shrink: 0;
}

.footer-links h4,
.footer-services h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links button {
    display: block;
    color: #9ca3af;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s ease;
}

.footer-links button:hover {
    color: #65b32e;
}

.footer-services {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-services div {
    color: #9ca3af;
}

.footer-bottom {
    border-top: 1px solid #1f2937;
    margin-top: 3rem;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-social a {
    color: #9ca3af;
    transition: color 0.2s ease;
}

.footer-social a:hover {
    color: #65b32e;
}

.footer-social i {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-legal {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-legal span {
    margin-right: 1rem;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-0.5rem);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes ping {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

.internship-section {
    position: relative;
    padding: 5rem 0;
    background-color: #121217;
    overflow: hidden;
    border: 5px solid#65b32e;
}

.c2a-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

/* -------------------------------------------------------------- */
/* Styles for the new Sources page, aligning with existing design */
/* -------------------------------------------------------------- */

.sources-section {
    position: relative;
    padding: 5rem 0;
    background-color: #030304;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sources-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin-top: 3rem;
    width: 100%;
}

@media (min-width: 768px) {
    .sources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sources-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Individual Source Item Card */
.source-item {
    background-color: rgba(18, 18, 23, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 0.75rem;
    padding: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.source-item:hover {
    border-color: rgba(101, 179, 46, 0.9);
    transform: translateY(-5px);
}

.source-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.source-description {
    color: #d1d5db;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    flex-grow: 1;
}

.download-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #65b32e;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
    margin-top: auto;
}

.download-link:hover {
    color: #79CD3C;
}

.download-link i {
    width: 1rem;
    height: 1rem;
}

/* -------------------------------------- */
/* Styles for CyberCafe Announcement Page */
/* -------------------------------------- */

.cybercafe-announcement {
    padding: 5rem 0;
    background-color: #121217;
    text-align: center;
}

.cybercafe-announcement .section-title-accent {
    display: inline;
}