.home-banner {

    width: 100%;
    overflow: hidden;

}


.carousel,
.carousel-inner,
.carousel-item {

    width: 100%;

}



.banner-img {

    width: 100%;
    height: 570px;

    object-fit: cover;

    display: block;

}



/* Laptop */

@media(max-width:1400px) {

    .banner-img {

        height: 520px;

    }

}



/* Small Laptop */

@media(max-width:1200px) {

    .banner-img {

        height: 480px;

    }

}



/* Tablet */

@media(max-width:992px) {

    .banner-img {

        width: 100%;
        height: 420px;

        object-fit: cover;

    }

}



/* Mobile */

@media(max-width:768px) {

    .home-banner {

        min-height: auto;

    }


    .banner-img {

        width: 100%;
        height: auto;

        max-height: 350px;

        object-fit: contain;

    }

}



/* Small Mobile */

@media(max-width:480px) {

    .banner-img {

        width: 100%;
        height: auto;

        max-height: 250px;

        object-fit: contain;

    }

}






/* ===============================slider----------------------------- */
.dropdown-menu {
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
}

.dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: #007bff;
    border-radius: 10px;
}

nav {
    padding-bottom: 0 !important;
}

.header {
    background-color: white;
}

/* Base navbar styles */
.navbar-dark .navbar-nav a.nav-link {
    color: #333333;
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;

}

/* Main dropdown fix */
.dropdown-menu {
    position: absolute !important;
    top: 85% !important;
    left: 0 !important;
    z-index: 100;
}

/* Navbar margin for desktop */
@media (min-width: 992px) {
    .navbar {
        margin: 0 120px;
    }
}

/* Mobile navbar reset margin */
@media (max-width: 991px) {
    .navbar {
        margin: 0;
    }
}

/* Dropdown styling */
.dropdown-menu {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    border: none;
    border-radius: 0;
    padding: 0.7em;
    background: #fff;
    z-index: 9999;
}

/* Dropdown inner UL */
.dropdown-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Dropdown item styling */
.dropdown-menu li .dropdown-item {
    color: gray;
    font-size: 1em;
    padding: 0.5em 1em;
}

.dropdown-menu li .dropdown-item:hover {
    background-color: #f1f1f1;
}

/* First item in dropdown (heading style) */
.dropdown-menu li:first-child a {
    font-weight: bold;
    font-size: 1.2em;
    text-transform: uppercase;
    color: #516beb;
}

.dropdown-menu li:first-child a:hover {
    background-color: #f1f1f1;
}

.dropdown-menu .row ul {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    /* space between boxes */
    list-style: none;
    /* remove bullets */
    padding: 0;
    margin: 0;
}

.dropdown-menu .row ul li {
    flex: 1 1 180px;
    /* width control */
}

.white-box {
    height: 55px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 5px 10px;
    display: inline-block;

    transition: transform 0.2s ease, box-shadow 0.2s ease;

}

.white-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.product_ul {
    display: flex;
    flex-wrap: wrap;
    /* allows wrapping on small screens */
    gap: 15px;
    /* <-- this creates spacing between li items */
    list-style: none;
    padding: 10px;
    margin: 0;
    justify-content: center;
    /* optional: center items in dropdown */
}

.product_ul li {
    flex: 1 1 auto;
}

.nav-item .dropdown-menu {
    margin-top: 8.5px !important;
    /* dropdown header ke niche thoda gap */
}

/* Desktop dropdown hover */
@media (min-width: 992px) {
    .nav-item.dropdown {
        position: static;
    }

    .nav-item.dropdown .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        display: none;
        flex-wrap: wrap;
    }

    .nav-item.dropdown:hover>.dropdown-menu {
        display: flex;
    }
}

/* Mobile dropdown click toggle */
@media (max-width: 991px) {

    .nav-item.dropdown .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 2.5%;
        width: 100%;
        /* display: none !important; */
        max-height: 70vh;
        overflow-y: auto;
        overflow-x: auto;
        border: none;
        border-radius: 8px;
        background-color: #fff;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
        word-wrap: break-word;
    }

    .dropdown-menu {
        display: none !important;
    }

    .dropdown-menu.show {
        display: block !important;
    }

    .navbar-toggler-icon {
        filter: invert(1);
    }
}

li::marker {
    color: #0587c8;
    /* This will color only the bullet */
    font-size: 1.2em;
    /* optional, to make bullet bigger */
}

