:root {
    --primary: #ffd700;
    /* Gold */
    --primary-glow: rgba(255, 215, 0, 0.4);
    --secondary: #00e5ff;
    /* Cyber Cyan */
    --bg-dark: #020617;
    /* Deepest Navy */
    --bg-card: rgba(15, 23, 42, 0.8);
    --text-white: #f8fafc;
    --text-muted: #94a3b8;
    --glass-border: rgba(255, 215, 0, 0.2);
    --accent: #ff00ff;
    /* Magenta highlight */
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 0% 0%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(0, 229, 255, 0.05) 0%, transparent 50%),
        var(--bg-dark);
    min-height: 100vh;
}

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

/* Navbar Styling */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(2, 6, 23, 0.7);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    height: 80px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-white);
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero Section */
header.hero {
    padding: 10rem 1rem 6rem;
    text-align: center;
    position: relative;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    animation: fadeInDown 1s cubic-bezier(0.16, 1, 0.3, 1);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero p {
    font-size: 1.35rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 3rem;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Vision & Innovation Banner */
.innovation-banner {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(0, 229, 255, 0.1));
    border: 1px solid var(--glass-border);
    border-radius: 2rem;
    padding: 4rem;
    text-align: center;
    margin-bottom: 6rem;
    backdrop-filter: blur(10px);
}

.innovation-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

/* Services Styling */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 3rem;
    color: var(--primary);
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-bottom: 6rem;
}

.service-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px var(--primary-glow);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.service-card p {
    color: var(--text-muted);
}

/* About Us Section */
.about-section {
    padding: 8rem 0;
    margin-bottom: 4rem;
}

.about-header {
    text-align: center;
    margin-bottom: 5rem;
}

.about-header h2 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

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

.value-item {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.value-item h4 {
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.value-item p {
    font-size: 0.9rem;
    line-height: 1.4;
}

.about-image img {
    width: 100%;
    border-radius: 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px var(--primary-glow);
    border: 1px solid var(--glass-border);
}

/* Contact Section */
.contact-section {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 2rem;
    padding: 4rem;
    max-width: 700px;
    margin: 0 auto 6rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.contact-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.location-badge {
    text-align: center;
    margin-bottom: 3rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    position: relative;
    animation: fadeInUp 0.8s ease;
}

.location-text {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.location-badge .icon {
    margin-right: 0.5rem;
}

.form-group {
    margin-bottom: 2rem;
}

input,
textarea {
    width: 100%;
    padding: 1.25rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 0.75rem;
    color: var(--text-white);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

button[type="submit"] {
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(90deg, var(--primary), #ffa500);
    border: none;
    border-radius: 0.75rem;
    color: #000;
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

button[type="submit"]:hover {
    transform: scale(1.03);
    box-shadow: 0 0 30px var(--primary-glow);
}

footer {
    padding: 4rem 2rem;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
}

/* Responsive Handling */
@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    .nav-links {
        display: none;
    }

    /* Simplified for mobile */
}