@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

.section,
.bg-cover,
.optech-section-padding,
.cta-bg3 {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.wishlist_icon svg path {
    stroke: #000;
    /* default outline color */
    fill: transparent;
    transition: all 0.3s ease;
}

.wishlist_icon:hover svg path {
    fill: #ff4d4d;
    /* hover fill color */
    stroke: #ff4d4d;
}

.wishlist_icon.active svg path {
    fill: #ff4d4d;
    /* active state fill color */
    stroke: #ff4d4d;
}

.optech-hero-slider-item::before {
    content: "";
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    position: absolute;
    background-size: cover;
    background-image: url('../img/hero/overlay.png') !important;
    opacity: 0.6 !important;
}

.optech-service-contact {
    background-image: url('../img/service/bg.png');
}

.optech-footer-cta-wrap {
    background-image: url('../img/cta/cta.png');
}

.optech-counter-wrap {
    background-image: url('../img/v2/counter-bg.png');
}

.optech-hero-section {
    background-image: url('../img/hero/bg1.png');
}

.optech-service-contact {
    background-image: url('../img/service/bg.png');
}

.custom_image {
    background-image: url('../img/cta/cta-bg2.png');
}

.optech-hero-section4 {
    background-image: url('../img/hero/bg3.png');
}

.tech-agency-img {
    background-image: url('../img/hero/bg2.png');
}

.optech-footer-cta-wrap {
    background-image: url('../img/cta/cta-bg2.png');
}

.optech-hero-section8 {
    background-image: url('../img/hero/bg4.png');
}

.custom-image-two {
    background-image: url('../img/cta/cta-bg2.png');
    opacity: 0.8;
}

.custom-image-two-home {
    background-image: url('../img/cta/cta-bg2.png') !important;
    opacity: 0.8;
}

.cookie_consent_modal {
    width: 350px;
    padding: 30px;
    background-color: var(--white-color);
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    border: 1px solid #e4e4e4;
    box-shadow: 2px 3px 4px 0 rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.cookie_consent_modal .btn-close {
    position: absolute;
    top: 15px;
    right: 15px;
    opacity: 1;
}

.cookie_consent_modal h5 {
    font-size: 22px;
    font-weight: 500;
}

.cookie_consent_modal p {
    font-size: 16px;
    line-height: 27px;
    margin-top: 10px;
}

.cookie_consent_modal .thm-btn-two {
    margin-top: 20px;
}

.shop_sidebar_item_box_main.fst {
    min-height: 240px !important;
    height: 0px !important;
}

.dashbord_sidebar {
    border-radius: 0px !important;
    border-right: 1px solid #e3e3ec;
}

.dashbord_bg {
    background: #fff !important;
    box-shadow: 0 12px 40px 4px rgba(10, 22, 94, 0.0784313725) !important;
}

.dashbord_item {
    padding: 0 !important;
    flex-direction: row !important;
    text-align: start !important;
}

.dashbord_item_icon {
    width: 54px !important;
    height: 54px !important;
}

.dashbord_item_text .d-item-label {
    font-size: 14px !important;
    font-weight: 400 !important;
}

.dashbord_table_main .table thead tr th {
    background: #EEF1FF !important;
    white-space: nowrap !important;
}

.d_review_box_head {
    background: #EEF1FF !important;
}

.dashbord_table_main .table tbody tr td {
    min-width: 150px !important;
}

/* =========================
   NAV BASE
========================= */

.has-megamenu {
    position: static;
}

.menu-block {
    position: relative;
}

/* =========================
   MEGA MENU
========================= */

.mega-menu {
    position: absolute;
    right: -180px;
    top: 100%;
    width: 1240px;
    max-width: 1240px;
    background: #f7f7f7;
    padding: 40px 0;

    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all .35s ease;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 999;
}

.has-megamenu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* =========================
   CONTAINER
========================= */

.mega-container {
    padding: 0 40px;
}

/* =========================
   GRID
========================= */

.mega-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* =========================
   SECTION ANIMATION
========================= */

.mega-section {
    opacity: 0;
    transform: translateY(15px);
    transition: all .4s ease;
}

.has-megamenu:hover .mega-section {
    opacity: 1;
    transform: translateY(0);
}

/* stagger */
.has-megamenu:hover .mega-section:nth-child(1) {
    transition-delay: .05s
}

.has-megamenu:hover .mega-section:nth-child(2) {
    transition-delay: .1s
}

.has-megamenu:hover .mega-section:nth-child(3) {
    transition-delay: .15s
}

.has-megamenu:hover .mega-section:nth-child(4) {
    transition-delay: .2s
}

.has-megamenu:hover .mega-section:nth-child(5) {
    transition-delay: .25s
}

.has-megamenu:hover .mega-section:nth-child(6) {
    transition-delay: .3s
}

.has-megamenu:hover .mega-section:nth-child(7) {
    transition-delay: .35s
}

.has-megamenu:hover .mega-section:nth-child(8) {
    transition-delay: .4s
}

/* =========================
   TITLES
========================= */

.mega-section h6 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .5px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

/* =========================
   🎨 COLORS (GLOBAL nth-child)
========================= */

.mega-grid .mega-section:nth-child(1) h6 {
    color: #0f7a7a;
    border-color: #0f7a7a;
}

.mega-grid .mega-section:nth-child(2) h6 {
    color: #e05a5a;
    border-color: #e05a5a;
}

.mega-grid .mega-section:nth-child(3) h6 {
    color: #4a6c8a;
    border-color: #4a6c8a;
}

.mega-grid .mega-section:nth-child(4) h6,
.mega-grid .mega-section:nth-child(5) h6 {
    color: #6b6b9b;
    border-color: #6b6b9b;
}

.mega-grid .mega-section:nth-child(6) h6,
.mega-grid .mega-section:nth-child(7) h6 {
    color: #ff7a45;
    border-color: #ff7a45;
}

.mega-grid .mega-section:nth-child(8) h6 {
    color: #8c6b7a;
    border-color: #8c6b7a;
}

/* =========================
   LIST
========================= */

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

.mega-section li {
    margin: 6px 0;
}

/* =========================
   LINKS
========================= */

.mega-section a {
    text-decoration: none;
    color: #444;
    font-size: 14px;
    display: block;
    transition: all .2s ease;
}

.mega-section a:hover {
    color: #000;
    transform: translateX(6px);
}

/* =========================
   FOOTER
========================= */

.mega-footer {
    border-top: 1px solid #ddd;
    margin-top: 30px;
    padding-top: 15px;

    display: flex;
    gap: 40px;
    flex-wrap: wrap;

    opacity: 0;
    transform: translateY(10px);
    transition: all .4s ease .2s;
}

.mega-footer a {
    text-decoration: none;
    color: #444;
    font-size: 14px;
    display: block;
    transition: all .2s ease;
}

.mega-footer a:hover {
    color: #000;
    transform: translateX(6px);
}

.has-megamenu:hover .mega-footer {
    opacity: 1;
    transform: translateY(0);
}

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

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

@media (max-width: 600px) {
    .mega-grid {
        grid-template-columns: 1fr;
    }

    .mega-menu {
        right: 0;
        width: 100%;
    }
}

@media (max-width: 991px) {
    .site-header .menu-block .mega-menu {
        visibility: visible;
        opacity: 1;
        position: absolute;
        box-shadow: none;
        margin: 0;
        padding: 15px 0;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding-top: 50px;
        max-width: none;
        min-width: auto;
        display: none;
        transform: translateX(0%);
        overflow-y: auto;
        overflow-x: hidden;
        background: #ffffff;
    }

    .site-header .menu-block .mega-menu.active {
        display: block;
    }

    .site-header .menu-block .mega-menu .mega-container {
        padding: 18px 20px 28px;
    }

    .site-header .menu-block .mega-menu .mega-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .site-header .menu-block .mega-menu .mega-section {
        opacity: 1;
        transform: none;
    }

    .site-header .menu-block .mega-menu .mega-footer {
        opacity: 1;
        transform: none;
        margin-top: 18px;
    }
}




.apps-grid {
    max-width: 1272px;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    align-items: center;
    gap: 20px;
    margin: 0 auto;
    justify-content: center;
}

.app-item {
    text-align: center;
    text-decoration: none;
    width: 120px;
    height: inherit;
    background: #ffffff;
    margin: 0 auto;
    padding: 10%;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.app-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    /* background: #ffffff; */
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1); */
    transition: all .25s ease;
}

.app-icon img {
    width: 100% !important;
    height: 100% !important;
}

.app-item span {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #252159;
}

/* hover */

.app-item:hover .app-icon {
    transform: translateY(-5px);
    /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); */
}

