:root {
    --primary-gold: #2792DA;
    --light-gold: #7dc0eb;
    --medium-gold: #4fa8e0;
    --dark-gold: #1a6faa;

    --dark-bg: #0A2046;
    --black: #000000;
    --white: #FFFFFF;

    --light-text: #d0e6f5;
    --medium-text: #7ab4d8;
    --dark-text: #10325E;

    --font-serif: 'Georgia', 'Garamond', 'Baskerville', serif;
    --font-sans: 'Segoe UI', 'Helvetica Neue', 'Arial', sans-serif;

    --transition-fast: 0.2s ease;
    --transition-smooth: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.5s ease-in-out;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);

    --oxford-navy: #10325E;
    --blue-bell: #2792DA;
    --prussian-blue: #0A2046;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--white);
    color: var(--oxford-navy);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

main {
    display: block;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--light-gold);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.75rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

.text {
    color: var(--oxford-navy);
    line-height: 1.8;
    font-size: 1rem;
}

.heading {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--prussian-blue);
    margin-bottom: 1.5rem;
    position: relative;
}

.heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-bell), var(--dark-gold));
    margin-top: 1.25rem;
}

.heading-section {
    font-family: var(--font-serif);
    text-align: center;
    font-size: 2.75rem;
    color: var(--prussian-blue);
    margin-bottom: 3.5rem;
    position: relative;
}

.heading-section::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-bell), var(--dark-gold));
    margin: 1.25rem auto 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.25rem;
    border: 2px solid transparent;
    border-radius: 2px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    outline: none;
}

.btn--primary {
    background: var(--primary-gold);
    color: var(--white);
    border-color: var(--primary-gold);
}

.btn--primary:hover {
    background: transparent;
    color: var(--blue-bell);
    border-color: var(--blue-bell);
    transform: translateY(-3px);
}

.btn--primary:active {
    transform: translateY(0);
}

.btn i {
    font-size: 1.1rem;
}

.header-section {
    background-color: var(--prussian-blue);
    border-bottom: 1px solid rgba(39, 146, 218, 0.3);
    position: relative;
    z-index: 50;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 5%;
    max-width: 1600px;
    margin: 0 auto;
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: var(--prussian-blue);
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-logo svg {
    height: 55px;
    width: auto;
    transition: transform var(--transition-smooth);
}

.nav-logo svg:hover {
    transform: scale(1.08);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 6px;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: var(--primary-gold);
    transition: all var(--transition-smooth);
    transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width var(--transition-smooth);
}

.nav-links a:hover::after,
.nav-links a:focus::after {
    width: 100%;
}

.social-icons {
    display: none;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 75vh;
    padding: 60px 5%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(10, 32, 70, 0.72), rgba(16, 50, 94, 0.65)),
        url('images/hero-background-image.jpg') center/cover no-repeat;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(39, 146, 218, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(185, 154, 69, 0.06) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.logo-hero {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.05;
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 10;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.hero .heading {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    color: var(--white);
    margin-bottom: 0.5rem;
}

.hero .heading::after {
    margin-left: auto;
    margin-right: auto;
    background: var(--blue-bell);
}

.sub-heading {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--light-text);
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.5px;
    line-height: 1.8;
}

.section {
    padding: 100px 5%;
    max-width: 1600px;
    margin: 0 auto;
    background-color: var(--white);
}

.section:nth-child(odd) {
    background: #FFFFFF;
}

.section:nth-child(even) {
    background: #F4F7FB;
}

.about-us {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-inner .heading::after {
    margin-left: 0;
}

.about-img {
    width: 100%;
    border: 2px solid var(--blue-bell);
    padding: 12px;
    background: linear-gradient(135deg, var(--prussian-blue), var(--oxford-navy));
    box-shadow: 0 16px 48px rgba(10, 32, 70, 0.2);
    transition: transform var(--transition-smooth);
    border-radius: 6px;
}

.about-img:hover {
    transform: scale(1.02);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    padding: 0;
}

.service-item {
    background: var(--prussian-blue);
    padding: 2.5rem;
    border: 1px solid rgba(39, 146, 218, 0.2);
    border-radius: 2px;
    transition: all var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(10, 32, 70, 0.15);
}

.service-item:hover {
    border-color: var(--blue-bell);
    background: var(--oxford-navy);
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(10, 32, 70, 0.25);
}

.service-item i {
    font-size: 3.25rem;
    color: var(--blue-bell);
    transition: transform var(--transition-smooth);
}

.service-item:hover i {
    transform: scale(1.15) rotate(-5deg);
}

.service-item-heading {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 700;
}

.service-item .text {
    flex-grow: 1;
    margin-bottom: 0;
    color: var(--light-text);
}

.objective {
    padding: 100px 5%;
}

.objectives-row {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3.5rem;
    align-items: start;
}

.objectives-row .text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--oxford-navy);
}

.obj-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.obj-icons {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--prussian-blue);
    border-left: 4px solid var(--blue-bell);
    border-radius: 2px;
    transition: all var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(10, 32, 70, 0.15);
}

