:root {
    /* Teal/green gradient palette (reference: green theme) */
    --navy: #0f8f9c;
    /* primary teal */
    --navy-second: #0c6f77;
    /* deeper teal */
    --navy-strong: #0a2a33;
    /* dark base */
    --accent: #c7f7ff;
    /* light accent for text/links */
    --card: #0f3945;
    /* card background */
    --text: #e8fcff;
    /* body text */
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
}

.testimonials-section .section-header {
    text-align: center;
    margin-bottom: 32px;
}

.testimonials-section .section-subtitle {
    color: rgba(232, 252, 255, 0.7);
    max-width: 640px;
    margin: 10px auto 0;
}

.testimonial-slider {
    overflow: visible;
}

.testimonial-slider .swiper-wrapper{
    height: auto !important;
}

.testimonial-card {
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 22px;
    min-height: 240px;
    /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.32); */
    display: flex !important;
    flex-direction: column;
    gap: 14px;
}

.testimonial-card:first-child{
    margin-left: 30px;
}

.testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-weight: 700;
    font-size: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-text {
    margin: 0;
    color: rgba(232, 252, 255, 0.85);
    line-height: 1.6;
    font-size: 15px;
}

.testimonial-name {
    margin: 0;
    color: var(--accent);
    font-size: 17px;
}

.testimonial-controls {
    margin: 18px 30px 0px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.testimonial-button-prev,
.testimonial-button-next {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--accent);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.2s ease;
}

.testimonial-button-prev:hover,
.testimonial-button-next:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

.testimonial-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.testimonial-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.25);
    opacity: 1;
}

.testimonial-pagination .swiper-pagination-bullet-active {
    background: var(--accent);
}

@media (max-width: 767px) {
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonial-card {
        padding: 18px;
    }
}

* {
    box-sizing: border-box;
}




body {
    margin: 0;
    font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
    background: var(--navy-strong);
    color: var(--text);
}

a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-position: under;
}

main {
    padding-top: 96px;
}

.hero {
    min-height: 90vh;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    align-items: center;
    gap: 40px;
    padding: 120px 48px 88px;
    background: linear-gradient(135deg, rgba(15, 143, 156, 0.95), rgba(10, 42, 51, 0.96));
}

.hero-copy-block {
    max-width: 560px;
}

.eyebrow {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 12px;
}

.hero-heading {
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.1;
    margin: 0 0 16px;
    color: var(--text);
}

.hero-subtext {
    margin: 0 0 24px;
    max-width: 520px;
    color: rgba(234, 240, 255, 0.82);
}

/* Hero Form Container - Inline in hero section */
.hero-form-container {
    max-width: 520px;
    width: 100%;
    margin: 32px auto 0;
    z-index: 2;
    position: relative;
}

