/* FONT IMPORT */

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
/* Local Font */
/* @font-face {
	font-family: "Font Name";
	src: url("../fonts/fontpath.ttf");
  } */

:root {
    --white: #fff;
    --black: #000;
    --primary: #AE7D2B;
    --secondary: #333333;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    height: 100%;
    font-family: "Inter", sans-serif;
}

section {
    position: relative;
    padding: 6rem 0;
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 2;
    color: #828282;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

figure {
    margin: 0;
}


/* Cursor Start */

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

.cursor-inner {
    margin-left: 2px;
    margin-top: 2px;
    width: 7px;
    height: 7px;
    z-index: 10000001;
    background-color: var(--primary);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
    margin-left: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    opacity: 0.3;
}


/* Cursor End */


/* GLOBAL CSS */

.themeBtn {
    background: linear-gradient(180deg, #AE7D2B, #F1DE7E);
    font-size: 1rem;
    color: var(--black);
    text-transform: capitalize;
    font-weight: 400;
    display: flex;
    padding: 1.04em 1.96em;
    border-radius: 4px;
    line-height: normal;
    align-items: center;
    width: fit-content;
    gap: 0.625rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.themeBtn.borderBtn {
    background: transparent;
    border: 1px solid #fff;
    padding: 1.04em 2em;
}


/* NAV HEADER CSS */

header {
    padding: 30px 0 28px 0;
    transition: 0.3s ease-in-out;
    background: #16182D;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.navbar-nav {
    align-items: center;
    gap: 31px;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1rem;
    color: var(--white);
    text-transform: capitalize;
    font-weight: 400;
    padding: 0 0;
    display: inline-block;
    font-family: 'Inter';
    position: relative;
}


/* !NAV HEADER CSS */
/* !MAIN HERO SLIDER CSS */
.form-inline .themeBtn {
    font-size: 1rem;
    text-transform: capitalize;
    padding: 1rem;
    margin-left: 1rem;
}


/* section1 */

.dmv-services-section {
    background-color: #ffffff;
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
}

.dmv-services-section__title {
    font-size: 1.875rem;
    font-weight: 600;
    color: #16182D;
    margin-bottom: 1rem;
}

.dmv-services-section__divider {
    width: 5rem;
    height: 3px;
    margin: 0 auto 40px auto;
    background: linear-gradient(180deg, #AE7D2B, #F1DE7E);
}

.dmv-services-section__card {
    background: linear-gradient(175deg, #16182D, #12174C);
    border-radius: 6px;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dmv-services-section__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.dmv-services-section__icon-wrapper {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #ecd07a 0%, #c49c3e 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #13132e;
}

.dmv-services-section__icon-wrapper svg {
    width: 22px;
    height: 22px;
}

.dmv-services-section__card-title {
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
    text-transform: capitalize;
}

.dmv-services-section__card-text {
    font-size: 11.9px;
    font-weight: 400;
    color: #9393a6;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.dmv-services-section__card-link {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.dmv-services-section__card-link:hover {
    color: #d6af53;
    text-decoration: none;
}

.dmv-services-section__card-link svg {
    width: 14px;
    height: 14px;
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.dmv-services-section__card-link:hover svg {
    transform: translateX(4px);
}

@media (max-width: 991px) {
    .dmv-services-section__card {
        margin-bottom: 30px;
    }
}

/* section1 */


/* section2 */

.destiny-advantage-section {
    position: relative;
    padding: 6rem 0 6rem 0;
    background-color: #F8F9FA;
    overflow: hidden;
}

.destiny-advantage-section .background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.8) 0%, rgba(248, 249, 250, 0) 50%);
    pointer-events: none;
    z-index: 1;
}

.destiny-advantage-section .container {
    position: relative;
    z-index: 2;
}

.destiny-advantage-section .section-title {
    color: #16182D;
    font-size: 1.875rem;
    font-weight: 600;
    margin-bottom: 45px;
}

.destiny-advantage-section .advantage-list {
    margin-bottom: 30px;
}

.destiny-advantage-section .advantage-item {
    display: flex;
    align-items: flex-start;
}

.destiny-advantage-section .icon-wrapper {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 50%;
    border: 1.5px solid #D4B254;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    margin-top: 2px;
    background-color: transparent;
}

.destiny-advantage-section .icon-wrapper i {
    color: #D4B254;
    font-size: 9px;
}

.destiny-advantage-section .item-text {
    color: #191C1D;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}

.destiny-advantage-section .license-box {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    max-width: 480px;
}

.destiny-advantage-section .shield-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: linear-gradient(135deg, #D4B254 0%, #B8963D 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    box-shadow: 0 4px 10px rgba(212, 178, 84, 0.3);
}

.destiny-advantage-section .shield-icon i {
    color: #FFFFFF;
    font-size: 16px;
}

.destiny-advantage-section .license-title {
    color: #16182D;
    font-size: 1rem;
    font-weight: 400;
    margin: 0 0 4px 0;
}

.destiny-advantage-section .license-desc {
    color: #6C7084;
    font-size: 12px;
    font-weight: 500;
    margin: 0;
}

.destiny-advantage-section .image-column {
    position: relative;
    z-index: 2;
}

.destiny-advantage-section .image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: visible;
    box-shadow: 0 45px 30px rgba(0, 0, 0, 0.1);
    background-color: #16182D;
}

.destiny-advantage-section .main-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    position: relative;
    z-index: 2;
}

.destiny-advantage-section .decorative-square {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #D4B254 0%, #e9d799 100%);
    border-radius: 12px;
    z-index: 1;
    opacity: 0.8;
}

/* Marquee Styles */
.destiny-advantage-section .marquee-container-advantage {
    opacity: 0.4;
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.destiny-advantage-section .marquee-content-advantage {
    display: flex;
    white-space: nowrap;
    will-change: transform;
}

.destiny-advantage-section .marquee-item-advantage {
    display: inline-flex;
    align-items: center;
    font-size: 5rem;
    font-weight: 400;
    color: #535353;
    text-transform: uppercase;
    padding-right: 50px;
    letter-spacing: 2px;
}


.destiny-advantage-section .dr-logo {
    height: 80px;
    width: auto;
    margin-right: 20px;
    opacity: 0.5;
}

.destiny-advantage-section .marquee-content-advantage {
    display: flex;
    white-space: nowrap;
    width: max-content;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 991px) {
    .destiny-advantage-section .decorative-square {
        bottom: -15px;
        right: -15px;
        width: 80px;
        height: 80px;
    }

    .destiny-advantage-section {
        padding: 60px 0 100px;
    }
}

/* section2 */


/* section3 */

.skip-dmv-section {
    padding: 80px 0 0;
    background-color: #ffffff;
}

.skip-dmv-title {
    margin-bottom: 20px;
    color: #16182D;
    font-size: 1.875rem;
    font-weight: 600;
}

.skip-dmv-subtitle {
    font-size: 1.125rem;
    color: #434653;
    line-height: 1.6;
    width: 61%;
    margin: 0 auto 0 auto;
}

.skip-dmv-cards-row {
    margin-bottom: 20px;
}

.skip-dmv-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 12px;
    padding: 35px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skip-dmv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.skip-dmv-icon {
    margin-bottom: 16px;
    color: #28293D;
}

.skip-dmv-icon svg {
    width: 28px;
    height: 28px;
}

.skip-dmv-card-title {
    font-size: 1rem;
    font-weight: 400;
    color: #191C1D;
    margin-bottom: 10px;
}

.skip-dmv-card-text {
    font-size: 0.875rem;
    color: #434653;
    line-height: 1.6;
}

.skip-dmv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #CEAA51 0%, #E3C579 50%, #CEAA51 100%);
    background-size: 200% auto;
    color: #1F1B10;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    border: none;
    box-shadow: 0 4px 14px rgba(206, 170, 81, 0.25);
    transition: all 0.4s ease;
}

.skip-dmv-btn:hover {
    background-position: right center;
    color: #1F1B10;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(206, 170, 81, 0.4);
}

.skip-dmv-btn svg {
    width: 15px;
    height: 15px;
    margin-left: 8px;
}


/* section3 */

/* section4 */

.mission-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.mission-section .mission-image-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.mission-section .mission-main-img {
    border-radius: 12px;
    width: 100%;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mission-section .years-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
}

.mission-section .years-number {
    font-size: 2rem;
    font-weight: bold;
    color: #16182D;
    line-height: 1.1;
    margin-bottom: 5px;
    letter-spacing: -0.32px;
}

.mission-section .years-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #434653;
    letter-spacing: 0.7px;
}

.mission-section .mission-content {
    padding-right: 15px;
}

.mission-section .mission-subtitle {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    color: #FFD861;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    margin-bottom: 1rem;
}

.mission-section .mission-title {
    font-size: 1.875rem;
    font-weight: 600;
    color: #16182D;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    max-width: 470px;
}

.mission-section .mission-text {
    font-size: 1.125rem;
    color: #434653;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.mission-section .mission-text-secondary {
    font-size: 1rem;
    margin-bottom: 35px;
}

.mission-section .btn-outline-mission {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: 1px solid #1a1a2e;
    border-radius: 4px;
    color: #1a1a2e;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: transparent;
}

.mission-section .btn-outline-mission svg {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.mission-section .btn-outline-mission:hover {
    background-color: #1a1a2e;
    color: #ffffff;
}

.mission-section .btn-outline-mission:hover svg {
    transform: translateX(4px);
}

@media (max-width: 991px) {
    .mission-section .mission-content {
        padding-left: 0;
        margin-top: 30px;
    }

    .mission-section .mission-title {
        font-size: 28px;
    }
}

/* section4 */


/* section5 */

.testimonials-sec {
    background-color: #f8f9fc;
    padding: 100px 0;
    overflow: hidden;
}

.testimonials-sec-title {
    font-size: 32px;
    font-weight: 800;
    color: #1e2532;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.testimonials-sec-stars {
    color: #facc15;
    font-size: 18px;
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.testimonials-sec-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 35px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonials-sec-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
}

.testimonials-sec-quote-svg {
    position: absolute;
    left: -1.25rem;
    width: 2.05rem;
    z-index: 0;
    top: -6px;
}

.testimonials-sec-text {
    font-style: italic;
    color: #434653;
    line-height: 1.7;
    margin-bottom: 2.25rem;
    position: relative;
    z-index: 1;
}

.testimonials-sec-author {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
    margin-top: auto;
}

.testimonials-sec-avatar {
    width: 46px;
    height: 46px;
    background-color: #e2e8f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
    color: #16182D;
}

.testimonials-sec-author-info {
    display: flex;
    flex-direction: column;
}

.testimonials-sec-author-name {
    font-size: 1rem;
    font-weight: 400;
    color: #191C1D;
    margin: 0;
}

.testimonials-sec-author-role {
    font-size: 0.875rem;
    font-weight: 400;
    color: #737784;
    margin: 0;
}


/* section5 */


/* section6 */

.faq-section {
    background-color: #F3F4F5;
    padding: 2rem 0;
}

.faq-section .faq-heading {
    color: #23242E;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 45px;
    letter-spacing: -0.3px;
}

.faq-section .faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-section .faq-item {
    background-color: #FFFFFF;
    border-radius: 4px;
    padding: 22px 28px;
    cursor: pointer;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.faq-section .faq-item:hover {
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.04);
}

.faq-section .faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-section .faq-title {
    color: #191C1D;
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.5;
}

.faq-section .faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    margin-left: 16px;
    flex-shrink: 0;
}

.faq-section .faq-body {
    display: none;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #F0F1F4;
}

.faq-section .faq-body p {
    color: #666675;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

/* ---- active state: rotate icon + show body ---- */
.faq-section .faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-section .faq-item.active .faq-body {
    display: block;
}

/* small tweak for heading */
.mainHead {
    font-size: 2rem;
}

@media (max-width: 576px) {
    .faq-section .faq-item {
        padding: 18px 20px;
    }

    .faq-section .faq-title {
        font-size: 0.95rem;
    }
}

/* section6 */

/* section7 */

.get-in-touch-section {
    background-color: #F8F9FA;
    padding: 48px 70px;
    color: #1c1d20;
}

.get-in-touch-section .get-in-touch-title {
    font-size: 1.875rem;
    font-weight: 600;
    color: #16182D;
    margin-bottom: 12px;
}

.get-in-touch-section .get-in-touch-subtitle {
    color: #434653;
    margin-bottom: 2.25rem;
    line-height: 1.6;
}

.get-in-touch-section .contact-info-wrapper {
    margin-bottom: 35px;
}

.get-in-touch-section .contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 22px;
}

.get-in-touch-section .contact-icon-box {
    width: 3rem;
    height: 3rem;
    background-color: #E0E6EE;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
}

.get-in-touch-section .contact-icon {
    width: 18px;
    height: 18px;
    color: #2c353f;
}

.get-in-touch-section .contact-details h6 {
    font-weight: 400;
    color: #191C1D;
    margin-bottom: 4px;
    margin-top: 1px;
}

.get-in-touch-section .contact-details p {
    font-weight: 400;
    color: #434653;
    margin-bottom: 0;
    line-height: 1.5;
}

.get-in-touch-section .contact-map-image {
    width: 100%;
}

.get-in-touch-section .contact-map-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    max-height: 250px;
}

.get-in-touch-section .contact-form-box {
    background-color: #f1f3f6;
    padding: 35px 40px;
    border-radius: 14px;
}

.get-in-touch-section .form-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #191C1D;
    margin-bottom: 1.375rem;
}