.obj-icons:hover {
    background: var(--oxford-navy);
    transform: translateX(8px);
    box-shadow: 0 8px 32px rgba(10, 32, 70, 0.25);
}

.obj-icons i {
    font-size: 2rem;
    color: var(--blue-bell);
    flex-shrink: 0;
    margin-top: 4px;
}

.obj-icons p {
    margin-bottom: 0;
    color: var(--light-text);
    line-height: 1.8;
}

.header-team {
    text-align: center;
    margin-bottom: 3.5rem;
}

.header-team h2 {
    color: var(--prussian-blue);
}

.section-label {
    display: inline-block;
    background: var(--blue-bell);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.team-persons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.person {
    background: var(--oxford-navy);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(10, 32, 70, 0.2);
    transition: all var(--transition-smooth);
    border: 1px solid rgba(39, 146, 218, 0.15);
    text-align: center;
    padding-top: 50px;
}

.person:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(10, 32, 70, 0.3);
    border-color: var(--blue-bell);
}

.person img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    transition: transform var(--transition-smooth), filter var(--transition-smooth);
    filter: grayscale(80%);
    margin: 0 auto;
    border-radius: 4px;
}

.person:hover img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

.person h3 {
    padding: 2rem 1.5rem 0.75rem;
    font-size: 1.5rem;
    color: var(--white);
}

.person p {
    padding: 0 1.5rem 2rem;
    color: var(--blue-bell);
    font-weight: 600;
    margin-bottom: 0;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    list-style: none;
}

.testimonial-card {
    background: var(--prussian-blue);
    padding: 2.5rem;
    border-radius: 2px;
    box-shadow: 0 8px 32px rgba(10, 32, 70, 0.15);
    border: 1px solid rgba(39, 146, 218, 0.15);
    transition: all var(--transition-smooth);
}

.testimonial-card:hover {
    box-shadow: 0 20px 60px rgba(10, 32, 70, 0.25);
    transform: translateY(-8px);
    border-color: var(--blue-bell);
}

.testimonial-card blockquote {
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--light-text);
    line-height: 1.9;
    font-size: 1.05rem;
}

.testimonial-card blockquote p {
    margin-bottom: 0;
}

.testimonial-card figcaption {
    border-top: 1px solid rgba(39, 146, 218, 0.2);
    padding-top: 1.5rem;
}

