/* =========================================================
   AIDER REHAB SERVICES
   Premium Responsive Website
========================================================= */

:root {
    --green: #4cae27;
    --green-dark: #31841d;
    --green-light: #eef8e9;

    --navy: #07145f;
    --navy-dark: #040b3b;

    --red: #ed1515;

    --white: #ffffff;
    --black: #101426;
    --text: #4d5568;
    --muted: #7b8292;

    --border: #e7ebea;
    --soft: #f7faf8;

    --shadow-sm: 0 8px 30px rgba(7, 20, 95, 0.06);
    --shadow-md: 0 18px 50px rgba(7, 20, 95, 0.10);
    --shadow-lg: 0 30px 80px rgba(7, 20, 95, 0.14);

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;

    --container: 1180px;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: "DM Sans", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}


/* =========================================================
   GLOBAL
========================================================= */

.container {
    width: min(92%, var(--container));
    margin: auto;
}

.section {
    padding: 110px 0;
}

.section-label {
    display: inline-block;
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-label.light {
    color: #9fe879;
}

h1,
h2,
h3 {
    color: var(--navy);
}

h1,
h2 {
    font-family: "Playfair Display", serif;
}

h2 {
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.12;
}

h2 span,
h1 span {
    color: var(--green);
}


/* =========================================================
   HEADER
========================================================= */

.header {
    .header {
    position: relative;
}
    left: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);

    border-bottom: 1px solid rgba(7, 20, 95, 0.06);
}

.nav-container {
    min-height: 110px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    width: 150px;
    height: 100px;
    object-fit: contain;
    display: block;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 27px;
}

.navbar a {
    position: relative;

    color: var(--navy);
    font-size: 14px;
    font-weight: 600;

    transition: 0.3s;
}

.navbar a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: var(--green);

    transition: 0.3s;
}

.navbar a:hover,
.navbar a.active {
    color: var(--green-dark);
}

.navbar a:hover::after,
.navbar a.active::after {
    width: 100%;
}

.nav-button {
    padding: 13px 22px;

    background: var(--green);
    color: white;

    border-radius: 50px;

    font-size: 13px;
    font-weight: 700;

    box-shadow: 0 8px 25px rgba(76, 174, 39, 0.25);

    transition: 0.3s;
}

.nav-button:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
}

.menu-button {
    display: none;

    border: 0;
    background: transparent;

    font-size: 28px;
    color: var(--navy);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: 820px;
    padding-top: 110px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(circle at 85% 30%, rgba(76,174,39,0.12), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #f6fbf4 100%);
}

.hero::after {
    content: "";

    position: absolute;
    left: -5%;
    bottom: -140px;

    width: 110%;
    height: 230px;

    background: var(--white);

    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.hero-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1.02fr 0.98fr;

    align-items: center;

    gap: 60px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: var(--green-dark);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
}

.eyebrow::before {
    content: "";

    width: 38px;
    height: 2px;

    background: var(--red);
}

.hero h1 {
    max-width: 700px;

    margin: 20px 0;

    font-size: clamp(48px, 6vw, 76px);
    line-height: 1.04;
}

.hero-text {
    max-width: 610px;

    font-size: 18px;
    color: var(--text);
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 15px;

    margin-top: 35px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-height: 52px;
    padding: 0 25px;

    border-radius: 50px;

    font-size: 14px;
    font-weight: 700;

    transition: 0.3s;
}

.btn-primary {
    color: white;
    background: var(--green);

    box-shadow: 0 12px 30px rgba(76, 174, 39, 0.25);
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-3px);
}

.btn-outline {
    color: var(--navy);

    border: 1px solid #ccd3dd;
    background: white;
}

.btn-outline:hover {
    border-color: var(--green);
    color: var(--green-dark);
}

.hero-info {
    display: flex;
    gap: 40px;

    margin-top: 55px;
}

.hero-info div {
    display: flex;
    flex-direction: column;
}

.hero-info strong {
    color: var(--navy);

    font-size: 24px;
    line-height: 1.2;
}

.hero-info small {
    margin-top: 3px;

    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {
    position: relative;

    min-height: 570px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-card {
    position: relative;

    width: min(100%, 520px);
    height: 520px;

    overflow: hidden;

    border-radius: 45% 45% 20% 20%;

    background:
        linear-gradient(
            135deg,
            rgba(7,20,95,0.9),
            rgba(76,174,39,0.75)
        );

    box-shadow: var(--shadow-lg);

    transform: rotate(2deg);
}

.image-placeholder {
    position: absolute;
    inset: 20px;

    border-radius: 40% 40% 15% 15%;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.96),
            rgba(241,249,237,0.94)
        );

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 50px;
}

.placeholder-icon {
    width: 90px;
    height: 90px;

    display: grid;
    place-items: center;

    margin-bottom: 25px;

    border-radius: 50%;

    color: white;
    background: var(--green);

    font-size: 40px;

    box-shadow: 0 15px 40px rgba(76,174,39,0.25);
}

.image-placeholder h3 {
    max-width: 360px;

    font-family: "Playfair Display", serif;
    font-size: 36px;
    line-height: 1.15;
}

.image-placeholder p {
    max-width: 330px;

    margin-top: 15px;
}

.floating-card {
    position: absolute;

    left: -20px;
    bottom: 65px;

    display: flex;
    align-items: center;
    gap: 14px;

    padding: 17px 22px;

    background: white;

    border-radius: 18px;

    box-shadow: var(--shadow-md);

    animation: floatCard 4s ease-in-out infinite;
}

.floating-icon {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: white;
    background: var(--green);
}

.floating-card div {
    display: flex;
    flex-direction: column;
}

.floating-card strong {
    color: var(--navy);
    font-size: 13px;
}

.floating-card small {
    color: var(--muted);
    font-size: 11px;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}


/* =========================================================
   SERVICE STRIP
========================================================= */

.service-strip {
    position: relative;
    z-index: 10;

   margin-top: 0;
}

.service-strip-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);

    overflow: hidden;

    border-radius: 18px;

    background: var(--navy);

    box-shadow: var(--shadow-lg);
}

.service-strip-grid > div {
    min-height: 110px;

    padding: 22px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border-right: 1px solid rgba(255,255,255,0.1);
}

.service-strip-grid > div:last-child {
    border-right: 0;
}

.service-strip span {
    color: #7fcf5d;

    font-size: 11px;
    font-weight: 700;
}

.service-strip strong {
    margin-top: 5px;

    color: white;

    font-size: 13px;
}


/* =========================================================
   ABOUT
========================================================= */

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    align-items: center;

    gap: 90px;
}

.about-image {
    position: relative;

    min-height: 500px;

    border-radius: 35px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            var(--green),
            var(--navy)
        );

    box-shadow: var(--shadow-lg);
}

.about-pattern {
    position: absolute;
    inset: 0;

    opacity: 0.2;

    background-image:
        radial-gradient(
            white 1px,
            transparent 1px
        );

    background-size: 25px 25px;
}

.about-image::before {
    content: "AIDER";

    position: absolute;

    left: 30px;
    bottom: 30px;

    color: rgba(255,255,255,0.12);

    font-family: "Playfair Display", serif;
    font-size: 100px;
    font-weight: 700;
}

.about-card {
    position: absolute;

    left: 45px;
    right: 45px;
    bottom: 45px;

    padding: 35px;

    background: rgba(255,255,255,0.95);

    border-radius: 25px;

    box-shadow: var(--shadow-md);
}

.about-card span {
    color: var(--green-dark);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.about-card strong {
    display: block;

    margin-top: 8px;

    color: var(--navy);

    font-family: "Playfair Display", serif;
    font-size: 42px;
    line-height: 1;
}

.about-card b {
    display: block;

    color: var(--green);

    font-family: "Playfair Display", serif;
    font-size: 48px;
}

.about-card small {
    display: block;

    margin-top: 8px;

    color: var(--muted);
}

.about-content h2 {
    max-width: 650px;
}

.about-content > p {
    max-width: 650px;

    margin-top: 22px;
}

.about-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 15px;

    margin-top: 30px;
}

.about-points div {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-points span {
    width: 25px;
    height: 25px;

    flex: 0 0 auto;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: white;
    background: var(--green);

    font-size: 12px;
    font-weight: 700;
}

.about-points p {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
}

.text-link {
    display: inline-block;

    margin-top: 32px;

    color: var(--green-dark);

    font-size: 14px;
    font-weight: 800;

    transition: 0.3s;
}

.text-link:hover {
    transform: translateX(5px);
}


/* =========================================================
   SERVICES
========================================================= */

.services-section {
    background: var(--soft);
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 50px;

    margin-bottom: 55px;
}

.section-heading h2 {
    max-width: 700px;
}

.section-heading > p {
    max-width: 380px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

.service-card {
    position: relative;

    padding: 35px;

    min-height: 320px;

    background: white;

    border: 1px solid var(--border);
    border-radius: 24px;

    overflow: hidden;

    transition: 0.4s;
}

.service-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: var(--green);

    transform: scaleX(0);
    transform-origin: left;

    transition: 0.4s;
}

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

    border-color: transparent;

    box-shadow: var(--shadow-md);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.featured {
    background: var(--navy);
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured a {
    color: white;
}

.service-number {
    position: absolute;

    top: 25px;
    right: 25px;

    color: #d8dce8;

    font-size: 12px;
    font-weight: 800;
}

.featured .service-number {
    color: rgba(255,255,255,0.35);
}

.service-icon {
    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    margin-bottom: 28px;

    border-radius: 17px;

    color: white;
    background: var(--green);

    font-size: 25px;
}

.service-card h3 {
    max-width: 290px;

    font-size: 21px;
    line-height: 1.25;
}

.service-card p {
    margin-top: 15px;

    font-size: 14px;
}

.service-card a {
    position: absolute;

    left: 35px;
    bottom: 30px;

    color: var(--green-dark);

    font-size: 13px;
    font-weight: 800;
}

.services-more {
    margin-top: 35px;

    text-align: center;
}

.services-more p {
    display: inline-block;

    padding: 12px 20px;

    border-radius: 50px;

    background: white;

    color: var(--navy);

    font-size: 13px;
    font-weight: 700;
}


/* =========================================================
   APPROACH
========================================================= */

.approach-section {
    padding: 105px 0;

    color: white;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(76,174,39,0.25),
            transparent 28%
        ),
        var(--navy);
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;
}

.approach-section h2 {
    margin-top: 10px;

    color: white;
}

.approach-section h2 span {
    color: #7bd34f;
}

.approach-content {
    padding-left: 40px;

    border-left: 1px solid rgba(255,255,255,0.18);
}

.quote {
    color: rgba(255,255,255,0.88);

    font-family: "Playfair Display", serif;
    font-size: 24px;
    line-height: 1.5;
}

.approach-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 25px;

    margin-top: 40px;
}

.approach-features div {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.approach-features span {
    color: #73ca4e;

    font-size: 12px;
    font-weight: 800;
}

.approach-features strong {
    color: white;
    font-size: 14px;
}


/* =========================================================
   PROFESSIONALS
========================================================= */

.center {
    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}

.professionals-section {
    background: white;
}

.professionals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.professional-card {
    overflow: hidden;

    background: white;

    border: 1px solid var(--border);
    border-radius: 25px;

    transition: 0.4s;
}

.professional-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-md);
}

.professional-photo {
    height: 280px;

    display: grid;
    place-items: center;

    background:
        linear-gradient(
            145deg,
            #eaf6e5,
            #dbe5fb
        );
}

.professional-photo span {
    width: 100px;
    height: 100px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: white;
    background: var(--navy);

    font-family: "Playfair Display", serif;
    font-size: 30px;

    box-shadow: var(--shadow-md);
}

.professional-content {
    padding: 25px;
}

.professional-content > span {
    color: var(--green-dark);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.professional-content h3 {
    margin-top: 7px;

    font-size: 21px;
}

.professional-content p {
    margin-top: 5px;

    font-size: 13px;
    color: var(--muted);
}

.professional-content a {
    display: inline-block;

    margin-top: 18px;

    color: var(--navy);

    font-size: 12px;
    font-weight: 800;
}


/* =========================================================
   CENTRES
========================================================= */

.centres-section {
    padding: 100px 0;

    background: var(--soft);
}

.centres-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 25px;
}

.centre-card {
    display: flex;
    align-items: center;
    gap: 25px;

    padding: 30px;

    background: white;

    border: 1px solid var(--border);
    border-radius: 25px;

    transition: 0.3s;
}

.centre-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.centre-icon {
    width: 65px;
    height: 65px;

    flex: 0 0 auto;

    display: grid;
    place-items: center;

    border-radius: 18px;

    color: white;
    background: var(--green);

    font-size: 25px;
}

.centre-card > div:nth-child(2) {
    flex: 1;
}

.centre-card span {
    color: var(--green-dark);

    font-size: 10px;
    font-weight: 800;
}

.centre-card h3 {
    margin-top: 3px;

    font-size: 23px;
}

.centre-card p {
    font-size: 13px;
}

.centre-card > a {
    color: var(--navy);

    font-size: 12px;
    font-weight: 800;
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
    padding: 80px 0;

    background:
        linear-gradient(
            110deg,
            var(--green-dark),
            var(--green)
        );
}

.cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 50px;
}

.cta-section h2 {
    max-width: 700px;

    margin-top: 5px;

    color: white;
}

.cta-section h2 span {
    color: #d8ffc8;
}

.cta-section p {
    margin-top: 12px;

    color: rgba(255,255,255,0.85);
}

.btn-white {
    flex: 0 0 auto;

    color: var(--navy);
    background: white;

    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-3px);
}


/* =========================================================
   CONTACT
========================================================= */

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;

    gap: 90px;

    align-items: start;
}

.contact-info h2 {
    max-width: 450px;
}

.contact-info > p {
    max-width: 480px;

    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 17px;

    margin-top: 28px;
}

.contact-icon {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    flex: 0 0 auto;

    border-radius: 13px;

    color: white;
    background: var(--green);
}

