/* ================= GLOBAL ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}
/**{
    outline: 1px solid red !important;
}*/

html, body {
    overflow-x: hidden;
    width: 100%;
}
body {
    font-family: 'Inter', sans-serif;
    color: #0a2540;
    line-height: 1.6;
    font-size: 16px;
}

h1, h2, h3, h4 {
    font-weight: 700;
    letter-spacing: -0.5px;
}

h1 {
    font-size: 64px;
}

h2 {
    font-size: 42px;
}

h3 {
    font-size: 24px;
}

p {
    font-size: 16px;
    color: #e0f2f1;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ================= HEADER ================= */
.header {
    background: #fff;
    padding: 0; /* remove extra padding */
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 999;
    /* let content define height */
}

.header-inner {
    display: flex;
    align-items: center; /* vertically centers logo and nav */
    justify-content: space-between;
    padding: 15px 20px;
    width: 100%;
    max-width: 100%;
}

.logo img {
    height: 100px; /* bigger logo */
    width: auto;
    margin-left: 5px;
}

/* Sub Header */
.sub-header {
    background: black; /* light background */
    padding: 10px 0;
    text-align: center;
    font-size: 16px;
    font-color: white;
    color: #2F9E9A;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.sub-header p {
    margin: 0;
}

/* ================= NAVIGATION ================= */
.nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: #2F9E9A;
    font-weight: 500;
    font-size: 18px;

    padding: 12px 8px;
    transition: color 0.3s;
}

.nav a:hover {
    color: black;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none; /* hide by default always */
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
    min-width: 200px;
    z-index: 1000;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: #2F9E9A;
}

.dropdown-menu li a:hover {
    background: #f0f4ff;
}

/* Desktop hover dropdown */
@media (min-width: 993px) {
    .dropdown:hover .dropdown-menu {
            display: block; /* show only on hover */
        }

    .dropdown-menu {
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        border-radius: 8px;
    }
}
/* Mobile dropdown (toggle by JS) */
@media (max-width: 992px) {
    .dropdown-menu {
        position: relative;
        flex-direction: column;
        box-shadow: none;
        border-radius: 0;
    }

    .dropdown.active .dropdown-menu {
        display: block; /* show when toggled */
    }
}

/* ================= HEADER BUTTON ================= */
.header-btn .primary-btn {
    background: #2F9E9A;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
    margin-right: 15px;
}
.header-btn .primary-btn:hover {
    background: #0050aa;
}

/* ================= MOBILE MENU ================= */
.menu-toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
}

/* Mobile styles */
@media (max-width: 992px) {
    .nav ul {
        display: none; /* hidden by default */
        flex-direction: column;
        gap: 0;
        background: #fff;
        position: absolute;
        top: 50px;
        left: 0;
        width: 100%;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        padding: 20px 0;
        z-index: 100;
    }

    .nav ul.show {
        display: flex; /* toggled by JS */
    }

    .nav ul li {
        text-align: center;
        margin-bottom: 10px;
    }

    .menu-toggle {
        display: block;
    }

    .header-btn {
        display: none;
    }
}

/* ================= HERO SLIDER ================= */
.hero-slider {
    position: relative;
    height: 85vh;
    overflow: hidden;
    color: white;
}

.slides {
    position: absolute;
    inset: 0;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    top: 50%;
    transform: translateY(-50%);
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
}

.hero-content p {
    font-size: 22px;
    font-weight: 400;
    color: #e0f2f1;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 30px;
    }
}

.hero-content .primary-btn {
    background: #2F9E9A;
    color: white;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.3s;
}

.hero-content .primary-btn:hover {
    background: #0050aa;
}

.results {
    padding: 80px 0;
    background: #0a2540;
    text-align: center;
    position: relative;
}

.results::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 300px;
    background: radial-gradient(circle, rgba(47,158,154,0.1) 0%, transparent 70%);
    z-index: 0;
}

