/* ===== Google Fonts Import ===== */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');

/* ===== Color Scheme ===== */
:root {
    --primary-blue: #0066CC;
    --secondary-blue: #0099FF;
    --accent-blue: #00CCFF;
    --light-blue: #E6F2FF;
    --very-light-blue: #F0F7FF;
    --dark-blue: #003D99;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --white: #FFFFFF;
    --shadow: 0 10px 30px rgba(0, 102, 204, 0.1);
    --transition: all 0.3s ease;
}

/* ===== General Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: linear-gradient(135deg, var(--very-light-blue) 0%, var(--light-blue) 100%);
}

body.home-page {
    background: linear-gradient(135deg, var(--very-light-blue) 0%, var(--light-blue) 100%);
}

/* ===== Top Contact Bar ===== */
.top-contact-bar {
    background: linear-gradient(135deg, var(--very-light-blue) 0%, var(--light-blue) 100%);
    border-bottom: 1px solid rgba(0, 102, 204, 0.12);
    padding: 0.3rem 1rem 0.3rem 0;
}

.top-contact-content {
    width: 100%;
    max-width: none;
    margin: 0;
    display: grid;
    grid-template-columns: auto 1.4fr auto;
    gap: 0.7rem;
    align-items: center;
}

.topbar-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 62px;
    line-height: 0;
    margin-left: 0;
    padding-left: 0;
}

.topbar-logo img {
    display: block;
    width: auto;
    height: 100%;
    max-width: min(15vw, 120px);
    object-fit: contain;
    filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.18));
}

.top-contact-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
}

.top-contact-item {
    display: flex;
    gap: 0.35rem;
    align-items: flex-start;
    padding: 0.1rem 0;
    border-radius: 0;
    background: transparent;
    border: none;
}

.top-contact-item i {
    color: var(--primary-blue);
    margin-top: 0.1rem;
    font-size: 0.82rem;
}

.top-contact-label {
    margin: 0;
    color: var(--dark-blue);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.2;
    display: none;
}

.top-contact-value {
    margin: 0;
    color: #0f2a52;
    font-size: 0.76rem;
    line-height: 1.3;
}

.top-connect {
    justify-self: end;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.2rem;
}

.top-connect-label {
    color: var(--primary-blue);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.top-connect-icons {
    display: flex;
    gap: 0.25rem;
}

.top-connect-icons a {
    width: 24px;
    height: 24px;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    background: transparent;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.85rem;
}

.top-connect-icons a:hover {
    transform: translateY(-2px);
    box-shadow: none;
}

/* ===== Navigation Bar ===== */
.navbar {
    background: linear-gradient(135deg, #002f73 0%, #004f9f 58%, #006ec4 100%);
    padding: 0.18rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 12px 28px rgba(17, 62, 126, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-container {
    max-width: 1400px;
    width: min(100%, 1400px);
    margin: 0 auto;
    padding: 0.08rem clamp(0.7rem, 2vw, 1.2rem);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.8rem;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.94rem;
    padding: 0.38rem 0.75rem;
    border-radius: 5px;
    transition: var(--transition);
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.22);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-blue);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    background-color: rgba(255, 255, 255, 0.24);
}

.nav-links .dropdown-menu {
    list-style: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    min-width: 320px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(0, 61, 153, 0.2);
    padding: 0.5rem;
    display: none;
    z-index: 1200;
}

.nav-links .dropdown:hover .dropdown-menu,
.nav-links .dropdown.open .dropdown-menu,
.nav-links .dropdown:focus-within .dropdown-menu {
    display: block;
}

.nav-links .dropdown-menu li {
    width: 100%;
}

.nav-links .dropdown-menu a {
    color: var(--primary-blue);
    width: 100%;
    display: block;
    padding: 0.55rem 0.75rem;
    border-radius: 6px;
}

.nav-links .dropdown-menu a::after {
    display: none;
}

.nav-links .dropdown-menu a:hover,
.nav-links .dropdown-menu a.active {
    background: var(--light-blue);
    color: var(--dark-blue);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 72vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 2.2rem;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(0, 102, 204, 0.14);
    box-shadow: 0 14px 34px rgba(0, 102, 204, 0.12);
}

.carousel-bg {
    position: absolute;
    right: 2.2rem;
    top: 2.2rem;
    bottom: 2.2rem;
    width: min(46%, 600px);
    overflow: hidden;
    border-radius: 16px;
}

.carousel-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 44, 101, 0.06) 0%, rgba(3, 44, 101, 0.2) 100%);
    z-index: 1;
}

.carousel-bg .slide {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    opacity: 0;
    transform: scale(1.005);
    transform-origin: center center;
    transition: opacity 0.7s ease, transform 4.2s ease;
    filter: saturate(1.04) contrast(1.02);
    z-index: 0;
}

.carousel-bg .slide.active {
    opacity: 1;
    transform: scale(1.03);
}

.carousel-bg .slide:nth-child(2) {
    object-position: center 16%;
}

.carousel-bg .slide:nth-child(3) {
    object-position: center 14%;
}

.carousel-bg .slide:nth-child(4) {
    object-position: center 16%;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    width: min(50%, 690px);
    max-width: 690px;
    margin-right: 0;
    padding: 0.25rem 0.2rem;
    border: none;
    animation: slideInLeft 0.8s ease;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.hero-title {
    font-size: clamp(1.45rem, 2.8vw, 2rem);
    font-weight: 800;
    color: #053b86;
    text-align: left;
    line-height: 1.2;
    text-shadow: none;
    margin: 0;
    word-break: break-word;
}

.hero-title-static,
.hero-title-dynamic {
    color: inherit;
    font: inherit;
    text-shadow: inherit;
    background: none;
}

.hero-title-static {
    display: block;
    color: #053b86;
    font-size: clamp(1.45rem, 2.8vw, 2rem);
    line-height: 1.2;
    margin-bottom: 0.2rem;
}

.hero-title-dynamic {
    display: block;
    margin-top: 0;
    color: #111111;
    text-transform: capitalize;
    letter-spacing: 0.01em;
    font-size: clamp(1.35rem, 2.6vw, 1.8rem);
    line-height: 1.2;
}

.hero-title-dynamic.service-visible {
    animation: fadeInService 0.5s ease;
}

@media (max-width: 980px) {
    .hero {
        min-height: auto;
        padding: 1.3rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .carousel-bg {
        position: relative;
        right: auto;
        top: auto;
        bottom: auto;
        width: 100%;
        min-height: 300px;
        order: 2;
    }

    .hero-content {
        position: relative;
        width: 100%;
        max-width: none;
        right: auto;
        bottom: auto;
        order: 1;
    }

    .hero-title {
        font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    }

    .hero-title-static {
        font-size: clamp(1.3rem, 2.5vw, 1.8rem);
        margin-bottom: 0.2rem;
    }

    .hero-title-dynamic {
        font-size: clamp(1.2rem, 2.3vw, 1.6rem);
    }
}

@keyframes fadeInService {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.book-appointment-btn {
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-height: 0;
    padding: 0.38rem 0.25rem;
    border-radius: 0;
    background: transparent;
    color: var(--white);
    font-size: 0.94rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
    word-break: normal;
    text-decoration: none;
    box-shadow: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.22);
    transition: var(--transition);
    margin-right: auto;
}

.book-appointment-btn:hover {
    color: var(--accent-blue);
    text-decoration: underline;
}

.hero-description {
    font-size: 30px;
    color: black;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.3);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 102, 204, 0.4);
}

.cta-button:active {
    transform: translateY(-1px);
}

.hero-image-container {
    position: relative;
    height: 500px;
    animation: slideInRight 0.8s ease;
}

.image-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.2);
}

.carousel-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-image.active {
    opacity: 1;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid var(--white);
}

.dot.active {
    background-color: var(--accent-blue);
    transform: scale(1.3);
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* ===== Why Choose Us Section ===== */
.why-choose-us {
    padding: 3.6rem 2rem;
    background: var(--white);
    max-width: 1400px;
    margin: 0 auto;
}

.why-choose-us h2 {
    font-size: 2.8rem;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 800;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: linear-gradient(135deg, var(--very-light-blue) 0%, rgba(0, 153, 255, 0.05) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--light-blue);
    transition: var(--transition);
    animation: fadeInUp 0.8s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--accent-blue);
}