.contact-item small {
    display: block;

    color: var(--muted);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.contact-item a,
.contact-item p {
    display: block;

    margin-top: 2px;

    color: var(--navy);

    font-size: 15px;
    font-weight: 700;
}

.contact-form-wrapper {
    padding: 45px;

    border-radius: 30px;

    background: var(--soft);

    border: 1px solid var(--border);
}

.contact-form h3 {
    font-family: "Playfair Display", serif;
    font-size: 32px;
}

.contact-form > p {
    margin-top: 5px;
    color: var(--muted);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 15px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;

    margin-top: 15px;
    padding: 15px 17px;

    border: 1px solid #dfe4e3;
    border-radius: 12px;

    outline: none;

    background: white;

    color: var(--navy);

    transition: 0.25s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--green);

    box-shadow: 0 0 0 4px rgba(76,174,39,0.08);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    margin-top: 18px;

    border: 0;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    color: rgba(255,255,255,0.7);

    background: var(--navy-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;

    gap: 60px;

    padding: 80px 0;
}

.footer-brand img {
    width: 160px;

    filter: brightness(0) invert(1);

    margin-bottom: 20px;
}

.footer-brand p {
    max-width: 300px;

    font-size: 13px;
}

.footer h4 {
    margin-bottom: 20px;

    color: white;

    font-size: 13px;
}

.footer a {
    display: block;

    margin-bottom: 10px;

    font-size: 12px;

    transition: 0.25s;
}

.footer a:hover {
    color: #8add63;
}

.footer p {
    font-size: 12px;
}

.footer-bottom {
    padding: 22px 0;

    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


/* =========================================================
   WHATSAPP
========================================================= */

.whatsapp-button {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 900;

    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: white;
    background: #20c66a;

    box-shadow: 0 12px 30px rgba(32,198,106,0.3);

    transition: 0.3s;
}

.whatsapp-button:hover {
    transform: translateY(-5px) scale(1.05);
}

.whatsapp-button span {
    font-size: 25px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 1100px) {

    .navbar {
        gap: 17px;
    }

    .navbar a {
        font-size: 12px;
    }

    .professionals-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 900px) {

    .nav-button {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .navbar {
        position: absolute;

        top: 84px;
        left: 4%;
        right: 4%;

        padding: 25px;

        display: none;
        flex-direction: column;
        align-items: stretch;

        background: white;

        border-radius: 18px;

        box-shadow: var(--shadow-lg);
    }

    .navbar.show {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 140px 0 100px;
    }

    .hero-grid,
    .about-grid,
    .approach-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
    }

    .hero-text {
        margin-inline: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-info {
        justify-content: center;
    }

    .hero-visual {
        min-height: 500px;
    }

    .about-grid {
        gap: 50px;
    }

    .approach-content {
        padding-left: 0;
        padding-top: 30px;

        border-left: 0;
        border-top: 1px solid rgba(255,255,255,0.18);
    }

    .contact-grid {
        gap: 50px;
    }

}


@media (max-width: 700px) {

    .section {
        padding: 75px 0;
    }

    .hero h1 {
        font-size: 46px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-info {
        gap: 25px;
    }

    .hero-visual {
        min-height: 400px;
    }

    .hero-image-card {
        height: 390px;
    }

    .floating-card {
        left: 0;
        bottom: 25px;
    }

    .service-strip {
    margin-top: 24px;
}

    .service-strip-grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-strip-grid > div {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .section-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        min-height: 390px;
    }

    .about-points {
        grid-template-columns: 1fr;
    }

    .approach-features {
        grid-template-columns: 1fr;
    }

    .professionals-grid {
        grid-template-columns: 1fr;
    }

    .centres-grid {
        grid-template-columns: 1fr;
    }

    .cta-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 25px;
    }

    .footer-bottom .container {
        flex-direction: column;
        align-items: flex-start;
    }

}


@media (max-width: 450px) {

    .container {
        width: min(90%, var(--container));
    }

    .logo img {
        width: 125px;
    }

    .hero h1 {
        font-size: 39px;
    }

    .hero-text {
        font-size: 15px;
    }

    .hero-info {
        gap: 18px;
    }

    .hero-info strong {
        font-size: 19px;
    }

    .hero-info small {
        font-size: 9px;
    }

    .hero-visual {
        min-height: 350px;
    }

    .hero-image-card {
        height: 340px;
    }

    .image-placeholder {
        padding: 25px;
    }

    .image-placeholder h3 {
        font-size: 27px;
    }

    .floating-card {
        padding: 12px 15px;
    }

    .service-strip-grid {
        grid-template-columns: 1fr;
    }

    .about-card {
        left: 20px;
        right: 20px;
        bottom: 20px;

        padding: 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

}
/* =====================================================
   AIDER REHAB SERVICES - HERO IMAGE SLIDER
===================================================== */

.hero-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 42px;
    background: #eef7ed;
    box-shadow: 0 25px 60px rgba(18, 48, 91, 0.12);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.04);
    transition:
        opacity 0.8s ease,
        transform 1.2s ease;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* Dark gradient for readable text */

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(8, 35, 65, 0.72),
        rgba(8, 35, 65, 0.08) 60%,
        transparent
    );
    pointer-events: none;
}


/* Slide text */

.slide-caption {
    position: absolute;
    z-index: 3;
    left: 35px;
    bottom: 55px;
    color: #ffffff;
}

.slide-caption strong {
    display: block;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 6px;
}

.slide-caption span {
    display: block;
    font-size: 15px;
    opacity: 0.95;
}


/* Navigation arrows */

.slider-arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    transform: translateY(-50%);

    width: 48px;
    height: 48px;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.95);
    color: #102d68;

    font-size: 34px;
    line-height: 40px;

    cursor: pointer;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);

    transition: all 0.3s ease;
}

.slider-arrow:hover {
    transform: translateY(-50%) scale(1.08);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}


/* Slider dots */

.slider-dots {
    position: absolute;
    z-index: 5;

    left: 50%;
    bottom: 20px;

    transform: translateX(-50%);

    display: flex;
    align-items: center;
    gap: 8px;
}

.slider-dot {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.65);

    cursor: pointer;

    transition: all 0.3s ease;
}

.slider-dot.active {
    width: 28px;
    border-radius: 10px;
    background: #43b52a;
}


/* Mobile */

@media (max-width: 768px) {

    .hero-slider {
        height: 380px;
        border-radius: 28px;
    }

    .slide-caption {
        left: 22px;
        bottom: 48px;
    }

    .slide-caption strong {
        font-size: 22px;
    }

    .slide-caption span {
        font-size: 13px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 28px;
    }

    .slider-prev {
        left: 12px;
    }

    .slider-next {
        right: 12px;
    }
}
/* =====================================================
   AIDER - ANIMATED ABOUT CARD
===================================================== */

