/* =========================================
   CAREEREDGE RESUMEPRO
   GLOBAL STYLES
========================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    background: #ffffff;
    color: #0b1f3a;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}


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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(17, 76, 154, 0.12);
}

.nav-container {
    width: min(92%, 1400px);
    min-height: 86px;
    margin: auto;

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


/* BRAND */

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.brand-name {
    font-size: 20px;
    font-weight: 600;
    color: #102d50;
    white-space: nowrap;
}

.brand-name strong {
    color: #2878e8;
}


/* NAVIGATION */

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    color: #26384d;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
}

.main-nav a:hover {
    color: #2878e8;
}


/* CONSULTATION BUTTON */

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;
    padding: 0 24px;

    color: #ffffff;
    background: linear-gradient(135deg, #1559c7, #2f87f5);

    border-radius: 50px;

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

    box-shadow: 0 10px 30px rgba(21, 89, 199, 0.25);

    transition: 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(21, 89, 199, 0.35);
}


/* MOBILE MENU */

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;

    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;

    margin: 6px auto;

    background: #102d50;
}


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

.hero {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    overflow: hidden;

    padding-top: 86px;

    background: #071b35;
}


/* VIDEO */

.hero-video {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transform: translate(-50%, -50%);

    z-index: 1;
}


/* VIDEO OVERLAY */

.hero-overlay {
    position: absolute;
    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            90deg,
            rgba(4, 20, 44, 0.96) 0%,
            rgba(7, 35, 75, 0.88) 45%,
            rgba(10, 45, 95, 0.58) 100%
        );
}


/* HERO CONTAINER */

.hero-container {
    position: relative;

    z-index: 3;

    width: min(90%, 1400px);

    margin: auto;

    padding: 90px 0;
}


/* HERO CONTENT */

.hero-content {
    max-width: 850px;
}


/* BADGE */

.hero-badge {
    display: inline-flex;

    margin-bottom: 28px;

    padding: 10px 18px;

    color: #b9d8ff;

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

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

    border-radius: 50px;

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

    backdrop-filter: blur(10px);
}


/* HERO HEADING */

.hero h1 {
    max-width: 900px;

    color: #ffffff;

    font-family: "Playfair Display", serif;

    font-size: clamp(50px, 6vw, 88px);

    line-height: 1.04;

    letter-spacing: -2px;
}

.hero h1 span {
    display: block;

    color: #6aafff;
}


/* HERO DESCRIPTION */

.hero-description {
    max-width: 760px;

    margin-top: 28px;

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

    font-size: 18px;

    line-height: 1.8;
}


/* HERO BUTTONS */

.hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 16px;

    margin-top: 38px;
}

.btn {
    min-height: 56px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 0 28px;

    border-radius: 50px;

    font-size: 15px;

    font-weight: 700;

    transition: 0.3s ease;
}

.btn-primary {
    color: #ffffff;

    background: linear-gradient(135deg, #1766dc, #3996ff);

    box-shadow: 0 15px 40px rgba(23, 102, 220, 0.35);
}

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

.btn-secondary {
    color: #ffffff;

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

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

    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.14);
}


/* HERO TRUST ITEMS */

