.elementor-8 .elementor-element.elementor-element-0961483{--display:flex;}.elementor-8 .elementor-element.elementor-element-092c6e2{width:100%;max-width:100%;}.elementor-8 .elementor-element.elementor-element-fb7c068{--display:flex;}.elementor-8 .elementor-element.elementor-element-fb7c068.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-8 .elementor-element.elementor-element-807e502{width:100%;max-width:100%;}.elementor-8 .elementor-element.elementor-element-b2e44a0{--display:flex;}.elementor-8 .elementor-element.elementor-element-cc884e8{width:100%;max-width:100%;}.elementor-8 .elementor-element.elementor-element-cc884e8.elementor-element{--order:-99999 /* order start hack */;}.elementor-8 .elementor-element.elementor-element-ad493c3{width:100%;max-width:100%;}.elementor-8 .elementor-element.elementor-element-eb18f89{width:100%;max-width:100%;}.elementor-8 .elementor-element.elementor-element-05be7a6{--display:flex;}@media(min-width:768px){.elementor-8 .elementor-element.elementor-element-fb7c068{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-092c6e2 */@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;1,600&display=swap');

/* --- Removes the Top Site Branding Bar & Extra Space --- */
header, 
.site-title, 
.site-branding,
#masthead,
.page-header,
.entry-title {
    display: none !important;
}

body, 
html, 
#page, 
#content,
.site-content,
.ast-container,
.site {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* --- Scoped 100vw Full-Width Wrapper --- */
.hr-hero-wrapper {
    font-family: 'Montserrat', sans-serif;
    width: 100vw;
    min-height: 100vh;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box;
    overflow: hidden;
    top: 0 !important;
    margin-top: 0 !important;
}

.hr-hero-wrapper * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* --- Main Container with Full Background --- */
.hr-hero-wrapper .hero-container {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.35)), 
                url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?auto=format&fit=crop&q=80&w=1920') no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    padding: 2.5rem 5rem;
}

/* --- Header & Navbar (Hero ke upar Overlay) --- */
.hr-hero-wrapper .hero-navbar {
    position: absolute !important;   /* Only overlays on top of the hero section */
    top: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 90% !important;
    max-width: 1200px !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 3rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000 !important;
}

.hr-hero-wrapper .hero-logo {
    color: #ffffff;
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hr-hero-wrapper .hero-nav-links {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hr-hero-wrapper .hero-nav-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.hr-hero-wrapper .hero-nav-links a:hover, 
.hr-hero-wrapper .hero-nav-links a.active {
    color: #ffffff;
}

/* --- Dropdown Container Engine --- */
.hr-hero-wrapper .hero-dropdown {
    position: relative;
    display: inline-block;
}

.hr-hero-wrapper .dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
}

.hr-hero-wrapper .arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

/* --- Dropdown Glassmorphism Menu List --- */
.hr-hero-wrapper .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 280px;
    max-height: 350px; /* Scrollbar opens if list is long */
    overflow-y: auto;
    background: rgba(11, 35, 71, 0.92); /* Matches dark premium blue */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 0.7rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 2000;
}

/* Dropdown Custom Scrollbar Design */
.hr-hero-wrapper .dropdown-menu::-webkit-scrollbar {
    width: 6px;
}
.hr-hero-wrapper .dropdown-menu::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
}
.hr-hero-wrapper .dropdown-menu::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
}

/* Dropdown individual Links */
.hr-hero-wrapper .dropdown-menu a {
    color: rgba(255, 255, 255, 0.85) !important;
    padding: 0.7rem 1.2rem !important;
    font-size: 0.95rem !important;
    display: block !important;
    font-weight: 500 !important;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.2s ease, color 0.2s ease !important;
}

.hr-hero-wrapper .dropdown-menu a:last-child {
    border-bottom: none;
}

.hr-hero-wrapper .dropdown-menu a:hover {
    background: rgba(229, 184, 66, 0.15) !important; /* Gold hover glow */
    color: #e5b842 !important;
}

/* Hover trigger actions */
.hr-hero-wrapper .hero-dropdown:hover .dropdown-menu {
    display: block;
}

.hr-hero-wrapper .hero-dropdown:hover .arrow {
    transform: rotate(180deg);
}

/* CTA Header Button */
.hr-hero-wrapper .hero-btn-listings {
    background: #e5b842; 
    color: #1a1a1a !important;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: transform 0.2s ease, background 0.3s ease !important;
}

.hr-hero-wrapper .hero-btn-listings:hover {
    background: #f0c553;
    transform: translateY(-2px);
}

/* --- Content Grid Layout --- */
.hr-hero-wrapper .hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    flex-grow: 1;
    margin-top: 8rem !important; 
    width: 100%;
}

/* Left Section */
.hr-hero-wrapper .hero-left-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
}