.feature-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
    text-align: justify;
    font-weight: 500;
}

/* ===== Services Preview Section ===== */
.services-preview {
    padding: 3.6rem 2rem;
    background: linear-gradient(135deg, var(--very-light-blue) 0%, var(--light-blue) 100%);
    max-width: 1400px;
    margin: 0 auto;
}

.services-preview h2 {
    font-size: 2.8rem;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 800;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3.6rem;
}

.service-box {
    background: var(--white);
    padding: 2.35rem;
    min-height: 330px;
    border-radius: 12px;
    border-left: 5px solid var(--secondary-blue);
    box-shadow: var(--shadow);
    transition: var(--transition);
    animation: fadeInUp 0.8s ease 0.1s backwards;
}

.service-box-image {
    width: 100%;
    max-width: 100%;
    height: 240px;
    display: block;
    margin: 0 auto 1.15rem;
    object-fit: cover;
    object-position: center 24%;
    border-radius: 16px;
    border: 1px solid rgba(0, 102, 204, 0.16);
    box-shadow: 0 10px 24px rgba(0, 102, 204, 0.18);
    image-rendering: high-quality;
    image-rendering: -webkit-optimize-contrast;
    filter: brightness(1.02) contrast(1.05) saturate(1.06);
}

.service-box:nth-child(1) .service-box-image {
    object-position: center 18%;
}

.service-box:nth-child(2) .service-box-image {
    object-position: center 28%;
}

.service-box:nth-child(3) .service-box-image {
    object-position: center 16%;
}

.service-box:nth-child(4) .service-box-image {
    object-position: center 22%;
}

.service-box:nth-child(2) {
    animation-delay: 0.2s;
}

.service-box:nth-child(3) {
    animation-delay: 0.3s;
}

.service-box:nth-child(4) {
    animation-delay: 0.4s;
}

.service-box:hover {
    transform: translateY(-8px);
    border-left-color: var(--accent-blue);
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.3);
}

.service-box h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-box p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

.service-box .read-more-block {
    margin-top: 0.85rem;
}

.service-box .read-more-block summary {
    cursor: pointer;
    color: var(--primary-blue);
    font-weight: 700;
    list-style: none;
}

.service-box .read-more-block summary::-webkit-details-marker {
    display: none;
}

.service-box .read-more-block summary::after {
    content: ' +';
    font-weight: 800;
}

.service-box .read-more-block[open] summary::after {
    content: ' -';
}

.service-box .read-more-block p {
    margin-top: 0.75rem;
}

.service-box .read-more-block h4 {
    color: var(--primary-blue);
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.service-box .read-more-block ul {
    margin: 0;
    padding-left: 1.1rem;
}

.service-box .read-more-block li {
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

/* ===== Partners Section ===== */
.partners-section {
    padding: 3.6rem 2rem;
    background: var(--white);
    max-width: 1400px;
    margin: 0 auto;
}

.partners-section h2 {
    font-size: 2.8rem;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 800;
}

.partners-intro {
    max-width: 820px;
    margin: 0 auto 2.4rem;
    text-align: center;
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 600;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.1rem;
}

.partner-logo-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 145px;
    padding: 1.2rem 1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #ffffff 0%, var(--very-light-blue) 100%);
    border: 1px solid var(--light-blue);
    text-decoration: none;
    transition: var(--transition);
}

.partner-logo-card img {
    width: 100%;
    max-width: 130px;
    height: 48px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.86;
    transition: var(--transition);
}

.partner-logo-card span {
    margin-top: 0.75rem;
    color: var(--primary-blue);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.partner-logo-card:hover {
    transform: translateY(-4px);
    border-color: var(--secondary-blue);
    box-shadow: var(--shadow);
}

.partner-logo-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-logo-card:focus-visible {
    outline: 3px solid rgba(0, 153, 255, 0.32);
    outline-offset: 2px;
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, var(--very-light-blue) 0%, var(--light-blue) 100%);
    padding: 4rem 2rem;
    text-align: center;
    max-width: 1400px;
    margin: 4rem auto;
    border-radius: 15px;
    animation: fadeIn 0.8s ease;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    opacity: 0.9;
}

.cta-button-large {
    background-color: var(--white);
    color: var(--primary-blue);
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    background-color: var(--light-blue);
    color: var(--primary-blue);
}

.home-cta {
    background: linear-gradient(135deg, var(--very-light-blue) 0%, var(--light-blue) 100%);
    padding: 3rem 2rem;
    text-align: center;
    max-width: 1400px;
    margin: 3rem auto;
    border-radius: 15px;
    color: var(--text-dark);
}

.home-cta h2 {
    color: var(--primary-blue);
}

.home-cta p {
    color: var(--text-light);
    text-align: justify;
}

body.home-page .why-choose-us,
body.home-page .services-preview,
body.home-page .partners-section,
body.home-page .home-cta {
    padding-left: clamp(1rem, 4vw, 2.5rem);
    padding-right: clamp(1rem, 4vw, 2.5rem);
}

/* ===== Home Page Hero — two-column layout ===== */
body.home-page .hero {
    height: 88vh;
    min-height: 520px;
    padding: 0;
    max-width: none;
    margin: 0;
    border-radius: 0;
    background: linear-gradient(135deg, var(--very-light-blue) 0%, var(--light-blue) 100%);
    border: none;
    box-shadow: none;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    overflow: hidden;
}

/* Left text column */
body.home-page .hero-text-col {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 3rem 2.5rem 3rem 3rem;
    background: transparent;
    z-index: 1;
}

/* Right image column */
body.home-page .hero-image-col {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
    background: transparent;
}

body.home-page .hero-image-col .carousel-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
}

body.home-page .hero-image-col .carousel-bg::after {
    content: none;
}

body.home-page .hero-image-col .carousel-bg .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0;
    transform: none;
    transition: opacity 0.8s ease;
    image-rendering: high-quality;
    image-rendering: -webkit-optimize-contrast;
    filter: brightness(1.02) contrast(1.04) saturate(1.08);
    flex-shrink: unset;
}

body.home-page .hero-image-col .carousel-bg .slide.active {
    opacity: 1;
    transform: none;
}

body.home-page .hero-title-static {
    display: block;
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.25;
    margin: 0 0 0.8rem 0;
    text-align: left;
}

body.home-page .hero-title-dynamic {
    display: block;
    font-size: clamp(1.1rem, 1.9vw, 1.6rem);
    font-weight: 700;
    color: #000000;
    text-transform: capitalize;
    letter-spacing: 0.04em;
    line-height: 1.4;
    text-align: left;
    width: 100%;
    margin: 0;
}