.hero-trust {
    display: flex;

    flex-wrap: wrap;

    gap: 50px;

    margin-top: 55px;

    padding-top: 30px;

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

.trust-item {
    display: flex;

    flex-direction: column;

    gap: 5px;
}

.trust-item strong {
    color: #ffffff;

    font-size: 18px;
}

.trust-item span {
    color: rgba(255, 255, 255, 0.62);

    font-size: 13px;
}


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

@media (max-width: 1100px) {

    .main-nav,
    .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

}


@media (max-width: 700px) {

    .nav-container {
        min-height: 74px;
    }

    .brand-logo {
        width: 42px;
        height: 42px;
    }

    .brand-name {
        font-size: 16px;
    }

    .hero {
        padding-top: 74px;
    }

    .hero-container {
        padding: 70px 0;
    }

    .hero h1 {
        font-size: clamp(42px, 12vw, 65px);
    }

    .hero-description {
        font-size: 16px;
    }

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

    .btn {
        width: 100%;
    }

    .hero-trust {
        gap: 30px;
    }

}

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

.section-container {
    width: min(90%, 1400px);
    margin: 0 auto;
}

.services-section {
    position: relative;
    padding: 120px 0;
    background: #f7faff;
}

.section-heading {
    max-width: 850px;
    margin-bottom: 65px;
}

.section-label {
    display: inline-block;
    margin-bottom: 18px;
    color: #2878e8;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-heading h2 {
    color: #0b2345;
    font-family: "Playfair Display", serif;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.15;
    letter-spacing: -1px;
}

.section-heading h2 span {
    color: #2878e8;
}

.section-heading p {
    max-width: 750px;
    margin-top: 24px;
    color: #607086;
    font-size: 17px;
    line-height: 1.8;
}


/* SERVICES GRID */

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


/* SERVICE CARD */

.service-card {
    position: relative;
    min-height: 390px;
    padding: 38px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e5edf7;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(17, 55, 100, 0.07);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(17, 55, 100, 0.14);
}


/* SERVICE NUMBER */

.service-number {
    position: absolute;
    top: 25px;
    right: 28px;
    color: rgba(40, 120, 232, 0.12);
    font-family: "Playfair Display", serif;
    font-size: 55px;
    font-weight: 700;
}


/* SERVICE ICON */

.service-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: #ffffff;
    background: linear-gradient(135deg, #1559c7, #3996ff);
    border-radius: 16px;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(21, 89, 199, 0.22);
}


/* SERVICE CONTENT */

.service-card h3 {
    max-width: 290px;
    margin-bottom: 18px;
    color: #102d50;
    font-family: "Playfair Display", serif;
    font-size: 25px;
    line-height: 1.3;
}

.service-card p {
    margin-bottom: 28px;
    color: #68788d;
    font-size: 15px;
    line-height: 1.8;
}

.service-card a {
    display: inline-block;
    margin-top: auto;
    color: #2878e8;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s ease;
}

.service-card a:hover {
    transform: translateX(5px);
}


/* FEATURED SERVICE */

.featured-service {
    color: #ffffff;
    background: linear-gradient(145deg, #0b2d60, #1559c7);
    border-color: transparent;
}

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

.featured-service .service-icon {
    color: #1559c7;
    background: #ffffff;
}

.featured-service h3 {
    color: #ffffff;
}

.featured-service p {
    color: rgba(255, 255, 255, 0.72);
}

.featured-service a {
    color: #ffffff;
}


/* =========================================
   SERVICES RESPONSIVE DESIGN
========================================= */

@media (max-width: 1000px) {

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

}


@media (max-width: 650px) {

    .services-section {
        padding: 85px 0;
    }

    .section-heading {
        margin-bottom: 45px;
    }

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

    .service-card {
        min-height: auto;
        padding: 32px 25px;
    }

}

/* =========================================
   INDUSTRIES SECTION
========================================= */

.industries-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(47, 135, 245, 0.15), transparent 35%),
        linear-gradient(145deg, #06172e, #0b2d60);
}

.industries-section .section-label {
    color: #70b2ff;
}

.industries-section .section-heading h2 {
    color: #ffffff;
}

.industries-section .section-heading h2 span {
    color: #70b2ff;
}

.industries-section .section-heading p {
    color: rgba(255, 255, 255, 0.68);
}


/* INDUSTRIES GRID */

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}


/* INDUSTRY CARD */

.industry-card {
    position: relative;
    min-height: 310px;
    padding: 35px 30px;
    overflow: hidden;

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

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

    border-radius: 18px;

    backdrop-filter: blur(12px);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease;
}

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

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

    border-color: rgba(112, 178, 255, 0.45);
}


/* INDUSTRY NUMBER */

.industry-number {
    display: inline-block;

    margin-bottom: 55px;

    color: #70b2ff;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2px;
}


/* INDUSTRY TITLE */

.industry-card h3 {
    margin-bottom: 18px;

    color: #ffffff;

    font-family: "Playfair Display", serif;

    font-size: 23px;

    line-height: 1.3;
}


/* INDUSTRY DESCRIPTION */

.industry-card p {
    color: rgba(255, 255, 255, 0.64);

    font-size: 14px;

    line-height: 1.8;
}


/* DECORATIVE LINE */

.industry-card::after {
    content: "";

    position: absolute;

    left: 30px;

    bottom: 25px;

    width: 35px;

    height: 2px;

    background: #70b2ff;

    transition: width 0.35s ease;
}

.industry-card:hover::after {
    width: 80px;
}


