@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    --accent: #00b7fd;
    --dark: #24272b;
    --white: #ffffff;
    --light: #4a5a59
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(to bottom, var(--white), #e6fafa, var(--accent), var(--accent));
    color: var(--dark);
}

/* HEADER TOP */
.header-top {
    display: flex;
    flex-direction: row !important;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px 8px 24px;
    flex-wrap: nowrap; /* Force items to stay in one line */
    position: relative;
    gap: 20px; /* optional spacing */
}


.logo {
    height: 115px;
}

.logo:hover {
    content: url("Logo Light 4.png");
}

.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 16px;
    color: var(--dark);
    user-select: none;
    margin-right: 36px
}

.profile img {
    width: 77px;
    height: 77px;
}

.profile:hover span {
    color: var(--accent); /* Icy Blue */
}

.profile:hover img {
    content: url("Profile Hover New.png");
    width: 77px;
    height: 77px;
}

.profile:hover span {
    color: var(--accent);
}

.profile:hover img {
    content: url("Profile Hover New.png");
    width: 77px;
    height: 77px;
}

/* Responsive scaling for mobile */
@media (max-width: 600px) {
    .logo {
        height: 70px; /* Shrink logo */
    }

    .header-top {
        gap: 10px; /* Reduce gap for tighter fit */
    }
    .logo {
        height: 60px; /* Smaller logo */
    }
    .wordmark img {
        height: 30px;
        max-width: 100%;
    }
    .profile img {
        width: 45px;
        height: 45px; /* Smaller profile image */
    }
    .profile {
        font-size: 14px; /* Smaller text */
        margin-right: 0; /* Remove extra margin */
    }

    .profile:hover img {
        height: 70px;
    }

}

/* NAVIGATION BAR */
.navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly; /* Equal spacing between/around tabs */
    align-items: center;
    background-color: var(--dark);
    border-radius: 12px;
    margin: 20px auto;
    padding: 8px 16px;
    max-width: 90%;
    width: 100%;
    flex-wrap: nowrap; /* Prevent tabs from stacking */
}

.tab {
    flex: 1 1 0; /* Equal width for each link */
    min-width: 0; /* Prevent overflow forcing wrapping */
    text-align: center;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    white-space: nowrap; /* Prevent multi-line tab text */
}

.tab:hover {
    background-color: var(--accent);
}

.tab.active {
    background-color: var(--accent);
    color: var(--dark);
    font-weight: 500;
    pointer-events: none;
    cursor: default;
    user-select: none;
}

.logo, .wordmark img, .profile {
    flex-shrink: 0;
}

@media screen and (max-width: 1024px) {
    .header-top,
    .navbar {
        flex-direction: row !important; /* Force horizontal layout */
    }
}

/* HERO SECTION */
.hero {
    text-align: center;
    margin-top: 60px;
    padding: 0 24px;
}

.hero h1 {
    font-size: 60px;
    font-weight: 500;
    margin-bottom: 30px;
}

.hero p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

#typed-text {
    display: inline-block;
    position: relative;
}

#typed-text::after {
    content: '|';
    position: absolute;
    right: -22px;
    animation: blink 0.8s infinite;
    color: inherit;
}

#typed-text.done::after {
    content: '';
    animation: none;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* PRICING CARDS */
.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.card {
    background-color: var(--white);
    border: 1px solid var(--light);
    border-radius: 12px;
    padding: 24px;
    width: 280px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    text-align: center;
}

.card:hover {
    transform: translateY(-8px);
}

.card h2 {
    margin-bottom: 10px;
    font-size: 20px;
}

.card .price {
    font-size: 24px;
    font-weight: bold;
    color: var(--accent);
    margin-bottom: 16px;
}

.card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.card ul li {
    margin: 8px 0;
    font-size: 14px;
}


.card ul li strong {
    color: var(--accent);
    margin-right: 6px;
    font-weight: bold;
}