@media (max-width: 768px) {
    body.home-page .hero {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }

    body.home-page .hero-text-col {
        flex: none;
        width: 100%;
        padding: 2rem 1.5rem;
    }

    body.home-page .hero-image-col {
        flex: none;
        width: 100%;
        min-height: 55vw;
    }
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(135deg, #002f73 0%, #004f9f 58%, #006ec4 100%);
    color: var(--white);
    padding: 1rem 1.4rem 0.55rem;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.9rem;
    margin-bottom: 0.6rem;
    text-decoration-color: white;
    font-size: 1rem;
}

.footer-section h4 {
    font-size: 1.05rem;
    margin-bottom: 0.55rem;
    font-weight: 700;
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin-bottom: 0.25rem;
    font-size: 0.88rem;
}
.footer-left{
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin-bottom: 0.25rem;
    font-size: 0.88rem;
    text-align: left;
}
.footer-section ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-section ul li {
    margin-bottom: 0;
}

.footer-section ul li:not(:last-child)::after {
    content: '|';
    margin-left: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--accent-blue);
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 0.8rem;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-item i {
    font-size: 0.9rem;
    min-width: 16px;
}

.footer-item a {
    font-size: inherit;
}

.social-links i {
    font-size: 22px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.9rem;
    font-weight: 600;
}

/* ===== Animations ===== */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .top-contact-content {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .topbar-logo {
        height: 56px;
        justify-self: center;
    }

    .topbar-logo img {
        max-width: min(28vw, 102px);
    }

    .top-contact-items {
        grid-template-columns: 1fr;
    }

    .top-connect {
        justify-self: start;
        align-items: flex-start;
    }

    .nav-container {
        justify-content: center;
        gap: 0.7rem;
        flex-wrap: wrap;
    }

    .hero {
        min-height: auto;
        padding: 1.8rem 1rem;
        border-radius: 0;
    }

    .carousel-bg {
        border-radius: 0;
    }

    .hero-content {
        max-width: 100%;
        padding: 1rem;
        position: relative;
        right: auto;
        bottom: auto;
    }

    .carousel-bg::after {
        background: linear-gradient(180deg, rgba(240, 247, 255, 0.72) 0%, rgba(240, 247, 255, 0.6) 55%, rgba(230, 242, 255, 0.24) 100%);
    }

    .carousel-bg .slide {
        object-position: center 16%;
    }

    .hero-title {
        font-size: clamp(1.4rem, 3vw, 2rem);
    }

    .hero-title-static {
        font-size: clamp(1.4rem, 3vw, 2rem);
    }

    .hero-title-dynamic {
        font-size: clamp(1.3rem, 2.8vw, 1.8rem);
    }

    .book-appointment-btn {
        margin-right: 0;
        padding: 0.34rem 0.2rem;
        font-size: 0.84rem;
    }

    .hero-image-container {
        height: 350px;
        width: 350px;
    }

    .nav-links {
        gap: 0.8rem;
        font-size: 0.86rem;
    }

    .why-choose-us h2,
    .services-preview h2,
    .partners-section h2 {
        font-size: 2rem;
    }

    .cta-section {
        margin: 2rem 1rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .services-container {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.9rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.35rem;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .top-contact-bar {
        padding: 0.35rem 0.6rem 0.35rem 0;
    }

    .hero {
        padding: 1.2rem 0.8rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .book-appointment-btn {
        width: auto;
        max-width: 100%;
        justify-content: center;
        font-size: 0.84rem;
        min-height: 0;
        padding: 0.32rem 0.2rem;
        margin-right: 0;
        white-space: nowrap;
    }

    .hero-description {
        font-size: 1rem;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .carousel-dots {
        bottom: 10px;
        gap: 8px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }
}
/* FOUNDER STORY */

.founder{
display:flex;
gap:40px;
align-items:center;
flex-wrap:wrap;
}

.founder img{
width:300px;
border-radius:10px;
}

/* VALUES */

.values{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
text-align:center;
}

.value-card{
background:white;
padding:20px;
border-radius:8px;
box-shadow:0 2px 8px rgba(0,0,0,0.1);
}

/* ACHIEVEMENTS */

.achievements{
background:#eaf1fb;
padding:40px;
border-radius:8px;
}

/* ===== Container Utility ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== About Page Hero Image ===== */
.about-hero-image {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.about-hero-overlay {
    position: absolute;
    left: 3%;
    top: 8%;
    transform: none;
    width: min(760px, 70%);
    padding: 0;
    text-align: center;
    color: #06244d;
}

.about-hero-overlay h2 {
    font-size: 2rem;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* ===== MVF Section ===== */
.mvf-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(0, 153, 255, 0.05) 100%);
}

.mvf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.mvf-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mv-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.1);
    transition: var(--transition);
    border-left: 4px solid var(--primary-blue);
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.2);
}

.mv-card h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.mv-card i {
    font-size: 1.8rem;
    color: var(--secondary-blue);
}

.mv-card p {
    color: var(--text-dark);
    line-height: 1.6;
    text-align: justify;
}

.mvf-right {
    display: flex;
    justify-content: flex-start;
}

.founder-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.1);
    max-width: 500px;
    width: 100%;
}

.founder-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    text-align: left;
    font-size: 1.8rem;
}

.founder-image {
    text-align: left;
    margin-bottom: 1.5rem;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: var(--light-blue);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 0 1.5rem;
    box-shadow: 0 10px 35px rgba(0, 102, 204, 0.25);
    border: 5px solid var(--white);
}

.founder-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 25%;
}

.founder-card h4 {
    color: var(--secondary-blue);
    margin-bottom: 0.5rem;
    text-align: left;
}

.founder-title {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-align: left;
    font-style: italic;
}

.founder-card p {
    margin-bottom: 1rem;
    line-height: 1.6;
    text-align: justify;
}

.founder-quote {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue);
    font-style: italic;
    text-align: center;
    padding: 1rem;
    background: var(--light-blue);
    border-radius: 8px;
    margin-top: 1rem;
}

/* ===== Our Team Section ===== */
.team-section {
    padding: 4rem 0;
    background: var(--white);
}

.team-section h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 1rem;
}

.team-section .intro-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.team-row {
    display: flex;
    gap: 1.6rem;
}

.team-row-top {
    justify-content: center;
}

.team-row-top .team-card {
    flex: 0 0 calc(50% - 0.8rem);
    max-width: 340px;
}

.team-row-bottom {
    justify-content: center;
}

.team-row-bottom .team-card {
    flex: 1 1 0;
    max-width: 280px;
}

.team-card {
    background: linear-gradient(135deg, var(--very-light-blue) 0%, rgba(0, 153, 255, 0.06) 100%);
    border: 1px solid var(--light-blue);
    border-radius: 14px;
    padding: 1.2rem;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.08);
}

.team-image {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.2rem;
    border: 4px solid var(--white);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.2);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.team-card h4 {
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.team-role {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
}
.about-section {
    padding: 4rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.about-page {
    background: linear-gradient(180deg, var(--very-light-blue) 0%, #f7fbff 100%);
}

.about-page .about-section,
.about-page .mvf-section,
.about-page .who-we-serve,
.about-page .our-approach,
.about-page .why-choose,
.about-page .commitment,
.about-page .team-section,
.about-page .cta-section {
    background: transparent !important;
    border-bottom: none;
    padding: 2rem 2rem;
}

.about-page .cta-section {
    margin: 0 auto;
}

.about-page .about-section .container,
.about-page .mvf-section .container,
.about-page .who-we-serve .container,
.about-page .commitment .container,
.about-page .team-section .container,
.about-page .cta-section .container {
    background: var(--white);
    border-radius: 14px;
    border: 1px solid var(--light-blue);
    box-shadow: 0 10px 28px rgba(0, 102, 204, 0.12);
    padding: 2.5rem;
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-blue);
    text-align: center;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: justify;
}

.intro-text {
    font-size: 1.2rem;
    font-weight: 600;
}

/* ===== Our Story Section ===== */
.our-story {
    background: white;
}

.our-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.our-story-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.15);
    flex-shrink: 0;
}

.our-story-image img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.our-story-image iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: 0;
    display: block;
    background: #000;
}

.our-story-image:hover img {
    transform: scale(1.03);
}

.our-story-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.our-story-text h2 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1.2rem;
    font-weight: 700;
    text-align: left;
}

.our-story-text .intro-text {
    color: var(--text-dark);
    line-height: 1.8;
    text-align: justify;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

@media (max-width: 768px) {
    .our-story-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .our-story-text h2 {
        text-align: center;
    }
}

/* ===== MVV Section ===== */
.mvv-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    padding: 4rem 0;
    color: white;
}

.mvv-section h3 {
    color: white;
    margin-bottom: 1rem;
}

.mvv-section p {
    color: rgba(255, 255, 255, 0.95);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.mvv-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.mvv-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.mvv-card h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
}

.mvv-card i {
    font-size: 1.8rem;
}

/* ===== Principles Grid ===== */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.principles-grid .principle-card {
    grid-column: span 2;
}

.principles-grid .principle-card:nth-child(4) {
    grid-column: 1 / span 2;
}

.principles-grid .principle-card:nth-child(5) {
    grid-column: 5 / span 2;
}