/* =========================================
   INDUSTRIES RESPONSIVE DESIGN
========================================= */

@media (max-width: 1100px) {

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

}


@media (max-width: 650px) {

    .industries-section {
        padding: 85px 0;
    }

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

    .industry-card {
        min-height: auto;

        padding: 30px 25px 55px;
    }

    .industry-number {
        margin-bottom: 35px;
    }

}

/* =========================================
   SUCCESS STORIES / PROJECTS SECTION
========================================= */

.success-section {
    position: relative;
    padding: 120px 0;
    background: #ffffff;
}


/* PROJECTS GRID */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}


/* PROJECT CARD */

.project-card {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e5edf7;

    border-radius: 22px;

    box-shadow: 0 15px 50px rgba(17, 55, 100, 0.08);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

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

    box-shadow: 0 25px 65px rgba(17, 55, 100, 0.15);
}


/* PROJECT IMAGE */

.project-image {
    position: relative;

    height: 320px;

    overflow: hidden;

    background:
        linear-gradient(135deg, #eaf3ff, #d4e6ff);
}

.project-image img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}


/* BLUE IMAGE OVERLAY */

.project-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(5, 25, 55, 0.35)
        );

    pointer-events: none;
}


/* PROJECT CONTENT */

.project-content {
    padding: 35px;
}


/* PROJECT CATEGORY */

.project-category {
    display: inline-block;

    margin-bottom: 15px;

    color: #2878e8;

    font-size: 12px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1.5px;
}


/* PROJECT TITLE */

.project-content h3 {
    margin-bottom: 16px;

    color: #102d50;

    font-family: "Playfair Display", serif;

    font-size: 27px;

    line-height: 1.3;
}


/* PROJECT DESCRIPTION */

.project-content p {
    color: #68788d;

    font-size: 15px;

    line-height: 1.8;
}


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

.success-cta {
    margin-top: 55px;

    padding: 40px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

    background:
        linear-gradient(
            135deg,
            #071b35,
            #0e448f
        );

    border-radius: 22px;

    box-shadow: 0 20px 55px rgba(10, 45, 95, 0.18);
}

.success-cta p {
    max-width: 700px;

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

    font-size: 17px;

    line-height: 1.7;
}

.success-cta .btn {
    flex-shrink: 0;
}


/* =========================================
   SUCCESS STORIES RESPONSIVE DESIGN
========================================= */

@media (max-width: 900px) {

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

    .success-cta {
        flex-direction: column;

        align-items: flex-start;
    }

}


@media (max-width: 650px) {

    .success-section {
        padding: 85px 0;
    }

    .project-image {
        height: 240px;
    }

    .project-content {
        padding: 28px 24px;
    }

    .project-content h3 {
        font-size: 23px;
    }

    .success-cta {
        margin-top: 40px;

        padding: 30px 24px;
    }

    .success-cta .btn {
        width: 100%;
    }

}

/* =========================================
   PRICING SECTION
========================================= */

.pricing-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: #f5f8fc;
}


/* PRICING GRID */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    gap: 25px;
}


/* PRICING CARD */

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 42px 35px;
    background: #ffffff;
    border: 1px solid #e1eaf5;
    border-radius: 22px;
    box-shadow: 0 15px 50px rgba(17, 55, 100, 0.08);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 65px rgba(17, 55, 100, 0.15);
}


/* PRICING TOP */

.pricing-top {
    min-height: 190px;
}

.pricing-level {
    display: inline-block;
    margin-bottom: 18px;
    color: #2878e8;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.8px;
}

.pricing-top h3 {
    margin-bottom: 16px;
    color: #102d50;
    font-family: "Playfair Display", serif;
    font-size: 27px;
    line-height: 1.3;
}

.pricing-top p {
    color: #68788d;
    font-size: 15px;
    line-height: 1.7;
}


/* PRICE */

.price {
    display: flex;
    align-items: flex-start;
    margin: 28px 0;
    color: #102d50;
}

.currency {
    margin-top: 10px;
    margin-right: 4px;
    color: #2878e8;
    font-size: 22px;
    font-weight: 700;
}

.price strong {
    font-family: "Playfair Display", serif;
    font-size: 65px;
    line-height: 1;
}


/* PRICING FEATURES */

.pricing-features {
    flex-grow: 1;
    margin-bottom: 35px;
    padding: 0;
    list-style: none;
}

