/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

:root {
    --primary-color: #2c2c2c;
    --secondary-color: #5a5a5a;
    --accent-color: #0066cc;
    --light-bg: rgba(255, 255, 255, 0.2);
    --card-bg: rgba(255, 255, 255, 0.3);
    --border-color: rgba(255, 255, 255, 0.5);
    --bg-darkness: 5%;
}

html {
    scroll-behavior: smooth;
}

body {
    background: 
        linear-gradient(
            rgba(0, 0, 0, var(--bg-darkness)), 
            rgba(0, 0, 0, var(--bg-darkness))
        ),
        linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: var(--primary-color);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 300;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    min-height: 100vh;
    padding: 120px 0;
    display: flex;
    align-items: center;
}

h1, h2, h3, h4 {
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 300;
}

h1 {
    font-size: 4rem;
    letter-spacing: -2px;
}

h2 {
    font-size: 3rem;
    font-weight: 300;
}

p {
    margin-bottom: 30px;
    color: var(--secondary-color);
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 0;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
}

.btn:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background-color: #0055aa;
    border-color: #0055aa;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 35px;
    width: auto;
    max-width: 150px;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

nav {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 50px;
    padding: 10px 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 400;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
    padding: 6px 0;
    position: relative;
}

nav ul li a.active {
    font-weight: 500;
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: var(--light-bg);
    backdrop-filter: blur(10px);
    text-align: center;
    padding-top: 140px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    border-radius: 0 0 40px 40px;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: -3px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--secondary-color);
}

/* About Section */
.about {
    background: var(--light-bg);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    padding: 100px 0;
    margin: 50px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    height: 500px;
    background: var(--card-bg);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7a7a7a;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.section-title {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: #7a7a7a;
}

/* Founder Section */
.founder {
    background: var(--light-bg);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    padding: 100px 0;
    margin: 50px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.founder-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.founder-image {
    flex: 1;
    height: 500px;
    background: var(--card-bg);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7a7a7a;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-text {
    flex: 1;
}

.founder-quote {
    font-style: italic;
    margin: 30px 0;
    padding-left: 20px;
    border-left: 3px solid var(--primary-color);
}

/* Services Section */
.services {
    background: var(--light-bg);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    padding: 100px 0;
    margin: 50px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    padding: 50px 30px;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.4);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 300;
}

/* Products Section */
.products {
    background: var(--light-bg);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    padding: 100px 0;
    margin: 50px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    padding: 50px 30px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.4);
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 300;
}

.product-tag {
    display: inline-block;
    padding: 8px 15px;
    background: rgba(44, 44, 44, 0.8);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 1px;
    border-radius: 4px;
    backdrop-filter: blur(10px);
}

/* Career Section */
.career {
    background: var(--light-bg);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    padding: 100px 0;
    margin: 50px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.career-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.career-card {
    padding: 40px 30px;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.career-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.4);
}

.career-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 300;
}

.career-meta {
    display: flex;
    margin-bottom: 15px;
    color: #7a7a7a;
    font-size: 0.9rem;
}

.career-meta span {
    margin-right: 20px;
}

/* Contact Section */
.contact {
    background: var(--light-bg);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    padding: 100px 0;
    margin: 50px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-content {
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-form {
    flex: 1;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 400;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    background: var(--card-bg);
    backdrop-filter: blur(5px);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-weight: 300;
    border-radius: 10px;
    color: var(--primary-color);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.5);
}

/* Footer */
footer {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 400;
    color: var(--primary-color);
}

.footer-column p {
    color: var(--secondary-color);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 300;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    backdrop-filter: blur(5px);
    border: 1px solid var(--border-color);
    color: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 50%;
}

.social-links a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: #7a7a7a;
    font-size: 0.9rem;
}

/* Long Content Styles */
.content-block {
    margin-bottom: 80px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.stat-number {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 10px;
}

.stat-label {
    color: #7a7a7a;
    font-size: 1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.team-member {
    text-align: center;
    padding: 40px 20px;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.member-name {
    font-size: 1.3rem;
    margin: 20px 0 10px;
}

.member-role {
    color: #7a7a7a;
    font-size: 1rem;
}

/* SAAS Features Section */
.saas-features {
    background: var(--light-bg);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    padding: 100px 0;
    margin: 50px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    padding: 50px 30px;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.4);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 300;
}

/* Technology Stack Section */
.tech-stack {
    background: var(--light-bg);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    padding: 100px 0;
    margin: 50px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
}

.tech-item {
    padding: 30px 20px;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.tech-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.4);
}

.tech-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.tech-item h4 {
    font-size: 1rem;
    margin-bottom: 0;
    font-weight: 400;
}

/* Internship Section */
.internship {
    background: var(--light-bg);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    padding: 100px 0;
    margin: 50px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.internship-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.internship-card {
    padding: 40px 30px;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.internship-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.4);
}

.internship-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 300;
}

/* JD Viewer */
#jd-viewer {
    display: none;
    margin: 30px 0;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #f9f9f9;
}