.about-animated-card {
    position: relative;
    min-height: 500px;
    border-radius: 42px;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 20%, rgba(67,181,42,0.28), transparent 35%),
        radial-gradient(circle at 80% 80%, rgba(20,48,110,0.45), transparent 40%),
        linear-gradient(145deg, #43b52a, #123064);
    box-shadow: 0 25px 60px rgba(18,48,91,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Soft glowing circles */

.about-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(5px);
    opacity: 0.45;
    animation: glowFloat 6s ease-in-out infinite;
}

.glow-one {
    width: 180px;
    height: 180px;
    background: rgba(255,255,255,0.16);
    top: -50px;
    left: -40px;
}

.glow-two {
    width: 220px;
    height: 220px;
    background: rgba(67,181,42,0.25);
    bottom: -90px;
    right: -60px;
    animation-delay: 2s;
}

/* Animation area */

.growth-animation {
    position: absolute;
    width: 300px;
    height: 300px;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
}

/* Orbit rings */

.orbit {
    position: absolute;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.orbit-one {
    width: 220px;
    height: 220px;
    animation: rotateOrbit 12s linear infinite;
}

.orbit-two {
    width: 275px;
    height: 275px;
    border-style: dashed;
    animation: rotateOrbitReverse 18s linear infinite;
}

/* Heart */

.heart-pulse {
    position: absolute;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 62px;
    font-weight: 300;
    text-shadow: 0 0 25px rgba(255,255,255,0.55);
    animation: heartBeat 2s ease-in-out infinite;
}

/* Plant */

.plant {
    position: absolute;
    left: 50%;
    bottom: 20px;
    width: 90px;
    height: 120px;
    transform: translateX(-50%);
}

.stem {
    position: absolute;
    width: 5px;
    height: 90px;
    left: 43px;
    bottom: 0;
    border-radius: 5px;
    background: rgba(255,255,255,0.9);
    transform-origin: bottom;
    animation: growStem 3s ease-in-out infinite alternate;
}

.leaf {
    position: absolute;
    width: 45px;
    height: 24px;
    border-radius: 100% 0 100% 0;
    background: #ffffff;
    opacity: 0.9;
}

.leaf-left {
    left: 5px;
    bottom: 45px;
    transform: rotate(-25deg);
    animation: leafMove 3s ease-in-out infinite alternate;
}

.leaf-right {
    right: 5px;
    bottom: 65px;
    transform: rotate(25deg) scaleX(-1);
    animation: leafMove 3s ease-in-out infinite alternate-reverse;
}

/* Floating dots */

.floating-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff;
    opacity: 0.75;
    animation: floatingDot 4s ease-in-out infinite;
}

.dot-one {
    top: 55px;
    left: 30px;
}

.dot-two {
    top: 105px;
    right: 20px;
    animation-delay: 1s;
}

.dot-three {
    bottom: 55px;
    right: 40px;
    animation-delay: 2s;
}

/* Text */

.about-card-content {
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 32px;
    z-index: 5;
    padding: 25px 30px;
    border-radius: 25px;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(12px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.about-card-label {
    display: block;
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 700;
    color: #43b52a;
    margin-bottom: 10px;
}

.about-card-content h3 {
    margin: 0;
    font-family: Georgia, serif;
    font-size: 42px;
    line-height: 1.05;
    color: #102d68;
}

.about-card-content h3 span {
    color: #43b52a;
}

.about-card-content h3 strong {
    color: #102d68;
}

.about-card-content p {
    margin: 12px 0 14px;
    color: #667085;
    font-size: 14px;
    line-height: 1.6;
}

.growth-words {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    color: #43b52a;
}

.growth-words i {
    color: #b8c0cc;
    font-style: normal;
}

/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes heartBeat {

    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.18);
    }
}

@keyframes rotateOrbit {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes rotateOrbitReverse {
    from {
        transform: translate(-50%, -50%) rotate(360deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

@keyframes growStem {

    from {
        transform: scaleY(0.85);
    }

    to {
        transform: scaleY(1);
    }
}

@keyframes leafMove {

    from {
        transform: rotate(-25deg) scale(0.9);
    }

    to {
        transform: rotate(-15deg) scale(1);
    }
}

@keyframes floatingDot {

    0%, 100% {
        transform: translateY(0);
        opacity: 0.45;
    }

    50% {
        transform: translateY(-18px);
        opacity: 1;
    }
}

@keyframes glowFloat {

    0%, 100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, -15px);
    }
}

/* Mobile */

@media (max-width: 768px) {

    .about-animated-card {
        min-height: 440px;
        border-radius: 30px;
    }

    .growth-animation {
        transform: translateX(-50%) scale(0.82);
        top: 10px;
    }

    .about-card-content {
        left: 20px;
        right: 20px;
        bottom: 20px;
        padding: 20px;
    }

    .about-card-content h3 {
        font-size: 32px;
    }

    .growth-words {
        gap: 5px;
        font-size: 9px;
    }
}
/* ==========================================
   GROWING PLANT ANIMATION
========================================== */

.growing-plant {
    position: absolute;
    width: 190px;
    height: 230px;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
}

/* Soil */

.soil {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 120px;
    height: 28px;
    transform: translateX(-50%);
    background: #7b4f2c;
    border-radius: 50%;
    box-shadow:
        0 8px 20px rgba(0,0,0,0.18),
        inset 0 5px 8px rgba(255,255,255,0.12);
}

/* Stem */

.plant-stem {
    position: absolute;
    bottom: 15px;
    left: 50%;
    width: 7px;
    height: 170px;
    transform-origin: bottom;
    transform: translateX(-50%) scaleY(0);
    background: linear-gradient(
        to right,
        #278b35,
        #61c53b,
        #278b35
    );
    border-radius: 10px;
    animation: stemGrow 4s ease-out infinite;
}

/* Leaves */

.plant-leaf {
    position: absolute;
    width: 58px;
    height: 30px;

    background: linear-gradient(
        135deg,
        #8be34d,
        #35a92f
    );

    border-radius: 100% 0 100% 0;

    opacity: 0;

    transform-origin: bottom center;
}

/* Left leaves */

.leaf-1 {
    left: 42px;
    bottom: 65px;
    transform: rotate(-35deg) scale(0);
    animation: leafGrow1 4s ease-out infinite;
}

.leaf-2 {
    left: 48px;
    bottom: 110px;
    transform: rotate(-35deg) scale(0);
    animation: leafGrow2 4s ease-out infinite;
}

/* Right leaves */

.leaf-3 {
    right: 38px;
    bottom: 90px;
    transform: scaleX(-1) rotate(-35deg) scale(0);
    animation: leafGrow3 4s ease-out infinite;
}

.leaf-4 {
    right: 45px;
    bottom: 140px;
    transform: scaleX(-1) rotate(-35deg) scale(0);
    animation: leafGrow4 4s ease-out infinite;
}

/* Glow */

.plant-glow {
    position: absolute;
    width: 110px;
    height: 110px;

    left: 50%;
    bottom: 65px;

    transform: translateX(-50%);

    border-radius: 50%;

    background: rgba(140,255,100,0.18);

    filter: blur(18px);

    animation: plantGlow 4s ease-in-out infinite;
}


/* ==========================================
   GROW ANIMATIONS
========================================== */

@keyframes stemGrow {

    0% {
        transform: translateX(-50%) scaleY(0);
    }

    35% {
        transform: translateX(-50%) scaleY(0.55);
    }

    65% {
        transform: translateX(-50%) scaleY(1);
    }

    100% {
        transform: translateX(-50%) scaleY(1);
    }
}


@keyframes leafGrow1 {

    0%, 25% {
        opacity: 0;
        transform: rotate(-35deg) scale(0);
    }

    45% {
        opacity: 1;
        transform: rotate(-35deg) scale(0.7);
    }

    65%, 100% {
        opacity: 1;
        transform: rotate(-25deg) scale(1);
    }
}


@keyframes leafGrow2 {

    0%, 38% {
        opacity: 0;
        transform: rotate(-35deg) scale(0);
    }

    55% {
        opacity: 1;
        transform: rotate(-35deg) scale(0.7);
    }

    70%, 100% {
        opacity: 1;
        transform: rotate(-20deg) scale(1);
    }
}


@keyframes leafGrow3 {

    0%, 48% {
        opacity: 0;
        transform: scaleX(-1) rotate(-35deg) scale(0);
    }

    65% {
        opacity: 1;
        transform: scaleX(-1) rotate(-35deg) scale(0.7);
    }

    80%, 100% {
        opacity: 1;
        transform: scaleX(-1) rotate(-20deg) scale(1);
    }
}


@keyframes leafGrow4 {

    0%, 58% {
        opacity: 0;
        transform: scaleX(-1) rotate(-35deg) scale(0);
    }

    72% {
        opacity: 1;
        transform: scaleX(-1) rotate(-35deg) scale(0.7);
    }

    85%, 100% {
        opacity: 1;
        transform: scaleX(-1) rotate(-20deg) scale(1);
    }
}


@keyframes plantGlow {

    0%, 100% {
        opacity: 0.3;
        transform: translateX(-50%) scale(0.7);
    }

    50% {
        opacity: 0.9;
        transform: translateX(-50%) scale(1.15);
    }
}
/* =====================================================
   AIDER - CHILD GROWTH JOURNEY ANIMATION
===================================================== */

.growth-animation {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* -----------------------------
   Growth Path
----------------------------- */

.growth-path {
    position: absolute;
    width: 290px;
    height: 180px;

    left: 50%;
    top: 35px;

    transform: translateX(-50%) rotate(-22deg);

    border-top: 2px solid rgba(255,255,255,0.28);
    border-radius: 50%;

    opacity: 0;
    animation: pathAppear 1.5s ease forwards;
}


/* -----------------------------
   Milestones
----------------------------- */

.growth-step {
    position: absolute;
    z-index: 6;

    display: flex;
    flex-direction: column;
    align-items: center;

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    opacity: 0;
    transform: translateY(15px) scale(0.8);

    animation:
        milestoneAppear 1s ease forwards;
}

.step-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 7px;

    border-radius: 50%;

    background: rgba(255,255,255,0.16);

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

    backdrop-filter: blur(10px);

    box-shadow:
        0 0 25px rgba(255,255,255,0.18),
        inset 0 0 15px rgba(255,255,255,0.08);

    font-size: 22px;
}

.step-care {
    left: 8%;
    top: 22%;

    animation-delay: 0.8s;
}

.step-support {
    left: 28%;
    top: 12%;

    animation-delay: 1.5s;
}

.step-grow {
    right: 27%;
    top: 7%;

    animation-delay: 2.2s;
}

.step-thrive {
    right: 7%;
    top: 17%;

    animation-delay: 2.9s;
}


/* -----------------------------
   Plant Scene
----------------------------- */

.plant-scene {
    position: absolute;

    left: 50%;
    bottom: 125px;

    width: 230px;
    height: 280px;

    transform: translateX(-50%);

    z-index: 4;
}


/* Soil */

.soil {
    position: absolute;

    left: 50%;
    bottom: 0;

    width: 190px;
    height: 42px;

    transform: translateX(-50%);

    background:
        radial-gradient(circle at 20% 40%, #9a6438 0 3px, transparent 4px),
        radial-gradient(circle at 50% 60%, #6b4227 0 3px, transparent 4px),
        radial-gradient(circle at 75% 35%, #a66c3c 0 3px, transparent 4px),
        #704628;

    border-radius: 50%;

    box-shadow:
        0 10px 20px rgba(0,0,0,0.18);

    animation: soilAppear 1s ease forwards;
}

.soil span {
    position: absolute;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #b47b49;
}

.soil span:nth-child(1) {
    left: 25px;
    top: 15px;
}

.soil span:nth-child(2) {
    left: 70px;
    top: 9px;
}

.soil span:nth-child(3) {
    right: 50px;
    top: 17px;
}

.soil span:nth-child(4) {
    right: 25px;
    top: 10px;
}


/* -----------------------------
   Stem
----------------------------- */

.plant-stem {
    position: absolute;

    left: 50%;
    bottom: 27px;

    width: 9px;
    height: 210px;

    transform-origin: bottom center;
    transform: translateX(-50%) scaleY(0);

    border-radius: 10px;

    background: linear-gradient(
        to right,
        #267c32,
        #65c83b,
        #328d32
    );

    animation:
        stemGrowth 5s cubic-bezier(.22,.61,.36,1) infinite;
}


/* -----------------------------
   Leaves
----------------------------- */

.plant-leaf {
    position: absolute;

    width: 70px;
    height: 40px;

    background:
        linear-gradient(
            135deg,
            #a4ed55,
            #38a932
        );

    border-radius: 100% 0 100% 0;

    opacity: 0;

    box-shadow:
        0 5px 18px rgba(70,190,60,0.28);
}


/* Left bottom */

.leaf-left-1 {
    left: 37px;
    bottom: 82px;

    transform-origin: right bottom;
    transform: rotate(-28deg) scale(0);

    animation:
        leafOne 5s ease-in-out infinite;
}


/* Right bottom */

.leaf-right-1 {
    right: 32px;
    bottom: 105px;

    transform-origin: left bottom;
    transform: rotate(28deg) scale(0);

    animation:
        leafTwo 5s ease-in-out infinite;
}


/* Left upper */

.leaf-left-2 {
    left: 43px;
    bottom: 145px;

    transform-origin: right bottom;
    transform: rotate(-32deg) scale(0);

    animation:
        leafThree 5s ease-in-out infinite;
}


/* Right upper */

.leaf-right-2 {
    right: 40px;
    bottom: 170px;

    transform-origin: left bottom;
    transform: rotate(32deg) scale(0);

    animation:
        leafFour 5s ease-in-out infinite;
}


/* Top leaf */

.leaf-top {
    left: 50%;
    bottom: 205px;

    width: 62px;
    height: 36px;

    transform-origin: bottom center;
    transform: translateX(-50%) rotate(-8deg) scale(0);

    animation:
        topLeaf 5s ease-in-out infinite;
}


/* -----------------------------
   Floating particles
----------------------------- */

.growth-particle {
    position: absolute;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #d9ffb5;

    box-shadow:
        0 0 12px rgba(220,255,180,0.9);

    animation:
        particleFloat 4s ease-in-out infinite;
}

.particle-1 {
    left: 18%;
    bottom: 30%;
}

.particle-2 {
    left: 32%;
    bottom: 45%;
    animation-delay: 0.8s;
}

.particle-3 {
    right: 25%;
    bottom: 38%;
    animation-delay: 1.4s;
}

.particle-4 {
    right: 16%;
    bottom: 55%;
    animation-delay: 2s;
}

.particle-5 {
    left: 42%;
    top: 38%;
    animation-delay: 2.5s;
}

.particle-6 {
    right: 40%;
    top: 28%;
    animation-delay: 3s;
}


/* =====================================================
   KEYFRAMES
===================================================== */

@keyframes pathAppear {
    from {
        opacity: 0;
        transform:
            translateX(-50%)
            rotate(-22deg)
            scaleX(0);
    }

    to {
        opacity: 1;
        transform:
            translateX(-50%)
            rotate(-22deg)
            scaleX(1);
    }
}


@keyframes milestoneAppear {

    0% {
        opacity: 0;
        transform: translateY(15px) scale(0.7);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


@keyframes soilAppear {

    0% {
        opacity: 0;
        transform: translateX(-50%) scale(0.5);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}


/* Stem slowly grows */

@keyframes stemGrowth {

    0% {
        transform: translateX(-50%) scaleY(0);
    }

    25% {
        transform: translateX(-50%) scaleY(0.35);
    }

    45% {
        transform: translateX(-50%) scaleY(0.65);
    }

    65% {
        transform: translateX(-50%) scaleY(0.88);
    }

    80%,
    100% {
        transform: translateX(-50%) scaleY(1);
    }
}


/* Leaves */

@keyframes leafOne {

    0%, 25% {
        opacity: 0;
        transform: rotate(-28deg) scale(0);
    }

    42% {
        opacity: 1;
        transform: rotate(-28deg) scale(1);
    }

    80%, 100% {
        opacity: 1;
        transform: rotate(-20deg) scale(1);
    }
}


@keyframes leafTwo {

    0%, 35% {
        opacity: 0;
        transform: rotate(28deg) scale(0);
    }

    52% {
        opacity: 1;
        transform: rotate(28deg) scale(1);
    }

    80%, 100% {
        opacity: 1;
        transform: rotate(20deg) scale(1);
    }
}


@keyframes leafThree {

    0%, 45% {
        opacity: 0;
        transform: rotate(-32deg) scale(0);
    }

    60% {
        opacity: 1;
        transform: rotate(-32deg) scale(1);
    }

    80%, 100% {
        opacity: 1;
        transform: rotate(-22deg) scale(1);
    }
}


@keyframes leafFour {

    0%, 55% {
        opacity: 0;
        transform: rotate(32deg) scale(0);
    }

    70% {
        opacity: 1;
        transform: rotate(32deg) scale(1);
    }

    80%, 100% {
        opacity: 1;
        transform: rotate(22deg) scale(1);
    }
}


@keyframes topLeaf {

    0%, 65% {
        opacity: 0;
        transform:
            translateX(-50%)
            rotate(-8deg)
            scale(0);
    }

    78% {
        opacity: 1;
        transform:
            translateX(-50%)
            rotate(-8deg)
            scale(1);
    }

    85%, 100% {
        opacity: 1;
        transform:
            translateX(-50%)
            rotate(0deg)
            scale(1);
    }
}


@keyframes particleFloat {

    0%, 100% {
        opacity: 0.2;
        transform: translateY(10px) scale(0.7);
    }

    50% {
        opacity: 1;
        transform: translateY(-30px) scale(1.2);
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

    .growth-step {
        font-size: 10px;
    }

    .step-icon {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .plant-scene {
        transform: translateX(-50%) scale(0.8);
        transform-origin: bottom center;
    }

    .growth-path {
        width: 230px;
    }
}
/* AIDER ABOUT ANIMATED CARD FIX */

.about-image {
    position: relative;
    min-height: 500px;
    overflow: hidden;
}

.about-animated-card {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 500px;

    border-radius: 35px;
    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            var(--green),
            var(--navy)
        );

    box-shadow: var(--shadow-lg);
}

.about-content {
    position: relative;
    z-index: 2;
}
/* Fix growing plant visibility */
.about-animated-card .growth-animation {
    z-index: 2;
}

.about-animated-card .plant-scene {
    bottom: 115px;
    z-index: 8;
}

.about-animated-card .about-card-content {
    z-index: 10;
}
/* FINAL FIX - FULL GROWING PLANT VISIBILITY */

.about-animated-card .plant-scene {
    bottom: 205px;
    z-index: 8;
}

.about-animated-card .plant-stem {
    background: linear-gradient(
        to right,
        #1f7d2d,
        #9bea55,
        #2f9f32
    );
    box-shadow: 0 0 8px rgba(155, 235, 85, 0.35);
}

.about-animated-card .plant-leaf {
    z-index: 9;
}

.about-animated-card .soil {
    z-index: 10;
}
/* =========================================================
   AIDER - PREMIUM CARE ORBIT ANIMATION
   ========================================================= */

.about-animated-card {
    position: relative;
    width: 100%;
    min-height: 500px;
    overflow: hidden;
    border-radius: 35px;

    background:
        radial-gradient(
            circle at 30% 20%,
            rgba(255,255,255,.16),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #4caf32 0%,
            #2c7547 52%,
            #102f58 100%
        );

    box-shadow:
        0 25px 60px rgba(15,45,70,.18);
}

.orbital-glow {
    position: absolute;
    width: 360px;
    height: 360px;
    left: 50%;
    top: 37%;
    transform: translate(-50%, -50%);
    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,.20),
            rgba(255,255,255,.08) 35%,
            transparent 70%
        );

    filter: blur(2px);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,100% {
        opacity: .65;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.08);
    }

}

.orbit {
    position: absolute;
    left: 50%;
    top: 37%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.25);
    pointer-events: none;
}

.orbit-1 {
    width: 190px;
    height: 190px;
    animation: orbitRotate 12s linear infinite;
}

.orbit-2 {
    width: 285px;
    height: 285px;
    border-color: rgba(255,255,255,.18);
    animation: orbitRotateReverse 18s linear infinite;
}

.orbit-3 {
    width: 380px;
    height: 380px;
    border-color: rgba(255,255,255,.10);
    animation: orbitRotate 26s linear infinite;
}

@keyframes orbitRotate {

    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }

}

@keyframes orbitRotateReverse {

    from {
        transform: translate(-50%, -50%) rotate(360deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(0deg);
    }

}

.care-center {
    position: absolute;
    left: 50%;
    top: 36%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 10;
}

.care-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 13px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 38px;
    color: #fff;

    background: rgba(255,255,255,.13);

    border: 1px solid rgba(255,255,255,.45);

    box-shadow:
        0 0 0 12px rgba(255,255,255,.035),
        0 0 45px rgba(255,255,255,.20);

    animation: heartPulse 3s ease-in-out infinite;
}

.care-center strong {
    display: block;
    font-size: 18px;
}

.care-center span {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    opacity: .80;
}

@keyframes heartPulse {

    0%,100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

}

.orbit-item {
    position: absolute;
    z-index: 12;

    min-width: 75px;
    padding: 10px 14px;

    border-radius: 30px;
    text-align: center;
    color: #fff;

    background: rgba(255,255,255,.13);

    border: 1px solid rgba(255,255,255,.32);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow:
        0 10px 30px rgba(0,0,0,.12);

    animation: floatingItem 4s ease-in-out infinite;
}

.orbit-item span {
    display: block;
    font-size: 18px;
}

.orbit-item strong {
    display: block;
    margin-top: 3px;
    font-size: 12px;
}

.item-care {
    left: 11%;
    top: 17%;
}

.item-connect {
    right: 10%;
    top: 21%;
    animation-delay: .8s;
}

.item-support {
    left: 9%;
    top: 47%;
    animation-delay: 1.5s;
}

.item-thrive {
    right: 9%;
    top: 51%;
    animation-delay: 2.2s;
}

@keyframes floatingItem {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }

}

.about-animated-card .about-card-content {
    position: absolute;

    left: 40px;
    right: 40px;
    bottom: 30px;

    z-index: 30;

    padding: 25px 30px;

    border-radius: 25px;

    background: rgba(255,255,255,.97);

    box-shadow:
        0 20px 50px rgba(0,0,0,.18);
}

.about-animated-card .about-card-content .about-card-label {
    display: block;

    margin-bottom: 10px;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;

    color: #3aaa2f;
}

.about-animated-card .about-card-content h3 {
    margin: 0;

    font-family: "Playfair Display", serif;

    font-size: 39px;
    line-height: 1.05;

    color: #12366d;
}

.about-animated-card .about-card-content h3 span {
    color: #3aaa2f;
}

.about-animated-card .about-card-content p {
    margin: 15px 0 14px;

    color: #64748b;

    line-height: 1.55;

    font-size: 14px;
}

.growth-words {
    display: flex;

    align-items: center;

    gap: 9px;

    font-size: 11px;
    font-weight: 800;

    color: #3aaa2f;
}

.growth-words i {
    font-style: normal;
    color: #9aaa9c;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .about-animated-card {
        min-height: 540px;
    }

    .orbit-3 {
        width: 340px;
        height: 340px;
    }

    .about-animated-card .about-card-content {

        left: 20px;
        right: 20px;
        bottom: 20px;

        padding: 22px;
    }

    .about-animated-card .about-card-content h3 {
        font-size: 32px;
    }

    .item-care {
        left: 5%;
    }

    .item-connect {
        right: 5%;
    }

    .item-support {
        left: 5%;
    }

    .item-thrive {
        right: 5%;
    }

}
/* =========================================================
   ABOUT ORBIT - FINAL POSITION FIX
   ========================================================= */

.care-center {
    top: 34%;
}

.about-animated-card .about-card-content {
    bottom: 22px;
}

@media (max-width: 700px) {

    .care-center {
        top: 31%;
    }

    .about-animated-card .about-card-content {
        bottom: 18px;
    }

}
/* =========================================================
   AIDER - GLOSSY NEON BLUE + GREEN HERO
   ========================================================= */

.hero {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 82% 25%,
            rgba(0, 255, 200, .30),
            transparent 25%
        ),
        radial-gradient(
            circle at 15% 80%,
            rgba(0, 200, 255, .28),
            transparent 28%
        ),
        radial-gradient(
            circle at 65% 65%,
            rgba(0, 255, 150, .20),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #f7ffff 0%,
            #d9ffff 25%,
            #48d9e7 55%,
            #008dcc 78%,
            #063f91 100%
        );
}


/* Glossy light overlay */

.hero::before {
    content: "";
    position: absolute;

    width: 650px;
    height: 650px;

    top: -250px;
    right: -180px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,.55),
            rgba(0,255,220,.20) 35%,
            transparent 70%
        );

    filter: blur(10px);

    pointer-events: none;

    animation: heroGlow 7s ease-in-out infinite;
}