/* responsive */

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

@media (max-width:992px) {
    .apps-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width:768px) {
    .apps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width:500px) {
    .apps-grid {
        grid-template-columns: repeat(3, 1fr);
    }


}

.optech-section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}


.optech-header-top {
    background-color: #252159 !important;
    color: #ffffff !important;
}

.optech-header-info.dark-color ul li {
    color: #ffffff !important;
}

.optech-header-info.dark-color ul li a {
    color: #ffffff !important;
}

/* make all text inside white */
.optech-header-top * {
    color: #ffffff !important;
}


.brand-logo,
.default-logo,
.responsive-logo {
    max-width: 250px !important;

}


@media (max-width:500px) {


    .brand-logo,
    .default-logo,
    .responsive-logo {
        max-width: 180px !important;

    }
}


.footer-section {
    background: #0c7a39;
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
}

.footer-section a:hover {
    color: #f89a33;
}

.footer-section h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-bottom {
    font-size: 13px;
    background-color: #f89a33 !important;
    height: 35px !important;
}

.dark-bg {
    background-color: #0c0a20 !important;
}


.retail {
    color: #00a09d !important;
}

.food {
    color: #3b82f6 !important;
}

.realestate {
    color: #ef4444 !important;
}

.consulting {
    color: #6366f1 !important;
}