.get-in-touch-section .form-group {
    margin-bottom: 18px;
}

.get-in-touch-section .form-group label {
    font-size: 1rem;
    font-weight: 400;
    color: #434653;
    margin-bottom: 8px;
    display: block;
}

.get-in-touch-section .form-control {
    font-size: 14px;
    color: #333;
    background-color: #ffffff;
    border: 1px solid #737784;
    border-radius: 4px;
    padding: 10px 14px;
    height: 3rem;
    box-shadow: none;
    transition: border-color 0.2s ease;
}

.get-in-touch-section .form-control:focus {
    border-color: #a4a8ad;
    box-shadow: none;
    outline: 0;
}

.get-in-touch-section textarea.form-control {
    height: auto;
    min-height: 110px;
    resize: vertical;
}

.get-in-touch-section .btn-submit-message {
    width: 100%;
    background: linear-gradient(180deg, #e4c46b 0%, #c49a37 100%);
    border: 1px solid #bfa04b;
    border-radius: 4px;
    color: #111111;
    font-size: 14px;
    font-weight: 700;
    padding: 12px;
    margin-top: 10px;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4), 0 2px 4px rgba(0, 0, 0, 0.05);
}

.get-in-touch-section .btn-submit-message:hover {
    background: linear-gradient(180deg, #ecd07a 0%, #d2a63d 100%);
    color: #000000;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.5), 0 3px 6px rgba(0, 0, 0, 0.1);
}


/* section7 */


/* footer  */
.footer-section {
    background-color: #16182D;
    padding-top: 5rem;
    padding-bottom: 1.25rem;
    position: relative;
    overflow: hidden;
}

.footer-section .relative-z {
    position: relative;
    z-index: 2;
}

/* Marquee Background Styling */
.footer-section .footer-marquee-wrap {
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    z-index: 1;
    pointer-events: none;
}


.footer-section .footer-marquee {
    display: inline-flex;
    white-space: nowrap;
    animation: footerMarqueeScroll 40s linear infinite;
}

.footer-section .footer-marquee span {
    font-size: 130px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    text-transform: uppercase;
    line-height: 1;
    padding-right: 20px;
}

@keyframes footerMarqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Logo Styling */
.footer-section .footer-logo {
    display: flex;
    align-items: center;
    text-decoration: none !important;
    margin-bottom: 25px;
    transition: opacity 0.3s ease;
}

.footer-section .footer-logo:hover {
    opacity: 0.85;
}

.footer-section .logo-mark {
    font-family: 'Playfair Display', serif;
    color: #D9B35C;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1;
    margin-right: 12px;
    transition: transform 0.3s ease;
}

.footer-section .footer-logo:hover .logo-mark {
    transform: scale(1.08) rotate(-3deg);
}

.footer-section .logo-text {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.2;
}

/* Description Text */
.footer-section .about-desc {
    color: #C4C6CB;
    font-size: 0.875rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Social Icons */
.footer-section .footer-socials {
    display: flex;
    gap: 12px;
}

.footer-section .footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: #2D2F42;
    color: #ffffff;
    border-radius: 16px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-section .footer-socials a:hover {
    background-color: #D9B35C;
    color: #171829;
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(217, 179, 92, 0.35);
}

/* Link Widgets Styling */
.footer-section .widget-title {
    color: #D9B35C;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-section .footer-widget-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section .footer-widget-links ul li {
    margin-bottom: 16px;
}

.footer-section .footer-widget-links ul li a {
    color: #C4C6CB;
    transition: color 0.3s ease, transform 0.3s ease, padding-left 0.3s ease;
    font-size: 0.875rem;
    display: inline-block;
}

.footer-section .footer-widget-links ul li a:hover {
    color: #D9B35C;
    padding-left: 4px;
}

/* Contact Info Box Styling */
.footer-section .contact-info-box {
    display: flex;
    align-items: flex-start;
}

.footer-section .contact-info-box .icon-box {
    width: 32px;
    height: 32px;
    color: #171829;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-right: 12px;
    flex-shrink: 0;
    background: linear-gradient(180deg, #AE7D2B, #F1DE7E);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-section .contact-info-box:hover .icon-box {
    transform: scale(1.1) rotate(-4deg);
    box-shadow: 0 6px 14px rgba(174, 125, 43, 0.4);
}

.footer-section .contact-info-box .text-box {
    display: flex;
    flex-direction: column;
}

.footer-section .contact-info-box .info-title {
    color: #ffffff;
    font-size: 11px;
    margin-bottom: 4px;
    line-height: 1;
}

.footer-section .contact-info-box .info-desc {
    color: #A5A5A8;
    font-size: 13px;
    line-height: 1.6;
}

.footer-section .contact-info-box .info-desc a {
    color: #A5A5A8;

}

/* Footer Bottom Area */
.footer-section .footer-bottom {
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-section .copyright-text {
    color: #C4C6CB;
    font-size: 0.875rem;
    margin: 0;
}

/* footer  */


/* section9 */
.secureseciton {
    background-color: #EDEEEF;
    border: 1px dashed #C3C6D5;
    border-radius: 24px;
    padding: 50px 60px;
    width: 100%;
    max-width: 820px;
    box-sizing: border-box;
}

.secureseciton .secureseciton-icon-wrapper {
    width: 56px;
    height: 56px;
    background-color: #1e4fd8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    color: #ffffff;
}

.secureseciton .secureseciton-title {
    font-size: 1.875rem;
    font-weight: 600;
    color: #16182D;
    margin-bottom: 0.75rem;
}

.secureseciton .secureseciton-subtitle {
    font-size: 0.875rem;
    font-weight: 500;
    color: #434653;
    margin-bottom: 2.025rem;
}

.secureseciton .secureseciton-dropzone {
    background-color: transparent;
    border: 1px dashed #737784;
    border-radius: 12px;
    padding: 45px 20px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    margin-bottom: 30px;
}

.secureseciton .secureseciton-dropzone:hover {
    background-color: #edf2f7;
    border-color: #718096;
}

.secureseciton .secureseciton-dropzone.dragover {
    background-color: #e6edfb;
    border-color: #1e4fd8;
}

.secureseciton .secureseciton-dropzone svg {
    color: #8c98a8;
    margin-bottom: 16px;
}

.secureseciton .secureseciton-dropzone-text {
    font-size: 14px;
    font-weight: 600;
    color: #4b5563;
    margin-bottom: 6px;
}

.secureseciton .secureseciton-dropzone-support {
    font-size: 12px;
    font-weight: 500;
    color: #9ca3af;
    margin-bottom: 0;
}

/* ========================================
   Selected file list
   ======================================== */

.secureseciton .secureseciton-filelist {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.secureseciton .secureseciton-filelist:empty {
    margin-bottom: 0;
}

.secureseciton .secureseciton-filelist li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background-color: #ffffff;
    border: 1px solid #e2e4ea;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    color: #374151;
    animation: fileItemIn 0.25s ease;
}

.secureseciton .secureseciton-filelist li.file-error {
    border-color: #dc3545;
    background-color: rgba(220, 53, 69, 0.05);
    color: #dc3545;
}

@keyframes fileItemIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.secureseciton .file-info {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.secureseciton .file-info .file-icon {
    flex-shrink: 0;
    color: #1e4fd8;
}

.secureseciton .file-error .file-info .file-icon {
    color: #dc3545;
}

.secureseciton .file-name {
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.secureseciton .file-size {
    color: #9ca3af;
    font-weight: 500;
    flex-shrink: 0;
}

.secureseciton .file-error .file-size {
    color: inherit;
}

.secureseciton .file-remove {
    flex-shrink: 0;
    background: transparent;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.secureseciton .file-remove:hover {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

/* ========================================
   Status message
   ======================================== */

.secureseciton .secureseciton-message {
    font-size: 13px;
    font-weight: 600;
    margin: -10px 0 20px 0;
    display: none;
}

.secureseciton .secureseciton-message.show {
    display: block;
}

.secureseciton .secureseciton-message.error {
    color: #dc3545;
}

.secureseciton .secureseciton-message.success {
    color: #2a9d8f;
}

.secureseciton .secureseciton-form-group {
    margin-bottom: 30px;
    text-align: left;
}

.secureseciton .secureseciton-label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 10px;
    display: block;
}

.secureseciton .secureseciton-input {
    height: 50px;
    border: 1px solid #737784;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    background-color: #ffffff;
    padding: 10px 16px;
    box-shadow: none;
}

.secureseciton .secureseciton-input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.secureseciton .secureseciton-input:focus {
    border-color: #6a9ce0;
    box-shadow: 0 0 0 0.2rem rgba(106, 156, 224, 0.25);
    outline: none;
}

.secureseciton .secureseciton-btn {
    height: 52px;
    border: none;
    border-radius: 4px;
    background: linear-gradient(180deg, #d2a942 0%, #d6ad45 20%, #c49931 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 2px 4px rgba(0, 0, 0, 0.1);
    color: #111827;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.1s ease, filter 0.2s ease, opacity 0.2s ease;
}

.secureseciton .secureseciton-btn:hover {
    filter: brightness(1.05);
}

.secureseciton .secureseciton-btn:active {
    transform: translateY(1px);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.secureseciton .secureseciton-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    filter: none;
}

.secureseciton .secureseciton-btn svg {
    margin-right: 8px;
}

/* section9 */


/* Main Banner Css Start */

.main-banner {
    background: url(../images/newbanner1.webp) center/cover no-repeat;
    /* height: 550px; */
    display: flex;
    align-items: center;
}


.main-content h3 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: capitalize;
    color: #001945;
    letter-spacing: 0.7px;
    background-color: #D9E2FF;
    padding: 0.5rem 0.75rem 0.5rem 0.75rem;
    border-radius: 50px;
    width: fit-content;
}

.main-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    text-transform: capitalize;
    color: var(--white);
    letter-spacing: -0.96px;
    margin-bottom: 2rem;
}

.main-content p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--white);
    width: 90%;
    margin: 1rem 0 2rem 0;
}

.main-content .btn-group {
    gap: 1rem;
}

.main-content .btn-group .themeBtn:last-child {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.dmv-services-section .swiper-button-next:after,
.dmv-services-section .swiper-button-prev:after {
    display: none;
}

.dmv-services-section .swiper-button-next,
.dmv-services-section .swiper-button-prev {
    height: 3.125rem;
    width: 3.125rem;
    border: 1px solid #16182D;
    border-radius: 50px;
    top: 20%;
    bottom: 0;
    margin: auto;
    transition: 0.6s ease;
}

.dmv-services-section .swiper-button-next {
    right: 15%;
}

.dmv-services-section .swiper-button-next:hover,
.dmv-services-section .swiper-button-prev:hover {
    background-color: #16182D;
}

.dmv-services-section .swiper-button-next img,
.dmv-services-section .swiper-button-prev img {
    transition: 0.6s ease;
}

.dmv-services-section .swiper-button-next:hover img,
.dmv-services-section .swiper-button-prev:hover img {
    filter: brightness(0) invert(1);
}

.dmv-services-section .swiper-button-prev {
    left: 15%;
}


.skip-dmv-section .themeBtn {
    margin: 0 auto 0 auto;
}

.testimonialsslider {
    padding: 1rem 1rem;
}


.navbar-nav .nav-item .nav-link::before {
    position: absolute;
    content: "";
    height: 2px;
    width: 0;
    background-color: var(--white);
    transition: 0.6s ease;
    bottom: -3px;
}

.navbar-nav .nav-item .nav-link:hover::before {
    width: 100%;
}

.themeBtn::before {
    position: absolute;
    content: "";
    inset: 0;
    background: var(--black);
    transform: scale(0);
    transition: 0.6s ease;
    z-index: -1;
}

.themeBtn:hover::before {
    transform: scale(1.1);
}

.themeBtn:hover {
    color: var(--white);
}

.main-content .main-content .btn-group .themeBtn::before {
    background: var(--white);
}

.main-content .main-content .btn-group .themeBtn:hover {
    color: var(--black);
}

.main-content .btn-group .themeBtn::before {
    background-color: var(--white);
}

.main-content .btn-group .themeBtn:hover {
    color: var(--black);
}

.form-inline .themeBtn::before {
    background-color: var(--white);
}

.form-inline .themeBtn:hover {
    color: var(--black);
}

/* Main Banner Css End */


body.loading {
    overflow: hidden;
    height: 100vh;
}

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: start;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 11113;
}

.preLoader .counter {
    color: var(--white);
    font-size: 15rem;
    font-family: var(--font-heading);
    font-weight: 700;
    position: absolute;
    bottom: 0rem;
    right: 5rem;
}

.preLoader .bar {
    height: 20%;
    width: 100vw;
    background-color: #AE7D2B;
}

/* PRELOADER */

.dmv-services-section__icon-wrapper img {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
    filter: brightness(0);
}


/* innerpages Start */

.innerBan .overlay {
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.innerBan h2 {
    font-size: 48px;
    color: var(--white);
    text-transform: capitalize;
    font-weight: bold;
    margin: 0;
}

.innerBan {
    position: relative;
    background-color: #16182D;
    padding: 70px 0;
}

/* insurance-services-wrapper section start */
.insurance-services-wrapper {
    background-color: #fafbfd;
}

/* Base Card Styles */
.is-card {
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 340px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    will-change: transform;
}

.is-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(17, 17, 17, 0.18);
}

.is-card-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.is-content-bottom {
    justify-content: flex-end;
}

.is-flex-between {
    justify-content: space-between;
}

/* Icon Box */
.is-icon-box {
    width: 28px;
    height: 28px;
    background-color: #d8a629;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.35s ease, background-color 0.35s ease;
}

.is-icon-box svg {
    width: 16px;
    height: 16px;
    fill: #000;
}

.is-card:hover .is-icon-box {
    transform: scale(1.12) rotate(-4deg);
    background-color: #eebb35;
}

/* Typography */
.is-title-white {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.is-title-dark {
    color: #111111;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.is-card:hover .is-title-dark {
    color: #d8a629;
}

.is-title-large-white {
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
}

.is-desc-white {
    color: #ffffff;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 0;
    max-width: 90%;
}

.is-desc-dark {
    color: #666666;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 0;
}

.is-desc-white-muted {
    color: #a0a5b1;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Links and Buttons */
.is-link-gold {
    color: #d8a629;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease, letter-spacing 0.3s ease;
}

.is-link-gold:hover {
    color: #eebb35;
    text-decoration: none;
    letter-spacing: 1px;
}

.right svg {
    width: 14px;
    height: 14px;
    margin-left: 6px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.is-link-gold:hover .right svg {
    transform: translateX(4px);
}

.is-btn-solid-gold {
    background-color: #d8a629;
    color: #000000;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 12px 24px;
    border-radius: 2px;
    text-decoration: none;
    letter-spacing: 0.5px;
    display: inline-block;
    border: none;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.is-btn-solid-gold:hover {
    background-color: #eebb35;
    color: #000000;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(216, 166, 41, 0.4);
}

.is-btn-outline-white {
    background-color: transparent;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 11px 23px;
    border-radius: 2px;
    text-decoration: none;
    letter-spacing: 0.5px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
}

.is-btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

/* Specific Card Styles */
/* Card 1: DMV */
.is-card-dmv {
    background-image: url(../images/dmv.webp);
    background-size: cover;
    background-position: center;
}

.is-card-dmv::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to top, rgba(27, 34, 56, 1) 0%, rgba(27, 34, 56, 0.7) 50%, rgba(27, 34, 56, 0) 100%);
    z-index: 1;
    transition: background 0.35s ease;
}

.is-card-sbs {
    background-image: url(../images/sbs.webp);
    background-size: cover;
    background-position: center;
}

.is-card-sbs::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to top, rgba(27, 34, 56, 1) 0%, rgba(27, 34, 56, 0.7) 50%, rgba(27, 34, 56, 0) 100%);
    z-index: 1;
    transition: background 0.35s ease;
}

/* Card 2: Small Business */
.is-card-sb1 {
    background-image: url(../images/small-business.webp);
    background-size: cover;
    background-position: center;
    border: 1px solid #eaeaea;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.is-card-sb1:hover {
    border-color: #d8a629;
}

.is-card-sb1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to top, rgba(27, 34, 56, 1) 0%, rgba(27, 34, 56, 0.7) 50%, rgba(27, 34, 56, 0) 100%);
    z-index: 1;
    transition: background 0.35s ease;
}

.is-card-sb {
    background-image: url(../images/red-semi-truck-driving.webp);
    background-size: cover;
    background-position: center;
    border: 1px solid #eaeaea;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.is-card-sb:hover {
    border-color: #d8a629;
}

.is-card-sb::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to top, rgba(27, 34, 56, 1) 0%, rgba(27, 34, 56, 0.7) 50%, rgba(27, 34, 56, 0) 100%);
    z-index: 1;
    transition: background 0.35s ease;
}