@keyframes heroGlow {

    0%,100% {
        transform: scale(1);
        opacity: .65;
    }

    50% {
        transform: scale(1.15);
        opacity: .95;
    }

}


/* Second glow */

.hero::after {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    left: -180px;
    bottom: -200px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0,255,180,.38),
            transparent 70%
        );

    filter: blur(25px);

    pointer-events: none;

    animation: bottomGlow 8s ease-in-out infinite;
}


@keyframes bottomGlow {

    0%,100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(80px);
    }

}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.hero-content {
    position: relative;
    z-index: 5;
}


.hero-content .eyebrow {
    color: #123b82;
    font-weight: 800;
}


.hero-content h1 {
    color: #08266d;
    text-shadow:
        0 3px 20px rgba(0,100,200,.08);
}


.hero-content h1 span {
    color: #39b72c;
}


.hero-text {
    color: #163f70;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn-primary {
    background:
        linear-gradient(
            135deg,
            #20e94d,
            #32bd28
        ) !important;

    color: #062d38 !important;

    border: 1px solid rgba(255,255,255,.5) !important;

    box-shadow:
        0 10px 30px rgba(20,220,60,.35),
        0 0 20px rgba(0,255,120,.18);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.btn-primary:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 40px rgba(20,220,60,.48),
        0 0 30px rgba(0,255,120,.30);
}


.btn-outline {
    background: rgba(255,255,255,.72) !important;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border: 1px solid rgba(0,90,170,.20) !important;

    color: #092d79 !important;
}


/* =========================================================
   HERO IMAGE GLASS EFFECT
   ========================================================= */

.hero-image-card {
    position: relative;

    border-radius: 45px;

    padding: 8px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.85),
            rgba(0,255,220,.45),
            rgba(0,120,255,.75)
        );

    box-shadow:
        0 25px 70px rgba(0,70,150,.30),
        0 0 35px rgba(0,255,220,.25);

    z-index: 5;
}


.hero-image-card::before {
    content: "";

    position: absolute;

    inset: -3px;

    border-radius: 48px;

    background:
        linear-gradient(
            120deg,
            #ffffff,
            #00f5d4,
            #00a8ff,
            #38ff55
        );

    opacity: .75;

    filter: blur(8px);

    z-index: -1;

    animation: borderGlow 5s linear infinite;
}


@keyframes borderGlow {

    0% {
        filter: blur(8px);
        opacity: .55;
    }

    50% {
        filter: blur(13px);
        opacity: .9;
    }

    100% {
        filter: blur(8px);
        opacity: .55;
    }

}


/* =========================================================
   SLIDER
   ========================================================= */

.hero-slider {
    border-radius: 38px;
    overflow: hidden;
}


/* =========================================================
   HERO INFO
   ========================================================= */

.hero-info {
    position: relative;
    z-index: 5;

    background: rgba(255,255,255,.20);

    border: 1px solid rgba(255,255,255,.40);

    border-radius: 20px;

    padding: 16px;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow:
        0 10px 35px rgba(0,80,130,.12);
}


.hero-info div {
    border-color: rgba(255,255,255,.45);
}


.hero-info strong {
    color: #073477;
}


.hero-info small {
    color: #245577;
}


/* =========================================================
   GLOSSY NEON LIGHT CURVES
   ========================================================= */

.hero {
    isolation: isolate;
}


.hero-grid::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -200px;
    bottom: -280px;

    border-radius: 50%;

    border: 3px solid rgba(255,255,255,.55);

    box-shadow:
        0 0 20px rgba(0,255,220,.50),
        0 0 50px rgba(0,180,255,.30);

    pointer-events: none;
}


.hero-grid::after {
    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    right: -330px;
    bottom: -400px;

    border-radius: 50%;

    border: 2px solid rgba(0,255,160,.45);

    box-shadow:
        0 0 25px rgba(0,255,160,.35);

    pointer-events: none;
}


/* =========================================================
   FLOATING NEON LIGHTS
   ========================================================= */

.hero-visual::before {
    content: "";

    position: absolute;

    width: 18px;
    height: 18px;

    top: 15%;
    right: 4%;

    border-radius: 50%;

    background: #36ff83;

    box-shadow:
        0 0 10px #36ff83,
        0 0 30px #36ff83,
        0 0 60px rgba(0,255,120,.7);

    animation: neonDot 3s ease-in-out infinite;
}


.hero-visual::after {
    content: "";

    position: absolute;

    width: 12px;
    height: 12px;

    right: 10%;
    bottom: 10%;

    border-radius: 50%;

    background: #00eaff;

    box-shadow:
        0 0 12px #00eaff,
        0 0 35px #00eaff;

    animation: neonDot 4s ease-in-out infinite reverse;
}


@keyframes neonDot {

    0%,100% {
        transform: translateY(0) scale(1);
        opacity: .65;
    }

    50% {
        transform: translateY(-20px) scale(1.3);
        opacity: 1;
    }

}


/* =========================================================
   SERVICE STRIP
   ========================================================= */

.service-strip {
    position: relative;

    background:
        linear-gradient(
            90deg,
            #052f78,
            #007fba,
            #00a8b8,
            #078b45
        );

    color: #fff;

    box-shadow:
        0 -10px 30px rgba(0,150,200,.12);
}


.service-strip-grid div {
    color: #fff;
}


.service-strip-grid span {
    color: #7dffbc;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .hero {
        background:
            radial-gradient(
                circle at 80% 20%,
                rgba(0,255,210,.35),
                transparent 30%
            ),
            linear-gradient(
                160deg,
                #f5ffff,
                #9deff2 45%,
                #008dcc 100%
            );
    }

    .hero::before {
        width: 400px;
        height: 400px;
    }

    .hero-image-card {
        border-radius: 30px;
    }

    .hero-slider {
        border-radius: 25px;
    }

}
/* =========================================================
   AIDER - GLOSSY SERVICE STRIP
   ========================================================= */

.service-strip {
    position: relative;
    z-index: 10;

    background:
        linear-gradient(
            90deg,
            rgba(5, 45, 120, .88),
            rgba(0, 145, 190, .82),
            rgba(0, 190, 170, .78),
            rgba(20, 145, 70, .82)
        ) !important;

    border-top: 1px solid rgba(255,255,255,.35);
    border-bottom: 1px solid rgba(255,255,255,.25);

    box-shadow:
        0 -8px 30px rgba(0, 190, 220, .20),
        0 8px 30px rgba(0, 80, 150, .20);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}


.service-strip-grid {
    background: transparent !important;
}


.service-strip-grid > div {
    color: #ffffff !important;

    border-right:
        1px solid rgba(255,255,255,.20);

    transition:
        background .3s ease,
        transform .3s ease;
}


.service-strip-grid > div:last-child {
    border-right: none;
}


.service-strip-grid > div:hover {
    background: rgba(255,255,255,.10);

    transform: translateY(-2px);
}


.service-strip-grid span {
    color: #6dffb0 !important;

    text-shadow:
        0 0 10px rgba(50,255,150,.55);
}


.service-strip-grid strong {
    color: #ffffff !important;
}


/* =========================================================
   HERO INFO - GLASS CARD
   ========================================================= */

.hero-info {
    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.22),
            rgba(255,255,255,.08)
        ) !important;

    border:
        1px solid rgba(255,255,255,.45) !important;

    box-shadow:
        0 15px 45px rgba(0,80,150,.16),
        inset 0 1px 0 rgba(255,255,255,.35);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}


.hero-info div {
    border-color:
        rgba(255,255,255,.35) !important;
}


.hero-info strong {
    color: #073477 !important;
}


/* =========================================================
   EXTRA NEON GLOW
   ========================================================= */

.service-strip::before {
    content: "";

    position: absolute;

    left: 10%;
    right: 10%;
    top: -2px;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #00ffff,
            #39ff68,
            #00ffff,
            transparent
        );

    box-shadow:
        0 0 12px #00ffff,
        0 0 25px rgba(0,255,180,.65);
}
/* =========================================================
   AIDER — PREMIUM NEON GLASS THEME
   CYAN • BLUE • GREEN
   ========================================================= */


/* =========================================================
   HERO MAIN BACKGROUND
   ========================================================= */

.hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;

    background:
        radial-gradient(
            circle at 82% 18%,
            rgba(0, 255, 220, .34),
            transparent 25%
        ),
        radial-gradient(
            circle at 72% 75%,
            rgba(0, 140, 255, .34),
            transparent 30%
        ),
        radial-gradient(
            circle at 12% 82%,
            rgba(0, 255, 150, .25),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #f7ffff 0%,
            #d8ffff 23%,
            #69e4e9 48%,
            #08a9d2 72%,
            #0753a3 100%
        );
}


/* =========================================================
   HERO GLOSS
   ========================================================= */

.hero::before {
    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    top: -300px;
    right: -180px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,.62),
            rgba(0,255,220,.20) 35%,
            transparent 70%
        );

    filter: blur(12px);

    z-index: -1;

    animation:
        heroGlow 8s ease-in-out infinite;
}


@keyframes heroGlow {

    0%,100% {
        transform: scale(1);
        opacity: .65;
    }

    50% {
        transform: scale(1.18);
        opacity: 1;
    }

}


/* =========================================================
   LOWER GLOW
   ========================================================= */

.hero::after {

    content: "";

    position: absolute;

    width: 550px;
    height: 550px;

    left: -250px;
    bottom: -330px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0,255,150,.38),
            transparent 70%
        );

    filter: blur(25px);

    z-index: -1;

    animation:
        lowerGlow 9s ease-in-out infinite;
}


@keyframes lowerGlow {

    0%,100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(100px);
    }

}


/* =========================================================
   GLOWING CURVES
   ========================================================= */

.hero-grid::before {

    content: "";

    position: absolute;

    width: 560px;
    height: 560px;

    right: -260px;
    bottom: -350px;

    border-radius: 50%;

    border:
        2px solid rgba(255,255,255,.65);

    box-shadow:
        0 0 18px rgba(0,255,220,.70),
        0 0 40px rgba(0,190,255,.40);

    pointer-events: none;

    z-index: 0;
}