.manufacturing {
    color: #64748b !important;
}

.health {
    color: #f97316 !important;
}

.trades {
    color: #ea580c !important;
}

.others {
    color: #6b7280 !important;
}

.optech-header-bottom {
    height: 80px !important;
}

.optech-header-bottom .container {
    height: 100% !important;
    box-shadow: none !important;
    border: none !important;
}

.optech-header-bottom .container .navbar {
    height: 100% !important;
}

.optech-header-bottom .container .navbar .menu-block-wrapper {
    height: 100% !important;
}

.optech-header-bottom .container .navbar .menu-block {
    height: 100% !important;
}

.optech-header-bottom .container .navbar .menu-block .site-menu-main {
    height: 100% !important;
}

/* body {
      font-family: "Caveat", cursive !important;
  font-optical-sizing: auto;
}
h1, h2, h3, h4, h5, h6, p, span, a, li, div {
      font-family: "Caveat", cursive !important;
  font-optical-sizing: auto;
} */
/* font family ubuntu to all */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
li,
div {
    font-family: "Ubuntu", sans-serif !important;
    font-optical-sizing: auto;
}

.fontCaveat {
    font-family: "Caveat", cursive !important;
    font-optical-sizing: auto;
}


.x_wd_yellow_highlight_bold_05 {
    background-image: url(../img/icon/yellow_highlight_bold_05.svg);
    background-position: center 60%;
    background-repeat: no-repeat;
    background-size: contain;
    white-space: nowrap;
}

.x_wd_blue_highlight_01 {
    background-image: url(../img/icon/blue_highlight_01.svg);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: contain;
    white-space: nowrap;
}

.font88 {
    font-size: 88px !important;
}

.font80 {
    font-size: 80px !important;
}

.font64 {
    font-size: 64px !important;
}

.font60 {
    font-size: 60px !important;
}

.font48 {
    font-size: 48px !important;
}

.font32 {
    font-size: 32px !important;
}


.optech-header-top {
    padding: 5px 0 !important;
    padding-bottom: 20px !important;
}

.optech-hero-section6 {
    margin-top: 120px !important;
}

a.optech-default-btn.optech-header-btn.pt-2.pb-2 {
    padding: 11px 24.8px !important;
    border-radius: 3px !important;
}

a.optech-default-btn.optech-header-btn {

    border-radius: 3px !important;
}

a.optech-default-btn {

    border-radius: 3px !important;
}

button#optech-main-form-btn {

    border-radius: 3px !important;
}

header.optech-header-section.sticky-menu {
    padding-top: 0px;
}

.ml-5px {
    margin-left: 5px !important;
}

.schpt-100 {
    padding: 100px 0 !important;
}

.schpt-90 {
    padding: 90px 0 !important;
}

.schpt-80 {
    padding: 80px 0 !important;
}

.schpt-60 {
    padding: 60px 0 !important;
}

.schpt-40 {
    padding: 40px 0 !important;
}

.schpt-60 {
    padding: 60px 0 !important;
}

.optech-hero-content.center.sm {
    max-width: 100% !important;
}

.optech-hero-content h1 {
    font-size: 2.5rem !important;
}

.optech-extra-mt {
    margin-top: 25px !important;
}

.optech-default-btn.optech-header-btn.optech-sectionnew-btn {
    background-color: #252159 !important;
}

#app_section_btns {
    display: flex !important;
    justify-content: center !important;
    gap: 20px !important;
}

#optech-default-btn,
#optech-hero-form-btn,
#optech-team-form-btn,
.optech-default-btn,
.optech-product-btn,
.optech-shop-btn,
button#optech-main-form-btn,
button#optech-subscription-btn {
    padding: 16px 27.3px !important;
}


.newsletter-form {
    display: flex;
    align-items: center;
    background: #e5e5e5;
    border-radius: 40px;
    padding: 6px 20px;
    width: 420px;
}

.newsletter-form input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 14px 20px;
    outline: none;
    box-shadow: none;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: none;
    border: none;
}

.newsletter-form input[type="email"] {
    outline: none;
    box-shadow: none;
    border: none !important;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    box-shadow: none;
    border: none !important;
}

