@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Montserrat:wght@400;500;600;700&family=Open+Sans:wght@400;500;600&family=Poppins:wght@400;500;600;700&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', 'Open Sans', sans-serif;
    color: #F4F6F8; /* Soft Gray */
    background: linear-gradient(135deg, #0F172A 0%, #0B3C5D 100%); /* Midnight Black to Deep Tech Blue */
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    font-weight: 600;
}

:root {
    --deep-tech-blue: #0B3C5D;
    --midnight-black: #0F172A;
    --premium-gold: #D4AF37;
    --soft-gray: #F4F6F8;
    --growth-green: #1FBF75;
    --primary: var(--deep-tech-blue);
    --primary-dark: #0A2F4A;
    --primary-soft: rgba(11, 60, 93, 0.12);
    --primary-border: rgba(11, 60, 93, 0.25);
    --overlay: rgba(15, 23, 42, 0.8);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

/* Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Vision & Mission Section */
.vision-mission-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--midnight-black) 0%, var(--deep-tech-blue) 100%);
    position: relative;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.vm-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.vm-icon {
    font-size: 3rem;
    color: var(--premium-gold);
    margin-bottom: 20px;
}

.vm-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--soft-gray);
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.vm-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--soft-gray);
    opacity: 0.9;
}

/* Section Divider */
.section-divider {
    text-align: center;
    padding: 40px 0;
}

.section-divider svg {
    width: 150px;
    height: auto;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: var(--overlay);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(90deg, var(--premium-gold), var(--soft-gray));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.value-card:hover {
    transform: scale(1.03);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--premium-gold);
    margin-bottom: 15px;
}

.value-accent {
    width: 50px;
    height: 3px;
    background: var(--premium-gold);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--soft-gray);
    margin-bottom: 15px;
}

.value-text {
    color: var(--soft-gray);
    opacity: 0.9;
    line-height: 1.6;
}

/* Leadership Section */
.leadership-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--deep-tech-blue) 0%, var(--midnight-black) 100%);
}

.leadership-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.leadership-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--soft-gray);
    margin-bottom: 20px;
}

/* Culture Section */
.culture-section {
    padding: 80px 0;
    background: var(--overlay);
}

.culture-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.culture-list {
    list-style: none;
    padding: 0;
}

.culture-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--soft-gray);
}

.culture-list i {
    color: var(--growth-green);
    margin-right: 15px;
    font-size: 1.2rem;
}

.tech-pattern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pattern-item {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--premium-gold);
    transition: all 0.3s ease;
}

.pattern-item:hover {
    transform: scale(1.1);
    background: var(--premium-gold);
    color: var(--midnight-black);
}

/* Responsive Design */
@media (max-width: 768px) {
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .culture-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-title {
        font-size: 2rem;
    }

    .vm-card,
    .value-card {
        padding: 25px;
    }

    .tech-pattern {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
    }
}
nav {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 5px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    height: 50px;
}
.nav-logo {
    height: 30px;
    width: auto;
}
nav a {
    color: white;
    text-decoration: none;
    margin: 0 20px;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
nav .nav-links {
    display: flex;
}
nav a:hover {
    color: var(--premium-gold);
}
nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--premium-gold);
    transition: all 0.3s ease;
}
nav a:hover::after {
    width: 100%;
    left: 0;
}
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-image: url("logo.jpg");
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    box-sizing: border-box;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--soft-gray);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.gold-title {
    color: white !important;
    font-weight: 700 !important;
}

.hero p {
    font-size: 1.25rem;
    color: var(--soft-gray);
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.9;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.7) 0%, rgba(11, 60, 93, 0.7) 100%);
    z-index: 1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* BACKGROUND IMAGES */