.hero-grid::after {

    content: "";

    position: absolute;

    width: 720px;
    height: 720px;

    right: -360px;
    bottom: -470px;

    border-radius: 50%;

    border:
        2px solid rgba(0,255,170,.50);

    box-shadow:
        0 0 25px rgba(0,255,170,.40);

    pointer-events: none;

    z-index: 0;
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.hero-content {
    position: relative;
    z-index: 5;
}


.hero-content .eyebrow {

    color: #063c83;

    font-weight: 800;

    letter-spacing: 2px;
}


.hero-content h1 {

    color: #071f70;

    text-shadow:
        0 4px 25px rgba(0,80,170,.10);
}


.hero-content h1 span {

    color: #35b52c;

}


.hero-text {

    color: #164677;

}


/* =========================================================
   HERO IMAGE — GLASS BORDER
   ========================================================= */

.hero-image-card {

    position: relative;

    z-index: 5;

    padding: 8px;

    border-radius: 45px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.95),
            #00f5d4,
            #00a8ff,
            #38ff65
        );

    box-shadow:

        0 25px 70px
        rgba(0,70,160,.30),

        0 0 35px
        rgba(0,255,220,.30);
}


.hero-image-card::before {

    content: "";

    position: absolute;

    inset: -5px;

    border-radius: 50px;

    background:
        linear-gradient(
            120deg,
            #ffffff,
            #00ffff,
            #008cff,
            #39ff62
        );

    filter: blur(9px);

    opacity: .65;

    z-index: -1;

    animation:
        imageGlow 5s linear infinite;
}


@keyframes imageGlow {

    0%,100% {
        opacity: .55;
    }

    50% {
        opacity: .95;
    }

}


.hero-slider {

    border-radius: 38px;

    overflow: hidden;
}


/* =========================================================
   HERO ARROWS
   ========================================================= */

.slider-arrow {

    background:
        rgba(255,255,255,.90) !important;

    color:
        #073c87 !important;

    border:
        1px solid rgba(255,255,255,.80) !important;

    box-shadow:
        0 8px 25px rgba(0,70,150,.18);

    backdrop-filter:
        blur(10px);

    -webkit-backdrop-filter:
        blur(10px);

}


.slider-arrow:hover {

    background:
        #ffffff !important;

    box-shadow:
        0 0 20px rgba(0,255,220,.40);
}


/* =========================================================
   SLIDER DOTS
   ========================================================= */

.slider-dot {

    background:
        rgba(255,255,255,.70) !important;

    box-shadow:
        0 0 8px rgba(255,255,255,.40);
}


.slider-dot.active {

    background:
        #38d936 !important;

    box-shadow:
        0 0 12px #38ff65,
        0 0 25px rgba(0,255,100,.60);
}


/* =========================================================
   SLIDE CAPTION
   ========================================================= */

.slide-caption {

    background:
        linear-gradient(
            transparent,
            rgba(0,35,75,.75)
        ) !important;
}


.slide-caption strong {

    text-shadow:
        0 2px 8px rgba(0,0,0,.30);
}


/* =========================================================
   HERO BUTTONS
   ========================================================= */

.btn-primary {

    background:
        linear-gradient(
            135deg,
            #20f04d,
            #31c52c
        ) !important;

    color:
        #063438 !important;

    border:
        1px solid rgba(255,255,255,.60) !important;

    box-shadow:

        0 10px 30px
        rgba(30,220,60,.35),

        0 0 25px
        rgba(0,255,100,.18);
}


.btn-primary:hover {

    transform:
        translateY(-4px);

    box-shadow:

        0 15px 40px
        rgba(20,220,60,.50),

        0 0 35px
        rgba(0,255,100,.30);
}


.btn-outline {

    background:
        rgba(255,255,255,.72) !important;

    color:
        #073477 !important;

    border:
        1px solid
        rgba(0,80,170,.20) !important;

    backdrop-filter:
        blur(12px);

    -webkit-backdrop-filter:
        blur(12px);

}


/* =========================================================
   HERO STATS — GLASS CARD
   ========================================================= */

.hero-info {

    position: relative;

    z-index: 5;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.30),
            rgba(255,255,255,.10)
        ) !important;

    border:
        1px solid
        rgba(255,255,255,.55) !important;

    border-radius:
        22px !important;

    box-shadow:

        0 15px 45px
        rgba(0,80,150,.15),

        inset 0 1px 0
        rgba(255,255,255,.55);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);
}


.hero-info div {

    border-color:
        rgba(255,255,255,.35) !important;
}


.hero-info strong {

    color:
        #073477 !important;
}


.hero-info small {

    color:
        #245577 !important;
}


/* =========================================================
   SERVICE STRIP — GLASS NEON
   ========================================================= */

.service-strip {

    position: relative;

    z-index: 20;

    background:
        linear-gradient(
            90deg,
            rgba(5,55,130,.92),
            rgba(0,140,190,.90),
            rgba(0,190,180,.88),
            rgba(20,150,75,.90)
        ) !important;

    border-top:
        1px solid
        rgba(255,255,255,.40);

    border-bottom:
        1px solid
        rgba(255,255,255,.25);

    box-shadow:

        0 -8px 30px
        rgba(0,200,220,.25),

        0 10px 35px
        rgba(0,80,150,.20);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);
}


.service-strip::before {

    content: "";

    position: absolute;

    top: -2px;

    left: 8%;
    right: 8%;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #00ffff,
            #39ff65,
            #00ffff,
            transparent
        );

    box-shadow:
        0 0 12px #00ffff,
        0 0 25px rgba(0,255,180,.65);
}


.service-strip-grid {

    background:
        transparent !important;
}


.service-strip-grid > div {

    color:
        #ffffff !important;

    border-right:
        1px solid
        rgba(255,255,255,.20);

    transition:
        .3s ease;
}


.service-strip-grid > div:hover {

    background:
        rgba(255,255,255,.10);

    transform:
        translateY(-2px);
}


.service-strip-grid span {

    color:
        #70ffb0 !important;

    text-shadow:
        0 0 10px
        rgba(50,255,150,.60);
}


.service-strip-grid strong {

    color:
        #ffffff !important;
}


/* =========================================================
   FLOATING NEON LIGHTS
   ========================================================= */

.hero-visual::before {

    content: "";

    position: absolute;

    width: 18px;
    height: 18px;

    top: 12%;
    right: 3%;

    border-radius: 50%;

    background:
        #39ff82;

    box-shadow:

        0 0 10px #39ff82,
        0 0 30px #39ff82,
        0 0 60px rgba(0,255,120,.70);

    animation:
        neonFloat 3s ease-in-out infinite;
}


.hero-visual::after {

    content: "";

    position: absolute;

    width: 12px;
    height: 12px;

    right: 12%;
    bottom: 12%;

    border-radius: 50%;

    background:
        #00eaff;

    box-shadow:

        0 0 12px #00eaff,
        0 0 35px #00eaff;

    animation:
        neonFloat 4s ease-in-out infinite reverse;
}


@keyframes neonFloat {

    0%,100% {

        transform:
            translateY(0)
            scale(1);

        opacity: .65;
    }

    50% {

        transform:
            translateY(-20px)
            scale(1.35);

        opacity: 1;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .hero {

        background:

            radial-gradient(
                circle at 80% 15%,
                rgba(0,255,220,.35),
                transparent 30%
            ),

            linear-gradient(
                160deg,
                #f5ffff,
                #8debed 45%,
                #008fd0 100%
            );
    }


    .hero-image-card {

        border-radius:
            30px;
    }


    .hero-slider {

        border-radius:
            25px;
    }


    .service-strip-grid {

        grid-template-columns:
            1fr 1fr !important;
    }


    .service-strip-grid > div {

        border-bottom:
            1px solid
            rgba(255,255,255,.18);
    }

}
/* =========================================================
   FINAL GAP BETWEEN HERO AND SERVICE STRIP
   ========================================================= */

.service-strip {
    position: relative !important;

    top: 24px !important;

    margin-top: 0 !important;
    margin-bottom: 24px !important;
}
/* =========================================================
   AIDER MOBILE MENU FIX
   ========================================================= */

@media (max-width: 900px) {

    .menu-button {
        display: flex !important;

        align-items: center;
        justify-content: center;

        width: 48px;
        height: 48px;

        border: none;
        background: transparent;

        color: #071f70;

        font-size: 30px;

        cursor: pointer;

        position: relative;
        z-index: 9999;
    }


    .navbar {
        display: none !important;

        position: absolute;

        top: 100%;
        left: 15px;
        right: 15px;

        width: auto;

        padding: 18px;

        flex-direction: column;

        gap: 8px;

        background:
            rgba(255,255,255,.96);

        border:
            1px solid rgba(0,180,200,.20);

        border-radius: 20px;

        box-shadow:
            0 20px 50px rgba(0,70,130,.20),
            0 0 25px rgba(0,255,200,.12);

        backdrop-filter:
            blur(18px);

        -webkit-backdrop-filter:
            blur(18px);

        z-index: 9998;
    }


    .navbar.show {
        display: flex !important;
    }


    .navbar a {
        width: 100%;

        padding: 14px 16px;

        border-radius: 12px;

        color: #071f70 !important;

        text-align: left;

        text-decoration: none;

        background: transparent;

        transition:
            background .25s ease,
            color .25s ease;
    }


    .navbar a:hover,
    .navbar a:active {
        background:
            linear-gradient(
                90deg,
                rgba(0,220,210,.12),
                rgba(60,210,70,.12)
            );

        color: #20a83a !important;
    }


    .navbar .nav-button {
        margin-top: 8px;

        text-align: center;

        background:
            linear-gradient(
                135deg,
                #20e94d,
                #31c52c
            ) !important;

        color: #063438 !important;

        box-shadow:
            0 8px 25px rgba(30,220,60,.25);
    }


    .header {
        position: relative !important;
        z-index: 10000;
    }


    .nav-container {
        position: relative;
    }

}
/* =========================================================
   AIDER PREMIUM WHATSAPP WIDGET
   ========================================================= */

.whatsapp-widget {

    position: fixed;

    right: 28px;
    bottom: 24px;

    width: 90px;
    height: 120px;

    z-index: 99999;

    display: flex;

    align-items: center;
    justify-content: flex-end;

    flex-direction: column;

    pointer-events: none;
}


/* =========================================================
   MAIN WHATSAPP BUTTON
   ========================================================= */

.whatsapp-button {

    position: relative;

    width: 58px;
    height: 58px;

    border-radius: 50%;

    display: flex !important;

    align-items: center;
    justify-content: center;

    text-decoration: none;

    background:
        linear-gradient(
            145deg,
            #25d366,
            #10b94f
        );

    border:
        2px solid
        rgba(255,255,255,.85);

    box-shadow:

        0 8px 25px
        rgba(0,190,90,.35),

        0 0 0 0
        rgba(37,211,102,.60);

    pointer-events: auto;

    animation:
        whatsappPulse 2.2s infinite;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.whatsapp-button:hover {

    transform:
        scale(1.12);

    box-shadow:

        0 12px 35px
        rgba(0,190,90,.50),

        0 0 35px
        rgba(37,211,102,.65);
}


/* =========================================================
   WHATSAPP ICON
   ========================================================= */

.whatsapp-icon {

    width: 31px;
    height: 31px;

    display: flex;

    align-items: center;
    justify-content: center;
}


.whatsapp-icon svg {

    width: 31px;
    height: 31px;

    fill: #ffffff;

    filter:
        drop-shadow(
            0 2px 3px
            rgba(0,0,0,.12)
        );
}


/* =========================================================
   PULSE ANIMATION
   ========================================================= */

@keyframes whatsappPulse {

    0% {

        box-shadow:

            0 8px 25px
            rgba(0,190,90,.35),

            0 0 0 0
            rgba(37,211,102,.60);
    }

    60% {

        box-shadow:

            0 8px 25px
            rgba(0,190,90,.35),

            0 0 0 18px
            rgba(37,211,102,0);
    }

    100% {

        box-shadow:

            0 8px 25px
            rgba(0,190,90,.35),

            0 0 0 0
            rgba(37,211,102,0);
    }

}


/* =========================================================
   NOTIFICATION DOT
   ========================================================= */

.whatsapp-notification {

    position: absolute;

    top: -3px;
    right: -2px;

    width: 19px;
    height: 19px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        #ff2d2d;

    color: #ffffff;

    font-size: 10px;
    font-weight: 800;

    border:
        2px solid #ffffff;

    box-shadow:
        0 3px 10px
        rgba(0,0,0,.20);

    animation:
        notificationPulse 1.6s ease-in-out infinite;
}


@keyframes notificationPulse {

    0%,100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.18);
    }

}


/* =========================================================
   CHAT LABEL
   ========================================================= */

.whatsapp-label {

    margin-top: 9px;

    padding: 7px 13px;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #20d968,
            #10b94f
        );

    color: #ffffff;

    font-size: 12px;
    font-weight: 800;

    white-space: nowrap;

    box-shadow:
        0 7px 20px
        rgba(0,180,80,.25);

    pointer-events: none;

    animation:
        labelFloat 3s ease-in-out infinite;
}


@keyframes labelFloat {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }

}


/* =========================================================
   POPUP MESSAGE
   ========================================================= */

.whatsapp-popup {

    position: absolute;

    right: 0;
    bottom: 112px;

    width: 235px;

    padding: 17px 38px 17px 18px;

    border-radius: 18px;

    background:
        rgba(255,255,255,.97);

    border:
        1.5px solid
        rgba(37,211,102,.60);

    box-shadow:

        0 15px 45px
        rgba(0,100,80,.18),

        0 0 25px
        rgba(37,211,102,.18);

    backdrop-filter:
        blur(15px);

    -webkit-backdrop-filter:
        blur(15px);

    pointer-events: auto;

    opacity: 0;

    transform:
        translateY(15px)
        scale(.92);

    visibility: hidden;

    animation:
        popupAppear 6s ease-in-out infinite;
}