.scroll-top {
    background: linear-gradient(135deg, #0B5ED7, #198754);
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}


.login-selector {
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
    padding: 25px 10px;
    margin-bottom: 15px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.login-selector.active {
    border-color: #516beb;
    background-color: #eef3ff;
}

.login-selector:hover {
    background: #f0f4ff;
}

.app-card {
    background: #fff;
    border-radius: 8px;
    padding: 10px 12px;
    margin: 6px;
    text-align: center;
    font-size: 14px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    cursor: pointer;
}

.app-card:hover {
    transform: scale(1.05);
}

.divider {
    border-left: 1px solid #ddd;
    height: 100%;
}

.fade-panel {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.fade-panel.hide {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    position: absolute;
}

@media (max-width: 991px) {
    .divider {
        display: none;
    }
}

/* Floating Contact Button Wrapper */
.floating-contact {
    position: fixed;
    top: 250px;
    /* Pehle 120px tha */
    right: 5px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Circle Buttons */
.floating-contact a {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 26px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
    transition: all .3s ease;
}

/* Hide Text */
.floating-contact a span {
    display: none;
}

/* Call */
.call-btn {
    background: linear-gradient(135deg, #0B5ED7, #198754);
}

/* WhatsApp */
.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

/* Hover */
.floating-contact a:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(0, 0, 0, .35);
}

/* Mobile */
@media (max-width:768px) {
    .floating-contact {
        top: auto;
        bottom: 20px;
        right: 15px;
    }

    .floating-contact a {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }
}

.join-banner {
    position: relative;
    min-height: 450px;
}

.banner-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(11, 94, 215, .70),
            rgba(25, 135, 84, .60));
    z-index: 2;
}

.join-banner .container {
    position: relative;
    z-index: 3;
    height: 450px;
}

.banner-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.banner-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.8;
}

/* Bootstrap responsive */
@media (max-width:991px) {

    .join-banner,
    .join-banner .container {
        height: 380px;
    }

}

@media (max-width:768px) {

    .join-banner,
    .join-banner .container {
        height: 300px;
    }

    .banner-subtitle {
        line-height: 1.6;
        padding: 0 15px;
    }

}

@media (max-width:576px) {

    .join-banner,
    .join-banner .container {
        height: 250px;
    }

}


========================how to join section======================================.career-card {

    background: #ffffff;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

}


.career-card label {

    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;

}


.custom-input {

    height: 52px;
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 12px 18px;
    transition: .3s;

}


textarea.custom-input {

    height: auto;

}


.custom-input:focus {

    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, .12);

}



.apply-btn {

    background: linear-gradient(135deg, #0d6efd, #0047b3);
    color: white;
    border: none;
    padding: 15px 45px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: .3px;
    transition: .3s;
    box-shadow: 0 10px 25px rgba(13, 110, 253, .3);

}


.apply-btn span {

    margin-left: 10px;
    transition: .3s;

}



.apply-btn:hover {

    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(13, 110, 253, .4);

}


.apply-btn:hover span {

    margin-left: 15px;

}

/* =======================================how to join end section=============================== */
.career-card {

    background: #ffffff;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

}


.career-card label {

    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;

}


.custom-input {

    height: 52px;
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 12px 18px;
    transition: .3s;

}


textarea.custom-input {

    height: auto;

}


.custom-input:focus {

    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, .12);

}



.apply-btn {

    background: linear-gradient(135deg, #0d6efd, #0047b3);
    color: white;
    border: none;
    padding: 15px 45px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: .3px;
    transition: .3s;
    box-shadow: 0 10px 25px rgba(13, 110, 253, .3);

}


.apply-btn span {

    margin-left: 10px;
    transition: .3s;

}



.apply-btn:hover {

    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(13, 110, 253, .4);

}


.apply-btn:hover span {

    margin-left: 15px;

}

/* ===================================job search================================== */


.job-hero {

    background: linear-gradient(135deg, #0dfd94, #003c9e);
    padding: 80px 0;
    color: #fff;

}


.job-hero h1 {

    font-size: 45px;
    font-weight: 700;

}



.search-area {

    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #eee;

}



.job-box {

    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    height: 100%;
    transition: .3s;

}


.job-box:hover {

    border-color: #0d6efd;
    transform: translateY(-5px);

}



.job-box h4 {

    color: #0d6efd;
    font-weight: 700;

}



.job-btn {

    display: inline-block;
    background: #0d6efd;
    color: #fff;
    padding: 10px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;

}


.job-btn:hover {

    background: #003c9e;
    color: #fff;

}



.benefit-box {

    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 12px;
    border: 1px solid #eee;

}


.benefit-box i {

    font-size: 35px;
    color: #0d6efd;

}


/* ===================================css================ */
/* Common Button */
.custom-carousel-btn {
    width: 55px;
    height: 55px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.45);
    border-radius: 50%;
    opacity: 1;
    transition: all .3s ease;
}

/* Left */
.carousel-control-prev {
    left: 25px;
}

/* Right */
.carousel-control-next {
    right: 100px;
}

/* Hover Effect */
.custom-carousel-btn:hover {
    background: #0d6efd;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 10px 25px rgba(13, 110, 253, .35);
}

/* Arrow */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 22px;
    height: 22px;
    background-size: 100% 100%;
}

/* Mobile */
@media(max-width:768px) {
    .custom-carousel-btn {
        width: 45px;
        height: 45px;
    }

    .carousel-control-prev {
        left: 12px;
    }

    .carousel-control-next {
        right: 12px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 18px;
        height: 18px;
    }

}

====================================================
/* ==============client csss icon Clientele ================  */

.text-center {
    text-align: center;
}

.long-border-left,
.long-border-right {
    display: inline-block;
    position: relative;
    padding: 0 15px;
}

.long-border-left::before,
.long-border-right::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 60px;
    height: 2px;
    background-color: #000;
    /* Change color if needed */
}

.long-border-left::before {
    left: -70px;
    transform: translateY(-50%);
}

.long-border-right::after {
    right: -70px;
    transform: translateY(-50%);
}