.card button {
    background-color: var(--accent);
    color: var(--dark);
    border: none;
    border-radius: 6px;
    padding: 10px 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.card button:hover {
    background-color: #62d1ff;);
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 2s ease-out, transform 2s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Toggle Layout */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 20px auto 40px auto;
    font-size: 16px;
    color: var(--dark);
}

/* Toggle Switch Styles */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    background-color: var(--light);
    border-radius: 30px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: background-color 0.3s ease;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: var(--white);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

input:checked + .slider {
    background-color: var(--accent);
}

input:checked + .slider:before {
    transform: translateX(24px);
}

/* Optional: Toggle Label Styling */
.toggle-label {
    font-weight: 500;
    user-select: none;
}


/* === FOOTER === */
.site-footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 40px 20px 20px;
    font-size: 14px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.footer-logo {
    max-width: 250px;
}

.footer-logo img {
    width: 120px;
    margin-bottom: 10px;
}

.footer-links,
.footer-contact {
    min-width: 200px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--accent);
}

.footer-links a {
    display: block;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--light);
    color: var(--light);
    margin-top: 20px;
}


.product-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 20px 24px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.product-section h2 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 10px;
}

.product-section h3 {
    font-size: 18px;
    color: var(--accent);
    margin-bottom: 12px;
}

.product-section p {
    font-size: 14px;
    margin-bottom: 12px;
}

.product-section ul {
    margin-left: 20px;
    margin-bottom: 12px;
}

.product-section ul li {
    font-size: 14px;
    margin-bottom: 6px;
}

/* Fade-in animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 2s ease-out, transform 2s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-section {
    max-width: 800px;
    margin: 60px auto;
    padding: 24px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.about-section h2 {
    font-size: 22px;
    color: var(--accent);
    margin-bottom: 10px;
}

.about-section p {
    font-size: 14px;
    margin-bottom: 16px;
    color: var(--dark);
}

/* White background for Purpose */
.light-bg {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    padding: 40px 24px;
    max-width: 800px;
    margin: 60px auto;
    text-align: center;
}

/* Dark side-by-side section */
.about-duo {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 60px 20px;
    border-radius: 12px;
    margin: 60px auto;
    color: var(--white);
    background-color: var(--dark);
    max-width: 1100px;
}

.mission-vision-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin: 60px auto;
    padding: 0 20px;
    max-width: 1100px;
}

.mv-card {
    background-color: var(--dark);
    color: var(--white);
    flex: 1 1 400px;
    max-width: 500px;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    text-align: left;
}

.mv-card h2 {
    color: var(--accent);
    margin-bottom: 16px;
}

.mv-card p {
    font-size: 15px;
    line-height: 1.6;
}


.half-section {
    flex: 1 1 400px;
    min-width: 300px;
    max-width: 500px;
}

.half-section h2 {
    color: var(--accent);
    margin-bottom: 12px;
}

.half-section p {
    line-height: 1.6;
    font-size: 15px;
}

/* Reuse existing fade-in animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 2s ease-out, transform 2s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.footer-contact a {
    color: var(--white); /* or var(--accent) if you'd prefer */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--accent);
}

.product-grid {
    max-width: 1100px;
    margin: 60px auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
}

.product-card {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    padding: 24px;
    width: 100%;
    max-width: 500px;
    transition: all 0.8s ease;
    text-decoration: none;
    display: block;
}

.product-card h2 {
    font-size: 20px;
    color: var(--accent);
    margin-bottom: 10px;
}

.product-card p {
    font-size: 14px;
    color: var(--dark);
}

/* Hover effect */
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Left/Right alignment */
.product-card.left {
    align-self: flex-start;
}

.product-card.right {
    align-self: flex-end;
}

.about-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 60px auto;
    gap: 40px;
    padding: 40px 20px;
    border-radius: 12px;
}

.about-grid.reverse {
    flex-direction: row-reverse;
}

.about-grid .about-text {
    flex: 1;
    min-width: 300px;
}

.about-grid .about-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.about-grid img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.about-centered {
    max-width: 700px;
    margin: 80px auto;
    text-align: center;
    padding: 40px 20px;
}

.about-centered.dark {
    background-color: var(--dark);
    color: var(--white);
    border-radius: 12px;
}

.about-centered.dark h2 {
    color: var(--accent);
}