/* Card 3: DOT */
.is-card-dot {
    /* background-color: #080a0f; */
    background-image: url(../images/dot-and-nmpc.webp);
    background-size: cover;
    background-position: center;
    position: relative;
}

.is-card-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(30 41 66 / 81%);
    z-index: 1;
    transition: background-color 0.35s ease;
}

.is-card-dot:hover::after {
    background-color: rgb(30 41 66 / 65%);
}

.is-thumb {
    width: 180px;
    height: 120px;
    border-radius: 4px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.is-thumb:hover {
    transform: scale(1.05);
}

/* Card 4: General Liability */
.is-card-gl {
    background-image: url(../images/general.webp);
    background-size: cover;
    background-position: center;
}

.is-card-gl::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(30 41 66 / 81%);
    z-index: 1;
    transition: background-color 0.35s ease;
}

.is-card-gl:hover::after {
    background-color: rgb(30 41 66 / 65%);
}

/* insurance-services-wrapper section end */

#premium-consultation-form-section {
    background-color: #F8F9FA;
    padding-top: 100px;
    padding-bottom: 100px;
}

#premium-consultation-form-section .pre-heading {
    color: #C99F1D;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

#premium-consultation-form-section .section-heading {
    color: #212529;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

#premium-consultation-form-section .form-wrapper {
    border-radius: 12px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    padding: 60px 70px;
}