/* popup arrow */

.whatsapp-popup::after {

    content: "";

    position: absolute;

    right: 27px;
    bottom: -9px;

    width: 17px;
    height: 17px;

    background:
        #ffffff;

    border-right:
        1.5px solid
        rgba(37,211,102,.60);

    border-bottom:
        1.5px solid
        rgba(37,211,102,.60);

    transform:
        rotate(45deg);
}


/* =========================================================
   POPUP ANIMATION
   ========================================================= */

@keyframes popupAppear {

    0%,
    8% {

        opacity: 0;

        visibility: hidden;

        transform:
            translateY(15px)
            scale(.92);
    }

    15%,
    72% {

        opacity: 1;

        visibility: visible;

        transform:
            translateY(0)
            scale(1);
    }

    82%,
    100% {

        opacity: 0;

        visibility: hidden;

        transform:
            translateY(15px)
            scale(.92);
    }

}


/* =========================================================
   POPUP TEXT
   ========================================================= */

.whatsapp-popup-title {

    color:
        #123f42;

    font-size: 16px;

    font-weight: 800;

    margin-bottom: 5px;
}


.whatsapp-popup-text {

    color:
        #536b70;

    font-size: 13px;

    line-height: 1.5;
}


/* =========================================================
   CLOSE BUTTON
   ========================================================= */

.whatsapp-close {

    position: absolute;

    top: 8px;
    right: 9px;

    width: 23px;
    height: 23px;

    border: none;

    border-radius: 50%;

    background:
        transparent;

    color:
        #8c9a9d;

    font-size: 20px;

    line-height: 1;

    cursor: pointer;

    z-index: 5;
}


.whatsapp-close:hover {

    background:
        rgba(0,0,0,.06);

    color:
        #123f42;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .whatsapp-widget {

        right: 16px;
        bottom: 18px;

        width: 75px;
        height: 100px;
    }


    .whatsapp-button {

        width: 54px;
        height: 54px;
    }


    .whatsapp-icon,
    .whatsapp-icon svg {

        width: 28px;
        height: 28px;
    }


    .whatsapp-label {

        font-size: 10px;

        padding:
            6px 10px;

        margin-top: 7px;
    }


    .whatsapp-popup {

        right: 0;

        bottom: 102px;

        width: 215px;

        padding:
            15px 34px 15px 15px;
    }

}
/* Remove WhatsApp notification red dot */
.whatsapp-notification {
    display: none !important;
}
/* Reduce gap between WhatsApp button and label */
.whatsapp-label {
    margin-top: 2px !important;
}
/* Remove Chat with us label */
.whatsapp-label {
    display: none !important;
}

/* Keep WhatsApp widget compact */
.whatsapp-widget {
    height: 65px !important;
}
/* =========================================================
   AIDER PROFESSIONAL PROFILE CARDS
   Same premium theme for all psychologists
   ========================================================= */

.profile-detail {
    position: relative;

    margin-top: 35px;
    padding: 38px 42px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.98),
            rgba(247,252,250,.98)
        );

    border-radius: 24px;

    border: 1px solid rgba(20,80,100,.08);

    box-shadow:
        0 15px 45px rgba(20,60,90,.09),
        0 2px 8px rgba(20,60,90,.04);

    overflow: hidden;
}


/* Green decorative glow */

.profile-detail::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -70px;
    top: -70px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(55,190,75,.16),
            transparent 70%
        );

    pointer-events: none;
}


/* Blue decorative glow */

.profile-detail::after {
    content: "";

    position: absolute;

    width: 140px;
    height: 140px;

    left: -70px;
    bottom: -70px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0,180,220,.10),
            transparent 70%
        );

    pointer-events: none;
}


/* =========================================================
   NAME
   ========================================================= */

.profile-detail h2 {
    position: relative;
    z-index: 2;

    margin-top: 0;
    margin-bottom: 8px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 34px !important;

    line-height: 1.15;

    color:
        #071f70 !important;
}


/* =========================================================
   DESIGNATION
   ========================================================= */

.profile-detail .profile-meta {
    position: relative;
    z-index: 2;

    margin-bottom: 24px;

    color:
        #35a82f;

    font-size: 15px;

    font-weight: 800;

    letter-spacing: .2px;
}


/* =========================================================
   PARAGRAPHS
   ========================================================= */

.profile-detail p {
    position: relative;
    z-index: 2;

    max-width: 1000px;

    margin-bottom: 17px;

    color:
        #405a78;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   HEADINGS
   ========================================================= */

.profile-detail h3 {
    position: relative;
    z-index: 2;

    margin-top: 30px;
    margin-bottom: 15px;

    color:
        #092b73;

    font-size: 19px;

    font-weight: 800;
}


/* =========================================================
   LIST
   ========================================================= */

.profile-detail .program-list {
    position: relative;
    z-index: 2;

    margin-top: 8px;

    padding-left: 22px;

    color:
        #405a78;

    line-height: 1.9;
}


.profile-detail .program-list li {
    margin-bottom: 4px;
}


/* Green bullet */

.profile-detail .program-list li::marker {
    color:
        #3aaa2f;

    font-weight: 800;
}


/* =========================================================
   EDUCATION / EXPERIENCE
   ========================================================= */

.profile-detail strong {
    color:
        #163d72;
}


/* =========================================================
   QUOTE
   ========================================================= */

.profile-detail .profile-quote {
    position: relative;
    z-index: 2;

    margin-top: 28px;

    padding: 20px 24px;

    border-left:
        4px solid
        #35a82f;

    border-radius:
        0 14px 14px 0;

    background:
        linear-gradient(
            90deg,
            rgba(53,168,47,.07),
            rgba(0,180,220,.03)
        );

    color:
        #536b78;

    font-family:
        "DM Sans",
        sans-serif;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   HOVER EFFECT
   ========================================================= */

.profile-detail {
    transition:
        transform .35s ease,
        box-shadow .35s ease;
}


.profile-detail:hover {
    transform:
        translateY(-4px);

    box-shadow:
        0 22px 55px rgba(20,60,90,.13),
        0 0 25px rgba(40,190,100,.06);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .profile-detail {
        margin-top: 25px;

        padding:
            28px 22px;

        border-radius:
            20px;
    }


    .profile-detail h2 {
        font-size:
            30px !important;
    }


    .profile-detail .profile-meta {
        font-size:
            14px;
    }


    .profile-detail p {
        font-size:
            14px;

        line-height:
            1.75;
    }


    .profile-detail h3 {
        font-size:
            18px;
    }

}
/* Reduce gap between header and hero */
.hero {
    padding-top: 35px !important;
}

/* =========================================================
   AIDER - PREMIUM OUR APPROACH SECTION
   Lightweight / No continuous animation
   ========================================================= */

#approach {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            #07145f 0%,
            #091b68 55%,
            #12345f 100%
        ) !important;
}


/* Subtle decorative circles */

#approach::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    left: -250px;
    top: -180px;

    border-radius: 50%;

    border:
        1px solid rgba(255,255,255,.07);

    box-shadow:
        0 0 0 35px rgba(255,255,255,.025),
        0 0 0 70px rgba(255,255,255,.018);

    pointer-events: none;
}


#approach::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -180px;
    bottom: -160px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(60,190,80,.10),
            transparent 70%
        );

    pointer-events: none;
}


/* Main layout */

#approach .container {
    position: relative;
    z-index: 2;
}


/* Left side */

#approach .approach-left {
    position: relative;
}


#approach .approach-left::after {
    content: "";

    position: absolute;

    width: 90px;
    height: 4px;

    left: 0;
    bottom: -28px;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            #4caf32,
            #29d7d0
        );
}


/* Main heading */

#approach h2 {
    line-height: 1.05;

    letter-spacing: -1px;
}


#approach h2 span {
    color:
        #4caf32;
}


/* Right content */

#approach .approach-right {
    border-left:
        1px solid
        rgba(255,255,255,.14);

    padding-left: 40px;
}


/* Subtitle */

#approach .approach-right > h3 {
    margin-top: 0;

    margin-bottom: 14px;

    color: #ffffff;

    font-family:
        "Playfair Display",
        serif;

    font-size: 25px;

    line-height: 1.35;
}


/* Description */

#approach .approach-right > p {
    color:
        rgba(255,255,255,.78);

    line-height: 1.75;

    max-width: 650px;
}


/* =========================================================
   APPROACH STEPS
   ========================================================= */

#approach .approach-steps {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 14px;

    margin-top: 30px;
}


/* Individual step */

#approach .approach-step {
    position: relative;

    padding: 18px 20px;

    border-radius: 15px;

    background:
        rgba(255,255,255,.055);

    border:
        1px solid
        rgba(255,255,255,.11);

    transition:
        transform .25s ease,
        background .25s ease,
        border-color .25s ease;
}


/* Hover only */

#approach .approach-step:hover {
    transform:
        translateY(-3px);

    background:
        rgba(255,255,255,.09);

    border-color:
        rgba(76,175,50,.45);
}


/* Number */

#approach .approach-step-number {
    display: block;

    margin-bottom: 7px;

    color:
        #4caf32;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;
}


/* Step title */

#approach .approach-step strong {
    display: block;

    color:
        #ffffff;

    font-size: 14px;
}


/* Small green line */

#approach .approach-step::before {
    content: "";

    position: absolute;

    left: 0;
    top: 18px;

    width: 3px;
    height: 24px;

    border-radius:
        0 5px 5px 0;

    background:
        #4caf32;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    #approach .approach-right {
        border-left: none;

        border-top:
            1px solid
            rgba(255,255,255,.14);

        padding-left: 0;

        padding-top: 30px;

        margin-top: 35px;
    }


    #approach .approach-steps {
        grid-template-columns: 1fr;

        gap: 12px;
    }


    #approach .approach-step {
        padding: 16px 18px;
    }

}
/* =========================================================
   AIDER - OUR APPROACH PREMIUM DESIGN
   Lightweight - Smooth scrolling
   ========================================================= */

.approach-section {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #07145f 0%,
            #091b68 55%,
            #12365f 100%
        ) !important;

    color: #fff;
}


/* Subtle decorative circle */

.approach-section::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    left: -250px;
    top: -180px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.07);

    box-shadow:
        0 0 0 35px rgba(255,255,255,.025),
        0 0 0 70px rgba(255,255,255,.015);

    pointer-events: none;
}


/* Small green glow */

.approach-section::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -180px;
    bottom: -180px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(76,175,50,.12),
            transparent 70%
        );

    pointer-events: none;
}


/* Main grid */

.approach-grid {
    position: relative;
    z-index: 2;

    align-items: center;
}


/* LEFT SIDE */

.approach-grid > div:first-child {
    padding-right: 45px;
}


.approach-grid > div:first-child h2 {
    margin-top: 25px;

    max-width: 500px;

    font-family:
        "Playfair Display",
        serif;

    font-size: clamp(48px, 5vw, 72px);

    line-height: 1.02;

    letter-spacing: -2px;

    color: #fff;
}


.approach-grid > div:first-child h2 span {
    color: #4caf32;
}


/* Green label */

.approach-section .section-label.light {
    color: #72ff61;
}


/* LEFT decorative line */

.approach-grid > div:first-child::after {
    content: "";

    display: block;

    width: 85px;
    height: 4px;

    margin-top: 32px;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            #4caf32,
            #20d9d0
        );
}


/* RIGHT SIDE */

.approach-content {
    padding-left: 40px;

    border-left:
        1px solid
        rgba(255,255,255,.15);
}


/* Quote */

.approach-content .quote {
    margin: 0 0 18px;

    color: #fff;

    font-family:
        "Playfair Display",
        serif;

    font-size: 25px;

    line-height: 1.45;
}


/* Description */

.approach-content > p:not(.quote) {
    max-width: 650px;

    margin-bottom: 30px;

    color:
        rgba(255,255,255,.76);

    font-size: 15px;

    line-height: 1.75;
}


/* =========================================================
   SIX APPROACH CARDS
   ========================================================= */

.approach-features {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 12px;
}


.approach-features > div {
    position: relative;

    min-height: 75px;

    padding: 16px 18px 15px 22px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    border-radius: 14px;

    background:
        rgba(255,255,255,.055);

    border:
        1px solid
        rgba(255,255,255,.10);

    box-shadow:
        inset 0 1px 0
        rgba(255,255,255,.04);

    transition:
        transform .25s ease,
        background .25s ease,
        border-color .25s ease;
}


/* Green side accent */

.approach-features > div::before {
    content: "";

    position: absolute;

    left: 0;
    top: 18px;

    width: 3px;
    height: 25px;

    border-radius:
        0 5px 5px 0;

    background:
        #4caf32;
}


/* Number */

.approach-features > div span {
    margin-bottom: 5px;

    color:
        #63ef50;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;
}


/* Title */

.approach-features > div strong {
    color: #fff;

    font-size: 14px;

    line-height: 1.35;
}


/* Hover */

.approach-features > div:hover {
    transform:
        translateY(-3px);

    background:
        rgba(255,255,255,.09);

    border-color:
        rgba(76,175,50,.40);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .approach-grid {
        grid-template-columns: 1fr !important;
    }


    .approach-grid > div:first-child {
        padding-right: 0;
    }


    .approach-grid > div:first-child h2 {
        font-size: 48px;

        letter-spacing: -1px;
    }


    .approach-content {
        margin-top: 40px;

        padding-left: 0;

        padding-top: 30px;

        border-left: none;

        border-top:
            1px solid
            rgba(255,255,255,.15);
    }


    .approach-content .quote {
        font-size: 21px;
    }


    .approach-features {
        grid-template-columns: 1fr;
    }

}
/* =========================================================
   AIDER - PROFESSIONALS 5 CARD LAYOUT
   ========================================================= */