.about-overview {
    position: relative;
    width: 100%;
    min-height: 75vh;
    background-color: #fff;
    text-align: center;
    padding-top: 20px;
    /* top gap for heading */
    overflow: hidden;
}

/* illustration image below text */
.about-overview::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 100%;
    height: 450px;
    /* reduced height to pull image closer */
    background-image: url('https://guptaconsultants.in/assets/img/about-us-banner1a.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
    z-index: 0;
}

/* keep text above image */
.about-overview .container {
    position: relative;
    z-index: 1;
}

/* heading style */
.long-border-left,
.long-border-right {
    display: inline-block;
    position: relative;
    padding: 0 15px;
}

.long-border-left::before,
.long-border-right::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 50px;
    height: 2px;
    background-color: #003366;
    transform: translateY(-50%);
}

.long-border-left::before {
    left: -60px;
}

.long-border-right::after {
    right: -60px;
}

@media (max-width: 400px) {
    .about-overview {
        min-height: 300px;
    }
}

.content-intro p {
    max-width: 700px;
    margin: 20px auto 0;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}

.journey-section {
    background-color: #f5f5f5;
}

.journey-image {
    border-radius: 10px;
    max-width: 100%;
    height: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.journey-title {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    position: relative;
}

.journey-section p {
    color: #333;
    line-height: 1.8;
    text-align: justify;
}

@media (max-width: 991px) {
    .journey-title {
        text-align: center;
    }

    .journey-section p {
        text-align: justify;
    }
}

.vision-mission {
    background-color: #f8f9fb;
}

.vm-card {
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.white-card {
    background-color: #fff;
}

.blue-card {
    background-color: #14529d;
}

.vm-icon {
    width: 90px;
    height: auto;
}

@media (max-width: 991px) {
    .vision-mission .row {
        row-gap: 25px;
    }

    .vm-card {
        text-align: center;
    }
}

.certifications-section {
    background-color: #f8f9fb;
}

.section-title {
    position: relative;
    font-weight: 700;
    font-size: 1.8rem;
    color: #0b2e52;
}

.section-title::before,
.section-title::after {
    content: "";
    display: inline-block;
    width: 60px;
    height: 2px;
    background-color: #0b2e52;
    margin: 0 12px;
    vertical-align: middle;
}

.certificate-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.certificate-card:hover {
    transform: translateY(-5px);
}

.certificate-text {
    background-color: #e8f5ff;
    border-radius: 10px;
    padding: 40px 30px;
    font-size: 0.95rem;
    color: #333;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .certificate-text {
        text-align: center;
        margin-top: 10px;
    }
}

.certificate-card img {
    max-height: 370px;
}

.slider-container {
    overflow: hidden;
    width: 100%;
    /* background: #e9edf0; */
    margin-bottom: 30px;
    position: relative;
    border-radius: 8px;
}

.slider-track {
    display: flex;
    animation: scroll 20s linear infinite;
}

.slider-track.reverse {
    animation: scrollReverse 20s linear infinite;
}

.slider-track:hover {
    animation-play-state: paused;
}

.slider-track img {
    width: 700px;
    /* default size */
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    cursor: pointer;
    margin-right: 20px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .slider-track img {
        width: 130px;
        height: 70px;
    }
}

@media (max-width: 992px) {
    .slider-track img {
        width: 110px;
        height: 60px;
    }
}

@media (max-width: 768px) {
    .slider-track img {
        width: 90px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .slider-track img {
        width: 70px;
        height: 40px;
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollReverse {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* ===========================faq section ===================  */

.faq-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.section-title {
    position: relative;
    /* margin-bottom: 50px; */
    font-weight: 600;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #007bff;
}

.accordion-button {
    font-weight: 500;
    padding: 15px 20px;
    border: none;
    background-color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    border-radius: 5px !important;
}

.accordion-button:not(.collapsed) {
    background-color: #e7f1ff;
    color: #0c63e4;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.accordion-body {
    padding: 20px;
    background-color: white;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-image {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .faq-image {
        margin-top: 30px;
    }
}

/* =========================================blog===============  */


/* =========================================================
   BLOG DETAIL PAGE - GLOBAL
========================================================= */

.blog-detail-area {
    padding: 80px 0;
    background: #f7f9fc;
}

.blog-detail-area .container {
    max-width: 1200px;
}

.blog-detail-main {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e8edf3;
    box-shadow: 0 10px 35px rgba(18, 38, 63, 0.06);
}


/* =========================================================
   BLOG DETAIL HERO
   IMAGE + PREMIUM OVERLAY
========================================================= */

.blog-detail-hero {
    position: relative;
    width: 100%;

    min-height: 470px;

    display: flex;
    align-items: center;

    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

    overflow: hidden;
    isolation: isolate;

    border-bottom: 1px solid rgba(255,255,255,.08);
}


/* =========================================================
   HERO DARK OVERLAY
========================================================= */

.blog-detail-hero::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 82% 20%,
            rgba(45,135,255,.25),
            transparent 40%
        ),
        radial-gradient(
            circle at 10% 90%,
            rgba(0,194,255,.13),
            transparent 35%
        ),
        linear-gradient(
            120deg,
            rgba(4,20,38,.90) 0%,
            rgba(6,37,64,.78) 45%,
            rgba(8,58,94,.68) 75%,
            rgba(5,30,52,.82) 100%
        );

    pointer-events: none;

    z-index: 0;
}


/* =========================================================
   TOP BLUE ACCENT
========================================================= */

.blog-detail-hero::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 4px;

    background: linear-gradient(
        90deg,
        #0d6efd,
        #38b6ff,
        #0d6efd
    );

    z-index: 5;
}


/* =========================================================
   HERO CONTAINER
========================================================= */

.blog-detail-hero .container {
    position: relative;

    z-index: 3;
}


/* =========================================================
   HERO DOT PATTERN
========================================================= */

.blog-detail-hero .container::after {
    content: "";

    position: absolute;

    width: 260px;
    height: 180px;

    right: 0;
    bottom: 10px;

    opacity: .20;

    background-image:
        radial-gradient(
            rgba(255,255,255,.45) 1px,
            transparent 1px
        );

    background-size: 14px 14px;

    mask-image: linear-gradient(
        to left,
        #000,
        transparent
    );

    -webkit-mask-image: linear-gradient(
        to left,
        #000,
        transparent
    );

    pointer-events: none;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.blog-detail-hero-content {
    position: relative;

    width: 100%;
    max-width: 900px;

    padding: 82px 0 70px;

    color: #fff;

    z-index: 4;
}


/* =========================================================
   HERO SIDE LINE
========================================================= */

.blog-detail-hero-content::before {
    content: "";

    position: absolute;

    left: -35px;
    top: 105px;

    width: 3px;
    height: 120px;

    border-radius: 10px;

    background: linear-gradient(
        180deg,
        transparent,
        #43a9ff,
        transparent
    );

    opacity: .75;
}


/* =========================================================
   CATEGORY
========================================================= */

.blog-detail-category {
    display: inline-flex;
    align-items: center;

    padding: 8px 15px;

    margin-bottom: 18px;

    border: 1px solid rgba(255,255,255,.18);

    border-radius: 50px;

    background: rgba(255,255,255,.08);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    color: #dceeff;

    font-size: 11px;

    line-height: 1.3;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    box-shadow:
        0 5px 20px rgba(0,0,0,.08);
}


/* =========================================================
   HERO H1
========================================================= */

.blog-detail-hero h1 {
    max-width: 880px;

    margin: 0 0 20px;

    color: #fff;

    font-size:35px;

    line-height: 1.17;

    font-weight: 800;

    letter-spacing: -.8px;

    text-shadow:
        0 3px 20px rgba(0,0,0,.18);
}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.blog-detail-hero-description {
    max-width: 780px;

    margin: 0 0 28px;

    color: rgba(255,255,255,.80);

    font-size: 16px;

    line-height: 1.8;

    font-weight: 400;
}


/* =========================================================
   HERO META
========================================================= */

.blog-detail-meta {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 22px;

    padding-top: 20px;

    border-top: 1px solid rgba(255,255,255,.14);

    color: rgba(255,255,255,.72);

    font-size: 13px;
}

.blog-detail-meta span {
    display: inline-flex;

    align-items: center;

    white-space: nowrap;
}

.blog-detail-meta i {
    margin-right: 7px;

    color: #69b5ff;

    font-size: 14px;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.blog-detail-breadcrumb {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 9px;

    margin-top: 23px;

    color: rgba(255,255,255,.45);

    font-size: 12px;
}

.blog-detail-breadcrumb a {
    color: rgba(255,255,255,.78);

    text-decoration: none;

    transition: .25s ease;
}

.blog-detail-breadcrumb a:hover {
    color: #fff;
}

.blog-detail-breadcrumb span {
    color: rgba(255,255,255,.40);
}


/* =========================================================
   FEATURED IMAGE
========================================================= */

.blog-detail-featured-image {
    width: 100%;

    height: 390px;

    overflow: hidden;

    background: #eef3f8;
}

.blog-detail-featured-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .5s ease;
}

.blog-detail-featured-image:hover img {
    transform: scale(1.025);
}


/* =========================================================
   ARTICLE CONTENT
========================================================= */

.blog-detail-content {
    padding: 48px 50px 55px;

    color: #4b5563;
}

.blog-detail-content p {
    margin: 0 0 20px;

    color: #4f5b6b;

    font-size: 16px;

    line-height: 1.85;
}

.blog-detail-content .article-intro {
    margin-bottom: 32px;

    padding-left: 20px;

    border-left: 4px solid #0d6efd;

    color: #26384d;

    font-size: 17px;

    line-height: 1.85;

    font-weight: 500;
}


/* =========================================================
   ARTICLE HEADINGS
========================================================= */

.blog-detail-content h2 {
    position: relative;

    margin: 45px 0 18px;

    color: #15283e;

    font-size: 29px;

    line-height: 1.35;

    font-weight: 750;
}

.blog-detail-content h2::after {
    content: "";

    display: block;

    width: 45px;
    height: 3px;

    margin-top: 10px;

    border-radius: 10px;

    background: #0d6efd;
}

.blog-detail-content h3 {
    margin: 30px 0 10px;

    color: #20364d;

    font-size: 20px;

    line-height: 1.4;

    font-weight: 700;
}


/* =========================================================
   ARTICLE LIST
========================================================= */

.blog-detail-content ul,
.blog-detail-content ol {
    margin: 0 0 28px;

    padding-left: 22px;
}

.blog-detail-content li {
    margin-bottom: 10px;

    padding-left: 5px;

    color: #4f5b6b;

    font-size: 16px;

    line-height: 1.7;
}

.blog-detail-content ul li::marker {
    color: #0d6efd;
}

.blog-detail-content ol li::marker {
    color: #0d6efd;

    font-weight: 700;
}


/* =========================================================
   INFO BOX
========================================================= */

.blog-info-box {
    margin: 30px 0;

    padding: 22px 25px;

    border-left: 4px solid #0d6efd;

    border-radius: 10px;

    background: #f2f7ff;
}

.blog-info-box strong {
    display: block;

    margin-bottom: 8px;

    color: #0b5ed7;

    font-size: 15px;
}

.blog-info-box p {
    margin: 0;

    color: #4d5d70;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   ARTICLE TABLE
========================================================= */

.blog-detail-table {
    width: 100%;

    margin: 25px 0 35px;

    border-collapse: separate;

    border-spacing: 0;

    border: 1px solid #e2e8f0;

    border-radius: 10px;

    overflow: hidden;

    font-size: 14px;
}

.blog-detail-table th {
    padding: 15px 17px;

    background: #0b2f50;

    color: #fff;

    text-align: left;

    font-weight: 700;
}

.blog-detail-table td {
    padding: 14px 17px;

    border-top: 1px solid #e8edf3;

    color: #4b5563;

    background: #fff;

    vertical-align: top;

    line-height: 1.6;
}

.blog-detail-table td:first-child {
    width: 75px;

    color: #0d6efd;

    font-weight: 700;
}

.blog-detail-table tr:nth-child(even) td {
    background: #f8fafc;
}


/* =========================================================
   SHARE
========================================================= */

.blog-share {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-top: 45px;

    padding-top: 25px;

    border-top: 1px solid #e5eaf0;
}

.blog-share-title {
    color: #1b3047;

    font-size: 15px;

    font-weight: 700;
}

.blog-share-links {
    display: flex;

    align-items: center;

    gap: 9px;
}

.blog-share-links a {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 38px;
    height: 38px;

    border-radius: 50%;

    background: #f1f5f9;

    color: #334155;

    text-decoration: none;

    transition: all .25s ease;
}

.blog-share-links a:hover {
    background: #0d6efd;

    color: #fff;

    transform: translateY(-2px);
}


/* =========================================================
   SIDEBAR
========================================================= */

.blog-sidebar {
    position: sticky;

    top: 100px;
}

.blog-sidebar-box {
    padding: 28px;

    margin-bottom: 25px;

    background: #fff;

    border: 1px solid #e5eaf0;

    border-radius: 16px;

    box-shadow:
        0 10px 30px rgba(18,38,63,.05);
}


/* =========================================================
   SIDEBAR TITLE
========================================================= */

.blog-sidebar-title {
    position: relative;

    margin: 0 0 25px;

    padding-bottom: 13px;

    color: #172c42;

    font-size: 22px;

    font-weight: 750;

    border-bottom: 1px solid #e8edf3;
}

.blog-sidebar-title::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -1px;

    width: 45px;
    height: 3px;

    border-radius: 10px;

    background: #0d6efd;
}


/* =========================================================
   RECENT BLOG
========================================================= */

.recent-blog {
    display: flex;

    gap: 14px;

    padding: 17px 0;

    border-bottom: 1px solid #edf0f4;
}

.recent-blog:first-of-type {
    padding-top: 0;
}

.recent-blog:last-child {
    padding-bottom: 0;

    border-bottom: 0;
}

.recent-blog-image {
    flex: 0 0 88px;

    width: 88px;
    height: 70px;

    overflow: hidden;

    border-radius: 8px;

    background: #eef2f6;
}

.recent-blog-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .3s ease;
}

.recent-blog:hover .recent-blog-image img {
    transform: scale(1.06);
}

.recent-blog-content {
    min-width: 0;
}

.recent-blog-content h4 {
    margin: 0 0 7px;

    font-size: 14px;

    line-height: 1.45;

    font-weight: 700;
}

.recent-blog-content h4 a {
    color: #25384d;

    text-decoration: none;

    transition: .25s ease;
}

.recent-blog-content h4 a:hover {
    color: #0d6efd;
}

.recent-blog-content span {
    color: #8995a4;

    font-size: 11px;
}


/* =========================================================
   SIDEBAR CTA
========================================================= */

.blog-sidebar-cta {
    position: relative;

    padding: 32px 28px;

    overflow: hidden;

    border-radius: 16px;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(52,166,255,.25),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #092642,
            #0b4b78
        );

    color: #fff;

    box-shadow:
        0 12px 35px rgba(5,42,72,.16);
}

.blog-sidebar-cta::after {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    right: -70px;
    top: -70px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.12);
}

.blog-sidebar-cta h3 {
    position: relative;

    z-index: 2;

    margin: 0 0 12px;

    color: #fff;

    font-size: 22px;

    line-height: 1.35;
}

.blog-sidebar-cta p {
    position: relative;

    z-index: 2;

    margin: 0 0 22px;

    color: rgba(255,255,255,.76);

    font-size: 14px;

    line-height: 1.7;
}

.blog-sidebar-cta a {
    position: relative;

    z-index: 2;

    display: inline-flex;

    align-items: center;

    padding: 11px 18px;

    border-radius: 7px;

    background: #fff;

    color: #0b3a61;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    transition: .25s ease;
}

.blog-sidebar-cta a:hover {
    background: #eaf4ff;

    transform: translateY(-2px);
}


/* =========================================================
   MODERN BLOG CARD
   For blogs listing / related blogs
========================================================= */

.modern-blog-card {
    height: 100%;

    background: #fff;

    border-radius: 16px;

    overflow: hidden;

    border: 1px solid #e9edf3;

    transition: all .35s ease;

    display: flex;

    flex-direction: column;
}

.modern-blog-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 18px 45px rgba(25,50,80,.12);

    border-color: transparent;
}