#premium-consultation-form-section label {
    font-size: 11px;
    font-weight: 800;
    color: #495057;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

#premium-consultation-form-section .form-control {
    border: 1px solid #E1E3E6;
    border-radius: 4px;
    padding: 14px 18px;
    font-size: 13px;
    color: #495057;
    height: auto;
    box-shadow: none;
    transition: all 0.3s ease;
    font-weight: 400;
}

#premium-consultation-form-section .form-control:focus {
    border-color: #C99F1D;
    box-shadow: 0 0 0 0.2rem rgba(201, 159, 29, 0.15);
    outline: 0;
}

#premium-consultation-form-section .form-control::placeholder {
    color: #9CA3AF;
}

#premium-consultation-form-section textarea.form-control {
    min-height: 140px;
    resize: none;
}

#premium-consultation-form-section .form-group {
    margin-bottom: 30px;
}

/* Custom Select Styling */
#premium-consultation-form-section .select-wrapper {
    position: relative;
}

#premium-consultation-form-section .custom-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    padding-right: 35px;
    cursor: pointer;
}

#premium-consultation-form-section .select-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #6C757D;
    font-size: 12px;
}

#premium-consultation-form-section .submit-btn {
    background-color: #C99F1D;
    border-color: #C99F1D;
    color: #000000;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 18px 24px;
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(201, 159, 29, 0.25);
    transition: all 0.3s ease;
}

