:root {
    /* Color Palette - Vibrant & Premium */
    --primary: #2E3192;
    /* Deep Indigo */
    --secondary: #F7931E;
    /* Safety Orange */
    --accent: #5AC8FA;
    /* Bright Blue */
    --dark: #1A1A1A;
    --light: #F8F9FA;
    --white: #FFFFFF;
    --gray: #6C757D;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);

    /* Typography */
    --font-primary: 'Outfit', sans-serif;

    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Glassmorphism Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: var(--transition);
}

.glass-nav .container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.icon-wrapper {
    background: var(--primary);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-10deg);
    transition: var(--transition);
}

.logo-text .accent-text {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--secondary);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, var(--primary) 0%, #1d1e5d 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(90, 200, 250, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-text-box h1 {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-text-box .highlight {
    background: linear-gradient(to right, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text-box p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.btn-primary-lg {
    background: var(--secondary);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(247, 147, 30, 0.3);
    transition: var(--transition);
    display: inline-block;
}

.btn-primary-lg:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(247, 147, 30, 0.4);
}

.btn-secondary-lg {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    display: inline-block;
}

.btn-secondary-lg:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.hero-status {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.status-card {
    background: var(--glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    transition: var(--transition);
}

.status-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.status-card i {
    color: var(--accent);
    font-size: 1.5rem;
}

/* Expertise Section */
.expertise {
    padding: 100px 0;
    background: var(--white);
}

.expertise-box {
    background: var(--light);
    border-radius: 40px;
    padding: 4rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.expertise-text {
    flex: 1.5;
}

.expertise-text h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.expertise-text p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.expertise-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    text-align: center;
    background: var(--white);
    padding: 2rem;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.stat .number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
}

.stat .label {
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.underline {
    width: 80px;
    height: 5px;
    background: var(--secondary);
    margin: 0 auto 1.5rem;
    border-radius: 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--light);
    padding: 3rem;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-15px);
    background: var(--white);
    box-shadow: var(--shadow);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 2rem;
    transform: rotate(-5deg);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: rotate(0deg) scale(1.1);
    background: var(--secondary);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 700;
    margin-top: 1.5rem;
}

/* Projects Section */
.projects {
    padding: 100px 0;
    background: #fdfdfd;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.project-item {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.project-item:hover .project-overlay {
    transform: translateY(0);
    opacity: 1;
}

.project-item:hover .project-img img {
    transform: scale(1.1);
}

.project-overlay span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary);
    font-weight: 700;
}

.project-overlay h4 {
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

/* About Section */
.about {
    padding: 120px 0;
    background: #f1f3f9;
}

.about-flex {
    display: flex;
    gap: 6rem;
    align-items: center;
}

.about-image {
    flex: 1;
}

.image-stack {
    position: relative;
    padding: 20px;
}

.img-bg {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: var(--primary);
    border-radius: 40px;
    z-index: 1;
}

.main-img {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: 40px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
}

.subheading {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(46, 49, 146, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.about-text h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.about-features {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: var(--primary);
}

.feature i {
    color: var(--secondary);
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

.contact-box {
    background: var(--primary);
    border-radius: 40px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    overflow: hidden;
    color: var(--white);
    box-shadow: 0 40px 100px rgba(46, 49, 146, 0.2);
}

.contact-info {
    padding: 5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.info-list {
    list-style: none;
    margin-top: 3rem;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.info-list i {
    width: 45px;
    height: 45px;
    background: var(--secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form {
    background: var(--white);
    padding: 5rem;
    color: var(--dark);
}

.input-group {
    position: relative;
    margin-bottom: 2rem;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E1E1E1;
    border-radius: 12px;
    outline: none;
    transition: var(--transition);
    font-family: inherit;
    font-size: 1rem;
    background: #F8F9FA;
}

.input-group label {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    pointer-events: none;
    transition: var(--transition);
    background: #F8F9FA;
    padding: 0 0.5rem;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: var(--primary);
    background: var(--white);
}

.input-group input:focus+label,
.input-group input:not(:placeholder-shown)+label,
.input-group textarea:focus+label,
.input-group textarea:not(:placeholder-shown)+label {
    top: 0;
    font-size: 0.85rem;
    color: var(--primary);
    background: var(--white);
}

.btn-submit {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    padding: 1.2rem;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.btn-submit:hover {
    background: var(--secondary);
    transform: scale(1.02);
}

/* Footer */
footer {
    background: #0D0E29;
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 50px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--secondary);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
}

/* Animations Classes */
.fade-in {
    opacity: 0;
    animation: fadeInUp 1s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text-box h1 {
        font-size: 3.5rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .about-flex {
        flex-direction: column;
        gap: 3rem;
    }

    .contact-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-text-box h1 {
        font-size: 2.8rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .about-text h2 {
        font-size: 2.5rem;
    }
}