.about-centered p {
    font-size: 16px;
    line-height: 1.6;
}

/* Fade-in animation reused */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 2s ease-out, transform 2s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px 8px 24px;
    flex-wrap: wrap;
    position: relative;
}

.wordmark {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    pointer-events: none;
}

.wordmark img {
    max-height: 200px;
    max-width: 90vw;
    height: auto;
    width: auto;
    display: block;
    user-select: none;
    pointer-events: none;
    margin-top: 2px;
    margin-bottom: 2px;
}

.landing-hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(to bottom, #f7fdfd, #dff6f9);
    font-family: 'Helvetica', sans-serif;
}

.landing-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--dark, #111);
}

.selector-label {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: #444;
}

.role-toggle {
    display: inline-flex;
    border-radius: 30px;
    background-color: #e5e5e5;
    overflow: hidden;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.toggle-btn {
    padding: 12px 28px;
    border: none;
    background: transparent;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    color: #333;
    transition: background 0.3s, color 0.3s;
}

.toggle-btn.active {
    background-color: #7df0f2;
    color: #000;
    border-radius: 30px;
}

.description {
    font-size: 1.1rem;
    font-weight: 400;
    color: #333;
    max-width: 500px;
    margin: 0 auto;
}

.contact-form-section {
    background-color: #f9f9f9;
    padding: 40px 24px;
    text-align: center;
}

.contact-form-section h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.contact-form-section p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.contact-form input {
    flex: 1;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 100%;
}

.contact-form button {
    padding: 12px 24px;
    font-size: 16px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 12px;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #333;
}

.contact-form select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f8f8f8;
    font-size: 1rem;
    color: #333;
    font-family: inherit;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='10' viewBox='0 0 14 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23999' stroke-width='2' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    transition: border 0.3s ease, background-color 0.3s ease;
}

.contact-form select:focus {
    outline: none;
    border-color: #333;
    background-color: #fff;
}

.typed-text-small {
    font-size: 2.5rem;
    font-weight: 600;
}

.contact-form-section,
.contact-form {
    background: transparent;
    box-shadow: none;
}

.oval-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.oval-button {
    display: inline-block;
    text-align: center;
    width: 140px; /* Fixed width for consistency */
    padding: 10px 0;
    border-radius: 999px;
    border: 2px solid #8ee2e2;
    background-color: #f8ffff;
    box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
}

.oval-button.selected,
.oval-button:hover {
    background-color: #8ee2e2;
    color: #000;
}

/*SCREEN SIZE ADAPTABILITY*/