#premium-consultation-form-section .submit-btn:hover,
#premium-consultation-form-section .submit-btn:focus {
    background-color: #B58E18;
    border-color: #B58E18;
    color: #000000;
    box-shadow: 0 12px 30px rgba(201, 159, 29, 0.35);
    transform: translateY(-2px);
}

#premium-consultation-form-section .submit-btn i {
    font-size: 11px;
    vertical-align: middle;
    margin-top: -2px;
}

#premium-consultation-form-section .disclaimer {
    font-size: 11px;
    color: #9CA3AF;
    font-weight: 400;
}

.inswrap {
    text-align: center;
    margin-bottom: 3rem;
}

.inswrap h2 {
    font-size: 30px;
    font-weight: 600;
    color: #1B1B1E;
}

.inswrap p {
    font-size: 1rem;
    color: #45464E;
    width: 51%;
    margin: auto;
    line-height: 1.4;
}

.destiybg {
    background: #F3F4F5;
}

#full-coverage-services {
    background-color: #f9fafb;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

#full-coverage-services .section-header-row {
    margin-bottom: 3.5rem;
}

#full-coverage-services h2 {
    color: #212529;
    letter-spacing: -0.5px;
}

#full-coverage-services .text-muted {
    color: #6b7280 !important;
}

#full-coverage-services .service-card {
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#full-coverage-services .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