.home, .services, .contact {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    /* Let content flow vertically instead of forcing full-viewport sections */
    padding-top: 60px; /* space for fixed nav */
    padding-bottom: 60px;
}
.home {
    background-image: url("logo.jpg");
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}
.services {
    background-image: url("bg2.jpg");
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}
.contact {
    background-image: url("bg3.jpg");
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}
ul {
    list-style-type: none;
    padding: 0;
    font-size: 20px;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--deep-tech-blue) 0%, var(--premium-gold) 100%);
    color: var(--soft-gray);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.cta-button.secondary {
    background: linear-gradient(135deg, #00BFFF 0%, #1E90FF 100%);
    color: white;
    border: 2px solid #00BFFF;
}

.cta-button.secondary:hover {
    background: linear-gradient(135deg, #1E90FF 0%, #00BFFF 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 144, 255, 0.4);
}

.cta-button.small {
    padding: 10px 20px;
    font-size: 14px;
}

/* Services Overview */
.services-overview {
    padding: 80px 20px;
    background: var(--overlay);
    text-align: center;
}

.services-overview h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--soft-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.service-icon {
    font-size: 3rem;
    color: var(--premium-gold);
    margin-bottom: 20px;
    display: block;
}

.service-item h3 {
    color: var(--soft-gray);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-item p {
    color: var(--soft-gray);
    opacity: 0.8;
    margin-bottom: 15px;
}

.service-item ul {
    text-align: left;
    color: var(--soft-gray);
    opacity: 0.9;
    padding-left: 20px;
}

.service-item li {
    margin-bottom: 5px;
}

/* Impact Stats */
.impact-stats {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--midnight-black) 0%, var(--deep-tech-blue) 100%);
    text-align: center;
    color: var(--soft-gray);
}

.impact-stats h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--soft-gray);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.counter {
    font-size: 3rem;
    font-weight: 700;
    color: var(--premium-gold);
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Projects Preview */
.projects-preview {
    padding: 80px 20px;
    background: var(--overlay);
    text-align: center;
}

.projects-preview h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--soft-gray);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.project-item {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 15px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.project-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.project-item h3 {
    color: var(--premium-gold);
    margin-bottom: 15px;
}

.project-item p {
    color: var(--soft-gray);
    margin-bottom: 10px;
    opacity: 0.9;
}

/* Partners */
.partners {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--deep-tech-blue) 0%, var(--midnight-black) 100%);
    text-align: center;
}

.partners h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--soft-gray);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.partner-logo {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    color: var(--soft-gray);
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: var(--overlay);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--soft-gray);
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: var(--soft-gray);
    opacity: 0.9;
}

/* About Section */
.about {
    padding: 80px 20px;
    background: var(--overlay);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--soft-gray);
}

.about-content p {
    color: var(--soft-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.about-content h3 {
    color: var(--premium-gold);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.about-content ul {
    color: var(--soft-gray);
    opacity: 0.9;
    padding-left: 20px;
}

.about-content li {
    margin-bottom: 10px;
}

.tech-stack {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.tech-stack h3 {
    color: var(--premium-gold);
    text-align: center;
    margin-bottom: 20px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
}

.tech-grid span {
    background: var(--primary-soft);
    color: var(--primary);
    padding: 10px 15px;
    border-radius: 20px;
    font-weight: 600;
    text-align: center;
    border: 1px solid var(--primary-border);
    box-shadow: 0 4px 8px rgba(0,0,0,0.12);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--midnight-black) 0%, var(--deep-tech-blue) 100%);
    color: var(--soft-gray);
    padding: 60px 20px 20px;
    border-top: 1px solid var(--premium-gold);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(212, 175, 55, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-section h3 {
    color: #00BFFF;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.footer-section h4 {
    color: #00BFFF;
    margin-bottom: 15px;
}

.footer-section p {
    margin-bottom: 10px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section p i {
    color: var(--premium-gold);
    font-size: 1.2rem;
    min-width: 20px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #00BFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #1E90FF;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: 1px solid var(--glass-border);
    border-radius: 5px;
    background: var(--glass-bg);
    color: var(--soft-gray);
}

.newsletter-form input::placeholder {
    color: var(--soft-gray);
    opacity: 0.7;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--premium-gold);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 20px;
    text-align: center;
    opacity: 0.8;
}

/* Services Detailed Page */
.services-detailed {
    padding: 80px 20px;
    background: var(--overlay);
}

.services-detailed h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--soft-gray);
}

.service-detail {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.service-detail:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.service-detail h3 {
    color: var(--soft-gray);
    margin: 20px 0 15px;
}

.service-detail p {
    color: var(--soft-gray);
    opacity: 0.9;
    margin-bottom: 15px;
}

.service-detail ul {
    text-align: left;
    color: var(--soft-gray);
    opacity: 0.9;
    margin-bottom: 20px;
}

.service-detail li {
    margin-bottom: 5px;
}

/* Process Section */
.process {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--midnight-black) 0%, var(--deep-tech-blue) 100%);
    text-align: center;
}

.process h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--soft-gray);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--premium-gold);
    color: var(--midnight-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h4 {
    color: var(--soft-gray);
    margin-bottom: 15px;
}

.step p {
    color: var(--soft-gray);
    opacity: 0.9;
}

/* Projects Page */
.impact-metrics {
    padding: 80px 20px;
    background: var(--overlay);
    text-align: center;
}

.impact-metrics h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--soft-gray);
}