.lead-form {
    background: var(--card);
    padding: 24px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.open-lead-modal {
    padding: 14px 18px;
    border-radius: 12px;
    background: var(--accent);
    color: var(--navy-strong);
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.open-lead-modal:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* Legacy modal styles - kept for backwards compatibility but unused */
.lead-modal {
    display: none;
}

body.no-scroll {
    overflow: hidden;
}

.lead-form h3 {
    margin: 0 0 12px;
    font-size: 22px;
}

.lead-form p {
    margin: 0 0 18px;
    color: rgba(234, 240, 255, 0.72);
    font-size: 14px;
}

.form-grid {
    display: grid;
    gap: 14px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field label {
    font-size: 13px;
    color: rgba(234, 240, 255, 0.7);
}

.field input,
.field select {
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    outline: none;
}

.field input:focus,
.field select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(94, 166, 255, 0.25);
}

.submit-btn {
    margin-top: 4px;
    padding: 12px 16px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(90deg, var(--accent), #7bc4ff);
    color: #071530;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(94, 166, 255, 0.35);
}

.submit-btn:active {
    transform: translateY(0);
}

.field-hint {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: rgba(232, 252, 255, 0.65);
    font-weight: 400;
}

/* Success Message Style */
.lead-form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 24px;
    min-height: 300px;
    animation: slideIn 0.4s ease;
}

.lead-form-success .success-icon {
    font-size: 64px;
    color: #4caf50;
    margin-bottom: 16px;
    animation: scaleIn 0.5s ease;
}

.lead-form-success h3 {
    margin: 0 0 12px;
    font-size: 28px;
    color: white;
}

.lead-form-success p {
    margin: 0;
    font-size: 16px;
    color: white;
    line-height: 1.6;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.text-section {
    padding: 80px 48px;
    background: #0c244f;
}

.text-blur .elementor-heading-title {
    visibility: visible;
    opacity: 0;
}

/* Why Investors Choose Us */
.why-investors-section {
    padding: 96px 24px;
    background: linear-gradient(180deg, rgba(15, 143, 156, 0.04), rgba(10, 42, 51, 0.08));
}

.why-investors-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 48px;
}

.why-investors-title {
    font-size: clamp(28px, 4vw, 38px);
    margin: 0 0 12px;
    color: #f5fbff;
}

.why-investors-subtitle {
    margin: 0;
    color: rgba(232, 252, 255, 0.78);
    line-height: 1.6;
    font-size: 17px;
}

.why-investors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.why-investors-card {
    padding: 26px 24px 24px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    color: #0a1224;
    min-height: 100%;
    display: grid;
    grid-template-rows: auto auto 1fr;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.why-investors-card h3 {
    margin: 0;
    font-size: 18px;
    color: #0b1b3a;
}

.why-investors-card p {
    margin: 0;
    color: #2d3c55;
    line-height: 1.55;
}

.why-investors-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.why-investors-card::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.8), transparent 45%);
    pointer-events: none;
}