.testimonial-card strong {
    color: var(--blue-bell);
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.star-rating {
    display: flex;
    gap: 6px;
}

.star-rating i {
    color: var(--primary-gold);
    font-size: 0.9rem;
}

.contact-us {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-address {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-address .heading-section {
    text-align: left;
    margin-bottom: 1.5rem;
    color: var(--prussian-blue);
}

.contact-address .heading-section::after {
    margin-left: 0;
}

address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-detail i {
    color: var(--primary-gold);
    font-size: 1.4rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-detail p {
    margin-bottom: 0;
    color: var(--oxford-navy);
    line-height: 1.8;
}

.contact-detail a {
    color: var(--blue-bell);
    font-weight: 600;
    transition: color var(--transition-fast);
}

.contact-detail a:hover {
    color: var(--prussian-blue);
}

.contact-us-form {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    background: var(--prussian-blue);
    padding: 3rem;
    border-radius: 2px;
    border: 1px solid rgba(39, 146, 218, 0.25);
    box-shadow: 0 16px 48px rgba(10, 32, 70, 0.2);
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item label {
    font-weight: 700;
    color: var(--primary-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item input,
.contact-item select,
.contact-item textarea {
    padding: 1rem;
    border: 1px solid rgba(39, 146, 218, 0.3);
    border-radius: 2px;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--white);
    background: rgba(10, 32, 70, 0.5);
    transition: all var(--transition-fast);
    outline: none;
}

.contact-item input::placeholder,
.contact-item textarea::placeholder {
    color: var(--medium-text);
}

.contact-item input:focus,
.contact-item select:focus,
.contact-item textarea:focus {
    border-color: var(--primary-gold);
    background: rgba(10, 32, 70, 0.7);
    box-shadow: 0 0 0 3px rgba(39, 146, 218, 0.15);
}

.contact-item textarea {
    resize: vertical;
    min-height: 150px;
    font-family: var(--font-sans);
}

#submit-btn {
    margin-top: 1rem;
    align-self: flex-start;
}

.footer-section {
    background: linear-gradient(180deg, var(--oxford-navy) 0%, var(--prussian-blue) 100%);
    color: var(--light-text);
    padding: 80px 5% 40px;
    margin-top: 0;
    border-top: 3px solid var(--blue-bell);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
}

.footer-nav h3,
.footer-services h3,
.footer-address h3 {
    color: var(--primary-gold);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.footer-nav ul,
.footer-services ul,
.footer-address ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-nav a,
.footer-services a {
    color: var(--light-text);
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.footer-nav a:hover,
.footer-services a:hover {
    color: var(--primary-gold);
}

.footer-address {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1.5rem;
}

.footer-address .contact-detail {
    gap: 1rem;
}

.footer-address .contact-detail i {
    font-size: 1.1rem;
}

.footer-address p,
.footer-address a {
    margin-bottom: 0;
    color: var(--light-text);
    font-size: 0.95rem;
}

.footer-address a:hover {
    color: var(--primary-gold);
}

.footer-brand {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(39, 146, 218, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-logo-link {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 1.3rem;
    transition: color var(--transition-fast);
    display: inline-block;
}

.footer-logo-link:hover {
    color: var(--light-gold);
}

.footer-brand-name {
    display: block;
    margin-bottom: 0.75rem;
}

.footer-tagline {
    color: var(--medium-text);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.footer-copy {
    color: var(--medium-text);
    font-size: 0.85rem;
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    .heading {
        font-size: 2.25rem;
    }

    .heading-section {
        font-size: 2.25rem;
    }

    .site-header {
        padding: 1rem 3%;
    }

    .hero {
        min-height: 65vh;
        padding: 50px 3%;
    }

    .hero .heading {
        font-size: clamp(2rem, 6vw, 3.5rem);
    }

    .about-us {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .objectives-row {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-us {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .section {
        padding: 80px 3%;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .break-line {
        display: block;
    }

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .heading {
        font-size: 1.75rem;
    }

    .heading-section {
        font-size: 1.75rem;
        margin-bottom: 2.5rem;
    }

    .nav-toggle {
        display: flex;
        z-index: 1000;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 0;
        right: 0;
        flex-direction: column;
        background: var(--dark-bg);
        border-bottom: 1px solid rgba(39, 146, 218, 0.15);
        width: 70%;
        height: 100vh;
        padding: 1.5rem 3%;
        gap: 1rem;
        z-index: 999;
        align-items: start;
    }


    .social-icons {
        display: none;
        position: absolute;
        top: 0;
        right: 0;
        flex-direction: column;
        background: var(--dark-bg);
        border-bottom: 1px solid rgba(39, 146, 218, 0.15);
        width: 70%;
        height: 100vh;
        padding: 1.5rem 3%;
        gap: 1rem;
        z-index: 999;
        align-items: start;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(39, 146, 218, 0.1);
    }

    .nav-logo svg {
        height: 45px;
    }

    .hero {
        min-height: 55vh;
    }

    .hero .heading {
        font-size: clamp(1.75rem, 5vw, 3rem);
    }

    .sub-heading {
        font-size: 1.1rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-persons {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-us-form {
        padding: 2rem;
    }

    .section {
        padding: 60px 3%;
    }

    .btn {
        padding: 0.9rem 1.75rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 640px) {
    html {
        font-size: 14px;
    }

    .site-header {
        padding: 1rem 2%;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .heading {
        font-size: 1.5rem;
    }

    .heading-section {
        font-size: 1.5rem;
    }

    .hero {
        min-height: 50vh;
        padding: 40px 2%;
    }

    .hero .heading {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
    }

    .section {
        padding: 50px 2%;
    }

    .nav-logo svg {
        height: 40px;
    }

    .service-item {
        padding: 2rem 1.5rem;
    }

    .obj-icons {
        padding: 1.5rem;
        gap: 1rem;
    }

    .contact-us-form {
        padding: 1.5rem;
    }

    .person img {
        height: 250px;
    }

    .footer-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 50px 2% 30px;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 13px;
    }

    .heading {
        font-size: 1.25rem;
    }

    .heading-section {
        font-size: 1.25rem;
    }

    .section-label {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }

    .nav-links {
        padding: 1rem 2%;
    }

    .hero {
        min-height: 45vh;
        padding: 30px 2%;
    }

    .hero .heading {
        font-size: clamp(1.3rem, 3vw, 2rem);
    }

    .sub-heading {
        font-size: 1rem;
    }

    .obj-icons i {
        font-size: 1.5rem;
    }

    .service-item i {
        font-size: 2.75rem;
    }

    .section {
        padding: 40px 2%;
    }

    .about-inner,
    .contact-address {
        gap: 1.5rem;
    }

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.8rem;
        width: 100%;
        justify-content: center;
    }

    .contact-detail {
        gap: 1rem;
    }
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

.about-hero {
    background: linear-gradient(135deg, rgba(10, 32, 70, 0.78), rgba(16, 50, 94, 0.70)),
        url('images/hero-background-image.jpg') center/cover no-repeat;
    min-height: 60vh;
    text-align: center;
}

.about-hero .hero-inner {
    gap: 1.75rem;
}

.about-hero .heading {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--white);
}

.about-hero .heading::after {
    margin-left: auto;
    margin-right: auto;
    background: var(--blue-bell);
}

.about-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-detail-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-detail-text .section-label {
    align-self: flex-start;
}

.about-detail-text .heading {
    margin-bottom: 0;
}

.about-detail-text .heading em {
    display: block;
    font-style: italic;
    color: var(--blue-bell);
    font-size: 0.9em;
}

.about-detail-text .heading::after {
    margin-left: 0;
}

.about-detail-text .text {
    margin-bottom: 0;
}

.about-feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0;
    margin: 0.5rem 0;
}

.about-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--prussian-blue);
    border-left: 4px solid var(--blue-bell);
    border-radius: 2px;
    transition: all var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(10, 32, 70, 0.12);
}

.about-feature-list li:hover {
    transform: translateX(6px);
    background: var(--oxford-navy);
    box-shadow: 0 8px 30px rgba(10, 32, 70, 0.22);
}

.feature-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 1.25rem;
    color: var(--blue-bell);
}

.feature-text strong {
    display: block;
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.feature-text p {
    color: var(--light-text);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.7;
}

.about-visual-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-page-img {
    width: 100%;
    border: 2px solid var(--blue-bell);
    padding: 12px;
    background: linear-gradient(135deg, var(--prussian-blue), var(--oxford-navy));
    box-shadow: 0 16px 48px rgba(10, 32, 70, 0.25);
    border-radius: 6px;
    transition: transform var(--transition-smooth);
}

.about-page-img:hover {
    transform: scale(1.02);
}

.stat-badge {
    position: absolute;
    background: var(--white);
    border-radius: 4px;
    padding: 1rem 1.4rem;
    box-shadow: 0 12px 36px rgba(10, 32, 70, 0.25);
    text-align: center;
    min-width: 150px;
    border-bottom: 3px solid var(--blue-bell);
}

.stat-badge--top {
    top: -20px;
    right: -20px;
}

.stat-badge--bottom {
    bottom: -20px;
    left: -20px;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--prussian-blue);
    line-height: 1.2;
}

.stat-badge p {
    margin: 0.35rem 0 0;
    font-size: 0.8rem;
    color: var(--oxford-navy);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.about-values-section {
    background: #F4F7FB;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.value-card {
    background: var(--prussian-blue);
    padding: 2.75rem 2.25rem;
    border-radius: 2px;
    border: 1px solid rgba(39, 146, 218, 0.18);
    box-shadow: 0 4px 20px rgba(10, 32, 70, 0.15);
    transition: all var(--transition-smooth);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--blue-bell);
    box-shadow: 0 20px 50px rgba(10, 32, 70, 0.25);
    background: var(--oxford-navy);
}

.value-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-smooth);
}

.value-card:hover .value-icon {
    transform: scale(1.12) rotate(-5deg);
}

.value-icon i {
    font-size: 1.75rem;
    color: var(--blue-bell);
}

.value-card h3 {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    color: var(--white);
    font-weight: 700;
}

.value-card p {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0;
}

/* ============================================
   ABOUT PAGE — RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .about-detail {
        gap: 3.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .about-detail {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-visual-wrap {
        order: -1;
    }

    .stat-badge--top {
        top: -14px;
        right: -10px;
    }

    .stat-badge--bottom {
        bottom: -14px;
        left: -10px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .about-hero {
        min-height: 50vh;
    }
}

@media (max-width: 480px) {
    .stat-badge {
        min-width: 120px;
        padding: 0.75rem 1rem;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .stat-badge p {
        font-size: 0.7rem;
    }

    .about-feature-list li {
        padding: 1.25rem;
    }

    .value-card {
        padding: 2rem 1.75rem;
    }
}

/* ============================================
   SERVICES PAGE STYLES
   Delete any old services CSS you added before,
   then paste this entire block at the bottom
   of styles.css
   ============================================ */

.services-hero {
    background: linear-gradient(135deg, rgba(10, 32, 70, 0.78), rgba(16, 50, 94, 0.70)),
        url('images/hero-background-image.jpg') center / cover no-repeat;
    min-height: 60vh;
    text-align: center;
}

.services-hero .hero-inner {
    gap: 1.75rem;
}

.services-hero .heading {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--white);
}

.services-hero .heading::after {
    margin-left: auto;
    margin-right: auto;
    background: var(--blue-bell);
}

.services-page {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

.srv-page-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.srv-page-intro .heading-section {
    margin-bottom: 0;
}

.srv-heading-em {
    font-style: italic;
    color: var(--blue-bell);
}

.srv-intro-text {
    max-width: 640px;
    color: var(--oxford-navy);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Tabs */
.srv-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.srv-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 2rem;
    border: 2px solid rgba(39, 146, 218, 0.3);
    border-radius: 50px;
    background: transparent;
    color: var(--oxford-navy);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.srv-tab-btn i {
    font-size: 1rem;
    color: var(--blue-bell);
}

.srv-tab-btn:hover {
    border-color: var(--blue-bell);
    background: rgba(39, 146, 218, 0.06);
    transform: translateY(-2px);
}

.srv-tab-btn.active {
    background: var(--prussian-blue);
    border-color: var(--prussian-blue);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(10, 32, 70, 0.25);
}

.srv-tab-btn.active i {
    color: var(--primary-gold);
}

/* Category panels — hidden by default */
.srv-category {
    display: none;
}

.srv-category--active {
    display: block;
    animation: srv-fade-in 0.35s ease forwards;
}

@keyframes srv-fade-in {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Grid */
.srv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.25rem;
}

/* Card shell */
.srv-card {
    background: var(--white);
    border: 1px solid rgba(39, 146, 218, 0.18);
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(10, 32, 70, 0.08);
    overflow: hidden;
    transition: box-shadow var(--transition-smooth), transform var(--transition-smooth), border-color var(--transition-smooth);
}

.srv-card:hover {
    box-shadow: 0 12px 40px rgba(10, 32, 70, 0.15);
    transform: translateY(-4px);
}

.srv-card.is-open {
    border-color: var(--blue-bell);
    transform: translateY(0);
    box-shadow: 0 16px 48px rgba(10, 32, 70, 0.18);
}

/* Card top — always visible */
.srv-card-top {
    padding: 2.25rem 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.srv-icon-wrap {
    width: 64px;
    height: 64px;
    background: rgba(39, 146, 218, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-smooth), transform var(--transition-smooth);
}

.srv-card:hover .srv-icon-wrap,
.srv-card.is-open .srv-icon-wrap {
    background: rgba(39, 146, 218, 0.15);
    transform: scale(1.08) rotate(-4deg);
}

.srv-icon-wrap i {
    font-size: 1.75rem;
    color: var(--blue-bell);
}

.srv-card-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--prussian-blue);
    font-weight: 700;
    line-height: 1.25;
}

.srv-card-desc {
    color: var(--oxford-navy);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 0;
}

/* Expand button */
.srv-expand-btn {
    align-self: flex-start;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(39, 146, 218, 0.35);
    background: transparent;
    color: var(--blue-bell);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-smooth);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.srv-expand-btn i {
    font-size: 0.85rem;
    transition: transform var(--transition-smooth);
    pointer-events: none;
}

.srv-expand-btn:hover {
    background: var(--blue-bell);
    border-color: var(--blue-bell);
    color: var(--white);
}

.srv-card.is-open .srv-expand-btn {
    background: var(--prussian-blue);
    border-color: var(--prussian-blue);
    color: var(--white);
}

.srv-card.is-open .srv-expand-btn i {
    transform: rotate(90deg);
}

/* Card body — hidden until .is-open on parent */
.srv-card-body {
    display: none;
    padding: 1.5rem 2rem 2.25rem;
    border-top: 1px solid rgba(39, 146, 218, 0.15);
}

.srv-card.is-open .srv-card-body {
    display: block;
    animation: srv-body-open 0.3s ease forwards;
}

@keyframes srv-body-open {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.srv-body-text {
    color: var(--oxford-navy);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.srv-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.srv-includes li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 0.92rem;
    color: var(--oxford-navy);
    line-height: 1.6;
}

.srv-includes li i {
    color: var(--blue-bell);
    font-size: 0.75rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.srv-body-cta {
    font-size: 0.85rem;
    padding: 0.8rem 1.75rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .srv-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .services-hero {
        min-height: 50vh;
    }

    .srv-tabs {
        gap: 0.65rem;
    }

    .srv-tab-btn {
        padding: 0.7rem 1.35rem;
        font-size: 0.82rem;
    }

    .srv-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .services-page {
        gap: 2.5rem;
    }
}

@media (max-width: 480px) {
    .srv-tab-btn {
        padding: 0.6rem 1rem;
        font-size: 0.76rem;
        gap: 0.45rem;
    }

    .srv-card-top {
        padding: 1.75rem 1.5rem 1.25rem;
    }

    .srv-card-body {
        padding: 1.25rem 1.5rem 1.75rem;
    }

    .srv-icon-wrap {
        width: 52px;
        height: 52px;
    }

    .srv-icon-wrap i {
        font-size: 1.35rem;
    }

    .srv-card-title {
        font-size: 1.2rem;
    }
}