#full-coverage-services .card-img-wrap {
    position: relative;
    height: 210px;
    width: 100%;
}

#full-coverage-services .card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#full-coverage-services .card-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0) 100%);
    pointer-events: none;
}

#full-coverage-services .card-title-overlay {
    position: absolute;
    bottom: 18px;
    left: 22px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

#full-coverage-services .card-body-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

#full-coverage-services .card-text-desc {
    font-size: 0.85rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 30px;
}

#full-coverage-services .btn-quote {
    display: block;
    width: 100%;
    text-align: center;
    border: 1px solid #dfdfdf;
    background: #ffffff;
    color: #374151;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 14px 10px;
    border-radius: 3px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

#full-coverage-services .btn-quote:hover {
    background: #f3f4f6;
    text-decoration: none;
    color: #111827;
    border-color: #d1d5db;
}


.business-operate {
    background-color: #fbfbfc;
    color: #4a4a52;
    overflow: hidden;
}

.business-operate .custom-rounded-img {
    border-radius: 12px;
    width: 100%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.business-operate .section-title {
    font-size: 22px;
    font-weight: 700;
    color: #1e1e24;
    margin-bottom: 22px;
    letter-spacing: -0.2px;
}

.business-operate .section-text {
    font-size: 15px;
    line-height: 1.6;
    color: #585863;
    font-weight: 400;
    margin-bottom: 25px;
}

.business-operate .sub-question {
    font-size: 12.5px;
    color: #81818d;
    font-weight: 600;
    margin-bottom: 15px;
}

.business-operate .section-text-small {
    font-size: 13.5px;
    line-height: 1.7;
    color: #60606b;
    font-weight: 400;
}


#core-values-section {
    background-color: #F5F3F6;
    padding: 100px 0;
    overflow-x: hidden;
}

#core-values-section .section-header {
    margin-bottom: 3.5rem;
}

#core-values-section .core-values-subtitle {
    color: #ceb035;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

#core-values-section .core-values-title {
    color: #1f2544;
    font-size: 2.25rem;
    font-weight: 800;
    margin: 0;
}

/* Card Base Styles */
#core-values-section .core-value-card {
    border-radius: 8px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
}

/* Background Colors */
#core-values-section .card-dark-blue {
    background-color: #060813;
}

#core-values-section .card-navy {
    background-color: #18203c;
}

#core-values-section .card-gold {
    background-color: #d1b039;
}

#core-values-section .card-white {
    background-color: #ffffff;
}

/* Typography within cards */
#core-values-section .card-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
}

#core-values-section .card-text {
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 0;
    font-weight: 400;
}

#core-values-section .text-light-gray {
    color: #8a8e9e;
}

#core-values-section .text-dark-gray {
    color: #2a2a2a;
}

#core-values-section .text-gray {
    color: #6a6e7e;
}

#core-values-section .dark-blue-text {
    color: #1f2544;
}

#core-values-section .w-lg-75 {
    max-width: 75%;
}

/* Icon Styles */
#core-values-section .icon-wrapper svg {
    width: 28px;
    height: 28px;
}

#core-values-section .icon-gold svg {
    stroke: #ceb035;
}

#core-values-section .icon-black svg {
    fill: #111111;
}

#core-values-section .icon-dark-blue svg {
    stroke: #1f2544;
}

/* Background Number Watermark */
#core-values-section .bg-number {
    position: absolute;
    top: 1.5rem;
    right: 2.5rem;
    font-family: 'Times New Roman', Times, serif;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(206, 176, 53, 0.15);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

/* Right Card Image */
#core-values-section .image-wrapper {
    margin-top: 2rem;
    border-radius: 6px;
    overflow: hidden;
}

#core-values-section .image-wrapper img {
    object-fit: cover;
    display: block;
}

.footer-section .copyright-text a {
    color: #C4C6CB;
}

.new-dm-image .dmv-services-section__icon-wrapper img {
    filter: brightness(0) saturate(100%);
}

.new-dm-image img {
    filter: brightness(1);
}


/* Revision Css Start */

.services-contentt h3 {
    color: var(--black);
    font-size: 1.875rem;
}

.services-contentt p {
    font-size: 1.5rem;
    color: var(--black);
    line-height: 1.5;
}

.services-contentt .is-title-large-white {
    font-size: 1.875rem;
    color: var(--blacki);
}

.small-section .services-contentt p {
    font-size: 1.125rem;
    max-width: 100%;
}

.small-section .services-contentt h4 {
    font-weight: bold;
    font-size: 1.75rem;
    margin: 0.5rem 0 0.5rem 0;
}

.services-contentt ul li {
    list-style: disc;
    font-weight: 500;
    font-size: 1.0125rem;
}

.services-contentt ul {
    padding: 0 0 0 1.512rem;
}

/* Revision Css End */


/* innerpages Start */

.innerBan1 .overlay1 {
    position: absolute;
    text-align: left;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
}

.innerBan1 h2 {
    font-size: 50px;
    color: var(--white);
    text-transform: capitalize;
    font-weight: bold;
}