.card-yellow {
    background: linear-gradient(180deg, #fff7d6, #ffeec0);
}

.card-pink {
    background: linear-gradient(180deg, #fde9f4, #f7dff0);
}

.card-blue {
    background: linear-gradient(180deg, #e6f0ff, #dbe8ff);
}

.card-green {
    background: linear-gradient(180deg, #eaf9ee, #def6e7);
}

@media (max-width: 640px) {
    .why-investors-section {
        padding: 72px 18px;
    }

    .why-investors-card {
        padding: 22px 20px;
    }
}

.section-title {
    font-size: 33px;
    font-weight: 500;
    padding: 20px;
    padding-top: 50px;
    text-align: center;
    color: var(--text);
    margin: 0;
}

/* Stats Counter Section */
.stats-section {
    padding: 25px 48px;
    background: var(--navy);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
    text-align: center;
}

.blurry-container {
    text-align: center;
    padding: 80px 48px 60px !important;
    display: flex;
    align-items: center;
    /* background: linear-gradient(135deg, rgba(10, 31, 74, 0.5), rgba(7, 21, 48, 0.5)); */
}

.d-flex{
    display: flex;
}

.blurry-text {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    color: var(--text);
    letter-spacing: -1px;
    font-size: 2.5em;
}

.blurry-text-fade-hold {
    color: rgba(234, 240, 255, 0.5);
    font-weight: 400;
    display: inline-block;
}

.blurry-text br {
    content: '';
    display: block;
    height: 0.5em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* About Us Section */
.about-section {
    padding: 80px 48px;
    background: var(--navy-strong);
    position: relative;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-image-placeholder {
    aspect-ratio: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    text-align: center;
    padding: 20px;
}

.about-content {
    display: grid;
    gap: 24px;
}

.about-title {
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.1;
    margin: 0;
    color: var(--text);
    font-weight: 700;
}

.about-pillars {
    display: grid;
    gap: 28px;
}

.pillar-item {
    display: grid;
    gap: 8px;
}

.pillar-title {
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 700;
    margin: 0;
    color: #ffffff;
    font-style: italic;
}

.pillar-description {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.about-btn {
    padding: 16px 32px;
    background: #000000;
    color: #ffffff;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    width: fit-content;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-section {
        padding: 60px 24px;
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.stat-number,
.stats {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    text-shadow: 0 4px 20px rgba(94, 166, 255, 0.4);
}

/* Text-based stat values (non-numeric) */
.stat-number.stat-text {
    font-size: clamp(20px, 3vw, 28px) !important;
    font-weight: 600 !important;
    white-space: nowrap;
}


.stat-label {
    font-size: 16px;
    color: rgba(234, 240, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* Three-Card Highlight */
.cards-section {
    padding: 90px 48px 70px;
    background: var(--navy-second);
}

.cards-header {
    max-width: 820px;
    margin: 0 auto 48px;
    text-align: center;
}

.cards-title {
    margin: 8px 0 12px;
    font-size: clamp(28px, 4.5vw, 42px);
    line-height: 1.15;
}

.cards-subtext {
    margin: 0;
    color: rgba(234, 240, 255, 0.78);
}

.cards-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 22px;
}

.info-card {
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    border-radius: 25px;
    width: 322px;
    height: 322px;
    display: flex;
    flex-direction: column;
}

.info-card h3 {
    margin: 0 0 10px;
    font-size: 20px;
}

.info-card p {
    margin: 0;
    color: rgba(234, 240, 255, 0.78);
    line-height: 1.55;
}

.info-card:hover {
    transform: translateY(-6px);
    border-color: rgba(94, 166, 255, 0.5);
    box-shadow: 0 24px 60px rgba(94, 166, 255, 0.2);
}

/* Hero/Split Section */
.split-section {
    position: relative;
    padding: 30px 48px 90px;
    background: linear-gradient(90deg, rgba(30, 122, 143, 0.8) 22%, rgba(40, 167, 176, 0.32) 50%, rgba(30, 122, 143, 0.8) 77%);
    overflow: hidden;
}

.split-section::before { 
    content: '';
    position: absolute;
    inset: 0;
    /* background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.06), transparent 30%),
        radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.05), transparent 32%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)); */
    background-image: url('../images/candle_stock.png');
    background-repeat: no-repeat;
    background-size: cover;
    pointer-events: none;
    z-index: -1;
}

.split-grid {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    justify-items: center;
    text-align: center;
    z-index: 1;
}

.split-main {
    display: grid;
    gap: 258px;
    justify-items: center;
    margin-bottom: 48px;
}


.split-grid .face_logo {
    position: absolute;
    bottom: -223px;
    width: 37%;
    z-index: 0;
}


.split-main .headerText {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
}

.split-main .headerText h2 {
    margin: 0;
    font-size: clamp(36px, 6vw, 56px);
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.split-main .headerText p {
    margin: 6px 0 0;
    color: rgba(232, 252, 255, 0.9);
}

.split-main .split-main-text {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
    width: 60%;
}

.split-main .split-main-text .elementor-heading-title {
    width: auto;
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 600;
    color: #ffffff;
    opacity: 0.9;
    margin: 1em;
}

.split-main .split-main-text .elementor-heading-title:nth-child(1) {
    align-self: flex-start;
    position: absolute;
    top: -260px;
}

.split-main .split-main-text .elementor-heading-title:nth-child(2) {
    align-self: flex-end;
    position: absolute;
    right: -100px;
    top: -140px;
}

.split-main .split-main-text .elementor-heading-title:nth-child(3) {
    align-self: flex-start;
    position: absolute;
    bottom: 20px;
    left: -90px;
}

.section-heading {
    font-size: clamp(28px, 4.5vw, 44px);
    line-height: 1.1;
    margin: 0 0 12px;
    color: var(--text);
}

.section-subtext {
    margin: 0;
    max-width: 560px;
    color: rgba(234, 240, 255, 0.82);
}

@media (max-width: 900px) {
    .split-section {
        padding: 64px 24px;
        /* background: radial-gradient(circle, rgba(72, 165, 181, 1) 37%, rgba(8, 124, 133, 1) 87%); */
    }

    .split-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero-form-container {
        max-width: 100%;
        padding: 0 16px;
        z-index: 2;
        position: relative;
    }
}

@media (max-width: 720px) {
    .site-header {
        padding: 14px 20px;
    }

    .hero {
        padding: 110px 20px 70px;
    }

    main {
        padding-top: 78px;
    }

    .cards-grid {
        flex-direction: column;
    }

    .cards-section {
        padding: 20px;
    }

    .info-card {
        width: 100%;
    }

    .split-main .headerText {
        width: 100%;
    }

    .split-grid .face_logo {
        position: absolute;
        bottom: -163px;
        width: 87%;
        left: 0px;
    }

    .split-main .split-main-text .elementor-heading-title:nth-child(3) {
    left: -10px;
    top: -152px;
    }

    .blurry-text-fade-hold {
        font-size: 15px;
    }

    .blurry-text{
        font-size: 23px;
        text-transform: capitalize;
    }

    .text-blur .elementor-heading-title {
        font-size: 22px;
        padding: 0px;
    }

    .hero-form-container {
        padding: 0;
    }

    .lead-form {
        padding: 20px;
    }

    .flex-col-mob{
        flex-direction: column;
    }


    .stat-number, .stats{
        text-align: justify;
    }
    .stat-label{
        text-align: justify;
    }

    .blurry-container{
        padding: 20px !important;
    }


    .advisory-process-section .section-header{
        margin-bottom: 0px;
    }

    .advisory-process-section .section-label{
        text-align: justify;
    }

    
}

/* ==========================================================================
   Blog List Styles
   ========================================================================== */

.blog-section {
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
    margin: 60px 0;
}

.blog-card {
    background: linear-gradient(135deg, var(--card), rgba(15, 45, 99, 0.6));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.blog-card:hover {
    border-color: rgba(94, 166, 255, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(94, 166, 255, 0.15);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: rgba(10, 31, 74, 0.5);
}

.blog-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-thumbnail {
    transform: scale(1.05);
}

.blog-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.blog-date {
    font-size: 12px;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-category {
    display: inline-block;
    font-size: 11px;
    background: rgba(94, 166, 255, 0.15);
    color: var(--accent);
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.blog-title {
    margin: 0 0 12px 0;
    font-size: clamp(18px, 4vw, 22px);
    line-height: 1.3;
    color: var(--text);
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.blog-title a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-title a:hover {
    color: var(--accent);
}

.blog-excerpt {
    color: rgba(234, 240, 255, 0.72);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 16px 0;
    flex-grow: 1;
}

.blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.read-more-btn:hover {
    gap: 12px;
}

.read-more-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

.read-time {
    font-size: 12px;
    color: rgba(234, 240, 255, 0.5);
    font-style: italic;
}

.no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: rgba(234, 240, 255, 0.6);
    font-size: 18px;
}

/* View All Blogs Button */
.blog-view-all {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.btn-view-all-blogs {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: white;
    color: black;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-view-all-blogs:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(94, 166, 255, 0.35);
}

.btn-view-all-blogs:active {
    transform: translateY(0);
}

.btn-view-all-blogs svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.btn-view-all-blogs:hover svg {
    transform: translateX(4px);
}

/* Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.blog-pagination a,
.blog-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: rgba(15, 45, 99, 0.5);
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.2s ease;
}

.blog-pagination a:hover {
    background: rgba(94, 166, 255, 0.15);
    border-color: var(--accent);
    color: var(--accent);
}

.blog-pagination .current {
    background: var(--accent);
    color: #0a1224;
    border-color: var(--accent);
}

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

    .blog-section {
        padding: 60px 0;
    }

    .blog-card {
        display: grid;
        grid-template-columns: 180px 1fr;
        gap: 0;
    }

    .blog-image {
        height: 180px;
    }

    .blog-content {
        padding: 16px;
    }

    .blog-title {
        font-size: 16px;
    }

    .blog-excerpt {
        font-size: 13px;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .blog-card {
        grid-template-columns: 1fr;
    }

    .blog-image {
        height: 160px;
    }

    .blog-content {
        padding: 14px;
    }

    .blog-footer {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
}



/* ==========================================================================
    Featured 3 card 
   ========================================================================== */



/* Feature cards layout */
.feature-cards-section {
    padding: 60px 0;
    background: var(--navy);
}

.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    align-items: start;

}

.feature-card {
    border: 1px solid #e6e8ec;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.info-card.feature-card .info-card-image {
    width: 150px;
}


/* ==========================================================================
   Single Post Styles
   ========================================================================== */

.single-post {
    background: var(--navy-strong);
}

.post-header {
    background: linear-gradient(135deg, var(--navy), var(--navy-strong));
    padding-top: 40px;
    padding-bottom: 40px;
}

.post-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 14px;
    flex-wrap: wrap;
}

.post-breadcrumb a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    display: inline-block;
}

.post-breadcrumb a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.2s ease;
}

.post-breadcrumb a:hover {
    color: #ffffff;
}

.post-breadcrumb a:hover::after {
    width: 100%;
}

.post-breadcrumb span {
    color: rgba(234, 240, 255, 0.4);
    font-weight: 400;
}

.post-title {
    font-size: clamp(28px, 6vw, 48px);
    line-height: 1.2;
    margin: 0 0 20px 0;
    color: var(--text);
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
}

.meta-left,
.meta-right {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.post-date,
.post-author,
.post-category,
.read-time {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(234, 240, 255, 0.8);
}

.post-date,
.post-author,
.read-time {
    color: var(--accent);
}

.post-date svg,
.post-author svg,
.read-time svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

.post-category a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

.post-category a:hover {
    color: #ffffff;
}

.post-featured-image {
    margin-top: 40px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
    border-radius: 0;
    overflow: hidden;
    background: rgba(10, 31, 74, 0.5);
}

.featured-image {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.post-body {
    padding: 80px 0;
}

.post-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(234, 240, 255, 0.85);
}

.post-content h2 {
    font-size: 28px;
    margin: 40px 0 20px 0;
    color: var(--text);
}

.post-content h3 {
    font-size: 22px;
    margin: 30px 0 15px 0;
    color: var(--text);
}

.post-content p {
    margin-bottom: 20px;
}

.post-content ul,
.post-content ol {
    margin: 20px 0 20px 20px;
}

.post-content li {
    margin-bottom: 10px;
}

.post-content a {
    color: var(--accent);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.post-content a:hover {
    color: #ffffff;
}

.post-content blockquote {
    border-left: 4px solid var(--accent);
    padding-left: 20px;
    margin: 30px 0;
    color: rgba(234, 240, 255, 0.7);
    font-style: italic;
}

.post-content img {
    max-width: 100%;
    height: auto;
    margin: 30px 0;
    border-radius: 8px;
}

/* Post Footer */
.post-footer {
    max-width: 800px;
    margin: 60px auto 0;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.post-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.tags-label {
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    display: inline-block;
    background: rgba(94, 166, 255, 0.15);
    color: var(--accent);
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s ease;
}

.tag:hover {
    background: rgba(94, 166, 255, 0.25);
    color: #ffffff;
}

/* Author Box */
.author-box {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 20px;
    padding: 20px;
    background: rgba(15, 45, 99, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    margin-bottom: 40px;
}

.author-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.author-info h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    color: var(--text);
}

.author-info p {
    margin: 0;
    font-size: 14px;
    color: rgba(234, 240, 255, 0.7);
    line-height: 1.6;
}

/* Post Navigation */
.post-navigation {
    max-width: 800px;
    margin: 60px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.nav-link {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    background: rgba(15, 45, 99, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.nav-link:hover {
    background: rgba(94, 166, 255, 0.1);
    border-color: var(--accent);
}

.nav-label {
    font-size: 12px;
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.nav-title {
    font-size: 16px;
    color: var(--text);
    line-height: 1.3;
}

.nav-next {
    text-align: right;
}

.nav-next .nav-label {
    order: 2;
}

/* Related Posts */
.related-posts {
    max-width: 900px;
    margin: 80px auto 0;
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.related-posts h3 {
    font-size: 28px;
    margin: 0 0 30px 0;
    color: var(--text);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.related-card {
    background: rgba(15, 45, 99, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.related-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.related-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}

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

.related-content {
    padding: 16px;
}

.related-content h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
}

.related-content h4 a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s ease;
}

.related-content h4 a:hover {
    color: var(--accent);
}

.related-content p {
    margin: 0 0 12px 0;
    font-size: 14px;
    color: rgba(234, 240, 255, 0.7);
    line-height: 1.5;
}

.read-link {
    display: inline-block;
    color: var(--accent);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.read-link:hover {
    color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    .post-header {
        padding-top: 32px;
        padding-bottom: 24px;
    }

    .post-title {
        font-size: 28px;
    }

    .post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .meta-right {
        width: 100%;
    }

    .post-body {
        padding: 40px 0;
    }

    .post-content {
        font-size: 15px;
    }

    .post-navigation {
        grid-template-columns: 1fr;
    }

    .nav-next {
        text-align: left;
    }

    .author-box {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

/* ===== VISION & MISSION SECTION ===== */
.vision-mission-section {
    padding: 100px 48px;
    background: linear-gradient(135deg, rgba(12, 111, 119, 0.15), rgba(15, 57, 69, 0.2));
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.vision-card,
.mission-card {
    background: rgba(15, 57, 69, 0.6);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(199, 247, 255, 0.15);
}

.vision-mission-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin: 0 0 12px;
    font-weight: 600;
}

.vision-mission-statement {
    font-size: clamp(20px, 3vw, 28px);
    line-height: 1.3;
    margin: 0 0 16px;
    color: #ffffff;
    font-weight: 700;
}

.vision-mission-description {
    margin: 0;
    color: rgba(232, 252, 255, 0.85);
    line-height: 1.6;
    font-size: 15px;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 100px 48px;
    background: var(--navy);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    /* max-width: 800px; */
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.1;
    margin: 0;
    color: #ffffff;
    font-weight: 700;
}

.section-header p {
    margin: 16px 0 0;
    color: rgba(232, 252, 255, 0.8);
    font-size: 16px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--navy-strong);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid rgba(199, 247, 255, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover {
    background: rgba(15, 143, 156, 0.25);
    border-color: rgba(199, 247, 255, 0.4);
    transform: translateY(-4px);
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--accent);
}

.service-description {
    margin: 0;
    color: rgba(232, 252, 255, 0.8);
    line-height: 1.6;
    font-size: 14px;
}

/* ===== ADVISORY PROCESS SECTION ===== */
.advisory-process-section {
    padding: 100px 48px;
    background: linear-gradient(135deg, rgba(15, 143, 156, 0.08), rgba(12, 111, 119, 0.12));
}

.advisory-process-section .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.advisory-process-section .section-label {
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 16px;
}

.advisory-process-section .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.process-stepper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 0;
}

.stepper-line {
    position: absolute;
    top: 30%;
    left: 12.5%;
    right: 12.5%;
    height: 3px;
    background: linear-gradient(to right, 
        rgba(199, 247, 255, 0.3) 0%, 
        rgba(199, 247, 255, 0.3) 33.33%, 
        var(--navy) 33.33%, 
        var(--navy) 66.66%, 
        rgba(199, 247, 255, 0.3) 66.66%, 
        rgba(199, 247, 255, 0.3) 100%
    );
    z-index: 1;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.process-step {
    text-align: center;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-top {
    margin-bottom: 32px;
}

.step-number {
    color: rgba(199, 247, 255, 0.5);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.step-highlight .step-number {
    color: var(--accent);
}

.step-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.step-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(15, 57, 69, 0.8);
    border: 3px solid rgba(199, 247, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
}

.step-highlight .step-icon {
    background: var(--navy);
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(15, 143, 156, 0.6);
}

.process-step:hover .step-icon {
    transform: scale(1.1);
    background: var(--navy);
    border-color: var(--accent);
}

.step-content {
    padding: 0 16px;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px;
}

.step-highlight .step-title {
    color: var(--accent);
}

.step-description {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(232, 252, 255, 0.85);
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 40px;
    }
    
    .stepper-line {
        display: none;
    }
    
    .advisory-process-section .section-title {
        font-size: 27px;
        text-align: left;
        padding: 0;
    }
}

@media (max-width: 640px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .advisory-process-section {
        padding: 60px 24px;
    }
    
    .advisory-process-section .section-title {
        font-size: 28px;
    }
    
    .step-icon {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }
}

/* ===== CREDENTIALS SECTION ===== */
.credentials-section {
    padding: 100px 48px;
    background: var(--navy-second);
}

.tagline {
    color: rgba(232, 252, 255, 0.85);
    font-size: 18px;
    font-style: italic;
    max-width: 600px;
    margin: 16px auto 0;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 60px auto 0;
}

.credential-card {
    background: rgba(15, 143, 156, 0.12);
    padding: 40px 24px;
    border-radius: 12px;
    border: 1px solid rgba(199, 247, 255, 0.15);
    text-align: center;
    transition: all 0.3s ease;
}

.credential-card:hover {
    background: rgba(15, 143, 156, 0.22);
    border-color: var(--accent);
}

.credential-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.credential-card h4 {
    margin: 0 0 12px;
    font-size: 16px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.credential-card p {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

/* ===== CONTACT CTA SECTION ===== */
.contact-cta-section {
    padding: 80px 48px;
    /* background: linear-gradient(135deg, rgba(15, 143, 156, 0.2), rgba(12, 111, 119, 0.25)); */
    background: var(--navy);
    text-align: center;
}

.contact-cta-section .container {
    max-width: 800px;
}

.contact-cta-section h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin: 0 0 12px;
    color: #ffffff;
    font-weight: 700;
}

.contact-cta-section p {
    font-size: 16px;
    color: rgba(232, 252, 255, 0.85);
    margin: 0 0 40px;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
}

.contact-btn {
    padding: 16px 24px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
}

.email-btn {
    background: var(--navy-strong);
    color: white;
}

.email-btn:hover {
    background: transparent;
    color: var(--accent);
    border-color: var(--navy);
}

.whatsapp-btn {
    background: rgba(31, 194, 112, 0.8);
    color: #ffffff;
}

.whatsapp-btn:hover {
    background: rgba(31, 194, 112, 1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(31, 194, 112, 0.3);
}

@media (max-width: 900px) {
    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .vision-mission-section,
    .services-section,
    .advisory-process-section,
    .credentials-section,
    .contact-cta-section {
        padding: 0px;
    }
}

/* Subscription Plans (Services Template) */
.subscription-section {
    padding: 90px 20px 110px;
    background: linear-gradient(180deg, rgba(10, 42, 51, 0.9), rgba(10, 42, 51, 0.95));
}

.subscription-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}

.subscription-header h2 {
    margin: 0 0 12px;
    font-size: clamp(30px, 4vw, 38px);
    color: #f8fcff;
}

.subscription-header p {
    margin: 0;
    color: rgba(232, 252, 255, 0.8);
    line-height: 1.6;
}

.subscription-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.plan-card {
    background: #0f172a;
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 18px;
}

.plan-card__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.plan-card__title {
    margin: 0;
    font-size: 20px;
    color: #0a1224;
}

.plan-card__subtitle {
    margin: 4px 0 0;
    color: #2d3c55;
    font-size: 14px;
    line-height: 1.5;
}

.plan-card__tag {
    background: rgba(255, 255, 255, 0.9);
    color: #0a1224;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid rgba(0, 0, 0, 0.05);
    white-space: nowrap;
}

.plan-card__price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.plan-card__price {
    font-size: 32px;
    font-weight: 800;
    color: #0a1224;
}

.plan-card__chart {
    height: 140px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), transparent);
    position: relative;
    overflow: hidden;
}

.plan-card__chart::after {
    content: "";
    position: absolute;
    inset: 12px 14px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
    border-radius: 14px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.plan-card__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    padding: 12px 0 4px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.plan-card__stat-label {
    color: #4a5873;
    font-size: 13px;
}

.plan-card__stat-value {
    color: #0a1224;
    font-weight: 700;
    font-size: 15px;
}

.plan-card__cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-top: 8px;
    padding: 12px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.9);
    color: #0a1224;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.plan-card__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
}

.plan-card__cta:active {
    transform: translateY(0);
}

.plan-card--purple {
    background: linear-gradient(180deg, #f3e9ff, #e5d9ff);
}

.plan-card--mint {
    background: linear-gradient(180deg, #e8fff5, #ddf8ee);
}

.plan-card--aqua {
    background: linear-gradient(180deg, #e8fffb, #dcf7f1);
}

@media (max-width: 720px) {
    .subscription-section {
        padding: 70px 16px 80px;
    }

    .plan-card {
        padding: 20px;
    }

    .plan-card__price {
        font-size: 28px;
    }
}

.services-hero {
    padding: 72px 20px 24px;
    text-align: center;
}

.services-hero__title {
    margin: 0 0 10px;
    font-size: clamp(30px, 4vw, 40px);
    color: #f8fcff;
}

.services-hero__subtitle {
    margin: 0;
    color: rgba(232, 252, 255, 0.78);
    font-size: 16px;
}




/* Optional images inside homepage info cards */
.info-card-image {
    display: block !important;
    margin-top: 12px;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    visibility: visible !important;
    opacity: 1 !important;
}

/* =========================================
   BUILDING SECTION (Homepage)
   Matches pink card style in provided mock
   ========================================= */
.building-section {
    background: var(--navy-strong);
    /* Pink backdrop matching mock */
}

.building-header {
    text-align: left;
    color: #fff;
    padding: 30px 0;
}

.building-title {
    margin: 0 0 8px;
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    color: #fff;
}

.building-subtitle {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.building-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.building-card {
    position: relative;
    min-height: 392px;
    border-radius: 24px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.08);
    background-size: 80%;
    background-position: 50% 0px;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.25);
    background-repeat: no-repeat;
}

.building-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgb(29 59 67) 33%, rgb(29 59 67) 10%, rgb(29 59 67) 0%, rgba(255, 255, 255, 0.0) 52%);
}

.building-card-content {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 18px;
    color: #fff;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.building-card-content h3 {
    margin: 0 0 6px;
    font-size: clamp(22px, 3vw, 26px);
    font-weight: 700;
}

.building-card-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
}

@media (max-width: 900px) {
    .building-section {
        padding: 0px
    }

    .building-cards-grid {
        grid-template-columns: 1fr;
    }

    .building-card {
        min-height: 380px;
    }

    .feature-cards-section {
        padding: 0px;
    }

    .split-main {
        gap: 288px;
    }

    .split-main .split-main-text .elementor-heading-title:nth-child(1) {
        align-self: flex-start;
        position: absolute;
        top: -240px;
        left: -10px;
    }

    .split-main .split-main-text .elementor-heading-title:nth-child(2) {
        align-self: flex-end;
        position: absolute;
        right: -20px;
        top: -28vh;
    }
    .stats-container{
        gap: 40px;
    }
    .stat-item{
        gap: 3px;
    }
}

