@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

:root {
    --prv-font-body: 'Lato', sans-serif;
    --prv-color-blue: #0b1c8f;
    --prv-color-dark-blue: #0f1743;
    --prv-color-light-bg: #f8f9fc;
    --prv-color-dark: #333333;
    --prv-gold-accent: #d4af37;
    --prv-btn-blue: #0d27ad;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Lato", sans-serif;
    font-weight: 500;
    font-style: normal;
    background-color: #ffffff;
    color: var(--prv-color-dark);
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* loader start */
/* Loader Overlay - Screen ko poora cover karne ke liye */
.pp-loader-overlay {
    position: fixed;
    inset: 0;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.4s ease-out;
}

/* Circular Spinner */
.pp-spinner-element {
    /* Responsive sizing using clamp */
    width: clamp(40px, 8vw, 80px);
    height: clamp(40px, 8vw, 80px);

    border: 4px solid #f3f3f3;
    border-top: 4px solid #0b1c8f;
    /* Primary Color */
    border-radius: 50%;

    animation: pp-spin-motion 1s linear infinite;
}

/* Spinning Animation */
@keyframes pp-spin-motion {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Fade out class for JS */
.pp-loader-hidden {
    opacity: 0;
    pointer-events: none;
}

/* loader end */
.inxn-hero-section {
    position: relative;
}

.inxn-image-wrapper {
    position: relative;
    width: 100%;
}

.inxn-hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.inxn-overlay-title {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 45px;
    font-weight: 500;
    color: #E1A230;
}

.inxn-text-gold {
    font-weight: 700;
}

/* =========================================
TYPOGRAPHY
========================================= */
.prv-section-heading {
    font-size: 38px;
    font-weight: 400;
    color: #011C77;
    text-transform: uppercase;
}

.prv-section-heading strong {
    font-weight: 700;
}

.prv-text-blue {
    color: var(--prv-color-blue);
    font-weight: 700;
}

.prv-text-gold {

    font-weight: 700;
}

.prv-bold-text {
    font-weight: 700;
    color: #000;
}

/* BUTTON */
.prv-btn-primary {
    background: linear-gradient(180deg, #4c63d8 0%, #243fbf 60%, #132ea7 100%);
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    display: inline-block;
    transition: background 0.3s;
}

.prv-btn-primary:hover {
    background-color: #20328d;
    color: #ffffff;
}

/* =========================================
HEADER & MOBILE MENU
========================================= */
.prv-header {
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 6px 0;
}

.prv-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.prv-logo img {
    width: 100px;
}

.prv-desktop-nav ul {
    display: flex;
    gap: 30px;
}

.prv-desktop-nav a {
    color: var(--prv-color-dark-blue);
    font-size: 15px;
    font-weight: 700;
}

.prv-desktop-nav .active {
    color: var(--prv-gold-accent);
}

.prv-desktop-nav a:hover {
    color: var(--prv-gold-accent);
}

.prv-mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* DRAWER */
.prv-mobile-drawer {
    position: fixed;
    top: 0;
    right: -60%;
    width: 60%;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1002;
    transition: right 0.4s ease;
    padding: 20px;
}

.prv-mobile-drawer.active {
    right: 0;
}

.prv-drawer-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.prv-close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.prv-mobile-nav-links .active {
    color: #d4af37;
}

.prv-mobile-nav-links a {
    display: block;
    padding: 10px 0;
    color: var(--prv-color-blue);
    font-weight: 700;
    border-bottom: 1px solid #eee;
}

.prv-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.prv-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* =========================================
HERO SECTION
========================================= */
.prv-hero-section {
    margin-top: 0px;
    display: flex;
    justify-content: center;

}

.prv-hero-title {

    font-size: 55px;
    font-weight: 400;
    margin-bottom: 20px;
}

.prv-hero-title .prv-italic {
    font-style: italic;
}

.prv-hero-title .prv-bold {
    font-weight: 700;
}

.prv-hero-subtitle {
    font-size: 20px;
    position: relative;
    padding-top: 20px;
}

.prv-hero-subtitle::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.4);
}

/* =========================================
FLOATING CARD & WHAT WE DO
========================================= */
.prv-content-section {
    background-color: #F3F3FB;
    padding-bottom: 60px;
}

.prv-floating-card {
    background-color: #ffffff;
    padding: 32px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px #00000030;
    text-align: center;
    transform: translateY(-75px);
    position: relative;
    z-index: 10;
}

.prv-card-title {
    font-size: 29px;
    color: #081E95;
    margin-bottom: 10px;
}

.prv-card-text {
    font-size: 18px;
    line-height: 28px;
    color: #444;
    margin: 0;
    font-weight: normal;
}

.prv-what-we-do p {
    font-size: 18px;
    line-height: 28px;
    color: #444;
    margin: 0;
    font-weight: normal;
}

/* =========================================
WHY INDIA NOW
========================================= */
.prv-why-india-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.prv-map-wrapper {
    position: relative;
    width: 100%;
    text-align: center;
}

.prv-map-img {
    width: 100%;
}

.prv-map-overlay-text {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #FDD178;
    font-size: 50px;
    font-weight: 400;
    letter-spacing: 2px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    width: 100%;
}

.prv-india-text p {
    font-size: 18px;
    line-height: 28px;
    color: #333;
    margin-bottom: 15px;
}

/* =========================================
CORE PROPOSITION
========================================= */
.prv-core-prop-section {
    padding: 10px 0 60px;
    background-color: #ffffff;
}

.prv-prop-card {
    background: linear-gradient(to bottom, #c4caec 0%, #ffffff 100%);
    padding: 40px 25px;
    border-radius: 8px;
    text-align: center;
    height: 100%;
}

.prv-prop-card h4 {
    font-size: 22px;
    color: #061F96;
    font-weight: 700;
    margin-bottom: 15px;
}

.prv-prop-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin: 0;
}

/* =========================================
THREE STRATEGIC PILLARS
========================================= */
.prv-pillars-section {
    position: relative;
    padding: 80px 0 120px 0;
    /* Bottom Vineyard Image */
    background: url('https://images.unsplash.com/photo-1596414349346-6ee2fb9281a8?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') bottom center/cover no-repeat;
}

.prv-pillars-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark Blue fading to reveal image at bottom */
    background: linear-gradient(to bottom, rgba(15, 23, 67, 1) 0%, rgba(15, 23, 67, 0.95) 60%, rgba(15, 23, 67, 0.2) 100%);
}