.results .section-title {
    font-size: 36px;
    color: white;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.result-box {
    background: transparent; /* no box */
    padding: 0;              /* remove extra padding */
    border-radius: 0;         /* no rounded corners */
    box-shadow: none;         /* remove shadow */
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
    position: relative;
}

.result-box.visible {
    opacity: 1;
    transform: translateY(0);
}

.result-box h3 {
    font-size: 50px;
    font-weight: 800;
    color: #2F9E9A;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.result-box h3 .symbol {
    font-size: 28px;
    margin-left: 5px;
    line-height: 1;
}
.result-box h3 .number {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.result-box p {
    font-size: 16px;
    color: #f4f7fb;
    position: relative;
    z-index: 1;
}

/* Optional hover effect */
.result-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 40px rgba(0,0,0,0.1);
    transition: all 0.5s ease-out;
}

/* Responsive */
@media(max-width:1024px){
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media(max-width:600px){
    .results-grid {
        grid-template-columns: 1fr;
    }
}

.who-serve {
    padding: 40px 0px ;
    background: #f4f7fb;
}

.serve-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
    gap: 50px;
}

.serve-card {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.serve-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

/* Title always visible */
.title-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 2;
    transition: transform 0.4s ease, opacity 0.8s ease;
}

.title-bg h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

.serve-card:hover .title-bg {
    transform: translateY(-100%);
    opacity: 0;
}

.serve-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65); /* dark overlay */
    color: #fff;
    opacity: 0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: opacity 0.4s ease;
    z-index: 1; /* behind title */
}

.serve-card:hover .serve-overlay {
    opacity: 1;
}

.serve-overlay p {
    font-size: 16px;
    line-height: 1.6;
}

.tick-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tick-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 8px;
    line-height: 1.5;
    text-align: left;
}

.tick-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #2ecc71; /* green tick */
    font-weight: bold;
}


/* Responsive */
@media (max-width: 992px) {
    .serve-grid {
        grid-template-columns: 1fr;
    }
}

/* ================= SECTIONS ================= */
.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 44px;
    color: #2F9E9A;
    font-weight: 700;
}

.services,
.about,
.insights,
.stats,
.cta {
    padding: 80px 0;
}

/* ================= SERVICES SECTION ================= */
.services {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f4f7fb, #eef3f9);
    position: relative;
    overflow: hidden;
}

/* subtle glow */
.services::before {
    content: "";
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 400px;
    background: radial-gradient(circle, rgba(47,158,154,0.12), transparent 70%);
    z-index: 0;
}

/* Section Title */
.services .section-title {
    font-size: 48px;
    font-weight: 800;
    color: #0a2540;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.services .section-title::after {
    content: "";
    width: 70px;
    height: 4px;
    background: #2F9E9A;
    display: block;
    margin: 15px auto 0;
    border-radius: 10px;
}

/* Intro */
.services .section-intro {
    text-align: center;
    font-size: 20px;
    color: #425466;
    max-width: 750px;
    margin: 0 auto 70px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* SERVICE ROW */
.services .service-row {
    display: flex;
    align-items: center;
    margin-bottom: 70px;
    background: rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.9);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* gradient border glow */
.services .service-row::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(120deg, #2F9E9A, transparent, #2F9E9A);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    pointer-events: none;
    opacity: 0.3;
}

.services .service-row:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 70px rgba(0,0,0,0.12);
}

/* reverse */
.services .service-row.reverse {
    flex-direction: row-reverse;
}

/* IMAGE */
.services .service-image {
    width: 45%;
    min-height: 320px;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    position: relative;
}

.services .service-row:hover .service-image {
    transform: scale(1.08);
}

/* overlay */
.services .service-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,37,64,0.8), transparent);
}