.sectors {
    margin-top: 60px;
}

.sectors h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--soft-gray);
}

.sector-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.sector {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.sector i {
    font-size: 3rem;
    color: var(--premium-gold);
    margin-bottom: 20px;
}

.sector h4 {
    color: var(--soft-gray);
    margin-bottom: 15px;
}

.sector p {
    color: var(--soft-gray);
    opacity: 0.9;
}

.case-studies {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--midnight-black) 0%, var(--deep-tech-blue) 100%);
}

.case-studies h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--soft-gray);
}

.case-study-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.case-study {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.case-study:hover {
    transform: translateY(-5px);
}

.case-image {
    background: var(--primary);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--soft-gray);
}

.case-content {
    padding: 30px;
}

.case-content h3 {
    color: var(--soft-gray);
    margin-bottom: 15px;
}

.case-content p {
    color: var(--soft-gray);
    opacity: 0.9;
    margin-bottom: 10px;
    line-height: 1.6;
}

.tech-used {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.tech-used span {
    background: var(--primary-soft);
    color: var(--primary);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.testimonials {
    padding: 80px 20px;
    background: var(--overlay);
}

.testimonials h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--soft-gray);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.testimonial p {
    color: var(--soft-gray);
    font-style: italic;
    margin-bottom: 15px;
    opacity: 0.9;
}

.testimonial cite {
    color: var(--premium-gold);
    font-weight: 600;
}

/* Project Services Section */
.project-services {
    padding: 80px 20px;
    background: var(--overlay);
}

.project-services h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--soft-gray);
}

.services-offered {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-offer {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-offer:hover {
    transform: translateY(-5px);
}

.service-offer i {
    font-size: 3rem;
    color: var(--premium-gold);
    margin-bottom: 20px;
}

.service-offer h3 {
    color: var(--soft-gray);
    margin-bottom: 15px;
}

.service-offer p {
    color: var(--soft-gray);
    opacity: 0.9;
    line-height: 1.6;
}

/* Featured Projects Section */
.featured-projects {
    padding: 80px 20px;
    background: var(--overlay);
}

.featured-projects h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--soft-gray);
}

.project-spotlight {
    max-width: 600px;
    margin: 0 auto;
}

.project-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-header {
    margin-bottom: 20px;
}

.project-header i {
    font-size: 3rem;
    color: var(--premium-gold);
    margin-bottom: 15px;
}

.project-header h3 {
    color: var(--soft-gray);
    font-size: 1.5rem;
    margin: 0;
}

.project-card p {
    color: var(--soft-gray);
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Partners Page */
.partnership-types {
    padding: 80px 20px;
    background: var(--overlay);
}

.partnership-types h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--soft-gray);
}

.partnership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.partnership-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.partnership-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.partnership-card i {
    font-size: 3rem;
    color: var(--premium-gold);
    margin-bottom: 20px;
}

.partnership-card h3 {
    color: var(--soft-gray);
    margin-bottom: 15px;
}

.partnership-card p {
    color: var(--soft-gray);
    opacity: 0.9;
    margin-bottom: 20px;
}

.partnership-card ul {
    text-align: left;
    color: var(--soft-gray);
    opacity: 0.9;
}

.partnership-card li {
    margin-bottom: 5px;
}

.current-partners {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--midnight-black) 0%, var(--deep-tech-blue) 100%);
}

.current-partners h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--soft-gray);
}

.partners-showcase {
    max-width: 1200px;
    margin: 0 auto;
}

.partner-category {
    margin-bottom: 40px;
}

.partner-category h3 {
    color: var(--premium-gold);
    margin-bottom: 20px;
    text-align: center;
}

.partner-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.partner-logos .partner-logo {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    color: var(--soft-gray);
    font-weight: 600;
    transition: transform 0.3s ease;
}

.partner-logos .partner-logo:hover {
    transform: scale(1.05);
}

.partnership-benefits {
    padding: 80px 20px;
    background: var(--overlay);
}

.partnership-benefits h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--soft-gray);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.benefit i {
    font-size: 3rem;
    color: var(--premium-gold);
    margin-bottom: 20px;
}

.benefit h4 {
    color: var(--soft-gray);
    margin-bottom: 15px;
}