/* TABLETS (under 1024px) */
@media screen and (max-width: 1024px) {
    .header-top {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .wordmark {
        position: static;
        transform: none;
        margin: 16px 0;
    }

    .profile {
        margin-right: 0;
    }

    .navbar {
        flex-direction: column;
        gap: 10px;
    }

    .about-grid {
        flex-direction: column;
        text-align: center;
    }

    .mv-card {
        max-width: 100%;
    }

    .product-card.left,
    .product-card.right {
        align-self: center;
    }

    .mission-vision-row {
        flex-direction: column;
        align-items: center;
    }

    .contact-form .form-row {
        flex-direction: column;
    }

    .contact-form input,
    .contact-form select {
        font-size: 15px;
    }
}

/* PHONES (under 600px) */
@media screen and (max-width: 600px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero p,
    .product-section p,
    .about-centered p {
        font-size: 14px;
    }

    .navbar {
        flex-direction: column;
        padding: 8px;
    }

    .logo {
        height: 40px;
    }

    .profile img {
        width: 27px;
        height: 27px;
    }

    .tab {
        padding: 8px 10px;
        font-size: 14px;
    }

    .mv-card,
    .half-section,
    .about-section,
    .light-bg,
    .product-section {
        padding: 20px;
    }

    .contact-form-section {
        padding: 30px 16px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form button {
        font-size: 15px;
        padding: 10px;
    }

}

@media screen and (max-width: 480px) {
    .wordmark img {
        max-height: 140px;
        margin-top: 2px;
        margin-bottom: 2px;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    --accent: #00b7fd;
    --dark: #24272b;
    --white: #ffffff;
    --light: #4a5a59
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(to bottom, var(--white), #e6fafa, var(--accent), var(--accent));
    color: var(--dark);
}

/* HEADER TOP */
.header-top {
    display: flex;
    flex-direction: row !important;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px 8px 24px;
    flex-wrap: nowrap; /* Force items to stay in one line */
    position: relative;
    gap: 20px; /* optional spacing */
}


.logo {
    height: 115px;
}

.logo:hover {
    content: url("Logo Light 4.png");
}

.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 16px;
    color: var(--dark);
    user-select: none;
    margin-right: 36px
}

.profile img {
    width: 77px;
    height: 77px;
}

.profile:hover span {
    color: var(--accent); /* Icy Blue */
}

.profile:hover img {
    content: url("Profile Hover New.png");
    width: 77px;
    height: 77px;
}

.profile:hover span {
    color: var(--accent);
}

.profile:hover img {
    content: url("Profile Hover New.png");
    width: 77px;
    height: 77px;
}

/* Responsive scaling for mobile */
@media (max-width: 600px) {
    .logo {
        height: 70px; /* Shrink logo */
    }

    .header-top {
        gap: 10px; /* Reduce gap for tighter fit */
    }
    .logo {
        height: 60px; /* Smaller logo */
    }
    .wordmark img {
        height: 30px;
        max-width: 100%;
    }
    .profile img {
        width: 45px;
        height: 45px; /* Smaller profile image */
    }
    .profile {
        font-size: 14px; /* Smaller text */
        margin-right: 0; /* Remove extra margin */
    }

    .profile:hover img {
        height: 70px;
    }

}

/* NAVIGATION BAR */
.navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly; /* Equal spacing between/around tabs */
    align-items: center;
    background-color: var(--dark);
    border-radius: 12px;
    margin: 20px auto;
    padding: 8px 16px;
    max-width: 90%;
    width: 100%;
    flex-wrap: nowrap; /* Prevent tabs from stacking */
}

.tab {
    flex: 1 1 0; /* Equal width for each link */
    min-width: 0; /* Prevent overflow forcing wrapping */
    text-align: center;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    white-space: nowrap; /* Prevent multi-line tab text */
}

.tab:hover {
    background-color: var(--accent);
}

.tab.active {
    background-color: var(--accent);
    color: var(--dark);
    font-weight: 500;
    pointer-events: none;
    cursor: default;
    user-select: none;
}

.logo, .wordmark img, .profile {
    flex-shrink: 0;
}

@media screen and (max-width: 1024px) {
    .header-top,
    .navbar {
        flex-direction: row !important; /* Force horizontal layout */
    }
}

/* HERO SECTION */
.hero {
    text-align: center;
    margin-top: 60px;
    padding: 0 24px;
}

.hero h1 {
    font-size: 60px;
    font-weight: 500;
    margin-bottom: 30px;
}

.hero p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

#typed-text {
    display: inline-block;
    position: relative;
}

#typed-text::after {
    content: '|';
    position: absolute;
    right: -22px;
    animation: blink 0.8s infinite;
    color: inherit;
}

#typed-text.done::after {
    content: '';
    animation: none;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* PRICING CARDS */
.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.card {
    background-color: var(--white);
    border: 1px solid var(--light);
    border-radius: 12px;
    padding: 24px;
    width: 280px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    text-align: center;
}

.card:hover {
    transform: translateY(-8px);
}

.card h2 {
    margin-bottom: 10px;
    font-size: 20px;
}

.card .price {
    font-size: 24px;
    font-weight: bold;
    color: var(--accent);
    margin-bottom: 16px;
}

.card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.card ul li {
    margin: 8px 0;
    font-size: 14px;
}


.card ul li strong {
    color: var(--accent);
    margin-right: 6px;
    font-weight: bold;
}