/* TEXT */
.services .service-text {
    width: 55%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* badge */
.services .service-badge {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #2F9E9A;
    background: rgba(47,158,154,0.1);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* heading */
.services .service-text h3 {
    font-size: 30px;
    font-weight: 800;
    color: #0a2540;
    margin-bottom: 15px;
}

/* paragraph */
.services .service-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #425466;
    margin-bottom: 20px;
}

/* CTA */
.services .learn-more {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #2F9E9A;
    text-decoration: none;
    position: relative;
    display: inline-block;
    transition: 0.3s;
}

.services .learn-more::after {
    content: "→";
    margin-left: 8px;
    transition: margin 0.3s ease;
}

.services .learn-more:hover::after {
    margin-left: 14px;
}

.services .learn-more:hover {
    color: #0a2540;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .services .service-row,
    .services .service-row.reverse {
        flex-direction: column;
    }

    .services .service-image,
    .services .service-text {
        width: 100%;
    }

    .services .service-text {
        padding: 35px;
    }

    .services .service-image {
        min-height: 250px;
    }

    .services .service-text h3 {
        font-size: 24px;
    }

    .services .service-text p {
        font-size: 16px;
    }
}

.service-text-premium {
    font-size: 18px;
    line-height: 1.9;
    color: #425466;
    margin-bottom: 20px;
    max-width: 520px;
    position: relative;
}

/* first line emphasis */
.service-text-premium::first-line {
    font-weight: 600;
    color: #0a2540;
}

/* highlight words */
.service-text-premium .highlight {
    color: #2F9E9A;
    font-weight: 600;
}

/* subtle left accent line */
.service-text-premium::before {
    content: "";
    position: absolute;
    left: -15px;
    top: 8px;
    width: 3px;
    height: 80%;
    background: linear-gradient(to bottom, #2F9E9A, transparent);
    border-radius: 10px;
}
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 575px) {
    .services .section-title {
        font-size: 34px;
    }

    .services .section-intro {
        font-size: 17px;
    }
}

/* ================= GRID / RESPONSIVE ================= */
@media (max-width: 991px) {
    .services .service-row,
    .services .service-row.reverse {
        flex-direction: column;
    }

    .services .service-image,
    .services .service-text {
        width: 100%;
        padding: 30px;
    }

    .services .service-image {
        min-height: 250px;
    }

    .services .service-image h3 {
        font-size: 24px;
    }

    .services .service-text p {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .services .section-title {
        font-size: 36px;
    }

    .services .section-intro {
        font-size: 18px;
        margin-bottom: 40px;
    }
}

/* ================= WHO WE ARE ================= */

.about {
    padding: 40px 0;
    background: #0a2540;
    color: white;
}

.about p {
    font-size: 23px;
        font-weight: 700;
        color: #2F9E9A;
        max-width: 2500px;
        margin: 0 auto;
        text-align: center;
}

/* ================= MISSION (GLASSMORPHISM) ================= */
.mission {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

/* Background Image */
.mission::before {
    content: "";
    position: absolute;
    inset: 0;

    background: url('images/mission.jpg') center/cover no-repeat;

    z-index: 1;
}

/* Dark overlay for readability */
.mission::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 37, 64, 0.55); /* dark blue overlay */
    z-index: 2;
}

/* Layout */
.mission-wrapper {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: flex-start;
}

/* Remove container centering */
.mission .container {
    width: 100%;
    margin: 0;
    padding-left: 80px;
    padding-right: 40px;
}

/* ================= GLASS CARD ================= */
.mission-text-column {
    max-width: 650px;

    /* GLASS EFFECT */
    background: rgba(255, 255, 255, 0.1);
    background: rgba(255,255,255,0.15);
    -webkit-backdrop-filter: blur(12px);

    border-radius: 16px;
    padding: 40px;

    border: 1px solid rgba(255, 255, 255, 0.2);

    box-shadow: 0 10px 40px rgba(0,0,0,0.25);

    text-align: left;
}

/* MAIN TEXT */
.mission-text {
    font-family: 'Inter', sans-serif;
    font-size: 26px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.6;
}

/* SUB TEXT */
.aim-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin-top: 15px;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

/* Subtle hover effect */
.mission-text-column:hover {
    transform: translateY(-5px);
    transition: 0.3s ease;
}

/* Hide image */
.mission-image {
    display: none;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .mission {
        padding: 80px 0;
    }

    .mission .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .mission-text-column {
        padding: 25px;
        border-radius: 12px;
    }

    .mission-text {
        font-size: 22px;
    }

    .aim-text {
        font-size: 16px;
    }
}

/* CTA */
.cta {
    background: #44a8a4;
    color: white;
    text-align: center;
}

.cta .primary-btn {
    background: #2F9E9A;
    color: white;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.3s;
}

.cta .primary-btn:hover {
    background: #0050aa;
}

/* Footer */
.footer {
    background: #111;
    color: #ccc;
    padding: 60px 0 20px;
}

.footer ul {
    list-style: none;
}

.footer {
  background: #0f172a; /* dark navy */
  color: #cbd5e1;
  padding: 50px 20px 20px;
}

.footer h3,
.footer h4 {
  color: white;
  margin-bottom: 15px;
}

.footer p {
  font-size: 14px;
  line-height: 1.6;
}

/* Grid */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Links */
.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  text-decoration: none;
  color: #cbd5e1;
  transition: 0.3s;
}