/* =========================================================
   BLOG CARD IMAGE
========================================================= */

.blog-card-image {
    position: relative;

    height: 235px;

    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .5s ease;
}

.modern-blog-card:hover .blog-card-image img {
    transform: scale(1.07);
}


/* =========================================================
   BLOG CATEGORY
========================================================= */

.blog-category {
    position: absolute;

    top: 16px;
    left: 16px;

    background: #fff;

    color: #0d6efd;

    padding: 7px 13px;

    border-radius: 30px;

    font-size: 12px;

    font-weight: 700;

    box-shadow:
        0 5px 15px rgba(0,0,0,.10);
}


/* =========================================================
   BLOG CARD CONTENT
========================================================= */

.blog-card-content {
    padding: 25px;

    display: flex;

    flex-direction: column;

    flex: 1;
}


/* =========================================================
   BLOG META
========================================================= */

.blog-meta {
    display: flex;

    align-items: center;

    gap: 15px;

    color: #8a94a6;

    font-size: 12px;

    margin-bottom: 13px;
}

.blog-meta i {
    margin-right: 4px;
}


/* =========================================================
   BLOG CARD TITLE
========================================================= */

.blog-card-content h3 {
    font-size: 21px;

    line-height: 1.4;

    font-weight: 700;

    color: #172b4d;

    margin-bottom: 12px;
}