.newsletter-btn {
    background: #f89a33 !important;
    color: white;
    border: 2px solid #fff;
    border-radius: 40px;
    padding: 10px 25px;
    font-weight: 500;
    cursor: pointer;
}


.optech-hero-slider.slick-initialized.slick-slider {
    margin-top: 0px;
}

.optech-hero-slider-item {
    padding: 70px 0 !important;
    padding-top: 150px !important;
}

.app-details-page-slider .optech-hero-slider-item {
    padding: 20px 0 !important;
}



.fixed-social {
    position: fixed;
    right: 0;
    top: 50.5%;
    transform: translateY(-50%);
    z-index: 999;
}

.fixed-social ul {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.fixed-social ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #252159;
    color: #ffffff;
    margin: 1px 0;
    border-radius: 5px 0 0 5px;
}

.fixed-social ul li a:hover {
    width: 42px;
    background-color: #f89a33;
}

.fixed-links {
    position: fixed;
    left: 0;
    top: 51%;
    transform: translateY(-50%);
    z-index: 999;
}

.fixed-links ul {
    display: flex;
    flex-direction: column;
}

.fixed-links ul li a {
    color: #ffffff;
    background-color: #252159;
    display: inline-flex;
    height: 40px;
    align-items: center;
    width: 40px;
    position: relative;
    border-radius: 0 5px 5px 0;
    margin: 1px 0;
}

.fixed-links ul li:hover a {
    border-radius: 0;
    background-color: #f89a33;
}

.fixed-links ul li a i {
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
}

.fixed-links ul li a span {
    white-space: nowrap;
    visibility: hidden;
    opacity: 0;
    transform: scaleX(0);
    transition: all 0.3s ease-out;
    transform-origin: left;
    display: inline-flex;
    padding-right: 10px;
    position: absolute;
    left: 40px;
    background-color: #f89a33;
    height: 40px;
    align-items: center;
    border-radius: 0 5px 5px 0;
}

.fixed-links ul li:hover a span {
    visibility: visible;
    opacity: 1;
    transform: scaleX(1);
}

.optech-header-icon a {
    cursor: pointer;

}

.optech-header-icon a i::before {
    font-size: 2rem !important;
    color: #252159 !important;
}

.optech-header-icon a i::after {
    font-size: 2rem !important;
    color: #252159 !important;
}

.fnt2rem {
    font-size: 2rem !important;
}

.absolute-top-right {
    position: absolute !important;
    top: 0px;
    right: 0px;
}

.absolute-top-right a {
    color: #252159 !important;
}



.sticky {
    /* animation: 300ms ease-in-out 0s 1 normal none running fadeInDown; */
    left: 0px;
    position: fixed !important;
    top: 0px;
    width: 100%;
    z-index: 999;
    box-shadow: 0px 0px 15px rgb(0 0 0 / 12%);
    background: var(--bs-white) !important;
}

.sticky .bottom-wrapper {
    box-shadow: none;
    padding: 0;
    transition: padding 0.3s ease-in;
}


.header .social a:hover span {
    transform: translateY(-34px);
}

.header .bottom {
    position: relative;
    z-index: 999;
}

.header .bottom::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 50%;
    width: 100%;
    z-index: -1;
    background-color: var(--bs-light);
    pointer-events: none;
}

.header .bottom.sticky::before {
    background-color: var(--bs-white)
}

.optech-header-bottom {
    max-width: 1272px !important;
    margin: 0 auto !important;
    border-radius: 10px !important;
    padding: 0px 20px !important;

}

.optech-header-section {
    background-color: transparent !important;
}

.optech-header-section.sticky-menu {
    background-color: #ffffff !important;
}

.optech-header-section.sticky-menu .optech-header-bottom {
    width: 100% !important;
    margin: 0 auto !important;
    border-radius: 0px !important;
    padding: 0px !important;
}

.stickycolorchange {
    width: 100%;
    z-index: 9999;
    background: #ffffff;
}


/* Floating container */
.support-btn {
    position: fixed;
    left: 30px;
    bottom: 50px;
    z-index: 9999;
}

/* Messenger button */
.support-btn .messenger {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #0385FF;
    color: #fff;
    font-size: 24px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 7px 14px rgba(0, 69, 255, .12);
    animation: pulse 2s infinite;
}