.pricing-features li {
    position: relative;
    margin-bottom: 16px;
    padding-left: 28px;
    color: #56687e;
    font-size: 14px;
    line-height: 1.6;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    color: #2878e8;
    font-weight: 800;
}


/* PRICING BUTTON */

.pricing-button {
    width: 100%;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    color: #1559c7;
    background: #edf5ff;
    border: 1px solid #cfe3ff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    transition: 0.3s ease;
}

.pricing-button:hover {
    color: #ffffff;
    background: #1559c7;
    border-color: #1559c7;
}


/* =========================================
   FEATURED PRICING CARD
========================================= */

.featured-pricing {
    transform: translateY(-18px);
    color: #ffffff;
    background:
        linear-gradient(
            145deg,
            #0a2854,
            #1559c7
        );
    border-color: transparent;
    box-shadow: 0 25px 70px rgba(21, 89, 199, 0.25);
}

.featured-pricing:hover {
    transform: translateY(-26px);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 30px;
    padding: 9px 17px;
    color: #0b2d60;
    background: #ffffff;
    border-radius: 0 0 12px 12px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-pricing .pricing-level {
    color: #9bcbff;
}

.featured-pricing .pricing-top h3 {
    color: #ffffff;
}

.featured-pricing .pricing-top p {
    color: rgba(255, 255, 255, 0.7);
}

.featured-pricing .price {
    color: #ffffff;
}

.featured-pricing .currency {
    color: #9bcbff;
}

.featured-pricing .pricing-features li {
    color: rgba(255, 255, 255, 0.78);
}

.featured-pricing .pricing-features li::before {
    color: #9bcbff;
}

.featured-pricing .pricing-button {
    color: #1559c7;
    background: #ffffff;
    border-color: #ffffff;
}

.featured-pricing .pricing-button:hover {
    color: #ffffff;
    background: transparent;
}


/* =========================================
   EXECUTIVE PRICING CARD
========================================= */

.executive-pricing {
    border-top: 4px solid #2878e8;
}


/* =========================================
   PRICING NOTE
========================================= */

.pricing-note {
    max-width: 800px;
    margin: 55px auto 0;
    text-align: center;
}

.pricing-note p {
    color: #68788d;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================
   PRICING RESPONSIVE DESIGN
========================================= */

@media (max-width: 1000px) {

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 650px;
        margin: auto;
    }

    .featured-pricing {
        transform: none;
    }

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

    .pricing-top {
        min-height: auto;
    }

}


@media (max-width: 650px) {

    .pricing-section {
        padding: 85px 0;
    }

    .pricing-card {
        padding: 38px 25px;
    }

    .price strong {
        font-size: 55px;
    }

}

/* =========================================
   GRANTS SECTION
========================================= */

.grants-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at bottom left,
            rgba(47, 135, 245, 0.16),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #06172e,
            #0b2d60
        );
}


/* GRANTS LAYOUT */

.grants-wrapper {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    align-items: center;
    gap: 70px;
}


/* GRANTS CONTENT */

.grants-content .section-label {
    color: #70b2ff;
}

.grants-content h2 {
    max-width: 750px;
    color: #ffffff;
    font-family: "Playfair Display", serif;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.15;
    letter-spacing: -1px;
}

.grants-content h2 span {
    color: #70b2ff;
}

.grants-intro {
    max-width: 750px;
    margin-top: 25px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.8;
}


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

.grant-services {
    margin: 50px 0 40px;
}

.grant-item {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 22px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.grant-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}


/* GRANT NUMBER */

.grant-number {
    color: #70b2ff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
}


/* GRANT TEXT */

.grant-item h3 {
    margin-bottom: 10px;
    color: #ffffff;
    font-family: "Playfair Display", serif;
    font-size: 22px;
}