.blog-card-content h3 a {
    color: inherit;

    text-decoration: none;

    transition: .3s;
}

.blog-card-content h3 a:hover {
    color: #0d6efd;
}


/* =========================================================
   BLOG CARD DESCRIPTION
========================================================= */

.blog-card-content p {
    color: #6c757d;

    font-size: 14px;

    line-height: 1.75;

    margin-bottom: 20px;
}


/* =========================================================
   READ MORE
========================================================= */

.blog-read-more {
    margin-top: auto;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #0d6efd;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    transition: .3s;
}

.blog-read-more i {
    transition: .3s;
}

.blog-read-more:hover {
    color: #084298;
}

.blog-read-more:hover i {
    transform: translateX(5px);
}


/* =========================================================
   LARGE DESKTOP
   1200px+
========================================================= */

@media (min-width: 1200px) {

    .blog-detail-hero {
        min-height: 526px;

        background-position: center center;

        background-size: cover;
    }

    .blog-detail-area {
        padding: 90px 0;
    }

    .blog-detail-content {
        padding: 52px 55px 60px;
    }
}


/* =========================================================
   LAPTOP
   992px - 1199px
========================================================= */

@media (min-width: 992px) and (max-width: 1199px) {

    .blog-detail-hero {
        min-height: 360px;

        background-position: center center;

        background-size: cover;
    }

    .blog-detail-hero h1 {
        font-size: 43px;
    }

    .blog-detail-hero-content {
        padding-left: 20px;

        padding-right: 20px;
    }

    .blog-detail-content {
        padding: 42px 35px 48px;
    }

    .blog-sidebar-box {
        padding: 23px;
    }
}