/* WhatsApp button */
.support-btn .btn-whatsapp {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    font-size: 22px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Chat popup */
.support-btn .chat-pop {
    position: fixed;
    bottom: 120px;
    right: 30px;
    background: #fff;
    width: 320px;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: none;
}

/* Close button */
.support-btn button.close-btn {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ff4d4d;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Text */
.support-btn .chat-pop time {
    font-size: 14px;
    color: #555;
}

/* Pulse animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(3, 133, 255, .5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(3, 133, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(3, 133, 255, 0);
    }
}



.apps-bg-curve {
    position: relative;
    overflow: hidden;
}

/* Top curved shape */
.apps-bg-curve::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 100%;
    background: #e9eaec;
    border-radius: 40% 40% 0 0;
    z-index: 0;
}

/* Keep content above curve */
.apps-bg-curve .container {
    position: relative;
    z-index: 2;
}

.optech-header-bottom {
    margin-top: -14px !important;
}


.optech-header-icon {
    width: 40px;
    height: 40px;
}

.optech-header-icon a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fs-24.fa-user::before {
    font-size: 1.5rem !important;
}

.btn {
    color: #fff !important;
    background-color: var(--accent-bg) !important;
    border-color: var(--accent-bg) !important;
}

.btn:hover {
    color: var(--accent-hover-bg) !important;
    background-color: var(--accent-hover-bg) !important;
    border-color: var(--accent-hover-bg) !important;
}

.white-ass-bg {
    background-color: #ecf2f6 !important;
    color: #252159 !important;
}




.footer-section a {
    color: #252159 !important;
    text-decoration: none;
    font-size: 14px;
}

.footer-section a:hover {
    color: #312c7b !important;
}

.footer-section h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #252159 !important;
}

.optech-breadcrumb {
    padding: 150px 0 50px !important;
}

.optech-breadcrumb h1 {
    font-size: 45px;
}

.section.optech-section-padding {
    padding: 50px 0;
}

.optech-header-info ul li {
    padding: 0 10px !important;
    margin-right: 20px !important;
}

.optech-header-info {
    width: 100% !important;
}

.optech-header-info ul {
    width: 100% !important;
}

.optech-header-info ul li i {
    /* font-size: 18px; */
    margin-right: 5px !important;
}



.navbar {
    --mdb-navbar-box-shadow: none !important;
    box-shadow: none !important;
}



@media (max-width: 991px) {
    .optech-header-bottom {
        margin-top: 0px !important;
        border-radius: 0px !important;
    }

    .fixed-links,
    .fixed-social {
        display: none;

    }
}

.badge.bg-primary {
    background-color: #a68a00 !important;
}


.app-detail-container {
    position: relative;
}

.optech-section-padding.pd-top-0 {
    padding-top: 0px !important;
}


.app-details-page-section .optech-pd-wrap {
    padding: 0px !important;
}

.app-details-page-section .optech-post-navigation2 {
    margin-top: 5px !important;
    border-top: none !important;
}

.app-details-page-section {
    padding: 0px !important;
}

.newbreadcrumb-wrap {
    padding: 10px 0px !important;
    align-items: center !important;
    justify-content: left !important;
}

.optech-breadcrumb--simple {
    background: linear-gradient(90deg, #f8f4eb 0%, #fff7ed 42%, #f4f8ff 100%) !important;
    background-image: none !important;
    padding: 145px 0 34px !important;
    text-align: left !important;
    border-bottom: 1px solid #e4dccf;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.7);
    position: relative;
    overflow: hidden;
}

.optech-breadcrumb--simple::before {
    content: "";
    position: absolute;
    left: -60px;
    top: -70px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 160, 54, 0.16) 0%, rgba(240, 160, 54, 0) 72%);
    pointer-events: none;
}

.optech-breadcrumb--simple::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -110px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 33, 89, 0.1) 0%, rgba(37, 33, 89, 0) 72%);
    pointer-events: none;
}

.optech-breadcrumb--simple .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.optech-breadcrumb--simple .newbreadcrumb-wrap {
    display: flex;
    width: 100%;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 24px;
}