.grant-item p {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================
   GRANTS HIGHLIGHT CARD
========================================= */

.grants-highlight {
    position: relative;
    padding: 50px 40px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 25px;
    backdrop-filter: blur(15px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}


/* DECORATIVE GLOW */

.grants-highlight::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: rgba(72, 154, 255, 0.22);
    border-radius: 50%;
    filter: blur(50px);
}


/* HIGHLIGHT LABEL */

.highlight-label {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
    color: #70b2ff;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}


/* HIGHLIGHT TITLE */

.grants-highlight h3 {
    position: relative;
    margin-bottom: 22px;
    color: #ffffff;
    font-family: "Playfair Display", serif;
    font-size: 32px;
    line-height: 1.3;
}


/* HIGHLIGHT DESCRIPTION */

.grants-highlight > p {
    position: relative;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================
   HIGHLIGHT POINTS
========================================= */

.highlight-points {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.highlight-points div {
    padding: 20px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
}

.highlight-points strong {
    display: block;
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 15px;
}

.highlight-points span {
    color: rgba(255, 255, 255, 0.52);
    font-size: 12px;
}


/* =========================================
   GRANTS RESPONSIVE DESIGN
========================================= */

@media (max-width: 1000px) {

    .grants-wrapper {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .grants-highlight {
        max-width: 700px;
    }

}


@media (max-width: 650px) {

    .grants-section {
        padding: 85px 0;
    }

    .grant-item {
        grid-template-columns: 40px 1fr;
        gap: 15px;
    }

    .grants-highlight {
        padding: 35px 25px;
    }

    .grants-highlight h3 {
        font-size: 27px;
    }

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

}

/* =========================================
   ABOUT / FOUNDER SECTION
========================================= */

.about-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: #ffffff;
}


/* ABOUT LAYOUT */

.about-wrapper {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 80px;
}


/* =========================================
   FOUNDER IMAGE
========================================= */

.about-image {
    position: relative;
    max-width: 520px;
}

.about-image-frame {
    position: relative;
    overflow: hidden;
    min-height: 650px;

    background:
        linear-gradient(
            145deg,
            #dbeaff,
            #edf5ff
        );

    border-radius: 28px;

    box-shadow:
        0 30px 80px rgba(17, 55, 100, 0.16);
}

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

    position: absolute;

    top: 25px;
    left: 25px;
    right: 25px;
    bottom: 25px;

    z-index: 2;

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

    border-radius: 20px;

    pointer-events: none;
}

.about-image-frame img {
    width: 100%;
    height: 100%;

    position: absolute;
    inset: 0;

    display: block;

    object-fit: cover;
    object-position: center top;
}


/* =========================================
   FOUNDER BADGE
========================================= */

.founder-badge {
    position: absolute;

    right: -35px;
    bottom: 45px;

    z-index: 3;

    min-width: 220px;

    padding: 24px 28px;

    background:
        linear-gradient(
            135deg,
            #0b2d60,
            #1766dc
        );

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

    border-radius: 18px;

    box-shadow:
        0 20px 50px rgba(11, 45, 96, 0.28);
}

.founder-badge strong {
    display: block;

    margin-bottom: 5px;

    color: #ffffff;

    font-family: "Playfair Display", serif;

    font-size: 22px;
}

.founder-badge span {
    color: rgba(255, 255, 255, 0.68);

    font-size: 13px;
}


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

.about-content h2 {
    max-width: 750px;

    color: #0b2345;

    font-family: "Playfair Display", serif;

    font-size: clamp(38px, 5vw, 64px);

    line-height: 1.15;

    letter-spacing: -1px;
}

.about-content h2 span {
    color: #2878e8;
}

.about-intro {
    margin-top: 28px;

    color: #40556f !important;

    font-size: 18px !important;

    font-weight: 500;
}

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

    margin-top: 20px;

    color: #68788d;

    font-size: 15px;

    line-height: 1.85;
}


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

.about-values {
    margin: 45px 0 40px;
}

.value-item {
    display: grid;

    grid-template-columns: 55px 1fr;

    gap: 22px;

    padding: 25px 0;

    border-bottom: 1px solid #e3ebf5;
}

.value-item:first-child {
    border-top: 1px solid #e3ebf5;
}

.value-number {
    color: #2878e8;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.value-item h3 {
    margin-bottom: 8px;

    color: #102d50;

    font-family: "Playfair Display", serif;

    font-size: 21px;
}

.value-item p {
    max-width: 650px;

    color: #68788d;

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================
   ABOUT RESPONSIVE DESIGN
========================================= */

@media (max-width: 1000px) {

    .about-wrapper {
        grid-template-columns: 1fr;

        gap: 65px;
    }

    .about-image {
        max-width: 650px;
    }

    .about-image-frame {
        min-height: 700px;
    }

}


@media (max-width: 650px) {

    .about-section {
        padding: 85px 0;
    }

    .about-wrapper {
        gap: 55px;
    }

    .about-image {
        width: calc(100% - 15px);
    }

    .about-image-frame {
        min-height: 500px;

        border-radius: 22px;
    }

    .founder-badge {
        right: -15px;
        bottom: 25px;

        min-width: 190px;

        padding: 20px;
    }

    .founder-badge strong {
        font-size: 19px;
    }

    .value-item {
        grid-template-columns: 40px 1fr;

        gap: 15px;
    }

}

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

.contact-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: #f5f8fc;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
    gap: 75px;
}


/* CONTACT CONTENT */

.contact-content h2 {
    color: #0b2345;
    font-family: "Playfair Display", serif;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.15;
    letter-spacing: -1px;
}

.contact-content h2 span {
    color: #2878e8;
}

.contact-intro {
    max-width: 650px;
    margin-top: 25px;
    color: #68788d;
    font-size: 16px;
    line-height: 1.85;
}


/* CONTACT DETAILS */

.contact-details {
    margin-top: 45px;
}

.contact-detail {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 20px;
    padding: 26px 0;
    border-bottom: 1px solid #dce6f2;
}

.contact-detail:first-child {
    border-top: 1px solid #dce6f2;
}

.contact-number {
    color: #2878e8;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.contact-detail h3 {
    margin-bottom: 9px;
    color: #102d50;
    font-family: "Playfair Display", serif;
    font-size: 21px;
}

.contact-detail p {
    color: #68788d;
    font-size: 14px;
    line-height: 1.75;
}


/* =========================================
   CONTACT FORM CARD
========================================= */

.contact-form-wrapper {
    padding: 50px;
    background: #ffffff;
    border: 1px solid #e1eaf5;
    border-radius: 25px;
    box-shadow: 0 25px 70px rgba(17, 55, 100, 0.12);
}

.form-heading {
    margin-bottom: 35px;
}

.form-heading span {
    display: inline-block;
    margin-bottom: 12px;
    color: #2878e8;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.8px;
}

.form-heading h3 {
    margin-bottom: 12px;
    color: #102d50;
    font-family: "Playfair Display", serif;
    font-size: 32px;
}

.form-heading p {
    color: #68788d;
    font-size: 14px;
    line-height: 1.7;
}


/* FORM LAYOUT */

.contact-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 9px;
    color: #263e5d;
    font-size: 13px;
    font-weight: 700;
}


/* FORM INPUTS */

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 17px;
    color: #102d50;
    background: #f8faff;
    border: 1px solid #dce6f2;
    border-radius: 11px;
    outline: none;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    transition: 0.3s ease;
}