/* =========================================================
   TABLET
   768px - 991px
========================================================= */

@media (min-width: 768px) and (max-width: 991px) {

    .blog-detail-hero {
        min-height: 310px;

        background-position: center center;

        background-size: cover;
    }

    .blog-detail-hero-content {
        max-width: 100%;

        padding: 65px 20px 55px;
    }

    .blog-detail-hero h1 {
        font-size: 38px;

        line-height: 1.22;
    }

    .blog-detail-hero-description {
        font-size: 15px;

        line-height: 1.75;
    }

    .blog-detail-hero-content::before {
        display: none;
    }

    .blog-detail-area {
        padding: 60px 0;
    }

    .blog-sidebar {
        position: static;

        margin-top: 5px;
    }

    .blog-detail-featured-image {
        height: 360px;
    }

    .blog-hero {
        min-height: 300px;
    }

    .blog-hero-content h1 {
        font-size: 40px;
    }

    .blogs-area {
        padding: 65px 0;
    }
}


/* =========================================================
   MOBILE
   576px - 767px
========================================================= */

@media (min-width: 576px) and (max-width: 767px) {

    .blog-detail-hero {
        min-height: 270px;

        background-position: center center;

        background-size: cover;
    }

    .blog-detail-hero-content {
        padding: 52px 20px 45px;
    }

    .blog-detail-hero-content::before {
        display: none;
    }

    .blog-detail-hero h1 {
        font-size: 30px;

        line-height: 1.27;
    }

    .blog-detail-hero-description {
        font-size: 14px;

        line-height: 1.72;
    }

    .blog-detail-meta {
        flex-direction: column;

        align-items: flex-start;

        gap: 9px;

        padding-top: 17px;

        font-size: 12px;
    }

    .blog-detail-area {
        padding: 40px 0;
    }

    .blog-detail-featured-image {
        height: 250px;
    }

    .blog-detail-content {
        padding: 30px 20px 35px;
    }

    .blog-detail-content p {
        font-size: 14px;

        line-height: 1.8;
    }

    .blog-detail-content h2 {
        font-size: 24px;
    }

    .blog-detail-table {
        display: block;

        width: 100%;

        overflow-x: auto;
    }

    .blog-sidebar {
        position: static;
    }

    .blog-card-image {
        height: 220px;
    }
}


