/* ===== Founder Vision Page — Premium Design ===== */

/* ---------- Hero Enhancements ---------- */
.hero-breadcrumb {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 14px;
    margin-bottom: 0;
}

.hero-breadcrumb span {
    color: #ff8c1a;
}

/* ---------- Override global .container flex from style3.css ---------- */
.fv-intro-section .container,
.fv-edu-section .container,
.fv-vision-section .container,
.fv-impact-section .container,
.fv-journey-section .container,
.fv-cta-section .container,
.fv-enquiry-section .container {
    display: block;
}

/* ---------- Section Header Block ---------- */
.fv-section-header {
    text-align: center;
    margin-bottom: 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fv-label-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #fff5f5, #fff0e0);
    border: 1px solid #ffe0cc;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    color: #e60000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.fv-label-tag.center {
    display: inline-flex;
}

.fv-label-tag i {
    font-size: 13px;
    background: linear-gradient(90deg, #e60000, #ff8c1a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.fv-section-heading {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 12px;
    line-height: 1.3;
    text-align: center;
    width: 100%;
}

.fv-section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #777;
    max-width: 620px;
    margin: 0 auto 18px;
    line-height: 1.6;
    font-weight: 400;
}

.fv-heading-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #e60000, #ff8c1a);
    border-radius: 3px;
}

/* ---------- Founder Intro Section ---------- */
.fv-intro-section {
    padding: 70px 0 60px;
    background: #fff;
}

.fv-intro-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.fv-photo-col {
    flex-shrink: 0;
    width: 300px;
    text-align: center;
}

.fv-photo-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border: 4px solid #fff;
    outline: 2px solid #e9ecef;
}

.fv-photo-frame img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.fv-photo-label {
    margin-top: 20px;
}

.fv-photo-label h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 4px;
}

.fv-photo-label span {
    font-size: 14px;
    font-weight: 600;
    color: #e60000;
    letter-spacing: 0.3px;
}

.fv-social-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.fv-social-bar a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff5f5, #fff0e0);
    border: 1px solid #ffe0cc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e60000;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.fv-social-bar a:hover {
    background: linear-gradient(90deg, #e60000, #ff8c1a);
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(230, 0, 0, 0.25);
}

.fv-bio-col {
    flex: 1;
}

.fv-bio-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    margin-bottom: 30px;
}

.fv-bio-text p {
    margin-bottom: 14px;
}

.fv-bio-text strong {
    color: #e60000;
}

/* Highlights strip */
.fv-highlights {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.fv-highlight-item {
    flex: 1;
    min-width: 140px;
    background: linear-gradient(135deg, #fafbff, #fff8f5);
    border: 1px solid #f0e8e0;
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.fv-highlight-item:hover {
    border-color: #e60000;
    box-shadow: 0 6px 20px rgba(230, 0, 0, 0.08);
    transform: translateY(-3px);
}

.fv-highlight-number {
    display: block;
    font-size: 30px;
    font-weight: 800;
    background: linear-gradient(90deg, #e60000, #ff8c1a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.fv-highlight-label {
    display: block;
    font-size: 13px;
    color: #777;
    font-weight: 600;
    margin-top: 4px;
}

/* ---------- Education Section ---------- */
.fv-edu-section {
    padding: 70px 0;
    background: linear-gradient(180deg, #f9fafb 0%, #fff 100%);
}

.fv-edu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
}

.fv-edu-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 18px;
    padding: 35px 28px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}

.fv-edu-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e60000, #ff8c1a);
    transform: scaleX(0);
    transition: transform 0.35s ease;
}

.fv-edu-card:hover {
    border-color: #fdd;
    box-shadow: 0 12px 35px rgba(230, 0, 0, 0.1);
    transform: translateY(-6px);
}

.fv-edu-card:hover::after {
    transform: scaleX(1);
}

.fv-edu-step {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(230,0,0,0.07), rgba(255,140,26,0.07));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    pointer-events: none;
}

.fv-edu-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff5f5, #fff0e0);
    border: 2px solid #ffe0cc;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: all 0.35s ease;
}