.professionals-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.professional-card {
    min-width: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.professional-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.professional-content h3 {
    min-height: 52px;
    display: flex;
    align-items: flex-start;
}

.professional-content p {
    min-height: 44px;
}

.professional-content a {
    margin-top: auto;
}


/* TABLET */

@media (max-width: 1100px) {

    .professionals-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }

}


/* MOBILE */

@media (max-width: 750px) {

    .professionals-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .professional-content h3,
    .professional-content p {
        min-height: auto;
    }

}


/* SMALL MOBILE */

@media (max-width: 520px) {

    .professionals-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

}
/* Professional profile anchor offset */
#founder,
#fathimathu,
#sreejal,
#najiya,
#mariya {
    scroll-margin-top: 130px;
}
/* =========================================================
   AIDER - HERO PHOTO BACKGROUND
   ========================================================= */

.hero {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,0.96) 0%,
            rgba(255,255,255,0.88) 42%,
            rgba(255,255,255,0.35) 72%,
            rgba(255,255,255,0.12) 100%
        ),
        url("hero-background.png") center center / cover no-repeat !important;
}
@media (max-width: 700px) {

    .hero {
        background-position: center center;
    }

}
/* =========================================================
   AIDER HERO - MORE VISIBLE BACKGROUND
   ========================================================= */

.hero {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.78) 0%,
            rgba(255, 255, 255, 0.68) 28%,
            rgba(255, 255, 255, 0.38) 52%,
            rgba(255, 255, 255, 0.08) 78%,
            rgba(255, 255, 255, 0) 100%
        ),
        url("hero-background.png") center center / cover no-repeat !important;
}
/* =========================================================
   AIDER - OUR APPROACH PHOTO BACKGROUND
   ========================================================= */

.approach-section {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(7, 20, 95, 0.82) 0%,
            rgba(7, 20, 95, 0.76) 42%,
            rgba(7, 20, 95, 0.78) 70%,
            rgba(7, 20, 95, 0.86) 100%
        ),
        url("approach-background.png") center center / cover no-repeat !important;
}
/* =========================================================
   AIDER SERVICES - DARK PHOTO THEME
   ========================================================= */

.services-section {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(5, 20, 70, 0.80) 0%,
            rgba(8, 31, 82, 0.88) 40%,
            rgba(12, 45, 78, 0.78) 70%,
            rgba(8, 25, 60, 0.84) 100%
        ),
        url("services-background.png") center center / cover no-repeat !important;

    color: #fff;
}

/* Headings */

.services-section h2,
.services-section h3,
.services-section .section-label {
    color: #fff;
}

/* Description text */

.services-section p {
    color: rgba(255,255,255,0.82);
}

/* Service cards */

.services-section .service-card {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow:
        0 12px 35px rgba(0,0,0,0.16);
}

/* Card text */

.services-section .service-card h3 {
    color: #fff;
}

.services-section .service-card p {
    color: rgba(255,255,255,0.78);
}

/* Learn More */

.services-section .service-card a {
    color: #63e34a;
}

/* Small service boxes */

.services-section .service-list-item {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.14);
    color: #fff;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.services-section .service-list-item:hover {
    background: rgba(255,255,255,0.17);
    border-color: rgba(76,175,50,0.55);
}

/* Section headings */

.services-section .service-category {
    color: #fff;
}

/* Green accent */

.services-section .section-label {
    color: #63e34a;
}
/* =========================================================
   AIDER - MOBILE PERFORMANCE OPTIMIZATION
   ========================================================= */

@media (max-width: 700px) {

    /* Disable expensive blur effects */
    .service-card,
    .service-list-item,
    .approach-features > div {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    /* Reduce heavy shadows */
    .service-card,
    .service-list-item,
    .approach-features > div {
        box-shadow: none !important;
    }

    /* Reduce background rendering load */
    .services-section,
    .approach-section,
    .hero {
        background-attachment: scroll !important;
    }

    /* Disable decorative pseudo-elements */
    .approach-section::before,
    .approach-section::after {
        display: none !important;
    }

    /* Keep transitions lightweight */
    * {
        transition-duration: 0.15s !important;
    }
}
/* =========================================================
   AIDER - PREMIUM SCROLL REVEAL ANIMATION
   Lightweight / Mobile Friendly
   ========================================================= */

/* Elements start slightly hidden */
.scroll-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

/* Visible state */
.scroll-reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger effect */
.scroll-delay-1 {
    transition-delay: 0.08s;
}

.scroll-delay-2 {
    transition-delay: 0.16s;
}

.scroll-delay-3 {
    transition-delay: 0.24s;
}

.scroll-delay-4 {
    transition-delay: 0.32s;
}

/* Cards - subtle hover only */
.service-card,
.program-card,
.professional-card,
.why-card,
.talk-card {
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.service-card:hover,
.program-card:hover,
.professional-card:hover,
.why-card:hover,
.talk-card:hover {
    transform: translateY(-5px);
}

/* Mobile - lighter animation */
@media (max-width: 700px) {

    .scroll-reveal {
        transform: translateY(14px);
        transition-duration: 0.5s;
    }

    .service-card:hover,
    .program-card:hover,
    .professional-card:hover,
    .why-card:hover,
    .talk-card:hover {
        transform: none;
    }

}
/* =========================================================
   AIDER PROGRAMS - PREMIUM ANIMATED CARDS
   ========================================================= */

.program-card {
    position: relative;
    overflow: hidden;

    border: 1px solid rgba(10, 30, 100, 0.10);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

/* Animated top light */

.program-card::before {
    content: "";
    position: absolute;

    top: 0;
    left: -120%;

    width: 85%;
    height: 3px;

    background: linear-gradient(
        90deg,
        transparent,
        #4caf32,
        #20c9d8,
        transparent
    );

    transition: left 0.75s ease;
}

/* Soft animated corner glow */

.program-card::after {
    content: "";

    position: absolute;

    width: 160px;
    height: 160px;

    right: -90px;
    bottom: -90px;

    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(76, 175, 50, 0.16),
        transparent 70%
    );

    opacity: 0;

    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}


/* =========================================================
   HOVER EFFECT
   ========================================================= */

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

    border-color: rgba(76, 175, 50, 0.38);

    box-shadow:
        0 18px 45px rgba(10, 30, 100, 0.13);
}

.program-card:hover::before {
    left: 120%;
}

.program-card:hover::after {
    opacity: 1;
    transform: scale(1.15);
}


/* =========================================================
   PROGRAM NUMBER
   ========================================================= */

.program-card .program-number {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 95px;
    height: 30px;

    padding: 0 13px;

    border-radius: 30px;

    background: rgba(76, 175, 50, 0.08);

    color: #4caf32;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.5px;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.program-card:hover .program-number {
    background: rgba(76, 175, 50, 0.15);

    transform: translateY(-2px);

    box-shadow:
        0 5px 15px rgba(76, 175, 50, 0.12);
}


/* =========================================================
   PROGRAM TITLE
   ========================================================= */

.program-card h3 {
    transition:
        transform 0.3s ease,
        color 0.3s ease;
}

.program-card:hover h3 {
    transform: translateX(3px);

    color: #18348f;
}


/* =========================================================
   PROGRAM DESCRIPTION
   ========================================================= */

.program-card p {
    transition: color 0.3s ease;
}


/* =========================================================
   LIST ITEMS
   ========================================================= */

.program-card li {
    transition:
        transform 0.25s ease,
        color 0.25s ease;
}

.program-card:hover li {
    transform: translateX(2px);
}


/* =========================================================
   MOBILE - LIGHTWEIGHT
   ========================================================= */

@media (max-width: 700px) {

    .program-card {
        transition:
            transform 0.25s ease,
            border-color 0.25s ease;
    }

    .program-card:hover {
        transform: none;

        box-shadow: none;
    }

    .program-card:hover::before {
        left: -120%;
    }

    .program-card:hover::after {
        opacity: 0;
    }

    .program-card:hover .program-number {
        transform: none;

        box-shadow: none;
    }

    .program-card:hover h3 {
        transform: none;
    }

}
/* =========================================================
   AIDER - PROGRAMS BACKGROUND
   ========================================================= */

#programs {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(248, 252, 251, 0.70) 0%,
            rgba(248, 252, 251, 0.62) 45%,
            rgba(248, 252, 251, 0.56) 100%
        ),
        url("programs-background.png")
        center center / cover no-repeat !important;
}
/* =========================================================
   AIDER - SERVICES LIGHT THEME
   ========================================================= */

#services {
    position: relative;
    overflow: hidden;

    color: #08206f;

    background:
        linear-gradient(
            90deg,
            rgba(248, 252, 251, 0.70) 0%,
            rgba(248, 252, 251, 0.62) 45%,
            rgba(248, 252, 251, 0.56) 100%

        ),
        url("services-background.png")
        center center / cover no-repeat !important;
}

/* Keep section text readable */

#services h2,
#services h3,
#services p,
#services strong,
#services .service-category {
    color: #08206f;
}

/* Section label */

#services .section-label {
    color: #3fae2a;
}

/* Service cards */

#services .service-card {
    background: rgba(255, 255, 255, 0.94);

    border: 1px solid rgba(8, 32, 111, 0.08);

    box-shadow:
        0 12px 35px rgba(8, 32, 111, 0.07);
}

/* First highlighted card */

#services .service-card:first-child {
    background: #0b1b70;
    color: #fff;
}

#services .service-card:first-child h3,
#services .service-card:first-child p,
#services .service-card:first-child strong {
    color: #fff;
}

/* Category headings */

#services .service-category {
    color: #08206f;
}

/* Hover */

#services .service-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 18px 40px rgba(8, 32, 111, 0.12);
}


/* Mobile */

@media (max-width: 700px) {

    #services .service-card:hover {
        transform: none;
    }

}
/* =========================================================
   AIDER SERVICES - TEXT VISIBILITY FIX
   ========================================================= */

/* Service category headings */
#services .service-category {
    color: #08206f !important;
}

/* Service list items */
#services .service-list-item {
    color: #173b72 !important;

    background: rgba(255, 255, 255, 0.88);

    border: 1px solid rgba(8, 32, 111, 0.06);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

/* Hover */
#services .service-list-item:hover {
    color: #08206f !important;

    background: rgba(255, 255, 255, 0.98);

    border-color: rgba(76, 175, 50, 0.35);

    transform: translateY(-2px);
}

/* Make sure all text inside stays visible */
#services .service-list-item,
#services .service-list-item span,
#services .service-list-item strong {
    color: #173b72 !important;
}


/* First/main service card remains dark */
#services .service-card:first-child {
    background: #0b1b70;
}

#services .service-card:first-child,
#services .service-card:first-child h3,
#services .service-card:first-child p,
#services .service-card:first-child strong {
    color: #ffffff !important;
}


/* Mobile */
@media (max-width: 700px) {

    #services .service-list-item:hover {
        transform: none;
    }

}
.centre-detail a[href*="google.com/maps"] {
    display: inline-block;
    margin-top: 6px;
    padding: 7px 12px;
    border-radius: 6px;
    background: #f5f5f5;
    color: #315a8a;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #e1e5e8;
    transition: 0.2s ease;
}

.centre-detail a[href*="google.com/maps"]:hover {
    background: #eaf5e8;
    color: #2e8b2e;
    border-color: #b9ddb9;
}
.centre-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.centre-detail {
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 700px) {
    .centre-detail-grid {
        grid-template-columns: 1fr;
    }
}
.centre-detail-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 20px !important;
}

.centre-detail {
    width: auto !important;
    box-sizing: border-box;
}

@media (max-width: 700px) {
    .centre-detail-grid {
        grid-template-columns: 1fr !important;
    }
}
/* =========================================
   PAPER PROFILE / CLIPPED DOCUMENT EFFECT
   ========================================= */

.paper-profile {
    position: relative;
    background: #fff;
    border-radius: 5px;

    /* Paper shadow */
    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.08),
        0 3px 8px rgba(0, 0, 0, 0.05);

    border: 1px solid #e8e8e8;
    margin-top: 35px;

    /* Very slight paper feel */
    transform: rotate(-0.15deg);
}


/* =========================================
   METAL PAPER CLIP
   ========================================= */

.paper-clip {
    position: absolute;

    /* RIGHT EDGE */
    top: -18px;
    right: 38px;
    left: auto;

    width: 42px;
    height: 78px;

    z-index: 20;

    transform: rotate(10deg);

    filter: drop-shadow(2px 3px 2px rgba(0, 0, 0, 0.20));
}

/* Outer metal loop */

.paper-clip {
    position: absolute;
    top: -20px;
    right: 38px;

    width: 65px;
    height: auto;

    z-index: 20;

    transform: rotate(8deg);

    filter:
        drop-shadow(2px 4px 3px rgba(0, 0, 0, 0.22));

    pointer-events: none;
}

/* =========================================
   PAPER EDGE SHADOW
   ========================================= */

.paper-profile::after {
    content: "";

    position: absolute;

    left: 25px;
    top: -3px;

    width: 70px;
    height: 8px;

    background: rgba(0, 0, 0, 0.08);

    filter: blur(5px);

    opacity: 0.45;

    pointer-events: none;
}

/* =========================================
   PSYCHOLOGY TEAM - WOOD DESK BACKGROUND
   ========================================= */

#professionals {
    position: relative;
    overflow: hidden;

    background-image: url("team-wood-background.png") !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;

    padding: 90px 0;
}


/* White paper sheet */

#professionals::before {
    content: "";
    position: absolute;

    top: 40px;
    bottom: 40px;
    left: 5%;
    right: 5%;

    background: rgba(255, 255, 255, 0.92);

    border-radius: 5px;

    box-shadow:
        0 22px 50px rgba(55, 38, 20, 0.28),
        0 4px 12px rgba(0, 0, 0, 0.10);

    z-index: 0;
}


/* Keep the actual content above the paper */

#professionals .container {
    position: relative;
    z-index: 1;
}
.professionals-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 24px !important;
    align-items: stretch;
}

.professional-card {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}