/* =========================================================
   SMALL MOBILE
   0px - 575px
========================================================= */

@media (max-width: 575px) {

    .blog-detail-hero {
        min-height: 220px;

        background-position: center center;

        background-size: cover;
    }

    .blog-detail-hero-content {
        padding: 43px 15px 38px;
    }

    .blog-detail-hero-content::before {
        display: none;
    }

    .blog-detail-category {
        font-size: 9.5px;

        padding: 6px 10px;
    }

    .blog-detail-hero h1 {
        font-size: 27px;

        line-height: 1.29;
    }

    .blog-detail-hero-description {
        font-size: 13.5px;

        line-height: 1.7;
    }

    .blog-detail-meta {
        flex-direction: column;

        align-items: flex-start;

        gap: 9px;

        font-size: 11.5px;
    }

    .blog-detail-breadcrumb {
        font-size: 10px;

        gap: 6px;
    }

    .blog-detail-hero::after {
        background:
            radial-gradient(
                circle at 90% 10%,
                rgba(45,135,255,.28),
                transparent 35%
            ),
            linear-gradient(
                145deg,
                rgba(7,26,49,.90),
                rgba(10,49,84,.82)
            );
    }

    .blog-detail-area {
        padding: 40px 0;
    }

    .blog-detail-main {
        border-radius: 13px;
    }

    .blog-detail-featured-image {
        height: 210px;
    }

    .blog-detail-content {
        padding: 27px 17px 32px;
    }

    .blog-detail-content p {
        font-size: 14px;

        line-height: 1.8;
    }

    .blog-detail-content .article-intro {
        padding-left: 15px;

        font-size: 15px;

        line-height: 1.75;
    }

    .blog-detail-content h2 {
        margin-top: 35px;

        font-size: 22px;
    }

    .blog-detail-content h3 {
        font-size: 18px;
    }

    .blog-detail-content li {
        font-size: 14px;
    }

    .blog-detail-table {
        display: block;

        width: 100%;

        overflow-x: auto;

        white-space: normal;
    }

    .blog-detail-table th,
    .blog-detail-table td {
        min-width: 150px;

        padding: 12px 13px;

        font-size: 13px;
    }

    .blog-share {
        flex-direction: column;

        align-items: flex-start;

        margin-top: 35px;
    }

    .blog-sidebar-box {
        padding: 22px 18px;
    }

    .blog-sidebar-cta {
        padding: 27px 22px;
    }

    .recent-blog-image {
        flex: 0 0 78px;

        width: 78px;

        height: 64px;
    }

    .recent-blog-content h4 {
        font-size: 13px;
    }

    .blog-card-content {
        padding: 21px;
    }

    .blog-card-content h3 {
        font-size: 19px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
   0px - 375px
========================================================= */

@media (max-width: 375px) {

    .blog-detail-hero {
        min-height: 190px;

        background-position: center center;

        background-size: cover;
    }

    .blog-detail-hero-content {
        padding: 40px 12px 35px;
    }

    .blog-detail-hero h1 {
        font-size: 25px;
    }

    .blog-detail-hero-description {
        font-size: 13px;
    }

    .blog-detail-content {
        padding: 25px 14px 30px;
    }

    .blog-detail-content h2 {
        font-size: 21px;
    }

    .blog-detail-meta {
        font-size: 11px;
    }

    .blog-detail-breadcrumb {
        font-size: 9.5px;
    }
}


/* =========================================================
   IMAGE SAFETY
========================================================= */

.blog-detail-featured-image img,
.recent-blog-image img,
.blog-card-image img {
    max-width: 100%;
}


/* =========================================================
   LINK OUTLINE
========================================================= */

.blog-detail-content a,
.blog-sidebar a,
.modern-blog-card a {
    outline: none;
}


/* =========================================================
   PREVENT HORIZONTAL OVERFLOW
========================================================= */

.blog-detail-area,
.blog-detail-hero {
    overflow-x: hidden;
}

/*============================================ */
/* =========================================================
   BUSINESS ENQUIRY POPUP - CLEAN COMPACT DESIGN
========================================================= */

/* Modal */
#quoteModal {
    padding: 0 !important;
}

#quoteModal .modal-dialog {
    max-width: 1080px !important;
    width: 60% !important;
    margin: 25px auto !important;
}