.principle-card {
    background: var(--white);
    padding: 2rem 1.6rem 1.8rem;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-top: 4px solid transparent;
    background-clip: padding-box;
}

.principle-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    border-radius: 14px 14px 0 0;
}

.principle-number {
    position: absolute;
    top: 0.6rem;
    right: 1rem;
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(0, 102, 204, 0.07);
    pointer-events: none;
    user-select: none;
    letter-spacing: -2px;
}

.principle-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 102, 204, 0.18);
}

.principle-icon {
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: 0 6px 16px rgba(0, 102, 204, 0.28);
    transition: transform 0.3s ease;
}

.principle-card:hover .principle-icon {
    transform: scale(1.1) rotate(-4deg);
}

.principle-card h4 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1.08rem;
    font-weight: 700;
}

.principle-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.65;
    text-align: left;
}

/* ===== Who We Serve ===== */
.who-we-serve {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(0, 153, 255, 0.05) 100%);
}

.serve-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

@media (max-width: 1024px) {
    .principles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .principles-grid .principle-card,
    .principles-grid .principle-card:nth-child(4),
    .principles-grid .principle-card:nth-child(5) {
        grid-column: auto;
    }

    .serve-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.serve-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.serve-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.15);
}

.serve-icon {
    font-size: 2.5rem;
    color: var(--secondary-blue);
    margin-bottom: 1rem;
}

.serve-item h4 {
    color: var(--primary-blue);
    font-size: 1.1rem;
}

/* ===== Our Approach ===== */
.our-approach {
    background: white;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.approach-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.1);
    transition: var(--transition);
}

.approach-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.2);
}

.approach-image {
    height: 200px;
    overflow: hidden;
}

.approach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.approach-item:hover .approach-image img {
    transform: scale(1.05);
}

.approach-content {
    padding: 1.5rem;
    text-align: center;
}

.approach-content i {
    font-size: 2.5rem;
    color: var(--secondary-blue);
    margin-bottom: 1rem;
    display: block;
}

.approach-content h4 {
    color: var(--primary-blue);
    font-size: 1.1rem;
}

/* ===== Why Choose ===== */
.why-choose {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(0, 153, 255, 0.05) 100%);
}

.why-choose-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.why-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.15);
}

.why-icon {
    font-size: 1.5rem;
    color: var(--accent-blue);
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.why-content h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.why-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: justify;
}

/* ===== Founder Story ===== */
.founder-story {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    padding: 4rem 0;
    color: white;
}

.founder-story h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.founder-story h3 {
    color: var(--accent-blue);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.founder-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.founder-image {
    text-align: center;
}

.founder-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.founder-content p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-align: justify;
}

.founder-title {
    font-size: 1.2rem;
    color: var(--accent-blue);
    margin-bottom: 2rem;
}

.founder-focus {
    list-style: none;
    margin: 1rem 0;
}

.founder-focus li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
}

.founder-focus i {
    color: var(--accent-blue);
}

.founder-quote {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-blue);
    font-style: italic;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--accent-blue);
    border-radius: 8px;
}

/* ===== Commitment Section ===== */
.commitment {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(0, 153, 255, 0.05) 100%);
    text-align: center;
}

.commitment-highlight {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.1);
    margin-top: 2rem;
    border-left: 6px solid var(--primary-blue);
}

.commitment-highlight p {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin: 0;
    text-align: justify;
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, var(--very-light-blue) 0%, var(--light-blue) 100%);
    padding: 4rem 0;
    text-align: center;
    color: black;
}

.cta-section h2 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: black;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about-page .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.about-page .cta-button {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    box-shadow: 0 10px 24px rgba(0, 102, 204, 0.28);
}

.about-page .cta-button:hover {
    background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--accent-blue) 100%);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(0, 102, 204, 0.34);
}

/* ===== Responsive Design for About ===== */
@media (max-width: 768px) {
    .about-section h2 {
        font-size: 2rem;
    }

    .mvf-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .principles-grid,
    .serve-list,
    .approach-grid,
    .why-choose-list {
        grid-template-columns: 1fr;
    }

    .team-row {
        flex-direction: column;
        align-items: center;
    }

    .team-row-top .team-card,
    .team-row-bottom .team-card {
        max-width: 100%;
        width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
    }

    .about-hero-image {
        height: 60vh;
    }

    .about-hero-image img {
        object-position: center center;
    }

    .about-hero-overlay {
        left: 50%;
        top: 6%;
        transform: translateX(-50%);
        width: min(900px, 92%);
    }

    .about-hero-overlay h2 {
        font-size: 1.3rem;
    }

    /* Scale down team and founder images on mobile */
    .team-image {
        width: 140px;
        height: 140px;
    }

    .founder-image {
        width: 140px;
        height: 140px;
    }

    .service-box-image {
        width: 100px;
        height: 100px;
    }

    .author-image {
        width: 80px;
        height: 80px;
    }

}

/* ===== PAGE STYLES: HRMastery.html ===== */
body {
    background: linear-gradient(135deg, var(--very-light-blue) 0%, var(--light-blue) 100%);
}

.solution-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.4rem clamp(1rem, 4vw, 2.5rem) 3rem;
}

.hr-hero {
    max-width: 1400px;
    margin: 1rem auto 0;
    padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.hr-hero-inner {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 1rem;
    align-items: stretch;
}

.hr-hero-text {
    background: #ffffff;
    color: #111111;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 14px 34px rgba(0, 61, 153, 0.15);
    animation: fadeSlideUp 0.7s ease;
}

.hr-hero-text h1 {
    font-size: clamp(1.85rem, 3.8vw, 2.9rem);
    line-height: 1.18;
    margin-bottom: 0.6rem;
    color: #003D99;
}

.hr-hero-text .hero-subtext {
    font-size: 1.04rem;
    line-height: 1.55;
    margin-bottom: 0.9rem;
    color: #333333;
}

.hero-about-mini {
    background: transparent;
    border: none;
    padding: 0.85rem 0 0 0;
}

.hero-about-mini h3 {
    margin-bottom: 0.35rem;
    font-size: 1.05rem;
    color: #111111;
}

.hero-about-mini p {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.45;
    color: #333333;
}

.hr-hero-text .info-list li {
    color: #111111;
}

.hr-hero-text .info-list i {
    color: var(--primary-blue);
}

.hr-hero-visual {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 360px;
    background: #dbe9fb;
    box-shadow: 0 14px 34px rgba(0, 61, 153, 0.2);
    animation: fadeSlideUp 0.8s ease;
}

.hr-hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    display: block;
}

.hr-hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0;
    transform: none;
    transition: opacity 0.8s ease;
    image-rendering: high-quality;
    image-rendering: -webkit-optimize-contrast;
    filter: brightness(1.02) contrast(1.04) saturate(1.08);
}

.hr-hero-slide.active {
    opacity: 1;
}

.hr-hero-slide:nth-child(1) {
    animation-delay: 0s;
}

.hr-hero-slide:nth-child(2) {
    animation-delay: 6s;
}

.hr-hero-slide:nth-child(3) {
    animation-delay: 12s;
}

.hr-hero-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 44, 101, 0.03) 0%, rgba(3, 44, 101, 0.22) 100%);
    pointer-events: none;
}

.solution-section {
    background: var(--white);
    border: 1px solid var(--light-blue);
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0, 102, 204, 0.1);
    padding: 1.35rem;
    margin-bottom: 1rem;
    animation: fadeSlideUp 0.55s ease;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.cta-primary,
.cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    padding: 0.72rem 1.2rem;
    transition: var(--transition);
}

.cta-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.25);
}

.cta-primary:hover {
    transform: translateY(-2px);
}

.cta-secondary {
    border: 1px solid var(--primary-blue);
    color: var(--primary-blue);
    background: #fff;
}

.cta-secondary:hover {
    background: var(--very-light-blue);
}

.solution-section h2 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
}

.solution-section p {
    color: var(--text-dark);
    line-height: 1.7;
    text-align: justify;
}