.benefit p {
    color: var(--soft-gray);
    opacity: 0.9;
}

.partner-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--deep-tech-blue) 0%, var(--midnight-black) 100%);
    text-align: center;
}

.partner-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--soft-gray);
}

.partner-cta p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: var(--soft-gray);
    opacity: 0.9;
}

.partner-form {
    max-width: 800px;
    margin: 0 auto;
}

.partner-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.partner-form input,
.partner-form select,
.partner-form textarea {
    padding: 15px;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    background: var(--glass-bg);
    color: var(--soft-gray);
    font-size: 16px;
}

.partner-form input::placeholder,
.partner-form textarea::placeholder {
    color: var(--soft-gray);
    opacity: 0.7;
}

.partner-form select {
    background: var(--glass-bg);
    color: var(--soft-gray);
}

/* Careers Page */
.why-join {
    padding: 80px 20px;
    background: var(--overlay);
}

.why-join h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--soft-gray);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.reason {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.reason i {
    font-size: 3rem;
    color: var(--premium-gold);
    margin-bottom: 20px;
}

.reason h3 {
    color: var(--soft-gray);
    margin-bottom: 15px;
}

.reason p {
    color: var(--soft-gray);
    opacity: 0.9;
}

.job-openings {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--midnight-black) 0%, var(--deep-tech-blue) 100%);
}

.job-openings h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--soft-gray);
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.job-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.job-header h3 {
    color: var(--soft-gray);
    margin: 0;
}

.job-type {
    background: var(--premium-gold);
    color: var(--midnight-black);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.job-card p {
    color: var(--soft-gray);
    opacity: 0.9;
    margin-bottom: 15px;
}

.job-details {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.job-details span {
    color: var(--soft-gray);
    opacity: 0.8;
    font-size: 0.9rem;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.job-tags span {
    background: var(--primary-soft);
    color: var(--primary);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}


.application-process {
    padding: 80px 20px;
    background: var(--overlay);
}

.application-process h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--soft-gray);
}

/* Contact Page */
.contact-content {
    padding: 80px 20px;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--soft-gray);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-method i {
    font-size: 2rem;
    color: var(--premium-gold);
    margin-top: 5px;
}

.contact-method h3 {
    color: var(--soft-gray);
    margin-bottom: 10px;
}

.contact-method p {
    color: var(--soft-gray);
    opacity: 0.9;
    margin: 5px 0;
    line-height: 1.5;
    word-break: break-word;
}

.contact-method a {
    color: var(--premium-gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: var(--soft-gray);
    text-decoration: underline;
}

.contact-form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--soft-gray);
}

.contact-form {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--soft-gray);
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--soft-gray);
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group select {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 45px;
}

.form-group select option {
    background: var(--midnight-black);
    color: var(--soft-gray);
    padding: 10px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--premium-gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin-bottom: 30px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--soft-gray);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--glass-border);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--premium-gold);
    border-color: var(--premium-gold);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: -2px;
    left: 2px;
    color: var(--midnight-black);
    font-size: 14px;
    font-weight: bold;
}

.map-section {
    padding: 80px 20px;
    background: var(--overlay);
    text-align: center;
}

.map-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--soft-gray);
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.faq-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--midnight-black) 0%, var(--deep-tech-blue) 100%);
}

.faq-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--soft-gray);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: var(--soft-gray);
    margin-bottom: 15px;
}

.faq-item p {
    color: var(--soft-gray);
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Page */
.story-section {
    padding: 80px 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--soft-gray);
}

.story-content p {
    color: var(--soft-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.story-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.stat {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--premium-gold);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--soft-gray);
    opacity: 0.9;
    font-size: 0.9rem;
}

.mission-vision {
    padding: 80px 20px;
    background: var(--overlay);
}

.mv-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.mv-item {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.mv-item i {
    font-size: 3rem;
    color: var(--premium-gold);
    margin-bottom: 20px;
}

.mv-item h3 {
    color: var(--soft-gray);
    margin-bottom: 20px;
}

.mv-item p {
    color: var(--soft-gray);
    opacity: 0.9;
    line-height: 1.6;
}

.values-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--midnight-black) 0%, var(--deep-tech-blue) 100%);
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--soft-gray);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.value i {
    font-size: 3rem;
    color: var(--premium-gold);
    margin-bottom: 20px;
}

.value h3 {
    color: var(--soft-gray);
    margin-bottom: 15px;
}