.form-group input,
.form-group select {
    min-height: 52px;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: #ffffff;
    border-color: #2878e8;
    box-shadow: 0 0 0 4px rgba(40, 120, 232, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9aa9bb;
}


/* CONSENT CHECKBOX */

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 5px 0 25px;
}

.form-consent input {
    width: 17px;
    height: 17px;
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: #2878e8;
}

.form-consent label {
    color: #68788d;
    font-size: 12px;
    line-height: 1.6;
}


/* SUBMIT BUTTON */

.form-submit {
    width: 100%;
    min-height: 58px;
    padding: 0 25px;
    color: #ffffff;
    background: linear-gradient(135deg, #1559c7, #3996ff);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 15px 40px rgba(21, 89, 199, 0.25);
    transition: 0.3s ease;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 50px rgba(21, 89, 199, 0.35);
}

.form-submit:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}


/* BACKEND RESPONSE MESSAGE */

.form-message {
    display: none;
    margin-top: 20px;
    padding: 15px 18px;
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.6;
}

.form-message.success {
    display: block;
    color: #12643c;
    background: #e9f8f0;
    border: 1px solid #bce8d0;
}

.form-message.error {
    display: block;
    color: #9b2525;
    background: #fff0f0;
    border: 1px solid #f0c4c4;
}


/* =========================================
   CONTACT RESPONSIVE DESIGN
========================================= */

@media (max-width: 1000px) {

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

}

@media (max-width: 650px) {

    .contact-section {
        padding: 85px 0;
    }

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

    .contact-form-wrapper {
        padding: 35px 24px;
    }

    .form-heading h3 {
        font-size: 27px;
    }

    .contact-detail {
        grid-template-columns: 40px 1fr;
        gap: 15px;
    }

}

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