/* Modal Content */
#quoteModal .modal-content {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;

    border: none !important;
    border-radius: 20px !important;

    overflow: hidden !important;
    background: #f1f2f2 !important;

    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.20) !important;
}


/* Section */
#quoteModal #quote {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
}


/* =========================================================
   REMOVE BOOTSTRAP EXTRA SPACE
========================================================= */

#quoteModal .container {
    max-width: 100% !important;

    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;
}

#quoteModal .row {
    margin-left: -6px !important;
    margin-right: -6px !important;
}

#quoteModal .quote-form-container {
    width: 100% !important;

    margin: 0 !important;
    padding: 25px 30px 22px !important;

    background: #f1f2f2 !important;
}

#quoteModal .quote-form-wrapper {
    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;
}


/* =========================================================
   FORM
========================================================= */

#quoteModal form {
    position: relative;

    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;
}


/* Header */
#quoteModal .form-header {
    margin: 0 0 15px !important;
    padding: 0 !important;
}

#quoteModal .form-header h4 {
    margin: 0 0 4px !important;
    padding: 0 !important;

    font-size: 22px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;

    color: #17283b !important;
}

#quoteModal .form-header p {
    margin: 0 !important;
    padding: 0 !important;

    font-size: 13px !important;
    line-height: 1.4 !important;

    color: #607080 !important;
}


/* =========================================================
   COLUMNS
========================================================= */

#quoteModal .row>[class*="col-"] {
    padding-left: 6px !important;
    padding-right: 6px !important;
}


/* =========================================================
   FORM GROUP
========================================================= */

#quoteModal .form-group {
    margin: 0 0 11px !important;
    padding: 0 !important;
}


/* =========================================================
   LABEL
========================================================= */

#quoteModal label {
    display: block !important;

    margin: 0 0 5px !important;
    padding: 0 !important;

    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;

    color: #182532 !important;
}


/* =========================================================
   INPUT / SELECT
========================================================= */

#quoteModal .form-control {
    width: 100% !important;

    height: 40px !important;
    min-height: 40px !important;

    margin: 0 !important;

    padding: 7px 11px !important;

    border: 1px solid #d7dde3 !important;
    border-radius: 6px !important;

    background: #ffffff !important;

    color: #222 !important;

    font-size: 13px !important;
    line-height: 1.3 !important;

    box-shadow: none !important;
}


/* Placeholder */
#quoteModal .form-control::placeholder {
    color: #9aa6b2 !important;
    opacity: 1 !important;
}


/* Focus */
#quoteModal .form-control:focus {
    border-color: #198754 !important;

    outline: none !important;

    box-shadow: 0 0 0 2px rgba(25, 135, 84, 0.08) !important;
}


/* =========================================================
   MESSAGE
========================================================= */

#quoteModal textarea.form-control {
    height: 75px !important;
    min-height: 75px !important;

    resize: none !important;

    padding-top: 9px !important;
}


/* =========================================================
   ERROR
========================================================= */

#quoteModal .error-message {
    margin: 0 !important;
    padding: 0 !important;

    font-size: 12px !important;
}


/* =========================================================
   SUBMIT
========================================================= */

#quoteModal .text-center {
    margin: 5px 0 0 !important;
    padding: 0 !important;
}

#quoteModal #submitBtn {
    min-width: 115px !important;

    height: 40px !important;

    margin: 0 !important;
    padding: 7px 24px !important;

    border: none !important;
    border-radius: 6px !important;

    background: #198754 !important;
    color: #ffffff !important;

    font-size: 13px !important;
    font-weight: 600 !important;

    box-shadow: none !important;
}

#quoteModal #submitBtn:hover {
    background: #157347 !important;
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

#quoteModal .btn-close {
    position: absolute !important;

    top: 16px !important;
    right: 18px !important;

    z-index: 20 !important;

    width: 28px !important;
    height: 28px !important;

    margin: 0 !important;

    padding: 7px !important;

    border-radius: 50% !important;

    background-color: #e7e9eb !important;

    opacity: 1 !important;
}


/* =========================================================
   DESKTOP - 4 COLUMNS
========================================================= */

@media (min-width: 768px) {

    #quoteModal .col-md-3 {
        width: 25% !important;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    #quoteModal .modal-dialog {
        width: 95% !important;
        max-width: 900px !important;
    }

    #quoteModal .quote-form-container {
        padding: 23px 24px 20px !important;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    #quoteModal .modal-dialog {
        width: calc(100% - 20px) !important;
        margin: 15px auto !important;
    }

    #quoteModal .modal-content {
        border-radius: 16px !important;
    }

    #quoteModal .quote-form-container {
        padding: 21px 16px 18px !important;
    }

    #quoteModal .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    #quoteModal .row>[class*="col-"] {
        width: 100% !important;

        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    #quoteModal .form-header {
        padding-right: 35px !important;
        margin-bottom: 14px !important;
    }

    #quoteModal .form-header h4 {
        font-size: 19px !important;
    }

    #quoteModal .form-header p {
        font-size: 12px !important;
    }

    #quoteModal .form-control {
        height: 40px !important;
    }

    #quoteModal textarea.form-control {
        height: 75px !important;
    }

    #quoteModal #submitBtn {
        width: 100% !important;
    }

}