.value p {
    color: var(--soft-gray);
    opacity: 0.9;
    line-height: 1.6;
}

.leadership {
    padding: 80px 20px;
    background: var(--overlay);
}

.leadership h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--soft-gray);
}

.leadership-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.culture-description h3 {
    color: var(--premium-gold);
    margin-bottom: 20px;
}

.culture-description p {
    color: var(--soft-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.team-preview h3 {
    color: var(--premium-gold);
    margin-bottom: 30px;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.team-member {
    text-align: center;
}

.member-avatar {
    width: 80px;
    height: 80px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 2rem;
    color: var(--premium-gold);
}

.team-member h4 {
    color: var(--soft-gray);
    margin-bottom: 10px;
}

.team-member p {
    color: var(--soft-gray);
    opacity: 0.8;
    font-size: 0.9rem;
}

.tech-stack {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--deep-tech-blue) 0%, var(--midnight-black) 100%);
    text-align: center;
}

.tech-stack h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--soft-gray);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.tech-grid span {
    background: var(--premium-gold);
    color: white;
    padding: 15px 20px;
    border-radius: 25px;
    font-weight: 600;
    border: 2px solid var(--premium-gold);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
}

.tech-grid span:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, var(--premium-gold) 0%, #f4e87c 100%);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

.contact-form button {
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.contact-form button:hover {
    background: #0056b3;
}

/* Additional styles for new sections */
.cta-button.secondary {
    background: linear-gradient(135deg, #00BFFF 0%, #1E90FF 100%);
    color: white;
    border: 2px solid #00BFFF;
}

.cta-button.secondary:hover {
    background: linear-gradient(135deg, #1E90FF 0%, #00BFFF 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(30, 144, 255, 0.4);
}

.cta-button.small {
    padding: 8px 16px;
    font-size: 14px;
}

.about ul {
    list-style-type: disc;
    padding-left: 20px;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.about ul li {
    margin-bottom: 10px;
}

.tech-stack {
    background: transparent; /* visually part of About */
    padding: 18px 0 6px;
    text-align: center;
    margin-top: 10px;
}

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 860px;
    margin: 0 auto;
}

.tech-grid span {
    background: var(--primary-soft);
    color: var(--primary);
    padding: 8px 14px;
    border-radius: 14px;
    font-weight: 700;
    border: 1px solid var(--primary-border);
    box-shadow: 0 4px 8px rgba(0,0,0,0.12);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: left;
}

.portfolio-item p {
    margin: 10px 0;
}

.testimonials {
    background: rgba(0, 0, 0, 0.8);
    padding: 50px 20px;
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
}

.testimonial cite {
    display: block;
    margin-top: 10px;
    font-style: italic;
    color: var(--primary);
}

footer {
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 40px 20px 20px;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3, .footer-section h4 {
    color: #00BFFF;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: white;
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 30px;
    padding-top: 20px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.contact-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.contact-item h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.contact-item a {
    color: white;
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--primary);
}

/* Responsive design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    nav a {
        margin: 10px;
        font-size: 16px;
    }

    .services-grid, .projects-grid, .partners-grid, .stats-grid, .footer-content {
        grid-template-columns: 1fr;
    }

    .about {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .newsletter-form {
        flex-direction: column;
    }

    .social-links {
        justify-content: center;
    }

    .impact-stats h2, .projects-preview h2, .partners h2, .cta-section h2, .about-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .partner-form .form-row {
        grid-template-columns: 1fr;
    }

    .internship-types, .training-grid, .faq-grid {
        grid-template-columns: 1fr;
    }

    .case-study-grid {
        grid-template-columns: 1fr;
    }

    .partnership-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .sector-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .about {
        grid-template-columns: 1fr;
    }

    .tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .contact-methods {
        gap: 20px;
    }

    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .map-container iframe {
        height: 300px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .service-item, .project-item, .stat-item, .partnership-card, .benefit, .reason, .internship-card, .training-card, .faq-item, .case-study, .job-card {
        padding: 20px;
    }

    nav a {
        margin: 5px;
        font-size: 14px;
    }

    .contact-form {
        padding: 20px;
    }

    .hero-ctas, .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-ctas .cta-button, .cta-buttons .cta-button {
        width: 100%;
        max-width: 300px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .counter {
        font-size: 2rem;
    }

    .service-icon {
        font-size: 2rem;
    }

    .partnership-card i, .benefit i, .reason i, .internship-card i {
        font-size: 2.5rem;
    }
}