.footer ul li a:hover {
  color: #2a7de1;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid #1e293b;
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
}


/* Responsive */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.dropdown-menu {
    display:none;
    visibility:hidden;
    opacity:0;
    color: #2F9E9A;
}

.dropdown:hover .dropdown-menu{
    display: block;
    visibility: visible;
    opacity: 1;
}

/* ================= TESTIMONIALS LAYOUT ================= */

.testimonials {
    position: relative;
    padding: 120px 0;
    background: #f4f7fb;
    overflow: hidden;
}

/* Faded background image */
.testimonials::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("images/testimonials.jpg") center / cover no-repeat;
    opacity: 0.4; /* subtle fade */
    z-index: 0;
}

.testimonials-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 40% 50%;
    gap: 40px;
    align-items: center;
}

/* LEFT SIDE */
.testimonials-left .section-title {
    text-align: center;
    font-size: 46px;
    color: #0a2540;
    margin-bottom: 50px;
}

.testimonials-subtext {
    font-size: 18px;
    color: #425466;
    max-width: 420px;
}

/* RIGHT SIDE */
.testimonials-right {
    position: relative;
}

/* --- Existing animation preserved --- */

.testimonial-wrapper {
    position: relative;
    min-height: 260px;
}

.testimonial-card {
    position: absolute;
    inset: 0;
    padding: 50px 40px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.07);

    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.testimonial-card.exit-left {
    transform: translateX(-40px);
    opacity: 0;
}

.testimonial-card p {
    font-size: 22px;
    font-weight: 500;
    color: #0a2540;
    margin-bottom: 30px;
}

.testimonial-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2F9E9A;
}

.testimonial-card span {
    font-size: 14px;
    color: #425466;
}

/* Controls */
.testimonial-controls {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.testimonial-controls button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: #2F9E9A;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.testimonial-controls button:hover {
    background: #0a2540;
}

/* Responsive */
@media (max-width: 900px) {
    .testimonials-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .testimonials-left .section-title {
        text-align: center;
    }

    .testimonials-subtext {
        margin: 0 auto 40px;
    }
}

/* Modal background */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

.modal-content.large h2 {
  text-align: center;
  background: #2F9E9A;
  color: white;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
}

/* Bigger modal */
/*.modal-content.large {
  background: #fff;
  width: 80%;
  max-width: 900px;
  margin: 5% auto;
  padding: 30px;
  border-radius: 10px;
  position: relative;
}*/

/* Close button */
.close {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 24px;
  cursor: pointer;
}

.demo-form button:hover {
  background: #1f5fb5;
}

.modal-content.large {
  background: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.8)),
              url('images/HealRev Logo.png');
  background-size: cover;
  background-position: center;

  width: 80%;
  max-width: 900px;
  margin: 5% auto;
  padding: 30px;
  border-radius: 10px;
  position: relative;
}

/* Grid layout */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* Inputs */
.demo-form input,
.demo-form select,
.demo-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* Full width textarea */
.demo-form textarea {
  margin-top: 15px;
}

/* Button */
.demo-form button {
  margin: 20px auto 0;
  padding: 12px;
  background: #2F9E9A;
  color: white;
  border: none;
  width: 200px;
  display: block;
  border-radius: 5px;
  cursor: pointer;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.input-group {
  position: relative;
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  outline: none;
}

.input-group label {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  background: white;
  padding: 0 5px;
  color: #777;
  transition: 0.3s;
  pointer-events: none;
}

/* Floating effect */
.input-group input:focus + label,
.input-group input:valid + label {
  top: -8px;
  font-size: 12px;
  color: #2a7de1;
}