.site-footer {
    position: relative;
    padding: 90px 0 0;
    overflow: hidden;

    background:
        radial-gradient(
            circle at top right,
            rgba(47, 135, 245, 0.15),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #041225,
            #071f42
        );
}


/* FOOTER GRID */

.footer-grid {
    display: grid;

    grid-template-columns: 1.4fr 0.7fr 1fr 1fr;

    gap: 55px;

    padding-bottom: 70px;
}


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

.footer-logo {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 25px;
}

.footer-logo img {
    width: 55px;

    height: 55px;

    object-fit: contain;
}

.footer-logo span {
    color: #ffffff;

    font-size: 19px;

    font-weight: 600;
}

.footer-logo strong {
    color: #70b2ff;
}

.footer-brand > p {
    max-width: 420px;

    margin-bottom: 25px;

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

    font-size: 14px;

    line-height: 1.8;
}


/* FOOTER CONTACT EMAILS */

.footer-contact {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 10px;
}

.footer-contact a {
    color: #9bcbff;

    font-size: 13px;

    transition: 0.3s ease;
}

.footer-contact a:hover {
    color: #ffffff;
}


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

.footer-column h3 {
    margin-bottom: 25px;

    color: #ffffff;

    font-family: "Playfair Display", serif;

    font-size: 19px;
}

.footer-links {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.58);

    font-size: 13px;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.footer-links a:hover {
    color: #70b2ff;

    transform: translateX(4px);
}


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

.footer-cta p {
    margin-bottom: 25px;

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

    font-size: 14px;

    line-height: 1.8;
}

.footer-button {
    min-height: 50px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 0 24px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #1559c7,
            #3996ff
        );

    border-radius: 50px;

    font-size: 13px;

    font-weight: 800;

    box-shadow:
        0 12px 35px rgba(21, 89, 199, 0.28);

    transition: 0.3s ease;
}

.footer-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 18px 45px rgba(21, 89, 199, 0.38);
}


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

.footer-bottom {
    min-height: 85px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.45);

    font-size: 12px;
}


/* FOOTER LEGAL LINKS */

.footer-legal {
    display: flex;

    align-items: center;

    gap: 25px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.45);

    font-size: 12px;

    transition: 0.3s ease;
}

.footer-legal a:hover {
    color: #70b2ff;
}


/* =========================================
   FOOTER RESPONSIVE DESIGN
========================================= */

@media (max-width: 1100px) {

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

}


@media (max-width: 650px) {

    .site-footer {
        padding-top: 70px;
    }

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

        gap: 45px;

        padding-bottom: 55px;
    }

    .footer-bottom {
        padding: 25px 0;

        flex-direction: column;

        align-items: flex-start;
    }

    .footer-legal {
        flex-wrap: wrap;
    }

}

/* =========================================
   JAVASCRIPT INTERACTIONS
========================================= */

.header-scrolled {
    box-shadow: 0 8px 35px rgba(11, 45, 96, 0.1);
}


/* MOBILE NAVIGATION */

@media (max-width: 1100px) {

    .main-nav {
        position: absolute;

        top: 86px;
        left: 5%;
        right: 5%;

        display: none;

        flex-direction: column;
        align-items: flex-start;

        padding: 30px;

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

        border: 1px solid #e1eaf5;

        border-radius: 18px;

        box-shadow: 0 20px 60px rgba(11, 45, 96, 0.16);
    }

    .main-nav.nav-active {
        display: flex;
    }


    /* ANIMATED MENU BUTTON */

    .menu-toggle span {
        transition: 0.3s ease;
    }

    .menu-toggle.menu-active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.menu-active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.menu-active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

}


@media (max-width: 700px) {

    .main-nav {
        top: 74px;
    }

}

/* =========================================
   BACK TO TOP BUTTON
========================================= */

.back-to-top {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 999;

    width: 52px;
    height: 52px;

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

    color: #ffffff;
    background: linear-gradient(135deg, #1559c7, #3996ff);

    border-radius: 50%;

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

    box-shadow: 0 12px 35px rgba(21, 89, 199, 0.35);

    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);

    transition: 0.3s ease;
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(21, 89, 199, 0.45);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 650px) {

    .back-to-top {
        right: 18px;
        bottom: 18px;

        width: 46px;
        height: 46px;

        font-size: 21px;
    }

}