.innerBan1 {
    position: relative;
}


.innerbanercontent h4 {
    font-size: 13px;
    color: #D4AF37;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgb(255 255 255 / 10%);
    border-radius: 4px;
    width: fit-content;
    padding: 7px 10px;
}

.innerbanercontent h2 {
    font-size: 56px;
    font-weight: 900;
}

.innerbanercontent p {
    font-size: 1.125rem;
    font-weight: 400;
    color: #C6C6CF;
    line-height: 1.5;
    margin: 1rem 0 1.5rem;
}

.innerbanercontent .btn-group {
    gap: 1rem;
}

.themeBtn.callbtn {
    background: transparent;
    border: 1px solid #fff;
    color: #Fff;
}


#dmv1 {
    background-color: #fbfbfd;
    font-family: 'Manrope', sans-serif;
    padding: 80px 0;
    overflow: hidden;
}

#dmv1 .subtitle {
    color: #c0b255;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

#dmv1 .title {
    color: #2b3043;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
}

#dmv1 .description {
    color: #6a7081;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 30px;
    font-weight: 500;
}

#dmv1 .benefits-list {
    margin-bottom: 0;
}

#dmv1 .benefits-list li {
    display: flex;
    align-items: center;
    color: #2b3043;
    font-size: 13.5px;
    font-weight: 700;
    margin-bottom: 15px;
}

#dmv1 .benefits-list li:last-child {
    margin-bottom: 0;
}

#dmv1 .benefits-list .icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-right: 12px;
    flex-shrink: 0;
}

#dmv1 .benefits-list svg {
    width: 14px;
    height: 14px;
}

#dmv1 .image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

#dmv1 .image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

@media (min-width: 992px) {
    #dmv1 {
        padding: 120px 0;
    }

    #dmv1 .content-wrapper {
        padding-right: 40px;
    }

    #dmv1 .title {
        font-size: 34px;
    }

    #dmv1 .description {
        font-size: 15px;
        padding-right: 30px;
    }

    #dmv1 .benefits-list li {
        font-size: 14px;
    }
}


#dmv1 .dmv-subtitle {
    color: #c9a050;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

#dmv1 .dmv-title {
    color: #1a1b26;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

#dmv1 .dmv-card-col {
    margin-bottom: 30px;
}

#dmv1 .dmv-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 45px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#dmv1 .dmv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
    border-color: rgba(201, 160, 80, 0.1);
}

#dmv1 .dmv-icon-box {
    width: 44px;
    height: 44px;
    background-color: #1a1b26;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #c9a050;
}

#dmv1 .dmv-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1b26;
    margin-bottom: 15px;
}

#dmv1 .dmv-card-text {
    font-size: 13px;
    line-height: 1.65;
    color: #6c7081;
    margin-bottom: 25px;
    font-weight: 400;
    flex-grow: 1;
}

#dmv1 .dmv-card-link {
    font-size: 11px;
    font-weight: 700;
    color: #c9a050;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.2s ease;
}

#dmv1 .dmv-card-link:hover {
    opacity: 0.8;
    text-decoration: none;
    color: #c9a050;
}

@media (max-width: 767.98px) {
    #dmv1 {
        padding: 60px 0;
    }

    #dmv1 .dmv-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    #dmv1 .dmv-card {
        padding: 30px;
    }
}


#dmv1 .subtitle {
    color: #d4b254;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

#dmv1 .section-title {
    color: #1a1b22;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 60px;
}

#dmv1 .card-row {
    align-items: stretch;
}

#dmv1 .feature-card {
    background-color: #ffffff;
    border: 1px solid #eaedf1;
    border-radius: 6px;
    padding: 35px 25px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

#dmv1 .feature-card.active,
#dmv1 .feature-card:hover {
    transform: scale(1.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: #ffffff;
    z-index: 10;
}

#dmv1 .icon-wrapper {
    margin-bottom: 22px;
}

#dmv1 .card-title {
    color: #1a1b22;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 12px;
}

#dmv1 .card-text {
    color: #6b7280;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.65;
    margin-bottom: 0;
}

#dmv3 .section-subtitle {
    color: #e0b134;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

#dmv3 .section-title {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

#dmv3 .step-number {
    color: #e0b134;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 25px;
}

#dmv3 .step-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 15px;
}

#dmv3 .step-desc {
    font-size: 0.85rem;
    line-height: 1.7;
    color: #a4a8b7;
    font-weight: 400;
    padding-right: 15px;
}

section#dmv3 {
    background: #16182D;
}


/* dmv4 */

#dmv4 {
    background-color: #f6f7fa;
    padding: 90px 0;
    font-family: 'Manrope', sans-serif;
    overflow: hidden;
}

#dmv4 .dmv-title {
    font-size: 30px;
    font-weight: 800;
    color: #242b3b;
    margin-bottom: 25px;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

#dmv4 .dmv-features {
    margin-bottom: 15px;
}

#dmv4 .dmv-list li {
    display: flex;
    align-items: center;
    font-size: 13.5px;
    font-weight: 700;
    color: #4a5568;
    margin-bottom: 18px;
    letter-spacing: -0.2px;
}

#dmv4 .dmv-list .icon {
    margin-right: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#dmv4 .dmv-licensed-card {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 14px 24px 14px 14px;
    transition: all 0.3s ease;
}

#dmv4 .dmv-licensed-card:hover {
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

#dmv4 .dmv-icon-box {
    width: 42px;
    height: 42px;
    background-color: #dca52d;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    flex-shrink: 0;
}

#dmv4 .dmv-text-box h4 {
    font-size: 14px;
    font-weight: 800;
    color: #242b3b;
    margin-bottom: 4px;
    line-height: 1.2;
}

#dmv4 .dmv-text-box p {
    font-size: 12px;
    font-weight: 500;
    color: #8390a2;
    margin-bottom: 0;
    line-height: 1.2;
}

#dmv4 .dmv-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
}

#dmv4 .dmv-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 991.98px) {
    #dmv4 {
        padding: 60px 0;
    }

    #dmv4 .dmv-title {
        font-size: 26px;
    }
}

/* dmv4 */


/* faq  */

.dmvfaq {
    background-color: #f9f9fc;

    display: flex;
    align-items: center;
}

.dmvfaq .sub-heading {
    color: #e6ba39;
    font-size: 11px;
    letter-spacing: 1.5px;
}

.dmvfaq .main-heading {
    color: #191a23;
    font-size: 32px;
    margin: 0;
}

.dmvfaq .faq-list {
    width: 100%;
    max-width: 100%;
}