.hr-image-grid {
    margin-top: 0.7rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.hr-image-card {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 102, 204, 0.2);
    background: #eef5ff;
    box-shadow: 0 8px 20px rgba(0, 61, 153, 0.12);
}

.hr-image-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.split-two {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.content-card {
    background: linear-gradient(135deg, #ffffff 0%, var(--very-light-blue) 100%);
    border: 1px solid rgba(0, 102, 204, 0.15);
    border-radius: 12px;
    padding: 1rem;
}

        .content-card h3 {
            color: var(--primary-blue);
            margin-bottom: 0.45rem;
            font-size: 1.2rem;
        }

        .problem-list {
            list-style: none;
            padding-left: 0;
            margin-top: 0.75rem;
        }

        .problem-list li {
            margin-bottom: 0.45rem;
            color: var(--text-dark);
            display: flex;
            gap: 0.55rem;
            align-items: flex-start;
            background: #fff;
            border: 1px solid rgba(214, 69, 69, 0.2);
            border-radius: 10px;
            padding: 0.5rem 0.55rem;
        }

        .problem-list i {
            color: #d64545;
            margin-top: 0.12rem;
            font-size: 0.95rem;
        }

        .info-list {
            list-style: none;
            padding-left: 0;
            margin-top: 0.9rem;
        }

        .info-list li {
            margin-bottom: 0.45rem;
            color: var(--text-dark);
            display: flex;
            gap: 0.5rem;
            align-items: flex-start;
        }

        .info-list i {
            color: var(--primary-blue);
            margin-top: 0.2rem;
        }

        .timeline {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1.2rem;
            margin-top: 1rem;
            align-items: stretch;
        }

        .timeline-step {
            border: 1px solid rgba(0, 102, 204, 0.2);
            border-radius: 12px;
            padding: 1rem;
            background: linear-gradient(160deg, #ffffff 0%, #f5fbff 100%);
            position: relative;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .timeline-step:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 24px rgba(0, 102, 204, 0.14);
        }

        .timeline-step:not(:last-child)::after {
            content: '';
            position: absolute;
            right: -0.9rem;
            top: 50%;
            width: 0.9rem;
            height: 2px;
            background: linear-gradient(90deg, var(--secondary-blue), var(--accent-blue));
        }

        .timeline-step:not(:last-child)::before {
            content: '';
            position: absolute;
            right: -1.1rem;
            top: calc(50% - 4px);
            width: 0;
            height: 0;
            border-top: 5px solid transparent;
            border-bottom: 5px solid transparent;
            border-left: 7px solid var(--secondary-blue);
        }

        .timeline-step .month {
            display: inline-flex;
            align-items: center;
            padding: 0.22rem 0.55rem;
            border-radius: 999px;
            background: rgba(0, 153, 255, 0.13);
            color: var(--secondary-blue);
            font-weight: 800;
            font-size: 0.85rem;
            margin-bottom: 0.38rem;
        }

        .timeline-step h3 {
            color: var(--primary-blue);
            margin-bottom: 0.4rem;
            font-size: 1.08rem;
            line-height: 1.3;
        }

        .gain-list {
            margin-top: 0.6rem;
            padding-left: 0;
            list-style: none;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.75rem 2rem;
        }

        .gain-list li {
            color: var(--text-dark);
            line-height: 1.55;
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            background: linear-gradient(135deg, #ffffff 0%, var(--very-light-blue) 100%);
            border: 1px solid rgba(0, 102, 204, 0.12);
            border-radius: 10px;
            padding: 0.65rem 0.85rem;
        }

        @media (max-width: 680px) {
            .hr-hero {
                margin-top: 0.6rem;
            }

            .hr-hero-text {
                padding: 1rem;
            }

            .hr-hero-visual {
                min-height: 240px;
            }

            .split-two,
            .timeline {
                grid-template-columns: 1fr;
            }

            .hr-image-grid {
                grid-template-columns: 1fr;
            }

            .hr-image-card img {
                height: 240px;
            }

            .solution-section {
                padding: 1.1rem;
            }

            .gain-list {
                grid-template-columns: 1fr;
            }
        }

        .pricing-card {
            max-width: 420px;
            background: linear-gradient(160deg, #ffffff 0%, var(--very-light-blue) 100%);
            border: 1px solid rgba(0, 102, 204, 0.2);
            border-radius: 14px;
            padding: 1.2rem;
            width: 100%;
        }

        .price {
            color: var(--primary-blue);
            font-size: 2rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 0.45rem;
        }

        .final-cta {
            text-align: center;
            background: linear-gradient(135deg, var(--very-light-blue) 0%, #dff0ff 100%);
        }

        .final-cta p {
            text-align: center;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        @keyframes fadeSlideUp {
            from {
                opacity: 0;
                transform: translateY(12px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 980px) {
            .hr-hero-inner {
                grid-template-columns: 1fr;
            }

            .hr-hero-visual {
                min-height: 320px;
            }

            .split-two,
            .timeline {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .hr-image-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .timeline-step:not(:last-child)::after,
            .timeline-step:not(:last-child)::before {
                display: none;
            }
        }


/* ===== PAGE STYLES: WorkforceManagement.html ===== */
body {
            background: linear-gradient(135deg, var(--very-light-blue) 0%, var(--light-blue) 100%);
        }

        .solution-main {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2.25rem clamp(1rem, 4vw, 2.5rem) 3rem;
        }

        .wfm-hero {
            background: var(--white);
            border-radius: 16px;
            box-shadow: 0 12px 32px rgba(0, 102, 204, 0.12);
            margin-bottom: 1.8rem;
            overflow: hidden;
        }

        .wfm-hero-inner {
            display: grid;
            grid-template-columns: 1.05fr 0.95fr;
            gap: 0;
            align-items: stretch;
        }

        .wfm-hero-text {
            background: #ffffff;
            color: #111111;
            padding: 2.2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            animation: fadeSlideUp 0.7s ease;
        }

        .wfm-hero-text h1 {
            font-size: clamp(2rem, 3.5vw, 2.7rem);
            margin: 0 0 0.8rem 0;
            line-height: 1.25;
            color: #111111;
        }

        .wfm-hero-text p {
            font-size: 1.05rem;
            margin: 0;
            line-height: 1.8;
            color: #111111;
            text-align: left;
        }

        .wfm-hero-text .hero-title-main {
            display: block;
            white-space: nowrap;
            color: #003D99;
            position: relative;
            top: -4px;
        }

        .wfm-hero-text .hero-title-sub {
            display: block;
            font-size: clamp(1.2rem, 2.3vw, 1.6rem);
            font-weight: 600;
            margin-top: 0.15rem;
            color: #111111;
        }

        .careers-hero-centered .wfm-hero-inner {
            grid-template-columns: 1fr;
        }

        .careers-hero-centered .wfm-hero-text {
            align-items: center;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }

        .careers-hero-centered .wfm-hero-text p {
            text-align: center;
        }

        .careers-hero-centered .wfm-hero-text .hero-title-main {
            white-space: normal;
        }

        .plan-actions {
            margin-top: 1rem;
        }

        .plan-cta {
            width: 100%;
            padding: 0.62rem 0.9rem;
            font-size: 0.9rem;
        }

        .wfm-hero-visual {
            position: relative;
            min-height: 340px;
            overflow: hidden;
        }

        .wfm-hero-visual::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(3, 44, 101, 0.15) 0%, rgba(10, 79, 162, 0.08) 100%);
            z-index: 1;
        }

        .wfm-hero-slide {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
            opacity: 0;
            transition: opacity 0.8s ease;
            image-rendering: high-quality;
            image-rendering: -webkit-optimize-contrast;
            filter: brightness(1.02) contrast(1.04) saturate(1.08);
            z-index: 0;
        }

        .wfm-hero-slide.active {
            opacity: 1;
        }

        .panel {
            background: var(--white);
            border: 1px solid var(--light-blue);
            border-radius: 14px;
            box-shadow: 0 10px 28px rgba(0, 102, 204, 0.1);
            padding: 1.7rem;
            margin-bottom: 1.2rem;
        }

        .panel h1,
        .panel h2 {
            color: var(--primary-blue);
        }

        .panel h1 {
            font-size: clamp(2rem, 3.8vw, 2.9rem);
            margin-bottom: 0.75rem;
            line-height: 1.2;
        }

        .centered-header {
            text-align: center;
        }

        .panel p {
            color: var(--text-dark);
            line-height: 1.7;
            text-align: justify;
        }

        .cta-row {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
            margin-top: 1rem;
        }

        .cta-primary,
        .cta-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            text-decoration: none;
            font-weight: 700;
            padding: 0.72rem 1.2rem;
            transition: var(--transition);
        }

        .cta-primary {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
            color: var(--white);
            box-shadow: 0 8px 20px rgba(0, 102, 204, 0.25);
        }

        .cta-primary:hover {
            transform: translateY(-2px);
        }

        .cta-secondary {
            border: 1px solid var(--primary-blue);
            color: var(--primary-blue);
            background: #fff;
        }

        .plans-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 0.95rem;
        }

        .seekers-features {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 1.5rem;
            margin: 1.5rem 0;
        }

        .feature-item {
            text-align: center;
            padding: 1.2rem;
            border-radius: 12px;
            background: rgba(0, 102, 204, 0.05);
            transition: var(--transition);
        }

        .feature-item:hover {
            background: rgba(0, 102, 204, 0.1);
            transform: translateY(-4px);
        }

        .feature-item i {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 0.8rem;
            display: block;
        }

        .feature-item h4 {
            color: var(--text-dark);
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .feature-item p {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        .plan-card {
            border: 2px solid rgba(0, 102, 204, 0.15);
            border-radius: 14px;
            padding: 1.4rem;
            background: #fff;
            position: relative;
            transition: var(--transition);
            overflow: hidden;
        }

        .plan-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
        }

        .plan-card:hover {
            border-color: rgba(0, 102, 204, 0.3);
            box-shadow: 0 8px 24px rgba(0, 102, 204, 0.12);
            transform: translateY(-2px);
        }

        .plan-badge {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 1px;
            padding: 0.35rem 0.6rem;
            border-radius: 999px;
            text-transform: uppercase;
            margin-bottom: 0.6rem;
        }

        .plan-card.basic .plan-badge {
            background: rgba(31, 143, 78, 0.1);
            color: #1f8f4e;
        }

        .plan-card.standard .plan-badge {
            background: rgba(173, 130, 0, 0.1);
            color: #ad8200;
        }

        .plan-card.premium .plan-badge {
            background: rgba(29, 105, 216, 0.1);
            color: #1d69d8;
        }

        .plan-card h3 {
            margin: 0 0 0.3rem 0;
            font-size: 1.15rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .plan-card h3 i {
            font-size: 1.3rem;
        }

        .plan-card.basic h3 { color: #1f8f4e; }
        .plan-card.standard h3 { color: #ad8200; }
        .plan-card.premium h3 { color: #1d69d8; }

        .plan-description {
            font-size: 0.9rem;
            color: var(--secondary-blue);
            margin-bottom: 0.8rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .plan-card ul {
            list-style: none;
            padding-left: 0;
            margin: 0;
        }

        .plan-card li {
            margin-bottom: 0.6rem;
            color: var(--text-dark);
            display: flex;
            align-items: flex-start;
            gap: 0.6rem;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .plan-card li:last-child {
            margin-bottom: 0;
        }

        .plan-card i {
            color: var(--primary-blue);
            margin-top: 0.15rem;
            flex-shrink: 0;
            font-size: 1rem;
        }

        .plan-card.basic i { color: #1f8f4e; }
        .plan-card.standard i { color: #ad8200; }
        .plan-card.premium i { color: #1d69d8; }

        .center-panel {
            text-align: center;
            background: #ffffff;
            border: none;
            padding: 2.2rem 1.2rem;
        }

        .center-panel p {
            text-align: center;
        }

        .center-panel-card {
            max-width: 900px;
            margin: 0 auto;
            background: #ffffff;
            border-radius: 14px;
            border: 1px solid rgba(0, 102, 204, 0.14);
            box-shadow: 0 10px 26px rgba(0, 102, 204, 0.12);
            padding: 1.4rem;
        }

        .why-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 2rem;
        }

        .why-list li {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 1.8rem;
            background: linear-gradient(135deg, var(--very-light-blue) 0%, rgba(0, 153, 255, 0.08) 100%);
            border: 1px solid rgba(0, 102, 204, 0.15);
            border-radius: 16px;
            transition: var(--transition);
            animation: fadeSlideUp 0.6s ease forwards;
            opacity: 0;
            counter-increment: initial;
        }

        .why-list li:nth-child(1) { animation-delay: 0.1s; }
        .why-list li:nth-child(2) { animation-delay: 0.2s; }
        .why-list li:nth-child(3) { animation-delay: 0.3s; }
        .why-list li:nth-child(4) { animation-delay: 0.4s; }

        .why-list li:hover {
            border-color: rgba(0, 102, 204, 0.4);
            box-shadow: 0 8px 24px rgba(0, 102, 204, 0.12);
            transform: translateY(-4px);
        }

        .why-list li::before {
            content: '';
            display: flex;
            align-items: center;
            justify-content: center;
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
            border-radius: 50%;
            color: white;
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .why-list li:nth-child(1)::before { content: '\f522'; font-family: 'Font Awesome 6 Free'; font-weight: 400; }
        .why-list li:nth-child(2)::before { content: '\f52f'; font-family: 'Font Awesome 6 Free'; font-weight: 400; }
        .why-list li:nth-child(3)::before { content: '\f05a'; font-family: 'Font Awesome 6 Free'; font-weight: 400; }
        .why-list li:nth-child(4)::before { content: '\f0c3'; font-family: 'Font Awesome 6 Free'; font-weight: 400; }

        .why-list li strong {
            display: block;
            color: var(--primary-blue);
            font-size: 1.15rem;
            margin-bottom: 0.6rem;
            font-weight: 700;
        }

        .why-list li span {
            color: var(--text-dark);
            line-height: 1.7;
            font-size: 0.95rem;
        }

        @media (max-width: 980px) {
            .plans-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
            .wfm-hero-inner {
                grid-template-columns: 1fr;
            }
            .wfm-hero-visual {
                min-height: 280px;
            }
            .why-list {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 768px) {
            .plans-grid { grid-template-columns: 1fr; }
        }

        @media (max-width: 680px) {
            .panel { padding: 1.2rem; }
            .plan-card { padding: 1.1rem; }
            .plan-card h3 { font-size: 1rem; }
            .wfm-hero-text {
                padding: 1.5rem;
            }
            .wfm-hero-text h1 {
                font-size: 1.8rem;
            }
            .wfm-hero-text .hero-title-main {
                white-space: normal;
            }
            .wfm-hero-visual {
                min-height: 240px;
            }
            .why-list {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
            .why-list li {
                padding: 1.2rem;
            }
        }

        @keyframes fadeSlideUp {
            from {
                opacity: 0;
                transform: translateY(12px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


/* ===== PAGE STYLES: Services.html ===== */
/* ===== Services Page Styles ===== */
        .navbar {
            padding: 0.18rem 0;
        }

        .nav-container {
            padding: 0 0.85rem 0 0.2rem;
        }

        .logo img {
            width: auto;
            height: 100%;
            max-width: min(14vw, 142px);
            object-fit: contain;
            transform: scale(1.12);
            transform-origin: center;
        }

        .logo a {
            height: 80px;
        }

        .services-hero {
            position: relative;
            height: 70vh;
            min-height: 500px;
            overflow: hidden;
            color: white;
        }

        .hero-carousel {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center 24%;
            background-repeat: no-repeat;
        }

        .hero-slide:nth-child(1) {
            background-position: center 32%;
        }

        .hero-slide:nth-child(2) {
            background-position: center 18%;
        }

        .hero-slide:nth-child(3) {
            background-position: center 26%;
        }

        .hero-slide:nth-child(4) {
            background-position: center 24%;
        }

        .hero-slide:nth-child(5) {
            background-position: center 30%;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hero-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 102, 204, 0.3) 0%, rgba(0, 153, 255, 0.2) 100%);
            z-index: 1;
        }

        .hero-content {
            position: absolute;
            top: 12%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            z-index: 2;
            max-width: 800px;
            padding: 0 2rem;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            font-weight: 800;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            animation: fadeInUp 1s ease-out;
            color: white;
            line-height: 1;
            white-space: nowrap;
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            line-height: 1.6;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        .hero-service-title {
            position: absolute;
            bottom: 6rem;
            left: 50%;
            transform: translateX(-50%);
            font-size: 2.8rem;
            font-weight: 800;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
            z-index: 2;
            animation: slideInFromBottom 1s ease-out;
            color: white;
            text-align: center;
            max-width: 90%;
        }

        .carousel-indicators {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0.5rem;
            z-index: 2;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background: white;
            transform: scale(1.2);
        }

        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            z-index: 2;
        }

        .carousel-arrow:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-arrow.prev {
            left: 2rem;
        }

        .carousel-arrow.next {
            right: 2rem;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInFromBottom {
            from {
                opacity: 0;
                transform: translateX(-50%) translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }
        }

        .core-services {
            padding: 4rem 2rem;
            background: var(--white);
        }

        .services-preview,
        .approach-section,
        .cta-section {
            padding-left: clamp(1rem, 4vw, 2.5rem);
            padding-right: clamp(1rem, 4vw, 2.5rem);
        }

        .services-intro {
            text-align: center;
            max-width: 1200px;
            margin: 0 auto 4rem;
            padding: 0 0.5rem;
        }

        .services-intro h2 {
            color: var(--primary-blue);
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .services-intro p {
            font-size: 1.1rem;
            line-height: 1.6;
            color: var(--text-dark);
            text-align: justify;
        }

        .services-list {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            gap: 1.75rem;
            padding: 0 0.5rem;
        }

        .service-row {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 1.5rem;
            align-items: center;
            background: white;
            border-radius: 14px;
            border: 1px solid var(--light-blue);
            box-shadow: 0 10px 28px rgba(0, 102, 204, 0.12);
            padding: 1.5rem;
        }

        .service-row:nth-child(even) .service-row-text {
            order: 2;
        }

        .service-row:nth-child(even) .service-row-media {
            order: 1;
        }

        .service-row-text h3 {
            color: var(--primary-blue);
            font-size: 1.45rem;
            margin-bottom: 0.7rem;
        }

        .service-row-text p {
            color: var(--text-dark);
            line-height: 1.65;
            margin-bottom: 0.9rem;
        }

        .service-row-text h4 {
            color: var(--secondary-blue);
            font-size: 1rem;
            margin: 0.85rem 0 0.4rem;
        }

        .service-row-text ul {
            margin: 0;
            padding-left: 0;
            list-style: none;
        }

        .service-row-text li {
            color: var(--text-dark);
            margin-bottom: 0.3rem;
            line-height: 1.45;
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
        }

        .service-row-text li i {
            color: var(--primary-blue);
            font-size: 0.85rem;
            margin-top: 0.22rem;
            flex-shrink: 0;
        }

        .service-row-media {
            align-self: stretch;
            min-height: 280px;
        }

        .service-row-media img {
            width: 100%;
            height: 100%;
            min-height: 280px;
            object-fit: cover;
            object-position: center;
            border-radius: 12px;
            border: 2px solid rgba(0, 153, 255, 0.2);
            box-shadow: 0 8px 24px rgba(0, 61, 153, 0.2);
        }

        .approach-section {
            padding: 3rem 2rem 1.75rem;
            background: linear-gradient(135deg, var(--very-light-blue) 0%, var(--light-blue) 100%);
        }

        .approach-section .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            border-radius: 14px;
            border: 1px solid var(--light-blue);
            box-shadow: 0 10px 28px rgba(0, 102, 204, 0.12);
            padding: 1.5rem;
        }

        .approach-section h2 {
            text-align: center;
            color: var(--primary-blue);
            font-size: 2.5rem;
            margin-bottom: 2rem;
            font-weight: 700;
        }

        .approach-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            padding: 0 0.5rem;
        }

        .approach-content p {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 1.2rem;
            color: var(--text-dark);
            text-align: justify;
        }

        .approach-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(250px, 1fr));
            gap: 1.25rem;
        }

        .approach-item {
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0, 102, 204, 0.1);
            transition: var(--transition);
        }

        .approach-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 102, 204, 0.2);
        }

        .approach-item i {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

        .approach-item h4 {
            color: var(--secondary-blue);
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
        }

        .approach-item p {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .cta-section {
            padding: 0.65rem 2rem 4rem;
            background: linear-gradient(135deg, var(--very-light-blue) 0%, var(--light-blue) 100%);
            color: var(--text-dark);
            text-align: center;
        }

        .cta-section .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            border-radius: 14px;
            border: 1px solid var(--light-blue);
            box-shadow: 0 10px 28px rgba(0, 102, 204, 0.12);
            padding: 1.5rem;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
            color: var(--primary-blue);
        }

        .cta-section p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            color: var(--text-dark);
            opacity: 1;
            text-align: justify;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 0.5rem;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .cta-button {
            background: white;
            color: var(--primary-blue);
            padding: 1rem 2rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            display: inline-block;
        }

        .cta-button:hover {
            background: var(--accent-blue);
            color: white;
            transform: translateY(-2px);
        }

        .footer {
            background: linear-gradient(135deg, #002f73 0%, #004f9f 58%, #006ec4 100%);
            border-top: 1px solid rgba(255, 255, 255, 0.12);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            color: rgba(255, 255, 255, 0.86);
        }

        /* ===== Responsive Design ===== */
        @media (max-width: 768px) {
            .services-hero {
                min-height: 420px;
            }

            .hero-slide,
            .hero-slide:nth-child(1),
            .hero-slide:nth-child(2),
            .hero-slide:nth-child(3),
            .hero-slide:nth-child(4),
            .hero-slide:nth-child(5) {
                background-position: center 20%;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-service-title {
                font-size: 2.2rem;
                bottom: 5rem;
            }

            .service-row {
                grid-template-columns: 1fr;
                gap: 1rem;
                padding: 1.1rem;
            }

            .service-row:nth-child(even) .service-row-text,
            .service-row:nth-child(even) .service-row-media {
                order: initial;
            }

            .service-row-media,
            .service-row-media img {
                min-height: 220px;
            }

            .approach-grid {
                grid-template-columns: 1fr;
            }

            .approach-section h2,
            .cta-section h2 {
                font-size: 2rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .carousel-arrow {
                display: none;
            }

        }


/* ===== PAGE STYLES: Testimonials.html ===== */
/* ===== Testimonials Page Specific Styles ===== */         .testimonials-hero {             background: linear-gradient(135deg, var(--very-light-blue) 0%, var(--light-blue) 100%);             padding: 3rem 2rem;             color: var(--text-dark);             text-align: center;             margin-bottom: 2rem;         }          .testimonials-hero h1 {             font-size: 2.5rem;             margin-bottom: 0.5rem;             font-weight: 800;             animation: slideInLeft 0.8s ease;         }          .testimonials-hero p {             font-size: 1.1rem;             max-width: 800px;             margin: 0 auto;             opacity: 0.9;             animation: slideInRight 0.8s ease;         }          .testimonials-section {             padding: 4rem 2rem;             max-width: 1200px;             margin: 0 auto 3rem;             background: var(--white);         }          .testimonials-section h2 {             font-size: 2.8rem;             color: var(--primary-blue);             text-align: center;             margin-bottom: 4rem;             font-weight: 800;         }          .testimonials-grid {             display: grid;             grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));             gap: 3rem;         }          .testimonial-card {             background: linear-gradient(135deg, var(--very-light-blue) 0%, rgba(0, 153, 255, 0.05) 100%);             padding: 2.5rem;             border-radius: 15px;             border: 2px solid var(--light-blue);             position: relative;             transition: var(--transition);             animation: fadeInUp 0.8s ease;         }          .testimonial-card::before {             content: '"';             position: absolute;             top: -20px;             left: 20px;             font-size: 4rem;             color: var(--secondary-blue);             font-weight: bold;             opacity: 0.3;         }          .testimonial-card:hover {             transform: translateY(-15px);             box-shadow: var(--shadow);             border-color: var(--secondary-blue);         }          .testimonial-content {             margin-bottom: 2rem;         }          .testimonial-text {             color: var(--text-light);             line-height: 1.8;             font-size: 1rem;             margin-bottom: 1.5rem;             font-style: italic;         }          .star-rating {             display: flex;             gap: 0.3rem;             margin-bottom: 1.5rem;         }          .star {             color: #FFD700;             font-size: 1.2rem;         }          .testimonial-author {             display: flex;             align-items: center;             gap: 1.5rem;             border-top: 2px solid var(--light-blue);             padding-top: 1.5rem;         }          .author-image {             width: 110px; height: 110px;             border-radius: 50%;             overflow: hidden;             box-shadow: 0 6px 18px rgba(0, 102, 204, 0.25); border: 3px solid var(--light-blue);             flex-shrink: 0;         }          .author-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }          .author-info {             color: var(--primary-blue);             font-weight: 700;         }

/* ===== PAGE STYLES: Contacts.html ===== */
body{ 			background: linear-gradient(135deg, rgba(0, 102, 204, 0.12) 0%, rgba(0, 153, 255, 0.08) 100%); 		}  		.contact-hero { 			max-width: 920px; 			margin: 0 auto; 			padding: 2.2rem 1.5rem 1rem; 			text-align: center; 			display: flex; 			justify-content: center; 		}  		.contact-hero-box { 			width: 100%; 			margin: 0 auto; 			padding: 1.6rem; 			background: var(--white); 			border: 1px solid var(--light-blue); 			border-radius: 14px; 			box-shadow: 0 10px 28px rgba(0, 102, 204, 0.08); 			display: flex; 			flex-direction: column; 		}  		.contact-hero h1 { 			color: var(--primary-blue); 			font-size: 2.8rem; 			margin-bottom: 0.8rem; 		}  		.contact-hero p { 			max-width: 100%; 			margin: 0 auto; 			font-size: 1.05rem; 			color: var(--text-dark); 			text-align: left; 		}  		.contact-main { 			max-width: 920px; 			margin: 0 auto; 			padding: 2rem 1.5rem 4rem; 			display: grid; 			grid-template-columns: 1fr; 			gap: 1.5rem; 		}  		.form-card { 			background: var(--white); 			border-radius: 14px; 			border: 1px solid var(--light-blue); 			box-shadow: 0 10px 28px rgba(0, 102, 204, 0.08); 			padding: 1.6rem; 			width: 100%; 			margin: 0 auto; 		}  		.form-card h2 { 			color: var(--primary-blue); 			font-size: 1.5rem; 			margin-bottom: 1rem; 		}  		.website-note { 			margin-top: 1rem; 			font-size: 0.95rem; 			color: var(--text-light); 		}  		.form-grid { 			display: grid; 			grid-template-columns: 1fr 1fr; 			gap: 1rem; 		}  		.field { 			display: flex; 			flex-direction: column; 			gap: 0.4rem; 		}  		.field.full { 			grid-column: 1 / -1; 		}  		label { 			font-weight: 600; 			color: var(--text-dark); 		}  		.required-tag { 			color: #b42318; 			font-size: 0.82rem; 			font-weight: 600; 			margin-left: 0.3rem; 		}  		input, 		select, 		textarea { 			border: 1px solid #cddff5; 			border-radius: 10px; 			padding: 0.8rem 0.9rem; 			font: inherit; 			color: var(--text-dark); 			background: #fbfdff; 			outline: none; 			transition: border-color 0.2s ease, box-shadow 0.2s ease; 		}  		input:focus, 		select:focus, 		textarea:focus { 			border-color: var(--secondary-blue); 			box-shadow: 0 0 0 3px rgba(0, 153, 255, 0.15); 		}  		textarea { 			min-height: 140px; 			resize: vertical; 		}  		.submit-btn { 			background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue)); 			color: var(--white); 			border: none; 			border-radius: 999px; 			padding: 0.85rem 1.5rem; 			font-weight: 700; 			cursor: pointer; 			transition: transform 0.2s ease, box-shadow 0.2s ease; 		}  		.submit-btn:hover { 			transform: translateY(-2px); 			box-shadow: 0 10px 20px rgba(0, 102, 204, 0.25); 		}   		.contact-page-footer .footer-content { 			display: flex; 			justify-content: space-between; 			align-items: flex-start; 			gap: 2rem; 		}  		.contact-page-footer .footer-section { 			flex: 1; 		}  		.contact-page-footer .footer-section h4, 		.contact-page-footer .footer-section p { 			text-align: left; 		}  		.contact-page-footer .footer-list { 			display: flex; 			flex-direction: column; 			gap: 0.8rem; 		}  		.contact-page-footer .footer-item { 			display: flex; 			align-items: center; 			gap: 0.6rem; 			font-size: 0.95rem; 			color: rgba(255, 255, 255, 0.9); 		}  		.contact-page-footer .footer-item i { 			font-size: 1rem; 			min-width: 18px; 		}  		.contact-page-footer .footer-item a { 			color: rgba(255, 255, 255, 0.9); 			text-decoration: none; 		}  		.contact-page-footer .footer-item a:hover { 			color: var(--accent-blue); 			text-decoration: underline; 		}  		@media (max-width: 900px) { 			.contact-hero { 				padding: 1.6rem 1rem 0.8rem; 			}  			.contact-hero-box { 				padding: 1.6rem; 			}  			.form-grid { 				grid-template-columns: 1fr; 			}  			.contact-page-footer .footer-content { 				flex-direction: column; 			}  			.contact-hero h1 { 				font-size: 2.2rem; 			} 		}

/* ===== UTILITY CLASSES: INLINE STYLE CLEANUP ===== */
.cta-row-center {
    justify-content: center;
}

.plans-intro {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: center;
    font-weight: 500;
}

.hero-program-list {
    margin-top: 0.6rem;
}

.hero-program-note {
    margin-top: 0.5rem;
    color: #003D99;
    font-weight: 700;
    font-style: italic;
}

.gain-heading {
    text-align: center;
}

.gain-icon {
    color: var(--primary-blue);
    margin-right: 0.5rem;
}

.step-dot {
    font-size: 0.45rem;
}

.micon-green {
    background: #eafaf2;
    color: #1a8a4a;
}

.micon-blue {
    background: rgba(0, 102, 204, 0.1);
    color: var(--primary-blue);
}

/* ===== Testimonials Readability Overrides ===== */
.testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
}

.testimonial-card {
    padding: 2rem;
}

.testimonial-card::before {
    content: none;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    border-top: none;
    border-bottom: 1px solid var(--light-blue);
    padding-top: 0;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.author-image {
    width: 145px;
    height: 145px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.25);
    border: 2px solid var(--light-blue);
    flex-shrink: 0;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    image-rendering: -webkit-optimize-contrast;
}

/* Targeted clarity tuning for lower-resolution portraits */
.author-image img[src*="Immaculate.jpg"],
.author-image img[src*="Deo.jpeg"] {
    object-position: center 12%;
    transform: scale(1.02);
    filter: brightness(1.04) contrast(1.12) saturate(1.06);
}

.author-info {
    color: var(--primary-blue);
    font-weight: 700;
}

.author-name {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.author-role {
    margin: 0.25rem 0 0;
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--text-dark);
}

.testimonial-content {
    margin-bottom: 0;
}

.testimonial-subheading {
    margin: 1rem 0 0.45rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.testimonial-subheading i {
    margin-right: 0.45rem;
    color: var(--secondary-blue);
}

.testimonial-text {
    color: var(--text-dark);
    line-height: 1.75;
    font-size: 1rem;
    margin-bottom: 0.95rem;
    font-style: normal;
}

@media (max-width: 768px) {
    .author-image {
        width: 120px;
        height: 120px;
    }
}