.prv-icon-box i {
    font-size: 50px;
    color: var(--prv-gold-accent);
    margin-bottom: 20px;
}

.prv-pillar-title {

    color: #ffffff;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 15px;
}

.prv-divider {
    width: 50px;
    margin: 0 auto 15px auto;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.prv-pillar-sub {

    font-style: italic;
    color: #ffffff;
    font-size: 20px;
}

/* =========================================
OPERATING MODEL SNAPSHOT
========================================= */
.prv-model-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.prv-sub-heading {
    color: #031A78;
    font-size: 26px;
    font-weight: 600;
    margin-top: 10px;
}

.prv-model-section p {
    font-size: 18px;
    line-height: 28px;
    color: #444;
}

/* =========================================
STRUCTURED PARTNERSHIP
========================================= */
.prv-partnership-section {
    padding: 60px 0;
    background-color: #F2F2FA;
}

.prv-partnership-section p {
    font-size: 18px;
    line-height: 28px;
    color: #444;
}

/* =========================================
FOOTER
========================================= */
.prv-footer {
    background-color: var(--prv-color-dark-blue);
    color: #ffffff;
    padding: 60px 0 0 0;
}

.prv-footer-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.prv-footer-links li {
    margin-bottom: 12px;
}

.prv-footer-links a {
    color: #d1d5db;
    font-size: 14px;
    transition: 0.3s;
}

.prv-footer-links a i {
    font-size: 10px;
    margin-right: 8px;
    color: var(--prv-gold-accent);
}

.prv-footer-links a:hover {
    color: var(--prv-gold-accent);
}

.prv-footer-contact li {
    font-size: 14px;
    color: #d1d5db;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.prv-footer-contact i {
    margin-top: 4px;
    color: #ffffff;
}

.prv-social-links a {
    display: inline-block;
    color: #ffffff;
    font-size: 18px;
    margin-right: 15px;
    transition: 0.3s;
}

.prv-social-links a:hover {
    color: var(--prv-gold-accent);
}

.prv-footer-bottom {
    background-color: #0b1130;
    padding: 20px 0;
    margin-top: 10px;
    font-size: 13px;
    color: #8892b0;
}

/* =========================================
MEDIA QUERIES (Responsive)
========================================= */
.pad12 {
    padding-left: 100px;
}

@media (max-width: 991px) {
    .inxn-overlay-title {

        position: relative;
        font-size: 23px;
    }

    .prv-desktop-nav {
        display: none;
    }

    .prv-mobile-toggle {
        display: block;
    }

    .prv-hero-title {
        font-size: 40px;
    }

    .pad12 {
        padding-left: 10px;
    }
}

@media (max-width: 768px) {
    .prv-hero-title {
        font-size: 30px;
    }

    .prv-hero-subtitle {
        font-size: 16px;
    }

    .prv-floating-card {
        padding: 20px;
    }

    .prv-card-title {
        font-size: 22px;
        line-height: 30px;
    }

    .prv-map-overlay-text {
        font-size: 24px;
        bottom: 10px;
    }

    .prv-pillar-title {
        font-size: 26px;
    }

    .prv-section-heading {
        font-size: 30px;
    }

    .prv-card-text {
        font-size: 16px;
    }
}


/* new footer start */

/* =========================================
   UNIQUE FOOTER STYLES (prv-footer-)
   ========================================= */

.prv-footer-wrapper {
    background-color: #222956;
    /* Exact dark blue background from screenshot */
    color: #ffffff;
    padding-top: 60px;
}

.prv-footer-top-row {
    padding-bottom: 50px;
}

.prv-footer-col {
    margin-bottom: 10px;
}

.prv-footer-logo-img {
    max-width: 150px;
    /* Adjust this size according to your actual logo */
    display: block;
}

.prv-footer-heading {
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

/* Common List Styles */
.prv-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.prv-footer-list li {
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.6;
    display: flex;
    /* Ensures icons and text align perfectly */
    align-items: flex-start;
}

.prv-footer-list a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.prv-footer-list a:hover {
    color: #d4af37;
    /* Gold color on hover */
}

/* Small Arrow Icons (Site Map) */
.prv-footer-icon-sm {
    font-size: 11px;
    margin-right: 12px;
    margin-top: 2px;
}

/* Contact List Icons (Location, Phone, Email) */
.prv-footer-icon {
    font-size: 18px;
    margin-right: 15px;
    margin-top: 4px;
    min-width: 20px;
    /* Prevents icon from shrinking */
    text-align: center;
}

.prv-footer-contact-list span {
    color: #ffffff;
}

/* Social Media Icons */
.prv-footer-socials {
    display: flex;
    gap: 20px;
}

.prv-footer-socials a {
    color: #ffffff;
    font-size: 22px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.prv-footer-socials a:hover {
    color: #d4af37;
    transform: translateY(-3px);
    /* Slight jump effect on hover */
}

/* Footer Bottom (Copyright Section) */
.prv-footer-bottom {
    background-color: #1a2046;
    /* Slightly darker shade for the bottom bar */
    padding: 15px 0;
}

.prv-footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: #ffffff;
    font-weight: 400;
}

/* =========================================
   FOOTER RESPONSIVE (Mobile & Tablet)
   ========================================= */
@media (max-width: 991px) {
    .prv-footer-col {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .prv-footer-wrapper {
        padding-top: 40px;
    }

    .prv-footer-logo-img {
        margin-bottom: 10px;
    }

    .prv-footer-heading {
        margin-bottom: 15px;
        margin-top: 10px;
        font-size: 18px;
    }

    .prv-footer-bottom p {
        font-size: 13px;
        line-height: 1.5;
    }
}


/* the model apge start seaction 1 */

/* Unique Section Wrapper */
.market-context-main-2026 {
    padding: 60px 0;
    background-color: #fcfcfc;

    color: #2c2c2c;

    overflow: clip;
}

/* Heading Style */
.market-heading-premium {

    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 20px;
    margin-top: 20px;
    font-weight: 500;
    color: #1a1a1a;
}

/* Body Text */
.market-body-text-style {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: #4a4a4a;
    margin-bottom: 15px;
}

/* Modern List */
.market-feature-list {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.market-feature-list li {
    font-size: 18px;

    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: #1a1a1a;
    position: relative;
    padding-left: 15px;
}

.market-feature-list li::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 100px;
    background-color: #1a1a1a;
    display: inline-block;
    margin-right: 15px;
    position: absolute;
    left: 0px;
    top: 12px;
}

/* Conclusion Box */
.market-cta-container {
    margin-top: 50px;
    padding: 30px;
    border: 1px solid #e0e0e0;
    background-color: #ffffff;
    box-shadow: 10px 10px 0px #132187d4;
}

.market-cta-italic {
    font-size: 18px;
    font-style: italic;
    color: #555555;
    margin-bottom: 10px;
}

.market-cta-bold-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    display: block;
}

/* STICKY LOGIC */
.market-sticky-parent-col {
    position: relative;
    /* Bootstrap column ki height text ke barabar honi chahiye */
}

.market-sticky-visual-wrapper {
    position: -webkit-sticky;
    position: sticky;
    top: 130px;
    /* Top se kitni door rukega */
    height: fit-content;
    /* Zaroori hai taaki scrolling space mile */
    z-index: 10;
}

.market-image-frame-box {
    position: relative;
    padding: 15px;
    background-color: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.market-hero-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter 0.5s ease;
}

.market-image-frame-box:hover .market-hero-img {
    filter: grayscale(0%);
}

/* Decorative border element */
.market-image-frame-box::after {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-top: 3px solid #132187;
    border-right: 3px solid #132187;
    z-index: -1;
}

/* Responsive */
@media (max-width: 991px) {
    .market-heading-premium {
        font-size: 32px;
    }

    .market-sticky-visual-wrapper {
        position: relative;
        top: 0;
        margin-top: 50px;
    }

    .market-hero-img {
        height: 400px;
    }

    .market-context-main-2026 {
        padding: 60px 0;
    }
}

/* second section start */


.bcfw-section {
    padding: 60px 0;
    background-color: #ffffff;

    color: #1a1a1a;
}



.bcfw-main-title {

    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
    line-height: 1.2;
}

.bcfw-intro-text {
    font-size: 18px;
    line-height: 28px;
    color: #444;
    max-width: 850px;
    margin: 0 auto 20px;
}

/* Framework Pillar Cards */
.bcfw-pillar-item {
    background: #fff;
    padding: 40px;
    height: 100%;
    border: 1px solid #eaeaea;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.bcfw-pillar-item:hover {
    border-color: #000;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

/* Numbering style */
.bcfw-step-no {
    font-size: 14px;
    font-weight: 700;
    color: #132187d4;
    /* Neon Green accent */
    display: block;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.bcfw-pillar-title {

    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.bcfw-pillar-desc {
    font-size: 18px;
    line-height: 28px;
    color: #555;
    margin: 0;
}

/* Decoration line on hover */
.bcfw-pillar-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #132187d4;
    transition: width 0.3s ease;
}

.bcfw-pillar-item:hover::before {
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .bcfw-main-title {
        font-size: 34px;
    }

    .bcfw-section {
        padding: 60px 0;
    }

    .bcfw-pillar-item {
        padding: 30px;
    }
}

/* Unique Wrapper Class */
.prm-not-list-2026 {
    list-style: none;
    padding: 0;
    margin: 10px 0 10px;
    max-width: 600px;
}


.prm-not-item-styled {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Icon Styling */
.prm-not-icon-fa {
    color: #232c66;
    font-size: 16px;
    margin-right: 0px;
    text-align: center;
}

/* Text Color */
.prm-not-text-content {
    letter-spacing: 0.5px;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: #4a4a4a;
}

/* Responsive */
@media (max-width: 768px) {
    .prm-not-item-styled {
        font-size: 16px;

    }
}


/* leader ship start */

/* Unique Prefix: lead-sec- */
.lead-sec-wrapper {
    background-color: #ffffff;
    color: #333;
}

/* Main Unique Wrapper */
.lead-profile-card-2026 {
    display: flex;
    align-items: center;
    gap: 25px;

}

/* Image Styling */
.lead-profile-img-styled {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    /* Circle look */
    border: 2px solid #1a1a1a;
    flex-shrink: 0;
    object-position: top;
}

/* Text Container */
.lead-profile-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Name Style */
.lead-sec-name-unique {

    font-size: 22px;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: #1a1a1a;
}

/* Designation Style */
.lead-sec-designation-unique {

    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #777777;
    margin: 0 0 0px 0;
}

/* LinkedIn Icon Style */
.lead-sec-linkedin-unique {
    font-size: 20px;
    color: #0077b5;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    width: fit-content;
}

.lead-sec-linkedin-unique:hover {
    color: #004182;
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .lead-profile-card-2026 {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .lead-profile-info {
        align-items: center;
    }
}



.lead-sec-heading {
    font-weight: 700;
    letter-spacing: 2px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.lead-sec-title-line {
    width: 60px;
    height: 3px;
    background-color: #8a1538;
    /* Burgundy color for wine theme - change as needed */
    margin-bottom: 40px;
}

.lead-sec-img-box img {
    max-height: 450px;
    width: 100%;
    object-fit: cover;
    border: 1px solid #eee;
}

.lead-sec-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.lead-sec-designation {
    font-style: italic;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.lead-sec-linkedin {
    font-size: 1.5rem;
    color: #0077b5;
    transition: 0.3s;
}

.lead-sec-linkedin:hover {
    color: #005582;
}

.lead-sec-bio p {
    line-height: 28px;
    font-size: 18px;
    text-align: justify;
    margin-bottom: 15px;
    color: #444;
}

.lead-sec-philosophy p {
    font-style: italic;
    font-size: 18px;
    line-height: 28px;
    color: #222;
}

.lead-sec-divider {
    color: #f1af47;
    font-size: 1.2rem;
    letter-spacing: 5px;
}

/* Mobile Adjustments */
@media (max-width: 767px) {
    .lead-sec-bio p {
        text-align: left;
    }

    .lead-sec-heading {
        text-align: center;
    }

    .lead-sec-title-line {
        margin: 0 auto 40px auto;
    }

    .lead-sec-info {
        text-align: center;
    }
}

/* Unique Prefix used: .custom-cf- to avoid conflicts */
.custom-cf-section {
    padding: 60px 0;
    background-color: #f9f9f9;

}

.custom-cf-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 0 auto;
}

.custom-cf-title {
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
    padding-bottom: 5px;
}

.custom-cf-form .form-label {
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
}

.custom-cf-form .form-control,
.custom-cf-form .form-select,
.form-select {
    border: 1px solid #ddd;
    padding: 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
    color: #000;
}

.custom-cf-form .form-control:focus {
    border-color: #0b1c8f;
    box-shadow: 0 0 0 2px #0b1d8f4b !important;
}

.form-select:focus {
    border-color: #0b1c8f;
    box-shadow: 0 0 0 2px #0b1d8f4b !important;
}

.custom-cf-btn {
    background-color: #000;
    /* Professional Black/Dark theme */
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: background 0.3s ease;
    width: 100%;
    margin-top: 15px;
}

.custom-cf-btn:hover {
    background-color: #333;
    color: #fff;
}

.custom-cf-footer-text {
    margin-top: 25px;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .custom-cf-card {
        padding: 18px;
    }
}