body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f7f7f9;
    color: #1a1a1a;
}

html {
    scroll-behavior: smooth;
}

/* ========================= */
/* FROSTED NAVBAR (FINAL FIX)*/
/* ========================= */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    position: sticky;
    top: 0;
    z-index: 100;

    /* Frosted Glass Effect */
    /*background: rgba(255, 255, 255, 0.55);*/
    background: rgba(242, 241, 237, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    /* Remove default border */
    border-bottom: none;

    /* Light shadow */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Gradient Accent Bar */
header::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #ff53ff, #6c63ff);
}

/* Logo */
/*header .logo {
    font-size: 28px;
    font-weight: 700;
    color: #111;
}*/
.logo img {
    height: 50px;
    /* Adjust size */
    width: auto;
    /* Maintain proportions */
    object-fit: contain;
    cursor: pointer;
    /* Optional: behaves like a clickable brand */
}

/* Nav Links */
nav a {
    margin: 0 36px;
    text-decoration: none;
    color: #222;
    font-weight: 600;
    font-size: 24px;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

/* Hover Underline */
nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #ff53ff, #6c63ff);
    border-radius: 2px;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: #000;
}

.hero {
    padding: 120px 60px;
    text-align: center;
    background: linear-gradient(135deg, #e8f0ff, #ffffff);
}


.hero h1 {
    font-size: 52px;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    width: 60%;
    margin: 0 auto 40px;
    color: #555;
}


.cta-button {
    padding: 14px 36px;
    background: black;
    color: white;
    border-radius: 8px;
    font-size: 18px;
    text-decoration: none;
    transition: background 0.2s ease;
}


.cta-button:hover {
    background: #333;
}

/*
.hero-graphic {
    position: relative;
    margin-top: 80px;
    width: 100%;
    height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #eef3ff;
    border-radius: 20px;
    font-size: 20px;
    color: #555;
}


.tag {
    position: absolute;
    background: white;
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    font-weight: 600;
    color: #333;
}


.tag-1 {
    top: -20px;
    left: 15%;
}

.tag-2 {
    top: 40%;
    left: -40px;
}

.tag-3 {
    top: 40%;
    right: -40px;
}

.tag-4 {
    bottom: -20px;
    right: 20%;
}

*/
/*
.hero-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 80px auto 0;
}

.hero-graphic {
    position: relative;
    margin-top: 80px;
    width: 100%;
    max-width: 1200px;
    height: auto;
    background: #eef3ff;
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

.hero-graphic .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.tag {
    position: absolute;
    background: white;
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    font-weight: 600;
}

.tag-1 {
    top: -10px;
    left: 80%;
    transform: translateX(-50%);
}

.tag-2 {
    top: 30%;
    left: -10px;
    transform: translateY(-50%);
}

.tag-3 {
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
}

.tag-4 {
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
} */

/* Wrapper that positions the image + allows tags to float outside */
.hero-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 80px auto 0;
    /* spacing from hero text */
}