.card button {
    background-color: var(--accent);
    color: var(--dark);
    border: none;
    border-radius: 6px;
    padding: 10px 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.card button:hover {
    background-color: #62d1ff;);
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 2s ease-out, transform 2s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Toggle Layout */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 20px auto 40px auto;
    font-size: 16px;
    color: var(--dark);
}

/* Toggle Switch Styles */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    background-color: var(--light);
    border-radius: 30px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: background-color 0.3s ease;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: var(--white);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

input:checked + .slider {
    background-color: var(--accent);
}

input:checked + .slider:before {
    transform: translateX(24px);
}

/* Optional: Toggle Label Styling */
.toggle-label {
    font-weight: 500;
    user-select: none;
}


/* === FOOTER === */
.site-footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 40px 20px 20px;
    font-size: 14px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.footer-logo {
    max-width: 250px;
}

.footer-logo img {
    width: 120px;
    margin-bottom: 10px;
}

.footer-links,
.footer-contact {
    min-width: 200px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--accent);
}

.footer-links a {
    display: block;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--light);
    color: var(--light);
    margin-top: 20px;
}


.product-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 20px 24px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.product-section h2 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 10px;
}

.product-section h3 {
    font-size: 18px;
    color: var(--accent);
    margin-bottom: 12px;
}

.product-section p {
    font-size: 14px;
    margin-bottom: 12px;
}

.product-section ul {
    margin-left: 20px;
    margin-bottom: 12px;
}

.product-section ul li {
    font-size: 14px;
    margin-bottom: 6px;
}

/* Fade-in animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 2s ease-out, transform 2s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-section {
    max-width: 800px;
    margin: 60px auto;
    padding: 24px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.about-section h2 {
    font-size: 22px;
    color: var(--accent);
    margin-bottom: 10px;
}

.about-section p {
    font-size: 14px;
    margin-bottom: 16px;
    color: var(--dark);
}

/* White background for Purpose */
.light-bg {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    padding: 40px 24px;
    max-width: 800px;
    margin: 60px auto;
    text-align: center;
}

/* Dark side-by-side section */
.about-duo {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 60px 20px;
    border-radius: 12px;
    margin: 60px auto;
    color: var(--white);
    background-color: var(--dark);
    max-width: 1100px;
}

.mission-vision-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin: 60px auto;
    padding: 0 20px;
    max-width: 1100px;
}

.mv-card {
    background-color: var(--dark);
    color: var(--white);
    flex: 1 1 400px;
    max-width: 500px;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    text-align: left;
}

.mv-card h2 {
    color: var(--accent);
    margin-bottom: 16px;
}

.mv-card p {
    font-size: 15px;
    line-height: 1.6;
}


.half-section {
    flex: 1 1 400px;
    min-width: 300px;
    max-width: 500px;
}

.half-section h2 {
    color: var(--accent);
    margin-bottom: 12px;
}

.half-section p {
    line-height: 1.6;
    font-size: 15px;
}

/* Reuse existing fade-in animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 2s ease-out, transform 2s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.footer-contact a {
    color: var(--white); /* or var(--accent) if you'd prefer */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--accent);
}

.product-grid {
    max-width: 1100px;
    margin: 60px auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
}

.product-card {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    padding: 24px;
    width: 100%;
    max-width: 500px;
    transition: all 0.8s ease;
    text-decoration: none;
    display: block;
}

.product-card h2 {
    font-size: 20px;
    color: var(--accent);
    margin-bottom: 10px;
}

.product-card p {
    font-size: 14px;
    color: var(--dark);
}

/* Hover effect */
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Left/Right alignment */
.product-card.left {
    align-self: flex-start;
}

.product-card.right {
    align-self: flex-end;
}

.about-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 60px auto;
    gap: 40px;
    padding: 40px 20px;
    border-radius: 12px;
}

.about-grid.reverse {
    flex-direction: row-reverse;
}

.about-grid .about-text {
    flex: 1;
    min-width: 300px;
}

.about-grid .about-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.about-grid img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.about-centered {
    max-width: 700px;
    margin: 80px auto;
    text-align: center;
    padding: 40px 20px;
}

.about-centered.dark {
    background-color: var(--dark);
    color: var(--white);
    border-radius: 12px;
}

.about-centered.dark h2 {
    color: var(--accent);
}