.hr-hero-wrapper .hero-main-title {
    color: #ffffff;
    font-size: 5.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.5px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.hr-hero-wrapper .hero-serif-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #e5b842;
    font-weight: 600;
}

/* Glassmorphism Social Connect Box */
.hr-hero-wrapper .hero-social-card {
    width: fit-content;
    padding: 1.75rem 3rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
}

.hr-hero-wrapper .hero-social-card p {
    color: #ffffff; 
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.hr-hero-wrapper .hero-social-icons {
    display: flex;
    gap: 1.5rem;
}

.hr-hero-wrapper .hero-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.hr-hero-wrapper .hero-icon svg {
    display: block;
    fill: #ffffff;
    transition: fill 0.2s ease;
}

.hr-hero-wrapper .hero-icon:hover {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.hr-hero-wrapper .icon-fb { background: #3b5998; }
.hr-hero-wrapper .icon-in { background: #0077b5; }
.hr-hero-wrapper .icon-ig { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }

/* Right Section */
.hr-hero-wrapper .hero-right-col {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hr-hero-wrapper .hero-profile-frame {
    position: relative;
    width: 450px;
    height: 480px;
    border-radius: 140px; 
    overflow: hidden;
    box-shadow: 0 0 0 8px rgba(229, 184, 66, 0.3), 0 20px 50px rgba(0,0,0,0.35);
}

.hr-hero-wrapper .hero-profile-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Desktop Responsiveness --- */
@media (max-width: 1280px) {
    .hr-hero-wrapper .hero-container { padding: 2rem 3rem; }
    .hr-hero-wrapper .hero-main-title { font-size: 4.5rem; }
    .hr-hero-wrapper .hero-profile-frame { width: 380px; height: 410px; }
}

@media (max-width: 992px) {
    .hr-hero-wrapper .hero-content {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        margin-top: 14rem !important;
    }
    .hr-hero-wrapper .hero-right-col {
        order: -1; 
        justify-content: center;
    }
    .hr-hero-wrapper .hero-navbar {
        flex-direction: column;
        gap: 1.25rem;
        padding: 1.5rem;
    }
    .hr-hero-wrapper .hero-nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hr-hero-wrapper .hero-container { padding: 1.5rem 1.5rem; }
    .hr-hero-wrapper .hero-main-title { font-size: 3rem; }
    .hr-hero-wrapper .hero-profile-frame { width: 280px; height: 310px; border-radius: 80px; }
    .hr-hero-wrapper .hero-logo { font-size: 1.5rem; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-807e502 *//* --- Scoped 100vw Full-Width Wrapper --- */
.db-section-wrapper {
    font-family: 'Montserrat', sans-serif;
    background: radial-gradient(circle at bottom left, #fffbf2 0%, #f4f6fa 100%);
    width: 100vw;               /* Takes absolute full viewport width */
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;          /* Bypasses parent margins to touch edge-to-edge */
    margin-right: -50vw;
    padding: 6rem 5rem;         /* Premium spacing on wide displays */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #0b132a;
    box-sizing: border-box;
    overflow-x: hidden;          /* Prevents unexpected layout overflow */
}

/* Ensure box-sizing only for elements inside our section */
.db-section-wrapper * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.db-section-wrapper .credentials-section {
    width: 100%;
    max-width: 1200px; /* Kept the inner content max-width clean and centered */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

/* --- Section Title --- */
.db-section-wrapper .section-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    text-align: center;
    color: #0b132a;
    line-height: 1.2;
}

/* --- Responsive Grid Layout --- */
.db-section-wrapper .credentials-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    width: 100%;
}

/* --- Left Column: List Style Cards --- */
.db-section-wrapper .left-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.db-section-wrapper .column-subtitle {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.db-section-wrapper .list-cards {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.db-section-wrapper .list-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    box-shadow: 0 10px 30px rgba(180, 190, 210, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.db-section-wrapper .list-card span {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a1a1a;
}

/* Icons */
.db-section-wrapper .icon-blue {
    color: #4380e4;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Right Column: Large Highlights --- */
.db-section-wrapper .right-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: flex-end;
}

.db-section-wrapper .large-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 15px 40px rgba(180, 190, 210, 0.25);
    height: 145px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.db-section-wrapper .card-label {
    font-size: 1.1rem;
    color: #555555;
    font-weight: 500;
}

.db-section-wrapper .card-highlight {
    color: #000000;
    font-weight: 800;
}

.db-section-wrapper .highlight-large {
    font-size: 2.8rem;
    letter-spacing: -1.5px;
}

.db-section-wrapper .flex-highlight {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.75rem;
    letter-spacing: -0.5px;
}

.db-section-wrapper .flex-highlight .icon-blue {
    font-size: 1.6rem;
}

/* Hover Effects */
.db-section-wrapper .list-card:hover, 
.db-section-wrapper .large-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(180, 190, 210, 0.35);
}

/* --- Button --- */
.db-section-wrapper .btn-container {
    margin-top: 1rem;
}

.db-section-wrapper .btn-yellow {
    display: inline-block;
    background: #fcb900;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1.25rem 2.75rem;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(252, 185, 0, 0.3);
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.db-section-wrapper .btn-yellow:hover {
    background: #e0a300;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(252, 185, 0, 0.4);
}

/* --- Responsive Design --- */
@media (max-width: 1200px) {
    .db-section-wrapper {
        padding: 5rem 3rem;
    }
}

@media (max-width: 992px) {
    .db-section-wrapper .credentials-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .db-section-wrapper .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .db-section-wrapper {
        padding: 4rem 1.5rem;
    }
    .db-section-wrapper .section-title {
        font-size: 2rem;
    }
    .db-section-wrapper .list-card {
        padding: 1.25rem 1.5rem;
    }
    .db-section-wrapper .large-card {
        padding: 1.5rem;
        height: auto;
    }
    .db-section-wrapper .highlight-large {
        font-size: 2.2rem;
    }
    .db-section-wrapper .flex-highlight {
        font-size: 1.4rem;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-7ed43e4 *//* --- Scoped 100vw Full Width Wrapper --- */
.db-rates-section-wrapper {
    font-family: 'Montserrat', sans-serif;
    background: #fbfbfd;
    width: 100vw; /* Takes absolute full viewport width */
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 4rem 4rem 0 4rem; /* Wide padding for spacious look */
    box-sizing: border-box;
    overflow-x: hidden; /* Avoids horizontal scrollbar issues on body */
}

/* Ensure CSS reset affects only this custom block */
.db-rates-section-wrapper * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.db-rates-section-wrapper .db-rates-section {
    width: 100%;
    max-width: 100%; /* Removed 1200px limit for full stretch */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* --- Header Area --- */
.db-rates-section-wrapper .db-rates-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.db-rates-section-wrapper .db-rates-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.3rem;
}

.db-rates-section-wrapper .db-rates-subtitle {
    font-size: 1.1rem;
    color: #666666;
    font-weight: 500;
}

/* Live Badge with Pulse Animation */
.db-rates-section-wrapper .db-live-badge {
    background: #faf4e8;
    color: #8b6b23;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border: 1px solid rgba(229, 184, 66, 0.25);
    letter-spacing: 0.5px;
}

.db-rates-section-wrapper .db-live-dot {
    width: 8px;
    height: 8px;
    background: #e5b842;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(229, 184, 66, 0.7);
    animation: dbPulse 1.8s infinite;
}

@keyframes dbPulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(229, 184, 66, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(229, 184, 66, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(229, 184, 66, 0);
    }
}

/* --- Cards Grid Layout --- */
.db-rates-section-wrapper .db-rates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

.db-rates-section-wrapper .db-rate-card {
    background: #f5f1e9;
    border-radius: 20px;
    padding: 2.5rem 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.db-rates-section-wrapper .db-rate-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.db-rates-section-wrapper .db-loan-type {
    font-size: 0.85rem;
    font-weight: 700;
    color: #555555;
    letter-spacing: 0.5px;
}

.db-rates-section-wrapper .db-rate-percentage {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0b132a;
    line-height: 1;
    letter-spacing: -1.5px;
}

.db-rates-section-wrapper .db-apr-label {
    font-size: 0.9rem;
    color: #666666;
    font-weight: 600;
}

/* Trend Badges styling */
.db-rates-section-wrapper .db-trend {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.db-rates-section-wrapper .db-trend-down { color: #2e7d32; }
.db-rates-section-wrapper .db-trend-down svg { fill: #2e7d32; }

.db-rates-section-wrapper .db-trend-up { color: #c62828; }
.db-rates-section-wrapper .db-trend-up svg { fill: #c62828; }

.db-rates-section-wrapper .db-trend-neutral { color: #666666; }

.db-rates-section-wrapper .db-trend-arrow {
    width: 12px;
    height: 12px;
    display: inline-block;
}

.db-rates-section-wrapper .db-neutral-dash {
    font-weight: bold;
    font-size: 1.1rem;
}

/* --- Metadata Info Section --- */
.db-rates-section-wrapper .db-rates-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: #888888;
    border-bottom: 1px solid #ededed;
    padding-bottom: 2rem;
}

.db-rates-section-wrapper .db-update-time {
    color: #a88434;
}

.db-rates-section-wrapper .db-disclaimer {
    max-width: 60%;
    text-align: right;
    line-height: 1.4;
}

/* --- Bottom Ticker (Continuous Infinite Scroll) --- */
.db-rates-section-wrapper .db-ticker-wrapper {
    width: 100vw; /* Ticker goes 100vw edge-to-edge independently */
    margin-left: -4rem; /* Countering the parent padding to touch edges */
    margin-right: -4rem;
    background: #111a2e;
    overflow: hidden;
    padding: 1.2rem 0;
    box-shadow: 0 4px 15px rgba(17, 26, 46, 0.15);
}

.db-rates-section-wrapper .db-ticker-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: 4rem;
    padding-left: 100%;
    animation: dbTicker 25s linear infinite;
}

.db-rates-section-wrapper .db-ticker-content span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.db-rates-section-wrapper .db-ticker-content strong {
    color: #fcb900;
    font-weight: 700;
}

.db-rates-section-wrapper .db-ticker-divider {
    color: rgba(255, 255, 255, 0.3);
    font-weight: bold;
}

/* Animation loop for marquee */
@keyframes dbTicker {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

.db-rates-section-wrapper .db-ticker-wrapper:hover .db-ticker-content {
    animation-play-state: paused;
}

/* --- Responsive Layout --- */
@media (max-width: 1200px) {
    .db-rates-section-wrapper {
        padding: 3rem 2rem 0 2rem;
    }
    .db-rates-section-wrapper .db-ticker-wrapper {
        margin-left: -2rem;
        margin-right: -2rem;
    }
}

@media (max-width: 992px) {
    .db-rates-section-wrapper .db-rates-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .db-rates-section-wrapper .db-rate-card {
        padding: 1.75rem;
    }
    .db-rates-section-wrapper .db-rates-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    .db-rates-section-wrapper .db-disclaimer {
        max-width: 100%;
        text-align: left;
    }
}

@media (max-width: 576px) {
    .db-rates-section-wrapper {
        padding: 2rem 1rem 0 1rem;
    }
    .db-rates-section-wrapper .db-ticker-wrapper {
        margin-left: -1rem;
        margin-right: -1rem;
    }
    .db-rates-section-wrapper .db-rates-title {
        font-size: 2.2rem;
    }
    .db-rates-section-wrapper .db-rate-percentage {
        font-size: 3rem;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-cc884e8 *//* --- Full-Screen Edge-to-Edge Bar Wrapper --- */
.db-contact-strip-wrapper {
    background: #f5f4f0;         /* Exact background color from your site image */
    width: 100vw;               /* Streches full screen left to right */
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;          /* Cancels parent padding limits */
    margin-right: -50vw;
    padding: 1rem 5rem;         /* Height ko kam karne ke liye padding kam kar di hai */
    box-sizing: border-box;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Reset standard styles strictly for our scoped container */
.db-contact-strip-wrapper * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* --- Internal Flexible Row Container --- */
.db-contact-strip-wrapper .contact-strip-container {
    width: 100%;
    max-width: 1200px;          /* Clean content align limit */
    display: flex;
    justify-content: space-between;
    align-items: center;        /* Items ko vertically center-align kiya hai height save karne ke liye */
    gap: 2rem;
}

/* --- Individual Contact Block Styling --- */
.db-contact-strip-wrapper .contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;               /* Elements ke beech ki gap kam ki hai */
    flex: 1;
}

/* Small Sub-Header Text */
.db-contact-strip-wrapper .contact-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;          /* Font-size thoda optimize kiya hai */
    font-weight: 600;
    letter-spacing: 1.2px;
    color: #444444;             /* Soft neutral dark grey */
    text-transform: uppercase;
}

/* Wrapper to align icons & values horizontally */
.db-contact-strip-wrapper .contact-value-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;                /* Inner element gap kam ki hai */
}

/* Icon Resizing and Brand Colorization */
.db-contact-strip-wrapper .contact-icon {
    width: 18px;                /* Icon size compact kiya hai */
    height: 18px;
    fill: #0050aa;              /* Matches your exact brand blue */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Common Link Hover Transitions */
.db-contact-strip-wrapper .contact-link {
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.db-contact-strip-wrapper .contact-link:hover {
    opacity: 0.8;
}

/* --- Specific Text Columns Style --- */

/* Phone Number - High Weight Brand Blue */
.db-contact-strip-wrapper .contact-phone {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;          /* Font sizes ko highly compact display ke liye perfectly balance kiya hai */
    font-weight: 700;
    color: #0050aa;             /* Match your exact phone blue color */
    letter-spacing: -0.5px;
}

/* Email - Clean dark modern sans-serif */
.db-contact-strip-wrapper .contact-email {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.45rem;
    font-weight: 600;
    color: #000000;             /* Exact email color */
    letter-spacing: -0.8px;
}

/* Licensed In List - Classic elegant Serif Font */
.db-contact-strip-wrapper .contact-text-serif {
    font-family: 'Playfair Display', Georgia, serif; /* Exact Serif typography match */
    font-size: 1.5rem;
    font-weight: 400;
    color: #000000;
    line-height: 1.2;
}

/* --- Mobile Responsive Rules --- */
@media (max-width: 1024px) {
    .db-contact-strip-wrapper {
        padding: 1rem 2rem;     /* Pad on tablet screens */
    }
    .db-contact-strip-wrapper .contact-phone {
        font-size: 1.35rem;
    }
    .db-contact-strip-wrapper .contact-email {
        font-size: 1.25rem;
    }
    .db-contact-strip-wrapper .contact-text-serif {
        font-size: 1.3rem;
    }
}

@media (max-width: 868px) {
    .db-contact-strip-wrapper .contact-strip-container {
        flex-direction: column; /* Stack elements vertically on smaller devices */
        gap: 1.2rem;            /* Vertical gap reduce ki hai on mobile */
        align-items: flex-start;
    }
    .db-contact-strip-wrapper {
        padding: 1.5rem 1.5rem;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ad493c3 *//* --- Main Wrapper matching site background --- */
.db-awards-wrapper {
    background-color: #f5f4f0;   /* Brand Warm Beige */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 5rem 0 0 0;        /* Space at top, bottom handled by footer */
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Local Reset */
.db-awards-wrapper * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* --- Compass Vector Subtle Watermark Background --- */
.db-awards-wrapper .bg-compass-watermark {
    position: absolute;
    width: 800px;
    height: 800px;
    opacity: 0.03;              /* Keeps background watermarks very elegant */
    pointer-events: none;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.db-awards-wrapper .bg-compass-watermark svg {
    width: 100%;
    height: 100%;
    fill: #0050aa;              /* Brand Blue hint */
}

/* --- Section Container --- */
.db-awards-wrapper .awards-section {
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3.5rem;
}

/* --- Serif Elegant Heading --- */
.db-awards-wrapper .awards-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    font-weight: 800;
    color: #0b132a;             /* Dark Slate */
    text-align: center;
    letter-spacing: -0.5px;
}

/* --- 3-Column Grid System --- */
.db-awards-wrapper .awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
    margin-bottom: 5rem;
}

/* --- Golden Border Bottom-Shadow Cards --- */
.db-awards-wrapper .award-card {
    background: #ffffff;        /* Pure Contrast White */
    border-radius: 12px;
    position: relative;
    /* Elegant double border shadow matching the golden/beige color scheme of original */
    box-shadow: 
        0 4px 0px #decbb5, 
        0 15px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.db-awards-wrapper .award-card:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 4px 0px #0050aa,      /* Changes to Brand Blue on Hover */
        0 20px 35px rgba(0, 0, 0, 0.07);
}

.db-awards-wrapper .card-inner {
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    height: 100%;
}

/* Gold Stars */
.db-awards-wrapper .star-icon {
    color: #f6c845;             /* Warm Gold Star */
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
}

/* Card Content Typography */
.db-awards-wrapper .award-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #0b132a;             /* Deep Slate Text */
    line-height: 1.35;
    margin-bottom: 0.25rem;
}

.db-awards-wrapper .award-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #666666;
    line-height: 1.4;
}

/* Highlighted Google Card (Double size or custom styling if preferred) */
.db-awards-wrapper .featured-card {
    border-color: #0050aa;
}

/* --- Footer Dark Bar --- */
.db-awards-wrapper .awards-footer-strip {
    background-color: #0b132a;   /* Premium Dark Navy */
    width: 100%;
    padding: 1.25rem 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: auto;
}

.db-awards-wrapper .awards-footer-strip p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #e0e4ec;             /* Subtle white contrast text */
    letter-spacing: 0.5px;
}

.db-awards-wrapper .awards-footer-strip strong {
    color: #ffffff;
    font-weight: 700;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .db-awards-wrapper .awards-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    }
}

@media (max-width: 768px) {
    .db-awards-wrapper {
        padding: 3.5rem 0 0 0;
    }
    .db-awards-wrapper .awards-title {
        font-size: 2.25rem;
    }
    .db-awards-wrapper .awards-grid {
        grid-template-columns: 1fr;            /* 1 column on mobile */
        gap: 1.25rem;
        margin-bottom: 3.5rem;
    }
    .db-awards-wrapper .awards-footer-strip p {
        font-size: 0.75rem;
        line-height: 1.6;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-eb18f89 *//* --- Root Scoped Variables (Strictly Matching Your Real Site Brand Palette) --- */
.db-hero-wrapper {
    --brand-blue: #0050aa;      /* Real Brand Blue */
    --brand-dark: #0b132a;      /* Real Deep Slate Black */
    --bg-warm-beige: #f5f4f0;   /* Real Warm Beige */
    --white: #ffffff;           /* Real Pure White */
    --grey-text: #555555;       /* Secondary grey labels */
    --gold-border: #decbb5;     /* Matching your subtle gold/beige shadows */
    
    background-color: var(--bg-warm-beige); /* Complete background is now Warm Beige */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 4rem 0 0 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
}

.db-hero-wrapper * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* --- Hero Grid Alignment --- */
.db-hero-wrapper .hero-container {
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

/* --- Left Column Elements --- */
.db-hero-wrapper .badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    margin-bottom: 1.5rem;
}

.db-hero-wrapper .badge-tag span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--brand-blue);
    letter-spacing: 1px;
}

.db-hero-wrapper .badge-icon {
    width: 16px;
    height: 16px;
    fill: var(--brand-blue);
}

/* Headline (Slate Black) */
.db-hero-wrapper .hero-headline {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
    color: var(--brand-dark);
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.db-hero-wrapper .blue-text {
    color: var(--brand-blue);
}

/* Sub-text */
.db-hero-wrapper .hero-subtext {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--grey-text);
    margin-bottom: 2.5rem;
}

/* CTA & Features row */
.db-hero-wrapper .cta-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Brand Blue Main Button */
.db-hero-wrapper .btn-primary {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--brand-blue);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 1.1rem 2.2rem;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 80, 170, 0.3);
    transition: transform 0.2s, background-color 0.2s;
}

.db-hero-wrapper .btn-primary:hover {
    background-color: #003d82;
    transform: translateY(-2px);
}

/* Trust checklist badges */
.db-hero-wrapper .trust-features {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.db-hero-wrapper .feature-tag {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-dark);
}

.db-hero-wrapper .trust-icon {
    width: 18px;
    height: 18px;
    fill: var(--brand-blue);
}

/* --- Right Column Layout --- */
.db-hero-wrapper .image-mask-frame {
    position: relative;
    width: 100%;
    height: 380px;
}

.db-hero-wrapper .house-contour-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: -20px;
    left: 10px;
    z-index: 1;
}

.db-hero-wrapper .masked-image {
    position: absolute;
    width: 90%;
    height: 90%;
    bottom: 0;
    right: 0;
    object-fit: cover;
    border-radius: 0 0 100px 0;
    z-index: 2;
}

/* Floating Checkbox Card (Pure White with Gold Shadow Theme) */
.db-hero-wrapper .floating-benefit-card {
    position: absolute;
    bottom: 10%;
    left: -20px;
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    width: 260px;
    box-shadow: 
        0 4px 0px var(--gold-border),       /* Elegant shadow matching credentials section */
        0 15px 35px rgba(0, 0, 0, 0.05);
    z-index: 3;
}

.db-hero-wrapper .floating-benefit-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}

.db-hero-wrapper .floating-benefit-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.db-hero-wrapper .floating-benefit-card li {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--grey-text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.db-hero-wrapper .chk-icon {
    color: var(--brand-blue);
    font-weight: bold;
}

/* --- Bottom Feature Bar (Sleek Warm Contrast) --- */
.db-hero-wrapper .bottom-features-bar {
    background-color: var(--white); /* Pure white bar for contrast layout on top of beige */
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
    padding: 2rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.02);
}

.db-hero-wrapper .bottom-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.db-hero-wrapper .bottom-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    justify-content: center;
}

.db-hero-wrapper .bar-icon-wrap {
    width: 44px;
    height: 44px;
    background: rgba(0, 80, 170, 0.08); /* Brand blue tint inside white bar */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.db-hero-wrapper .bar-icon-wrap svg {
    width: 22px;
    height: 22px;
    fill: var(--brand-blue);
}

.db-hero-wrapper .bottom-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--brand-dark);
}

.db-hero-wrapper .bottom-item p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--grey-text);
}

.db-hero-wrapper .v-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.08);
}

/* --- Responsive Adaptability --- */
@media (max-width: 1024px) {
    .db-hero-wrapper .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .db-hero-wrapper .hero-right {
        display: flex;
        justify-content: center;
    }
    .db-hero-wrapper .image-mask-frame {
        max-width: 480px;
    }
    .db-hero-wrapper .bottom-bar-container {
        flex-wrap: wrap;
        gap: 2rem;
    }
    .db-hero-wrapper .bottom-item {
        flex: 40%;
    }
    .db-hero-wrapper .v-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .db-hero-wrapper .hero-headline {
        font-size: 2.5rem;
    }
    .db-hero-wrapper .trust-features {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    .db-hero-wrapper .bottom-item {
        flex: 100%;
        justify-content: flex-start;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-72cd887 */@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

/* --- Force Absolute Escape from constrained parent container --- */
.db-absolute-viewport-container {
    background-color: #ffffff !important;
    
    /* Forces layout to ignore parental width restrictions and occupy exact screen width */
    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 100vw !important;
    
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 3rem 0 !important;
    box-sizing: border-box !important;
    display: flex !important;
    justify-content: center !important;
}

/* Base resets */
.db-absolute-viewport-container * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Centered content box (Standard desktop grid size) */
.db-absolute-viewport-container .db-centered-content {
    width: 100% !important;
    max-width: 1200px !important;
    padding: 0 1.5rem !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
}

/* --- 1. Promo Hero Block --- */
.db-absolute-viewport-container .db-hero-banner {
    width: 100%;
    background-color: #0b2347;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    border-radius: 4px;
    overflow: hidden;
    height: 340px;
}

.db-absolute-viewport-container .hero-text-side {
    padding: 3.5rem;
}

.db-absolute-viewport-container .hero-text-side h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.1rem;
}

.db-absolute-viewport-container .hero-text-side h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.6rem;
    font-weight: 600;
    color: #c5a473;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.db-absolute-viewport-container .gold-divider {
    width: 250px;
    height: 1.5px;
    background-color: #c5a473;
    margin-bottom: 1.2rem;
}

.db-absolute-viewport-container .hero-ranking {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #ffffff;
}

.db-absolute-viewport-container .hero-image-side {
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    overflow: hidden;
}

.db-absolute-viewport-container .profile-image {
    height: 100%;
    width: auto;
    object-fit: cover;
    display: block;
}

/* --- 2. 4-Card Features Grid --- */
.db-absolute-viewport-container .db-features-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.db-absolute-viewport-container .feature-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0; 
    border-radius: 4px;
    padding: 2.2rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 230px;
}

.db-absolute-viewport-container .card-icon-wrap {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 2px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.db-absolute-viewport-container .card-icon-wrap svg {
    width: 28px;
    height: 28px;
}

.db-absolute-viewport-container .icon-blue {
    border-color: #0b2347;
}

.db-absolute-viewport-container .icon-gold {
    border-color: #c5a473;
}

.db-absolute-viewport-container .feature-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #0b2347;
    margin-bottom: 0.6rem;
}

.db-absolute-viewport-container .feature-card .gold-text {
    color: #c5a473;
}

.db-absolute-viewport-container .feature-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #333333;
    line-height: 1.45;
}

/* --- 3. Bottom CTA Row Bar --- */
.db-absolute-viewport-container .db-bottom-cta-bar {
    width: 100%;
    background-color: #eaedf2; 
    border-radius: 4px;
    padding: 1.2rem 2.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.db-absolute-viewport-container .cta-left-side {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.db-absolute-viewport-container .cta-handshake-circle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 3.5px solid #0b2347;
    display: flex;
    align-items: center;
    justify-content: center;
}

.db-absolute-viewport-container .cta-handshake-circle svg {
    width: 36px;
    height: 36px;
}

.db-absolute-viewport-container .cta-texts h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #0b2347;
    margin-bottom: 0.1rem;
}

.db-absolute-viewport-container .cta-texts p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #2c3e50;
}

.db-absolute-viewport-container .btn-exact-primary {
    background-color: #0b2347;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 0.9rem 2.2rem;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

/* --- Responsive Layout Configurations --- */
@media (max-width: 1024px) {
    .db-absolute-viewport-container .db-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .db-absolute-viewport-container .db-hero-banner {
        grid-template-columns: 1fr;
        height: auto;
    }
    .db-absolute-viewport-container .hero-image-side {
        display: none;
    }
}

@media (max-width: 768px) {
    .db-absolute-viewport-container .db-features-grid {
        grid-template-columns: 1fr;
    }
    .db-absolute-viewport-container .db-bottom-cta-bar {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding: 1.5rem;
    }
    .db-absolute-viewport-container .cta-left-side {
        flex-direction: column;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-988b243 */@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

/* --- Force Absolute 100% Full Width Breakout Wrapper --- */
.dscr-faq-breakout-container {
    background-color: #ffffff !important;
    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 4rem 0 !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.dscr-faq-breakout-container * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.dscr-faq-breakout-container .dscr-faq-inner-frame {
    width: 100% !important;
    max-width: 1200px !important;
    padding: 0 1.5rem !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 3.5rem; /* Gap between form and FAQ */
}

/* --- Premium DSCR Lead Form Styling --- */
.dscr-faq-breakout-container .dscr-lead-form-wrapper {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-top: 5px solid #0b2347; /* Navy blue accented top border */
    border-radius: 6px;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 30px rgba(11, 35, 71, 0.05);
    font-family: 'Montserrat', sans-serif;
}

.dscr-faq-breakout-container .form-header-area {
    text-align: center;
    margin-bottom: 2.5rem;
}

.dscr-faq-breakout-container .form-header-area h2 {
    font-size: 2.2rem;
    color: #0b2347;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.dscr-faq-breakout-container .form-header-area p {
    font-size: 1rem;
    color: #4a5568;
    font-weight: 500;
}

.dscr-faq-breakout-container .form-gold-line {
    width: 80px;
    height: 3px;
    background-color: #c5a473;
    margin: 1rem auto 0 auto;
}

/* Contact Form 7 Grid Controls */
.dscr-faq-breakout-container .dscr-cf7-custom-style form .dscr-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

/* Input Fields Style Override */
.dscr-faq-breakout-container .dscr-cf7-custom-style input[type="text"],
.dscr-faq-breakout-container .dscr-cf7-custom-style input[type="email"],
.dscr-faq-breakout-container .dscr-cf7-custom-style input[type="tel"],
.dscr-faq-breakout-container .dscr-cf7-custom-style select {
    width: 100% !important;
    padding: 1rem 1.2rem !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 4px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.95rem !important;
    color: #1e293b !important;
    background-color: #f8fafc !important;
    transition: all 0.2s ease-in-out !important;
}

.dscr-faq-breakout-container .dscr-cf7-custom-style input:focus,
.dscr-faq-breakout-container .dscr-cf7-custom-style select:focus {
    border-color: #0b2347 !important;
    background-color: #ffffff !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(11, 35, 71, 0.1) !important;
}

/* CF7 structure span wrapper fix */
.dscr-faq-breakout-container .dscr-cf7-custom-style .wpcf7-form-control-wrap {
    width: 100% !important;
    display: block !important;
}

.dscr-faq-breakout-container .dscr-cf7-custom-style .full-width {
    grid-column: span 2;
}

/* CF7 Submitting Button styling overrides */
.dscr-faq-breakout-container .dscr-cf7-custom-style input[type="submit"],
.dscr-faq-breakout-container .btn-cf7-submit {
    width: 100% !important;
    background-color: #0b2347 !important;
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    padding: 1.2rem !important;
    border: none !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    letter-spacing: 0.5px !important;
    transition: background-color 0.2s ease !important;
}

.dscr-faq-breakout-container .dscr-cf7-custom-style input[type="submit"]:hover {
    background-color: #c5a473 !important; /* Gold on hover state */
}

/* --- FAQ Container Styles --- */
.dscr-faq-breakout-container .db-faq-section {
    width: 100%;
    font-family: 'Montserrat', sans-serif;
}

.dscr-faq-breakout-container .faq-main-title {
    font-size: 2rem;
    font-weight: 800;
    color: #0b2347;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

.dscr-faq-breakout-container .faq-grid-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.dscr-faq-breakout-container .faq-item {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.25s ease;
}

.dscr-faq-breakout-container .faq-item[open] {
    border-color: #c5a473;
    box-shadow: 0 4px 15px rgba(11, 35, 71, 0.05);
}

.dscr-faq-breakout-container .faq-question {
    padding: 1.3rem 1.6rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0b2347;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.dscr-faq-breakout-container .faq-question::-webkit-details-marker {
    display: none;
}

.dscr-faq-breakout-container .faq-icon {
    width: 18px;
    height: 18px;
    position: relative;
    display: inline-block;
    flex-shrink: 0;
    margin-left: 1rem;
}

.dscr-faq-breakout-container .faq-icon::before,
.dscr-faq-breakout-container .faq-icon::after {
    content: '';
    position: absolute;
    background-color: #c5a473;
    transition: transform 0.25s ease, opacity 0.25s ease;
    top: 50%;
    left: 50%;
}

.dscr-faq-breakout-container .faq-icon::before {
    width: 14px;
    height: 2px;
    margin-top: -1px;
    margin-left: -7px;
}

.dscr-faq-breakout-container .faq-icon::after {
    width: 2px;
    height: 14px;
    margin-top: -7px;
    margin-left: -1px;
}

.dscr-faq-breakout-container .faq-item[open] .faq-question {
    background-color: #eaedf2;
    color: #0b2347;
    border-bottom: 1px solid #e2e8f0;
}

.dscr-faq-breakout-container .faq-item[open] .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.dscr-faq-breakout-container .faq-item[open] .faq-icon::before {
    transform: rotate(180deg);
}

.dscr-faq-breakout-container .faq-answer {
    padding: 1.4rem 1.6rem;
    background-color: #ffffff;
}

.dscr-faq-breakout-container .faq-answer p {
    font-size: 0.98rem;
    color: #4a5568;
    line-height: 1.65;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dscr-faq-breakout-container .dscr-cf7-custom-style form .dscr-form-grid {
        grid-template-columns: 1fr;
    }
    .dscr-faq-breakout-container .dscr-cf7-custom-style .full-width {
        grid-column: span 1;
    }
    .dscr-faq-breakout-container .dscr-lead-form-wrapper {
        padding: 2rem 1.5rem;
    }
}/* End custom CSS */
/* Start custom CSS *//* --- Removes the Top Site Branding Bar & Extra Space --- */
header, 
.site-title, 
.site-branding,
#masthead,
.page-header,
.entry-title {
    display: none !important;
}

/* --- Forces the Body and Wrapper to Start From Absolutely 0 Top Margin --- */
body, 
html, 
#page, 
#content,
.site-content,
.ast-container, /* Astra theme wrapper */
.site {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Ensure our hero wrapper aligns perfectly to the very top */
.hr-hero-wrapper {
    top: 0 !important;
    margin-top: 0 !important;
}/* End custom CSS */