.optech-breadcrumb--simple h1.post__title {
    flex: 0 0 auto;
    margin-bottom: 0;
    color: #252159;
    font-size: 25px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.optech-breadcrumb--simple .breadcrumbs {
    margin-left: auto;
    display: flex;
    justify-content: flex-end;
    text-align: right;
}

.optech-breadcrumb--simple .breadcrumbs ul {
    width: auto;
    justify-content: flex-end !important;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 0;
    padding: 10px 16px;
    border: 1px solid rgba(37, 33, 89, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 10px 24px rgba(37, 33, 89, 0.06);
}

.newbreadcrumb-wrap .breadcrumbs ul li a {
    color: #252159 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}


.newbreadcrumb-wrap ul li:before {
    content: "\ea6e";
    right: -12px;
    top: 6px;
    font-size: 20px;
    z-index: -1;
    line-height: 12px;
    position: absolute;
    font-family: remixicon;
    color: #373737;
}

.newbreadcrumb-wrap ul.tags-list li:before {
    content: "|";
    right: -12px;
    top: 6px;
    font-size: 20px;
    z-index: -1;
    line-height: 12px;
    position: absolute;
    font-family: remixicon;
    color: #373737;
}

.newbreadcrumb-wrap ul.tags-list-2 li.tags-list-item-last:before {
    content: ":";
    left: -12px;
    top: 6px;
    font-size: 20px;
    z-index: -1;
    line-height: 12px;
    position: absolute;
    font-family: remixicon;
    color: #373737;
}

.newbreadcrumb-wrap .breadcrumbs ul li {
    color: #252159 !important;
    font-weight: 500;
}

.newbreadcrumb-wrap .breadcrumbs ul li.current-active {
    color: #f08f18 !important;
    font-weight: 700;
}

.app-tags-wrap {
    flex-wrap: wrap;
}

.app-tags-wrap .tags-list,
.app-tags-wrap .tags-list-2 {
    flex-wrap: wrap;
    margin-bottom: 0;
}

.optech-pd-wrap.app-details-wrap-box-shadow {
    box-shadow: 0 12px 40px 4px rgb(0 0 0 / 69%) !important;
    border-radius: 7px !important;
}

.optech-pd-wrap.app-details-wrap-box-shadow .apps-content-wraper {
    padding: 40px !important;
    padding-top: 20px !important;
}

.optech-pd-wrap.app-details-wrap-box-shadow .apps-content-wraper {
    padding-top: 0px !important;
}


.apps-content-wraper .optech-hero-content h1 {
    font-size: 20px !important;
}

.apps-content-wraper .optech-hero-slider.app-details-page-slider.box-shadow-right.slick-initialized.slick-slider {
    box-shadow: 0 12px 40px 4px rgb(0 0 0 / 69%) !important;
    border-radius: 7px !important;
}

.apps-content-wraper .optech-hero-slider.app-details-page-slider.box-shadow-right.slick-initialized.slick-slider .slick-list.draggable {
    border-radius: 5px !important;
}

.apps-content-wraper .video-area-container {
    border-radius: 5px !important;
    box-shadow: 0 12px 40px 4px rgb(0 0 0 / 69%) !important;
}

.apps-content-wraper .video-area-container iframe {
    border-radius: 5px !important;
}


.top-app-content-wrap {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 20px !important;
}

.top-app-content-wrap .top-app-icon-wrap {
    max-width: 50px !important;
    height: 50px !important;
}

.top-app-content-wrap .top-app-name-wrap {
    font-size: 18px !important;
    font-weight: 500 !important;
    color: #252159 !important;
}

.top-app-content-wrap .top-app-name-wrap h1 {
    font-size: 40px !important;
    font-weight: 500 !important;
    color: #252159 !important;
}

.app-feature-section {
    margin-top: 40px;
}

.app-feature-section__header {
    margin-bottom: 22px;
}

.app-feature-section__header h3 {
    margin-bottom: 8px;
    color: #252159;
}

.app-feature-section__header p {
    margin-bottom: 0;
    color: #5b6474;
}

.app-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.app-subfeature-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-left: 18px;
    padding-left: 18px;
    border-left: 2px solid #e8edf5;
}

.app-feature-card {
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    border: 1px solid #e4e9f2;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 12px 28px rgba(37, 33, 89, 0.08);
}

.app-feature-card.level-1,
.app-feature-card.level-2,
.app-feature-card.level-3 {
    border-radius: 14px;
    padding: 16px;
    box-shadow: none;
    background: #ffffff;
}

.app-feature-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 14px;
}

.app-feature-card__icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 14px;
    background: #fff3eb;
    border: 1px solid #ffd4bb;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.app-feature-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.app-feature-card__title-wrap {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1 1 auto;
}

.app-feature-card__title {
    margin: 0;
    font-size: 16px;
    line-height: 1.2;
    color: #252159;
}

.app-feature-card.level-1 .app-feature-card__title,
.app-feature-card.level-2 .app-feature-card__title,
.app-feature-card.level-3 .app-feature-card__title {
    font-size: 14px;
    line-height: 1.2;
}

.app-feature-card.level-1 .app-feature-card__icon,
.app-feature-card.level-2 .app-feature-card__icon,
.app-feature-card.level-3 .app-feature-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    padding: 7px;
}

.app-feature-card__description {
    margin-top: 8px;
    color: #5b6474;
}

.app-feature-card__description p:last-child {
    margin-bottom: 0;
}

.app-feature-card__children {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px dashed #d5dce9;
}

.app-feature-card__children-label {
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f26a21;
}