.fv-edu-card:hover .fv-edu-icon-wrap {
    background: linear-gradient(135deg, #e60000, #ff8c1a);
    border-color: transparent;
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(230, 0, 0, 0.25);
}

.fv-edu-icon-wrap i {
    font-size: 26px;
    background: linear-gradient(90deg, #e60000, #ff8c1a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.35s ease;
}

.fv-edu-card:hover .fv-edu-icon-wrap i {
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    color: #fff;
}

.fv-edu-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 6px;
    line-height: 1.3;
}

.fv-edu-degree {
    display: inline-block;
    background: linear-gradient(135deg, #fff5f5, #fff0e0);
    border: 1px solid #ffe0cc;
    color: #e60000;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.fv-edu-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.7;
}

/* Connector dots between cards */
.fv-edu-connector {
    display: flex;
    justify-content: center;
    gap: 33.33%;
    margin-top: -14px;
    position: relative;
    z-index: 1;
    pointer-events: none;
}

.fv-edu-connector span {
    display: none;
}

/* ---------- Vision & Mission Section ---------- */
.fv-vision-section {
    padding: 70px 0;
    background: #fff;
}

.fv-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.fv-vision-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    padding: 40px 35px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.fv-vision-card::before {
    content: '\201C';
    position: absolute;
    bottom: -20px;
    right: 20px;
    font-size: 180px;
    color: rgba(230, 57, 70, 0.08);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.fv-vision-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(230,57,70,0.2), rgba(255,140,26,0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.fv-vision-icon i {
    font-size: 20px;
    color: #ff8c1a;
}

.fv-vision-icon.mission {
    background: linear-gradient(135deg, #fff5f5, #fff0e0);
}

.fv-vision-icon.mission i {
    background: linear-gradient(90deg, #e60000, #ff8c1a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.fv-vision-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

.fv-vision-card blockquote {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    font-style: italic;
    margin: 0;
    position: relative;
    z-index: 1;
    border: none;
    padding: 0;
}

.fv-vision-author {
    display: block;
    margin-top: 18px;
    font-size: 14px;
    font-weight: 600;
    color: #ff8c1a;
    position: relative;
    z-index: 1;
}

.fv-mission-card {
    background: linear-gradient(135deg, #fafbff, #fff8f5);
    border: 1px solid #f0e8e0;
    border-radius: 20px;
    padding: 40px 35px;
}

.fv-mission-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.fv-mission-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

/* ---------- Impact / Pillars Section ---------- */
.fv-impact-section {
    padding: 70px 0;
    background: linear-gradient(180deg, #f9fafb 0%, #fff 100%);
}

.fv-impact-desc {
    text-align: center;
    font-size: 16px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

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

.fv-pillar-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 30px 22px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fv-pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e60000, #ff8c1a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.fv-pillar-card:hover {
    border-color: #f0c8a0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transform: translateY(-5px);
}

.fv-pillar-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff5f5, #fff0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.fv-pillar-icon i {
    font-size: 22px;
    background: linear-gradient(90deg, #e60000, #ff8c1a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.fv-pillar-card h5 {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}

.fv-pillar-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* ---------- Journey Roadmap ---------- */
.fv-journey-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    overflow: hidden;
}

.fv-journey-section .fv-section-header .fv-section-heading,
.fv-journey-section .fv-section-header .fv-section-subtitle {
    color: #fff;
}

.fv-journey-section .fv-section-header .fv-section-subtitle {
    color: rgba(255,255,255,0.6);
}

.fv-journey-section .fv-label-tag {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
    color: #ff8c1a;
}

.fv-roadmap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    padding-top: 40px;
    margin-top: 10px;
}

/* Horizontal connector line */
.fv-roadmap-line {
    position: absolute;
    top: 62px;
    left: 40px;
    right: 40px;
    height: 3px;
    background: linear-gradient(90deg, #e60000, #ff8c1a);
    border-radius: 3px;
    z-index: 0;
}

.fv-roadmap-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Dot with icon */
.fv-roadmap-dot {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #1a1a2e;
    border: 3px solid #e60000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    transition: all 0.35s ease;
}

.fv-roadmap-dot i {
    font-size: 16px;
    color: #ff8c1a;
    transition: all 0.35s ease;
}

.fv-roadmap-item:hover .fv-roadmap-dot,
.fv-roadmap-item.active .fv-roadmap-dot {
    background: linear-gradient(135deg, #e60000, #ff8c1a);
    border-color: transparent;
    transform: scale(1.15);
    box-shadow: 0 0 20px rgba(230, 0, 0, 0.4);
}

.fv-roadmap-item:hover .fv-roadmap-dot i,
.fv-roadmap-item.active .fv-roadmap-dot i {
    color: #fff;
}

/* Year badge */
.fv-roadmap-year {
    font-size: 15px;
    font-weight: 800;
    color: #ff8c1a;
    margin: 14px 0 12px;
    letter-spacing: 0.5px;
}

/* Card */
.fv-roadmap-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 22px 20px;
    text-align: center;
    width: 100%;
    transition: all 0.35s ease;
}

.fv-roadmap-item:hover .fv-roadmap-card,
.fv-roadmap-item.active .fv-roadmap-card {
    background: rgba(255,255,255,0.1);
    border-color: rgba(230, 0, 0, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.fv-roadmap-card h5 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.3;
}

.fv-roadmap-card p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin: 0;
}

.fv-roadmap-item:hover .fv-roadmap-card p,
.fv-roadmap-item.active .fv-roadmap-card p {
    color: rgba(255,255,255,0.8);
}

/* Active pulse animation */
.fv-roadmap-item.active .fv-roadmap-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #ff8c1a;
    animation: fvPulse 2s ease-in-out infinite;
}

@keyframes fvPulse {
    0% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.5); opacity: 0; }
    100% { transform: scale(1); opacity: 0.6; }
}

/* ---------- CTA Section ---------- */
.fv-cta-section {
    padding: 70px 0;
    background: linear-gradient(180deg, #f9fafb 0%, #fff 100%);
}

.fv-cta-wrapper {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    padding: 50px;
    display: flex;
    align-items: center;
    gap: 50px;
    overflow: hidden;
    position: relative;
}

.fv-cta-wrapper::after {
    content: '';
    position: absolute;
    right: -50px;
    top: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(230, 0, 0, 0.08);
    pointer-events: none;
}

.fv-cta-content {
    flex: 1;
}

.fv-cta-content h3 {
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
}

.fv-cta-content p {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin: 0 0 25px;
}

.fv-cta-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.fv-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.fv-cta-btn.primary {
    background: linear-gradient(90deg, #e60000, #ff8c1a);
    color: #fff;
}

.fv-cta-btn.primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(230, 0, 0, 0.3);
}

.fv-cta-btn.secondary {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
}

.fv-cta-btn.secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-2px);
}

.fv-cta-stats {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
}

.fv-cta-stat {
    text-align: center;
    padding: 18px 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    min-width: 100px;
    transition: all 0.3s ease;
}

.fv-cta-stat:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.fv-cta-stat i {
    font-size: 22px;
    color: #ff8c1a;
    display: block;
    margin-bottom: 8px;
}

.fv-cta-stat strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.fv-cta-stat span {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    font-weight: 600;
    margin-top: 2px;
    display: block;
}

/* ---------- Enquiry Form Section ---------- */
.fv-enquiry-section {
    padding: 70px 0 50px;
    background: linear-gradient(180deg, #f9fafb 0%, #f0f1f3 100%);
}

/* Override fetched form styles */
.fv-enquiry-section .container-form {
    display: flex;
    justify-content: center;
    width: 100%;
}

.fv-enquiry-section .enquiry-form {
    max-width: 580px !important;
    width: 100%;
    margin: 25px auto !important;
    padding: 35px 35px 30px !important;
    background: #fff !important;
    border-radius: 18px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid #eee !important;
}

.fv-enquiry-section .submit-btn1 {
    background: linear-gradient(90deg, #e60000, #ff8c1a) !important;
    border-radius: 10px !important;
    padding: 14px 20px !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
}

.fv-enquiry-section .form-control {
    border: 1.5px solid #dce0e8 !important;
    border-radius: 10px !important;
    padding: 12px 16px !important;
    font-size: 15px !important;
    color: #333 !important;
    background: #fafbfc !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.fv-enquiry-section .form-control:focus {
    border-color: #e60000 !important;
    box-shadow: 0 0 0 3px rgba(230, 0, 0, 0.08) !important;
    background: #fff !important;
    outline: none !important;
}

.fv-enquiry-section .submit-btn {
    background: linear-gradient(90deg, #e60000, #ff8c1a) !important;
    border-radius: 8px !important;
    padding: 12px 45px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px;
    transition: all 0.3s ease !important;
    width: auto !important;
}

.fv-enquiry-section .submit-btn:hover {
    opacity: 0.9 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 20px rgba(230, 0, 0, 0.25) !important;
}


/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

@media (max-width: 1200px) {
    .fv-pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fv-edu-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

@media (max-width: 991px) {
    .fv-intro-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 35px;
    }

    .fv-photo-col {
        width: 260px;
    }

    .fv-bio-col {
        text-align: center;
    }

    .fv-bio-text {
        text-align: justify;
    }

    .fv-label-tag {
        margin-left: auto;
        margin-right: auto;
    }

    .fv-highlights {
        justify-content: center;
    }

    .fv-edu-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .fv-edu-card {
        padding: 28px 18px 24px;
    }

    .fv-vision-grid {
        grid-template-columns: 1fr;
    }

    .fv-cta-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        gap: 35px;
    }

    .fv-cta-buttons {
        justify-content: center;
    }

    .fv-cta-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .fv-section-heading {
        font-size: 26px;
    }

    .fv-section-subtitle {
        font-size: 14px;
    }

    .fv-section-header {
        margin-bottom: 30px;
    }

    .fv-intro-section,
    .fv-edu-section,
    .fv-vision-section,
    .fv-impact-section,
    .fv-journey-section,
    .fv-cta-section,
    .fv-enquiry-section {
        padding: 50px 0;
    }

    .fv-pillars-grid {
        grid-template-columns: 1fr;
    }

    .fv-edu-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .fv-edu-card {
        padding: 28px 22px 24px;
    }

    .fv-roadmap {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
        padding-top: 20px;
    }

    .fv-roadmap-line {
        display: none;
    }

    .fv-roadmap-dot {
        width: 42px;
        height: 42px;
    }

    .fv-roadmap-dot i {
        font-size: 14px;
    }

    .fv-cta-wrapper {
        padding: 30px 22px;
    }

    .fv-cta-content h3 {
        font-size: 24px;
    }

    .fv-cta-stats {
        flex-wrap: wrap;
        gap: 12px;
    }

    .fv-cta-stat {
        min-width: 85px;
        padding: 14px 12px;
    }

    .fv-enquiry-section .enquiry-form {
        padding: 25px 22px 20px !important;
        margin: 20px 15px !important;
    }

    .fv-enquiry-section .submit-btn1 {
        font-size: 19px !important;
    }

    .fv-highlights {
        flex-direction: column;
        align-items: stretch;
    }

    .fv-highlight-item {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .fv-photo-col {
        width: 220px;
    }

    .fv-section-heading {
        font-size: 20px;
    }

    .fv-section-subtitle {
        font-size: 13px;
    }

    .fv-label-tag {
        font-size: 11px;
        padding: 6px 14px;
    }

    .fv-roadmap {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
        gap: 24px;
    }

    .fv-vision-card,
    .fv-mission-card {
        padding: 28px 22px;
    }

    .fv-vision-card blockquote {
        font-size: 15px;
    }

    .fv-cta-btn {
        width: 100%;
        justify-content: center;
    }

    .fv-cta-stats {
        width: 100%;
    }

    .fv-cta-stat {
        flex: 1;
    }

    .hero-breadcrumb {
        font-size: 12px;
    }
}