.dmvfaq .faq-card {
    background: #ffffff;
    border: 1px solid #f2f3f7;
    border-radius: 6px;
    padding: 22px 28px;
    margin-bottom: 12px;
    max-width: 100%;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.dmvfaq .faq-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    border-color: #e2e5eb;
}

.dmvfaq .faq-question {
    font-size: 15px;
    font-weight: 800;
    color: #191a23;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.dmvfaq .faq-toggle-icon {
    position: relative;
    width: 12px;
    height: 12px;
    display: inline-block;
    margin-left: 35px;
    flex-shrink: 0;
}

.dmvfaq .faq-toggle-icon::before,
.dmvfaq .faq-toggle-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #a0a4b8;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.dmvfaq .faq-toggle-icon::before {
    width: 10px;
    height: 1.5px;
}

.dmvfaq .faq-toggle-icon::after {
    width: 1.5px;
    height: 10px;
    opacity: 0;
    transform: translate(-50%, -50%) scaleY(0);
}

.dmvfaq .faq-question.collapsed .faq-toggle-icon::after {
    opacity: 1;
    transform: translate(-50%, -50%) scaleY(1);
}

.dmvfaq .faq-answer {
    font-size: 13px;
    font-weight: 400;
    color: #6b7082;
    margin-top: 12px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .dmvfaq .faq-card {
        width: 100%;
    }
}

/* faq  */


.solution-block-1 {
    background-color: #f8f9fc;
    padding: 100px 0;
}

.solution-block-1 .sub-heading {
    color: #cda434;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.solution-block-1 .main-heading {
    color: #171a2b;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.solution-block-1 .description {
    font-size: 15px;
    line-height: 1.7;
    color: #636878;
    margin-bottom: 0;
    padding-right: 15px;
}

.solution-block-2 {
    background-color: #ffffff;
    padding: 100px 0;
}

.solution-block-2 .secondary-heading {
    color: #171a2b;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.solution-block-2 .description {
    font-size: 13px;
    line-height: 1.7;
    color: #636878;
}

.rounded-image {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    width: 100%;
    object-fit: cover;
    display: block;
}

.feature-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #171a2b;
    font-weight: 600;
}

.feature-list li:last-child {
    margin-bottom: 0;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23cda434' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.custom-btn {
    background: linear-gradient(90deg, #c59b27 0%, #e8c75d 100%);
    border: none;
    color: #171a2b;
    font-weight: 700;
    font-size: 12px;
    padding: 10px 24px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(205, 164, 52, 0.25);
}

.custom-btn:hover {
    background: linear-gradient(90deg, #e8c75d 0%, #c59b27 100%);
    color: #171a2b;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(205, 164, 52, 0.35);
}

.custom-btn svg {
    margin-left: 6px;
}

@media (max-width: 991.98px) {

    .solution-block-1,
    .solution-block-2 {
        padding: 70px 0;
    }

    .solution-block-1 .main-heading {
        font-size: 28px;
    }

    .solution-block-1 .description {
        padding-right: 0;
    }

    .solution-block-2 .order-1 {
        margin-bottom: 40px;
    }
}


.md-founder {
    background-color: #fff;
    padding: 100px 0;
    overflow-x: hidden;
}

.md-founder-container {
    max-width: 1180px;
}

.md-founder-eyebrow {
    color: #d2ad56;
    font-size: 10.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.md-founder-heading {
    color: #171d2b;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 0;
    letter-spacing: -0.5px;
}

.md-founder-card-row {
    margin-top: 55px;
}

.md-founder-card {
    background-color: #ffffff;
    border: 1px solid #ebedf1;
    border-radius: 4px;
    padding: 35px 25px;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.015);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: transform, box-shadow;
}

.md-founder-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.md-founder-icon-box {
    width: 46px;
    height: 46px;
    background-color: #161e2f;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.md-founder-icon-box i {
    color: #d2ad56;
    font-size: 18px;
}

.md-founder-card-title {
    color: #171d2b;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.2px;
}

.md-founder-card-text {
    color: #6a7181;
    font-size: 12.5px;
    line-height: 1.65;
    margin-bottom: 0;
    font-weight: 400;
}

section#small-solution {
    padding: 0;
}


#dmv1.greyone {
    background: #F3F4F5;
}

.privacywraps h2 {
    font-size: 2.5rem;
    font-weight: bold;
}

.privacywraps h3 {
    font-size: 1.8rem;
    font-weight: bold;
}


/* ========================================
   SHARE MODAL
   ======================================== */

#shareTriggerBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: #2D2F42;
    color: var(--white);
    border: none;
    border-radius: 16px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#shareTriggerBtn:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(174, 125, 43, 0.35);
}

.share-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.share-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.share-modal {
    background-color: var(--secondary);
    width: 100%;
    max-width: 420px;
    border-radius: 16px;
    padding: 24px 24px 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    transform: translateY(16px) scale(0.97);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.share-modal-overlay.active .share-modal {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.share-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.share-modal-header h3 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.share-modal-close {
    background: transparent;
    border: none;
    color: var(--white);
    opacity: 0.7;
    font-size: 18px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.25s ease;
}

.share-modal-close:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

/* Icon row */
.share-modal-icons {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 6px;
    margin-bottom: 22px;
    scrollbar-width: none;
}

.share-modal-icons::-webkit-scrollbar {
    display: none;
}

.share-icon-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    width: 64px;
}

.share-icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.share-icon-btn:hover .share-icon-circle {
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.share-icon-label {
    color: #C4C6CB;
    font-size: 11px;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
}

.share-icon-whatsapp .share-icon-circle {
    background-color: #25D366;
}

.share-icon-messenger .share-icon-circle {
    background: linear-gradient(135deg, #00B2FF, #006AFF);
}

.share-icon-facebook .share-icon-circle {
    background-color: #1877F2;
}

.share-icon-instagram .share-icon-circle {
    background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF, #515BD4);
}

.share-icon-x .share-icon-circle {
    background-color: var(--black);
}

/* URL row */
.share-modal-url-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 6px 6px 6px 14px;
}

.share-url-input {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: none;
    outline: none;
    color: #C4C6CB;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.share-copy-btn {
    flex-shrink: 0;
    background-color: var(--primary);
    color: var(--black);
    border: none;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.share-copy-btn:hover {
    background-color: #eebb35;
    transform: translateY(-1px);
}

.share-copy-btn.copied {
    background-color: #2a9d8f;
    color: var(--white);
}

@media (max-width: 480px) {
    .share-modal {
        padding: 20px 16px 16px;
    }

    .share-icon-btn {
        width: 58px;
    }

    .share-icon-circle {
        width: 46px;
        height: 46px;
        font-size: 19px;
    }
}