.about-centered p {
    font-size: 16px;
    line-height: 1.6;
}

/* Fade-in animation reused */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 2s ease-out, transform 2s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px 8px 24px;
    flex-wrap: wrap;
    position: relative;
}

.wordmark {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    pointer-events: none;
}

.wordmark img {
    max-height: 200px;
    max-width: 90vw;
    height: auto;
    width: auto;
    display: block;
    user-select: none;
    pointer-events: none;
    margin-top: 2px;
    margin-bottom: 2px;
}

.landing-hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(to bottom, #f7fdfd, #dff6f9);
    font-family: 'Helvetica', sans-serif;
}

.landing-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--dark, #111);
}

.selector-label {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: #444;
}

.role-toggle {
    display: inline-flex;
    border-radius: 30px;
    background-color: #e5e5e5;
    overflow: hidden;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.toggle-btn {
    padding: 12px 28px;
    border: none;
    background: transparent;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    color: #333;
    transition: background 0.3s, color 0.3s;
}

.toggle-btn.active {
    background-color: #7df0f2;
    color: #000;
    border-radius: 30px;
}

.description {
    font-size: 1.1rem;
    font-weight: 400;
    color: #333;
    max-width: 500px;
    margin: 0 auto;
}

.contact-form-section {
    background-color: #f9f9f9;
    padding: 40px 24px;
    text-align: center;
}

.contact-form-section h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.contact-form-section p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.contact-form input {
    flex: 1;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 100%;
}

.contact-form button {
    padding: 12px 24px;
    font-size: 16px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 12px;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #333;
}

.contact-form select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f8f8f8;
    font-size: 1rem;
    color: #333;
    font-family: inherit;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='10' viewBox='0 0 14 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23999' stroke-width='2' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    transition: border 0.3s ease, background-color 0.3s ease;
}

.contact-form select:focus {
    outline: none;
    border-color: #333;
    background-color: #fff;
}

.typed-text-small {
    font-size: 2.5rem;
    font-weight: 600;
}

.contact-form-section,
.contact-form {
    background: transparent;
    box-shadow: none;
}

.oval-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.oval-button {
    display: inline-block;
    text-align: center;
    width: 140px; /* Fixed width for consistency */
    padding: 10px 0;
    border-radius: 999px;
    border: 2px solid #8ee2e2;
    background-color: #f8ffff;
    box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
}

.oval-button.selected,
.oval-button:hover {
    background-color: #8ee2e2;
    color: #000;
}

/*SCREEN SIZE ADAPTABILITY*/

/* TABLETS (under 1024px) */
@media screen and (max-width: 1024px) {
    .header-top {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .wordmark {
        position: static;
        transform: none;
        margin: 16px 0;
    }

    .profile {
        margin-right: 0;
    }

    .navbar {
        flex-direction: column;
        gap: 10px;
    }

    .about-grid {
        flex-direction: column;
        text-align: center;
    }

    .mv-card {
        max-width: 100%;
    }

    .product-card.left,
    .product-card.right {
        align-self: center;
    }

    .mission-vision-row {
        flex-direction: column;
        align-items: center;
    }

    .contact-form .form-row {
        flex-direction: column;
    }

    .contact-form input,
    .contact-form select {
        font-size: 15px;
    }
}

/* PHONES (under 600px) */
@media screen and (max-width: 600px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero p,
    .product-section p,
    .about-centered p {
        font-size: 14px;
    }

    .navbar {
        flex-direction: column;
        padding: 8px;
    }

    .logo {
        height: 40px;
    }

    .profile img {
        width: 27px;
        height: 27px;
    }

    .tab {
        padding: 8px 10px;
        font-size: 14px;
    }

    .mv-card,
    .half-section,
    .about-section,
    .light-bg,
    .product-section {
        padding: 20px;
    }

    .contact-form-section {
        padding: 30px 16px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form button {
        font-size: 15px;
        padding: 10px;
    }

}

@media screen and (max-width: 480px) {
    .wordmark img {
        max-height: 140px;
        margin-top: 2px;
        margin-bottom: 2px;
    }
}

