:root {
    --bg-gradient-1: #0f0c29;
    --bg-gradient-2: #302b63;
    --bg-gradient-3: #24243e;
    --accent-1: #FF3CAC;
    --accent-2: #784BA0;
    --accent-3: #2B86C5;
    --text-primary: #ffffff;
    --text-secondary: #b8c1ec;
    --text-tertiary: #8892b0;
    --card-bg: rgba(22, 28, 36, 0.8);
    --card-border: rgba(255, 255, 255, 0.1);
    --card-hover: rgba(255, 255, 255, 0.05);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-neon: 0 0 15px rgba(255, 60, 172, 0.5);
    --shadow-glow: 0 0 20px rgba(43, 134, 197, 0.5);
}

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

html {
    font-size: 16px;
}

body {
    background: linear-gradient(135deg, var(--bg-gradient-1), var(--bg-gradient-2), var(--bg-gradient-3));
    background-attachment: fixed;
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    word-wrap: break-word;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Decorative Elements */
.decorative-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-1) 0%, rgba(255, 60, 172, 0) 70%);
    opacity: 0.3;
    filter: blur(60px);
    z-index: 0;
}

.circle-1 {
    top: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
}

.circle-2 {
    bottom: 20%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-3) 0%, rgba(43, 134, 197, 0) 70%);
}

.circle-3 {
    top: 40%;
    left: 30%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--accent-2) 0%, rgba(120, 75, 160, 0) 70%);
}

/* Hero Section */
.page-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1489599849927-2ee91cede3ba?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') center/cover;
    opacity: 0.2;
    z-index: -1;
}

.page-hero-content {
    width: 100%;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(90deg, var(--text-primary), var(--accent-1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    padding: 0 1rem;
}

.page-hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* About Content */
.about-section {
    padding: 3rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, var(--text-primary), var(--accent-1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-1), var(--accent-3));
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.about-content h2 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    margin: 2rem 0 1.2rem;
    background: linear-gradient(90deg, var(--accent-1), var(--accent-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    line-height: 1.8;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
}

.about-content ul {
    margin: 1.2rem 0;
    padding-left: 1.5rem;
}

.about-content li {
    color: var(--text-secondary);
    margin-bottom: 0.6rem;
    line-height: 1.7;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
}

/* Team Section */
.team-section {
    padding: 3rem 0;
    background: rgba(15, 12, 41, 0.5);
    backdrop-filter: blur(10px);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 0 1rem;
}

.team-card {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--card-border);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-neon);
    border-color: var(--accent-1);
}

.team-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.2rem;
    border: 3px solid var(--accent-1);
}

.team-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.team-card p {
    color: var(--accent-3);
    margin-bottom: 1rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.team-card .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-card .social-links a {
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.team-card .social-links a:hover {
    color: var(--accent-1);
}

/* Values Section */
.values-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(15, 12, 41, 0.8), rgba(48, 43, 99, 0.8));
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 0 1rem;
}

.value-card {
    background: var(--card-bg);
    padding: 1.8rem;
    border-radius: 10px;
    transition: var(--transition);
    border: 1px solid var(--card-border);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-1), var(--accent-3));
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.value-card p {
    color: var(--text-tertiary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* CTA Section */
.cta {
    padding: 3rem 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(15, 12, 41, 0.8), rgba(48, 43, 99, 0.8));
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-1) 0%, rgba(255, 60, 172, 0) 70%);
    opacity: 0.3;
    filter: blur(60px);
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-3) 0%, rgba(43, 134, 197, 0) 70%);
    opacity: 0.3;
    filter: blur(60px);
}

.cta h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1.2rem;
    background: linear-gradient(90deg, var(--text-primary), var(--accent-1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    padding: 0 1rem;
}

.cta p {
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
    padding: 0 1rem;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(90deg, var(--accent-1), var(--accent-3));
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(255, 60, 172, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 60, 172, 0.6);
}

/* Make in India and DPIIT Badges */
.badges {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.badge img {
    height: 30px;
    width: auto;
}

.company-info {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: var(--text-tertiary);
    line-height: 1.6;
    text-align: center;
    padding: 0 1rem;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    html {
        font-size: 15px;
    }

    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 992px) {
    .page-hero {
        min-height: 50vh;
        padding: 6rem 0 3rem;
    }

    .about-section, .team-section, .values-section, .cta {
        padding: 2.5rem 0;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 1rem;
    }

    .page-hero {
        padding: 5rem 0 2rem;
        min-height: 40vh;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .team-grid, .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .cta-button {
        padding: 0.8rem 1.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 13px;
    }

    .container {
        padding: 0 0.8rem;
    }

    .page-hero {
        padding: 4rem 0 1.5rem;
        min-height: 35vh;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .team-grid, .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .team-card, .value-card {
        padding: 1.2rem;
    }

    .team-image {
        width: 100px;
        height: 100px;
    }

    .badges {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 400px) {
    .page-hero h1 {
        font-size: 1.8rem;
    }

    .page-hero p {
        font-size: 0.9rem;
    }

    .about-content h2 {
        font-size: 1.2rem;
    }

    .cta h2 {
        font-size: 1.5rem;
    }
}