:root {
    --primary-red: #D32F2F;
    --primary-blue: #1A237E;
    --accent-blue: #3F51B5;
    --text-dark: #212121;
    --text-light: #757575;
    --bg-light: #F5F5F5;
    --white: #FFFFFF;
    --glass: rgba(255, 255, 255, 0.8);
    --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
header {
    background: var(--glass);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.contact-header {
    display: flex;
    gap: 1.5rem;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    padding-right: 1.5rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 1px;
    font-weight: 600;
}

.contact-no {
    font-size: 0.9rem;
    color: var(--primary-blue);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.contact-no:hover {
    color: var(--primary-red);
}

@media (max-width: 992px) {
    .contact-header {
        display: none;
    }
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.main-logo {
    height: 55px;
    width: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    display: block;
    transition: var(--transition);
}

.startup-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.startup-logo {
    height: 55px;
    /* Increased height */
    width: auto;
    opacity: 0.9;
    transition: var(--transition);
}

.separator {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 300;
    margin-top: -5px;
    /* visual adjustment */
}

.logo-container:hover .main-logo,
.logo-container:hover .startup-logo {
    transform: scale(1.05);
    opacity: 1;
}

@media (max-width: 768px) {
    .main-logo {
        height: 35px;
    }

    .startup-logo {
        height: 35px;
    }

    .separator {
        font-size: 1.2rem;
    }
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a:hover {
    color: var(--primary-red);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: 140px;
    position: relative;
    overflow: hidden;
}

#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.8), rgba(63, 81, 181, 0.6));
    z-index: -1;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-recognition {
    position: relative;
    width: 100%;
    background: var(--white);
    padding: 1rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 5;
    display: flex;
    flex-direction: row;
    /* Side by side on desktop */
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.hero-recognition p {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0;
    /* Remove bottom margin */
    font-weight: 600;
    text-shadow: none;
}

.recognition-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    /* Space between logos */
    flex-wrap: wrap;
}

.recognition-logos img {
    height: 60px;
    width: auto;
    opacity: 1;
    filter: none;
    /* Removed filter to show original logo colors */
    transition: var(--transition);
}

.recognition-logos img:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .hero-recognition {
        flex-direction: column;
        /* Stack on mobile */
        padding: 1.5rem 0;
        gap: 1rem;
    }

    .recognition-logos {
        gap: 1.5rem;
    }

    .recognition-logos img {
        height: 40px;
    }
}



/* Page Hero (for secondary pages) */
.page-hero {
    padding: 10rem 0 6rem;
    background-color: var(--primary-blue);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.9), rgba(63, 81, 181, 0.7));
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.8;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-red);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* USP Section */
.usp-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.usp-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.usp-card:hover {
    transform: translateY(-10px);
}

.usp-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

/* Impact Section */
.impact-section {
    padding: 6rem 0;
    background: var(--primary-blue);
    color: var(--white);
    text-align: center;
}

.impact-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
}

.impact-item h3 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.impact-item p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Products Grid */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    padding: 4rem 0;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    /* Added for badge positioning */
}

.badge-coming-soon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-red);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(211, 47, 47, 0.3);
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-img {
    height: 250px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

.product-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Founders Section */
.founders-section {
    padding: 6rem 0;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.founder-card {
    text-align: center;
}

.founder-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.founder-card h4 {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

/* Enquiry Form */
.enquiry-form {
    background: var(--bg-light);
    padding: 4rem 0;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
}

/* Footer */
footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.app-btn {
    display: inline-block;
    transition: var(--transition);
    opacity: 0.9;
}

.app-btn:hover {
    transform: translateY(-3px);
    opacity: 1;
    filter: brightness(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 1.2rem;
    }

    .logo img {
        height: 60px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .nav-links {
        display: none;
    }

    .nav-right .btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 2rem 0;
        gap: 0.8rem;
    }

    .product-card {
        margin-bottom: 0.5rem;
    }

    .product-img {
        height: 140px;
    }

    .product-info {
        padding: 0.8rem;
    }

    .product-info h3 {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }

    .product-info p {
        font-size: 0.75rem;
        margin-bottom: 0.8rem;
        line-height: 1.3;
    }

    .product-info .btn {
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
        width: 100%;
        text-align: center;
    }

    .enquire-link {
        display: none;
    }

    .form-wrapper {
        padding: 1.5rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .impact-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .usp-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .page-hero {
        padding: 8rem 0 4rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }
}