/* Tablet */
@media (max-width: 900px) {
    .professionals-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}


/* Mobile */
@media (max-width: 600px) {
    .professionals-grid {
        grid-template-columns: 1fr !important;
    }
}
/* =========================================
   SOCIAL MEDIA BUTTONS
   ========================================= */

.whatsapp-widget {
    position: fixed;
    z-index: 9999;
}


/* Social icons container */

.social-media-links {
    position: absolute;

    right: 3px;
    bottom: 8px;

    width: 58px;
    height: 170px;

    pointer-events: none;
}


/* Individual social buttons */

.social-media-icon {
    position: absolute;

    width: 42px;
    height: 42px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    text-decoration: none;

    font-size: 19px;
    font-weight: 700;

    opacity: 0;
    transform: scale(0.3);

    pointer-events: none;

    box-shadow:
        0 5px 14px rgba(0,0,0,0.20);

    transition:
        opacity 0.25s ease,
        transform 0.3s ease;
}


/* YouTube */

.youtube-icon {
    background: #ff0000;

    right: 5px;
    bottom: 125px;
}


/* Instagram */

.instagram-icon {
    background:
        linear-gradient(
            135deg,
            #833ab4,
            #fd1d1d,
            #fcb045
        );

    right: 50px;
    bottom: 78px;
}


/* Facebook */

.facebook-icon {
    background: #1877f2;

    right: 54px;
    bottom: 25px;
}


/* =========================================
   SHOW ON HOVER
   ========================================= */

.whatsapp-widget:hover .social-media-icon {
    opacity: 1;

    transform: scale(1);

    pointer-events: auto;
}


/* Staggered animation */

.whatsapp-widget:hover .youtube-icon {
    transition-delay: 0.04s;
}

.whatsapp-widget:hover .instagram-icon {
    transition-delay: 0.10s;
}

.whatsapp-widget:hover .facebook-icon {
    transition-delay: 0.16s;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 600px) {

    .social-media-icon {
        width: 38px;
        height: 38px;

        font-size: 17px;
    }

    .social-media-links {
        right: 4px;
        bottom: 8px;
    }

    .youtube-icon {
        right: 5px;
        bottom: 115px;
    }

    .instagram-icon {
        right: 46px;
        bottom: 72px;
    }

    .facebook-icon {
        right: 50px;
        bottom: 25px;
    }
}
/* =========================================
   YOUTUBE ABOVE WHATSAPP
   ========================================= */

.whatsapp-widget {
    position: fixed;
    z-index: 9999;
}


/* =========================================================
   YOUTUBE BUTTON
   ========================================================= */

.youtube-static-button {
    position: absolute !important;

    right: 8px !important;
    bottom: 88px !important;

    width: 46px !important;
    height: 46px !important;

    padding: 0 !important;
    margin: 0 !important;

    border: none !important;
    outline: none !important;
    border-radius: 50% !important;

    background: #ff0000 !important;
    color: #ffffff !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    font-size: 20px !important;
    font-weight: 700 !important;

    cursor: pointer !important;

    z-index: 99999 !important;

    pointer-events: auto !important;

    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.28);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.youtube-static-button:hover {
    transform: scale(1.08);

    box-shadow:
        0 7px 20px rgba(255, 0, 0, 0.35);
}
/* =========================================================
   SOCIAL MEDIA BUTTONS - PREMIUM GLOW
   ========================================================= */

.social-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-height: 52px;
    padding: 8px 24px 8px 10px;

    border-radius: 30px;

    text-decoration: none;
    font-weight: 700;
    font-size: 15px;

    background: #ffffff;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;

    overflow: visible;
}

/* Icon */
.social-icon {
    width: 36px;
    height: 36px;

    border-radius: 50%;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    font-size: 20px;
    font-weight: 700;

    flex-shrink: 0;
}

/* =========================================================
   YOUTUBE
   ========================================================= */

.social-link[href*="youtube"] {
    color: #c40000;

    border: 1px solid rgba(255, 0, 0, 0.18);

    box-shadow:
        0 5px 18px rgba(255, 0, 0, 0.14);
}

.social-link[href*="youtube"] .social-icon {
    background: #ff0000;

    box-shadow:
        0 0 0 5px rgba(255, 0, 0, 0.08),
        0 0 20px rgba(255, 0, 0, 0.45);
}

.social-link[href*="youtube"]:hover {
    transform: translateY(-3px);

    box-shadow:
        0 8px 28px rgba(255, 0, 0, 0.30);
}


/* =========================================================
   FACEBOOK
   ========================================================= */

.social-link[href*="facebook"] {
    color: #1457b8;

    border: 1px solid rgba(24, 119, 242, 0.18);

    box-shadow:
        0 5px 18px rgba(24, 119, 242, 0.14);
}

.social-link[href*="facebook"] .social-icon {
    background: #1877f2;

    box-shadow:
        0 0 0 5px rgba(24, 119, 242, 0.08),
        0 0 20px rgba(24, 119, 242, 0.45);
}

.social-link[href*="facebook"]:hover {
    transform: translateY(-3px);

    box-shadow:
        0 8px 28px rgba(24, 119, 242, 0.30);
}


/* =========================================================
   INSTAGRAM
   ========================================================= */

.social-link[href*="instagram"] {
    color: #b00072;

    border: 1px solid rgba(225, 48, 108, 0.18);

    box-shadow:
        0 5px 18px rgba(225, 48, 108, 0.14);
}

.social-link[href*="instagram"] .social-icon {
    background: linear-gradient(
        135deg,
        #833ab4,
        #fd1d1d,
        #fcb045
    );

    box-shadow:
        0 0 0 5px rgba(225, 48, 108, 0.08),
        0 0 20px rgba(225, 48, 108, 0.45);
}

.social-link[href*="instagram"]:hover {
    transform: translateY(-3px);

    box-shadow:
        0 8px 28px rgba(225, 48, 108, 0.30);
}


/* =========================================================
   SOCIAL BUTTON CONTAINER
   ========================================================= */

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .social-links {
        flex-direction: column;
        align-items: stretch;
    }

    .social-link {
        width: 100%;
        box-sizing: border-box;
    }

}
/* =========================================================
   FOOTER FULL WIDTH FIX
   ========================================================= */

.footer {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 70px 0 0 !important;
    box-sizing: border-box !important;
    background: #050b3d !important;
    color: #ffffff;
}

.footer > .container.footer-grid {
    width: min(1200px, calc(100% - 40px)) !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
}

.footer-grid {
    display: grid !important;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr !important;
    gap: 50px !important;
    align-items: start !important;
}

.footer-brand img {
    width: 130px;
    height: auto;
    object-fit: contain;
    margin-bottom: 18px;
}

.footer-brand p {
    max-width: 230px;
    line-height: 1.7;
}

.footer h4 {
    margin: 0 0 20px;
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 1px;
}

.footer a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.25s ease;
}

.footer a:hover {
    color: #4caf32;
}

.footer p {
    color: #ffffff;
    line-height: 1.7;
}

.footer-bottom {
    width: 100% !important;
    margin-top: 55px;
    padding: 20px 0;
    box-sizing: border-box;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.footer-bottom > .container {
    width: min(1200px, calc(100% - 40px)) !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 900px) {

    .footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 35px !important;
    }

}

@media (max-width: 600px) {

    .footer {
        padding-top: 50px !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .footer-bottom > .container {
        flex-direction: column;
        align-items: flex-start;
    }

}
/* =========================================================
   FORCE FOOTER TO FULL SCREEN WIDTH
   ========================================================= */

.footer {
    position: relative !important;

    width: 100vw !important;
    max-width: 100vw !important;

    margin-left: calc(50% - 50vw) !important;
    margin-right: 0 !important;

    left: 0 !important;
    right: auto !important;

    box-sizing: border-box !important;

    background: #050b3d !important;
    overflow: hidden !important;
}


/* Footer content stays centered */

.footer > .container.footer-grid {
    width: min(1200px, calc(100% - 40px)) !important;
    max-width: 1200px !important;

    margin-left: auto !important;
    margin-right: auto !important;

    box-sizing: border-box !important;
}


/* Footer bottom full width */

.footer .footer-bottom {
    width: 100% !important;
    max-width: none !important;
    box-sizing: border-box !important;
}


/* Bottom content centered */

.footer .footer-bottom > .container {
    width: min(1200px, calc(100% - 40px)) !important;
    max-width: 1200px !important;

    margin-left: auto !important;
    margin-right: auto !important;
}


/* Prevent horizontal scroll */

html,
body {
    overflow-x: hidden !important;
}
/* =========================================================
   AIDER FOOTER - FINAL CLEAN FIX
   ========================================================= */

footer.footer {
    display: block !important;

    position: relative !important;

    width: 100vw !important;
    max-width: 100vw !important;

    margin: 0 !important;
    padding: 70px 0 0 !important;

    left: 50% !important;
    right: auto !important;

    transform: translateX(-50%) !important;

    box-sizing: border-box !important;

    background: #050b3d !important;
    color: #ffffff !important;

    overflow: hidden !important;
}


/* =========================================================
   FOOTER MAIN CONTENT
   ========================================================= */

footer.footer > .container.footer-grid {

    width: 100% !important;
    max-width: 1200px !important;

    margin: 0 auto !important;
    padding: 0 30px !important;

    box-sizing: border-box !important;

    display: grid !important;

    grid-template-columns:
        1.4fr
        1fr
        1fr
        1.2fr !important;

    gap: 45px !important;

    align-items: start !important;
}


/* =========================================================
   BRAND
   ========================================================= */

footer.footer .footer-brand {
    min-width: 0 !important;
}

footer.footer .footer-brand img {
    width: 130px !important;
    height: auto !important;

    display: block !important;

    margin-bottom: 18px !important;
}

footer.footer .footer-brand p {
    max-width: 240px !important;

    margin: 0 !important;

    color: rgba(255,255,255,0.85) !important;

    line-height: 1.7 !important;
}


/* =========================================================
   HEADINGS
   ========================================================= */

footer.footer h4 {
    margin: 0 0 20px !important;

    color: #ffffff !important;

    font-size: 14px !important;

    font-weight: 700 !important;

    letter-spacing: 1px !important;
}


/* =========================================================
   LINKS
   ========================================================= */

footer.footer a {
    display: block !important;

    width: fit-content !important;

    margin: 0 0 12px !important;

    color: rgba(255,255,255,0.88) !important;

    text-decoration: none !important;

    line-height: 1.5 !important;

    transition: color 0.2s ease !important;
}

footer.footer a:hover {
    color: #4caf32 !important;
}


/* =========================================================
   CONTACT TEXT
   ========================================================= */

footer.footer p {
    color: rgba(255,255,255,0.85) !important;

    line-height: 1.7 !important;
}


/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

footer.footer .footer-bottom {

    width: 100% !important;
    max-width: none !important;

    margin: 55px 0 0 !important;

    padding: 20px 0 !important;

    border-top: 1px solid rgba(255,255,255,0.12) !important;

    box-sizing: border-box !important;
}


footer.footer .footer-bottom > .container {

    width: 100% !important;
    max-width: 1200px !important;

    margin: 0 auto !important;
    padding: 0 30px !important;

    box-sizing: border-box !important;

    display: flex !important;

    justify-content: space-between !important;

    align-items: center !important;

    gap: 20px !important;
}


footer.footer .footer-bottom p {
    margin: 0 !important;

    font-size: 13px !important;

    color: rgba(255,255,255,0.75) !important;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    footer.footer > .container.footer-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;

        gap: 35px !important;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    footer.footer {

        padding-top: 50px !important;
    }

    footer.footer > .container.footer-grid {

        grid-template-columns: 1fr !important;

        gap: 30px !important;

        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    footer.footer .footer-bottom > .container {

        flex-direction: column !important;

        align-items: flex-start !important;

        padding-left: 24px !important;
        padding-right: 24px !important;
    }

}
/* =========================================================
   FOOTER FULL WIDTH
   ========================================================= */

.footer {
    width: 100vw !important;
    max-width: 100vw !important;

    position: relative !important;

    left: 50% !important;

    margin-left: -50vw !important;
    margin-right: 0 !important;

    box-sizing: border-box !important;
}


/* Keep footer content centered */

.footer-grid {
    width: 100% !important;
    max-width: 1200px !important;

    margin-left: auto !important;
    margin-right: auto !important;

    box-sizing: border-box !important;
}


/* Footer bottom full width */

.footer-bottom {
    width: 100% !important;
    box-sizing: border-box !important;
}

.footer-bottom .container {
    width: 100% !important;
    max-width: 1200px !important;

    margin-left: auto !important;
    margin-right: auto !important;

    box-sizing: border-box !important;
}
.professional-photo {
    overflow: hidden;
}

.professional-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
}
/* Sreejal photo only */

.sreejal-photo img {
    object-fit: cover !important;
    object-position: center bottom !important;
}
.rameesa-photo img {
    object-fit: contain !important;
    object-position: center center !important;
    background: #f3f3f3;
}
/* Fathimathu Rameesa - show full photo */
#professionals .professional-card:nth-child(3) .professional-photo {
    background: #f3f3f3;
}

#professionals .professional-card:nth-child(3) .professional-photo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    transform: none !important;
}
/* Disable About section animation */
#about * {
    animation: none !important;
}
/* ABOUT VIDEO */
.about-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 30px;
    overflow: hidden;
}

.about-video {
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 30px;
}
/* FIX ABOUT SECTION TWO-COLUMN ALIGNMENT */

.about-grid {
    display: grid !important;
    grid-template-columns: 0.9fr 1.1fr !important;
    gap: 70px !important;
    align-items: center !important;
}

.about-image {
    width: 100% !important;
    height: 500px !important;
    min-height: 500px !important;
    border-radius: 30px !important;
    overflow: hidden !important;
}

.about-video {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 30px !important;
}

/* Mobile */
@media (max-width: 800px) {
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .about-image {
        height: 420px !important;
        min-height: 420px !important;
    }
}