/* Image container (rounded, clipped, holds only the image) */
.hero-graphic {
    position: relative;
    width: 100%;
    height: auto;
    background: #eef3ff;
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    /* keeps image rounded but NOT tags */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hero image fills its container fully */
.hero-graphic .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Floating category tags */
.tag {
    position: absolute;
    background: #ffffff;
    color: #333333;
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    font-size: 16px;
    font-weight: 600;
    z-index: 10;
    /* ensures tags stay above image */
}

/* Top-right-ish */
.tag-1 {
    top: -10px;
    right: 100px;
    background-color: #000;
    color: #fff;
}

/* Left-mid */
.tag-2 {
    top: 40%;
    left: -20px;
    background-color: #000;
    color: #fff;
    transform: translateY(-50%);
}

/* Right-mid */
.tag-3 {
    top: 40%;
    right: -20px;
    background-color: #000;
    color: #fff;
    transform: translateY(-50%);
}

/* Bottom-center */
.tag-4 {
    bottom: -10px;
    left: 50%;
    background-color: #000;
    color: #fff;
    transform: translateX(-50%);
}

.features {
    padding: 100px 60px;
    display: flex;
    flex-direction: column;
    gap: 120px;
    /* spacing between blocks */
}

.feature {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.feature-text {
    flex: 1;
    min-width: 300px;
}

.feature-img {
    flex: 1;
    min-width: 300px;
    background: #e8eefe;
    border-radius: 20px;
    padding: 20px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* clean scaling */
    border-radius: 12px;
    /* soft rounding */
}

.feature:nth-child(even) {
    flex-direction: row-reverse;
}

footer {
    text-align: center;
    padding: 40px;
    background: #fafafa;
    color: #777;
    font-size: 14px;
    border-top: 1px solid #eee;
}

/* TIMELINE SECTION */

.timeline-section {
    padding: 100px 60px;
    background: #f4f4f7;
    margin-top: 40px;
    text-align: center;
}

.timeline-section h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.timeline-subtext {
    font-size: 18px;
    color: #555;
    margin-bottom: 60px;
}

.timeline-container {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.timeline-label {
    width: 200px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.timeline-bar {
    flex: 1;
    height: 14px;
    background: #e3e6ef;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.timeline-progress {
    height: 100%;
    background: linear-gradient(90deg, #6b8cff, #a56bff);
    border-radius: 8px;
    transition: width 0.6s ease;
}

.timeline-percent {
    width: 70px;
    text-align: right;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-left: 20px;
}

footer {
    text-align: center;
    padding: 40px;
    background: #fafafa;
    color: #777;
    font-size: 14px;
    border-top: 1px solid #eee;
}

/* =============================== */
/* CONTACT / DEMO SECTION */
/* =============================== */

.contact-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f7eaff, #e9f1ff, #ffffff);
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-card {
    width: 70%;
    max-width: 900px;
    background: white;
    border-radius: 22px;
    padding: 60px;
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.08);
    border-top: 6px solid transparent;
    border-image: linear-gradient(90deg, #ff79e6, #7f7fff) 1;
}

.contact-card h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-subtext {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* ROWS FOR INPUT FIELDS */
.form-row {
    display: flex;
    gap: 20px;
}

.form-row input {
    flex: 1;
}

/* INPUTS */
.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 16px;
    background: #fafafa;
    transition: 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: #8a68ff;
    outline: none;
    background: #ffffff;
    box-shadow: 0 0 0px 3px rgba(138, 104, 255, 0.2);
}

/* TEXTAREA */
.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

/* SUBMIT BUTTON */
.contact-submit {
    padding: 14px 30px;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    margin-top: 10px;
    background: linear-gradient(90deg, #7f7fff, #ff79e6);
    transition: 0.2s ease;
}

.contact-submit:hover {
    opacity: 0.85;
}

/* =============================== */
/* TESTIMONIALS SECTION */
/* =============================== */

.testimonials-section {
    padding: 120px 60px;
    background: #ffffff;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.testimonials-subtext {
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

.testimonials-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

/* Individual Card */
.testimonial-card {
    background: #f8faff;
    border-radius: 20px;
    padding: 30px 30px 40px 30px;
    width: 30%;
    min-width: 280px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover Effect */
.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.15);
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #7f7fff, #ff79e6);
    color: white;
    font-size: 28px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.testimonial-card h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.university {
    font-size: 16px;
    color: #7a7a7a;
    font-weight: 600;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}

/* =============================== */
/* PIPELINE WORKFLOW SECTION */
/* =============================== */

.workflow-section {
    padding: 120px 60px;
    background: #f7f7f9;
    text-align: center;
}

.workflow-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.workflow-subtext {
    font-size: 18px;
    color: #666;
    margin-bottom: 70px;
}

/* ---- Pipeline Layout ---- */

.workflow-pipeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 1300px;
    margin: 0 auto;
    flex-wrap: nowrap;
}

.pipeline-step {
    width: 260px;
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 18px;
    box-shadow: 0px 10px 28px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pipeline-step:hover {
    transform: translateY(-6px);
    box-shadow: 0px 14px 34px rgba(0, 0, 0, 0.12);
}

/* ---- Number Circles ---- */

.circle {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7f7fff, #ff79e6);
    color: white;
    font-size: 28px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 6px 20px rgba(127, 127, 255, 0.4);
}

/* ---- Titles ---- */

.pipeline-step h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.pipeline-step p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

/* ---- Arrows ---- */

.pipeline-arrow {
    font-size: 40px;
    font-weight: bold;
    color: #bbb;
    margin-bottom: 40px;
}

/* ---- Responsive Behavior ---- */

@media (max-width: 1100px) {
    .workflow-pipeline {
        flex-direction: column;
        gap: 40px;
    }

    .pipeline-arrow {
        transform: rotate(90deg);
        margin: 0;
    }
}

/* =============================== */
/* PARTNERS / UNIVERSITIES SECTION */
/* =============================== */

.partners-section {
    padding: 100px 60px;
    text-align: center;
    background: #ffffff;
}

/* --- NEW CARD IMAGE ABOVE THE HEADING --- */
.partners-image-wrapper {
    width: 100%;
    max-width: 800px;
    /* adjust size */
    margin: 0 auto 50px;
    /* spacing below image */
}

.partners-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    /* matches your brand look */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    object-fit: cover;
}

/* Heading */
.partners-section h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}

.partners-subtext {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

/* Logos grid */
.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-logo {
    font-size: 22px;
    font-weight: 600;
    padding: 18px 28px;
    border-radius: 14px;
    background: #f4f4f7;
    color: #555;
    min-width: 140px;
    text-align: center;
    transition: 0.2s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

/* Hover effect */
.partner-logo:hover {
    transform: translateY(-4px);
    background: #eef0ff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}