.app-quick-pills {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.app-quick-pill {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 12px 18px 12px 28px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ff3a17 0%, #ff8c0f 50%, #ff3a17 100%);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 18px 34px rgba(255, 97, 22, 0.24);
    overflow: visible;
    flex: 1 1 280px;
}

.app-quick-pill:hover {
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

.app-quick-pill__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding-right: 92px;
}

.app-quick-pill__title {
    margin: 0;
    color: #fff;
    font-size: 16px !important;
    line-height: 1;
    font-weight: 600;
    text-transform: capitalize;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.app-quick-pill__icon {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff7ef;
    border: 5px solid #f2a313;
    color: #ff5a14;
    font-size: 18px;
    box-shadow: 0 10px 22px rgba(163, 95, 6, 0.25);
    flex-shrink: 0;
}

.app-quick-pill--icon-right .app-quick-pill__text {
    padding-right: 50px;
    padding-left: 0;
}

.app-quick-pill--icon-right .app-quick-pill__icon {
    right: -8px;
    left: auto;
}

.app-quick-pill--icon-left .app-quick-pill__icon {
    left: -8px;
    right: auto;
}

.app-quick-pill--icon-left {
    padding-right: 28px;
    padding-left: 18px;
}

.app-quick-pill--icon-left .app-quick-pill__text {
    padding-right: 0;
    padding-left: 60px;
    align-items: flex-end;
    text-align: right;
}




/* contactus and contact home section */
.section.optech-section-padding.bg-light1 {
    position: relative;
    overflow: hidden;
}

.section.optech-section-padding.bg-light1::before,
.section.optech-section-padding.bg-light1::after {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.section.optech-section-padding.bg-light1::before {
    left: -120px;
    top: -90px;
    background: radial-gradient(circle, rgba(10, 22, 94, .12) 0%, rgba(10, 22, 94, 0) 65%);
    animation: ctcBlobA 10s ease-in-out infinite;
}

.section.optech-section-padding.bg-light1::after {
    right: -130px;
    bottom: -100px;
    background: radial-gradient(circle, rgba(240, 160, 54, .14) 0%, rgba(240, 160, 54, 0) 65%);
    animation: ctcBlobB 12s ease-in-out infinite;
}

.section.optech-section-padding.bg-light1 .container {
    position: relative;
    z-index: 1;
}

.ctc-left-wrap {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
}

.ctc-info-box {
    border: 1px solid #d9e3f2;
    border-radius: 18px;
    background: linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
    padding: 16px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
    position: relative;
    overflow: hidden;
    animation: ctcFadeUp .7s ease both;
}

.ctc-info-box::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 3px;
    background: linear-gradient(90deg, #0a165e 0%, #f0a036 100%);
    opacity: .26;
}

.ctc-info-box:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: #bfd0ea;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.1);
}

.ctc-info-box:nth-child(1) {
    animation-delay: .06s;
}

.ctc-info-box:nth-child(2) {
    animation-delay: .18s;
}

.ctc-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #cfdcf0;
    color: #0a165e;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 60px;
    font-size: 23px;
    background: radial-gradient(circle at 30% 30%, #ffffff 0%, #edf4ff 100%);
    box-shadow: inset 0 0 0 5px #ffffff, 0 8px 18px rgba(10, 22, 94, 0.12);
    animation: ctcIconPulse 3.2s ease-in-out infinite;
}

.ctc-content {
    flex: 1 1 auto;
    min-width: 0;
    transition: transform .25s ease;
}

.ctc-info-box:hover .ctc-content {
    transform: translateX(2px);
}

.ctc-title {
    margin-bottom: 5px;
    font-size: 21px;
    line-height: 1.2;
    color: #0a165e;
    font-weight: 800;
    letter-spacing: .01em;
    position: relative;
}

.ctc-title::after {
    content: "";
    display: block;
    width: 52px;
    height: 2px;
    margin-top: 8px;
    background: linear-gradient(90deg, #0a165e 0%, #f0a036 100%);
    border-radius: 99px;
}

.ctc-text-box {
    border: 1px solid #dee7f5;
    border-radius: 12px;
    padding: 11px 13px;
    background: #f8fbff;
}

.ctc-text-box p,
.ctc-text-box a {
    margin: 0;
    color: #2f3f58;
    font-size: 17px;
    line-height: 1.7;
    display: block;
    word-break: break-word;
}

.ctc-text-box a:hover {
    color: #0a2b80;
}

.ctc-office {
    border: 1px dashed #c9d8ed;
    border-radius: 12px;
    padding: 12px 13px;
    color: #3f516c;
    font-size: 16px;
    line-height: 1.5;
    background: #fdfefe;
    animation: ctcFadeUp .7s ease both;
    animation-delay: .3s;
}

.optech-main-form.bg-white.ml60 {
    border-radius: 20px;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
    border: 1px solid #e2e8f5;
    animation: ctcFadeRight .8s ease both;
    animation-delay: .2s;
    transform-origin: right center;
    transition: transform .35s ease, box-shadow .35s ease;
}

.optech-main-form.bg-white.ml60:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 38px rgba(15, 23, 42, 0.12);
}

@keyframes ctcFadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ctcFadeRight {
    from {
        opacity: 0;
        transform: translateX(16px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes ctcIconPulse {

    0%,
    100% {
        box-shadow: inset 0 0 0 5px #ffffff, 0 8px 18px rgba(10, 22, 94, 0.12);
    }

    50% {
        box-shadow: inset 0 0 0 5px #ffffff, 0 12px 24px rgba(10, 22, 94, 0.2);
    }
}

@keyframes ctcBlobA {

    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(22px, 14px, 0) scale(1.08);
    }
}

@keyframes ctcBlobB {

    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(-18px, -10px, 0) scale(1.07);
    }
}

@media (prefers-reduced-motion: reduce) {

    .section.optech-section-padding.bg-light1::before,
    .section.optech-section-padding.bg-light1::after,
    .ctc-info-box,
    .ctc-office,
    .optech-main-form.bg-white.ml60,
    .ctc-icon {
        animation: none !important;
    }
}

@media (max-width: 991px) {
    .ctc-info-box {
        padding: 14px;
    }

    .ctc-title {
        font-size: 18px;
    }

    .ctc-text-box p,
    .ctc-text-box a,
    .ctc-office {
        font-size: 16px;
    }

    .optech-main-form.bg-white.ml60 {
        margin-left: 0 !important;
    }
}

/* contactus and contact home section end  */



@media (max-width: 767.98px) {
    .optech-breadcrumb--simple {
        padding: 120px 0 28px !important;
    }

    .optech-breadcrumb--simple .container {
        display: block;
    }

    .optech-breadcrumb--simple .newbreadcrumb-wrap {
        display: block;
        align-items: flex-start !important;
    }

    .optech-breadcrumb--simple h1.post__title {
        font-size: 25px;
        margin-bottom: 10px;

    }

    .optech-breadcrumb--simple .breadcrumbs {
        margin-left: 0;
        justify-content: flex-start;
        text-align: left;
        display: none;
    }

    .optech-breadcrumb--simple .breadcrumbs ul {
        padding: 8px 14px;
    }

    .newbreadcrumb-wrap .breadcrumbs {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .newbreadcrumb-wrap .breadcrumbs>ul,
    .app-tags-wrap,
    .app-tags-wrap .tags-list,
    .app-tags-wrap .tags-list-2 {
        width: 100%;
        justify-content: flex-start !important;
    }

    .app-tags-wrap {
        gap: 8px !important;
    }

    .app-tags-wrap .tags-list,
    .app-tags-wrap .tags-list-2 {
        gap: 8px !important;
    }

    .newbreadcrumb-wrap ul.tags-list li:before,
    .newbreadcrumb-wrap ul.tags-list-2 li.tags-list-item-last:before {
        display: none;
    }

    .app-quick-pills {
        gap: 18px;
    }

    .app-feature-grid {
        grid-template-columns: 1fr;
    }

    .app-subfeature-list {
        margin-left: 10px;
        padding-left: 12px;
    }

    .app-feature-card {
        padding: 16px;
    }

    .app-feature-card__head {
        gap: 12px;
    }

    .app-feature-card__icon {
        width: 40x;
        height: 40px;
        border-radius: 12px;
    }

    .app-feature-card__title {
        font-size: 18px;
    }

    .app-quick-pill {
        min-height: 68px;
        padding: 12px 16px 12px 22px;
    }

    .app-quick-pill__text {
        padding-right: 78px;
    }


    .app-quick-pill__icon {
        width: 58px;
        height: 58px;
        font-size: 24px;
    }

    .app-quick-pill--icon-right .app-quick-pill__text {
        padding-right: 78px;
    }

    .app-quick-pill--icon-left .app-quick-pill__text {
        padding-left: 78px;
    }
}


.btn-grad {
    background-image: linear-gradient(to right, #FFC837 #FF8008 0%, 51%, #FFC837 100%);
}

.btn-grad {

    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
    outline: none;
    border: none;
}

.btn-grad:hover {
    background-position: right center;
    color: #fff;
    text-decoration: none;
}

.row.slider-video-row>* {
    padding: calc(var(--mdb-gutter-x) * .5) !important;
}

.row.spills-app-buttons-row>* {
    padding: 0 !important;
    padding-right: 0 !important;
}

.col-md-6.pd-right-0 {
    padding-right: 0 !important;
}

.col-md-6.pd-left-0 {
    padding-left: 0 !important;
}

.col-xl-6.col-lg-6.pd-0 {
    padding-right: 0 !important;
}
