body {
    font-family: "Rubik", sans-serif;
}

header.sticky-top {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    z-index: 1020
}

header.sticky-to {
    background-color: #f5f5f5;
}

header.scrolled {
    backdrop-filter: blur(10px);
    background-color: #131313bb !important;
    box-shadow: 0 2px 8px rgb(0 0 0 / .1)
}

header {
    background-color: #f5f5f5;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgb(255 255 255 / .2);
    box-shadow: 0 4px 30px rgb(0 0 0 / .1);
    font-family: "Rubik", sans-serif;
}

header nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between
}

.logo {
    flex: 2;
    display: flex;
    align-items: center
}

.logo a {
    text-decoration: none;
    font-size: 26px;
    color: #000;
    text-transform: uppercase;
    font-weight: 800
}

.logo img {
    width: 200px
}

.bartoggle,
#menubrop {
    display: none
}

.NavMenu {
    flex: 10;
    list-style: none;
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
    margin-bottom: 0;
    margin-left: 30px;
}

.NavMenu li {
    display: inline-block
}

.NavMenu li input {
    display: none
}

.NavMenu li a {
    display: block;
    padding: 20px 14px;
    font-size: 16px;
    text-decoration: none;
    text-transform: capitalize;
    color: #273b91;
    position: relative;
    letter-spacing: 1px;
    font-weight: 500;
    transition: color 0.3s ease
}

.NavMenu li ul li a:after {
    display: none
}

.NavMenu li a:hover {
    color: #00176b
}

.NavMenu li a:hover::after {
    width: calc(100% - 28px)
}

.NavMenu li a label {
    cursor: pointer;
    appearance: none;
    display: block;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.NavMenu>li>a label::after {
    right: -15px;
    top: -4px
}

.NavMenu li ul {
    position: absolute;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    min-width: 200px;
    border-bottom: 2px solid #273b91;
    top: 100%;
    box-shadow: 0 3px 5px rgb(0 0 0/20%);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transform: translateY(10px);
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    visibility: hidden;
    opacity: 0;
    padding-left: 0
}

.NavMenu li ul li {
    position: relative
}

.NavMenu li ul li a {
    color: #273b91;
    padding: 8px 10px;
    display: block;
    border-left: 2px solid #fff0;
    border-bottom: 1px solid rgb(0 0 0 / .1);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px
}

.NavMenu li ul li ul {
    position: absolute;
    left: 100%;
    top: 0
}

@media(min-width:992px) {
    .NavMenu li ul li a:hover {
        border-left: 2px solid #273b91
    }

    .NavMenu li:hover>ul,
    .NavMenu li ul li:hover>ul {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0)
    }
}

@media(max-width:1024px) {
    header {
        padding: 0 3%
    }

    .logo {
        flex: 6
    }

    .bartoggle {
        display: flex;
        justify-content: center;
        font-size: 30px;
        align-items: center;
        background-color: #fff;
        padding: 0 10px 6px 10px;
        cursor: pointer;
        height: 40px
    }

    .sticky-top .container {
        align-items: center
    }

    .NavMenu {
        width: 425px;
        flex: 12;
        position: fixed;
        flex-direction: column;
        background-color: #10195c;
        left: 0;
        top: 40px;
        height: 90vh;
        z-index: -1;
        padding: 15px 0 50px 0;
        justify-content: start;
        overflow-y: scroll;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -ms-transition: all 0.5s;
        -o-transition: all 0.5s;
        transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%)
    }

    .NavMenu li ul,
    .NavMenu li ul li ul {
        position: initial;
        left: 0;
        visibility: visible;
        opacity: 1;
        top: 0;
        display: none
    }

    .NavMenu li ul li a {
        color: #000 !important
    }

    .NavMenu li a {
        padding: 8px 15px;
        color: #fff !important;
        border-bottom: 1px solid #fff
    }

    .NavMenu li ul li ul {
        background: #fff;
        position: inherit;
        margin-top: -10px;
        margin-bottom: 10px
    }

    .NavMenu li ul li ul li a {
        font-size: 14px;
        color: #fff;
        font-weight: 400;
        text-transform: initial;
        padding: 7px 15px 7px 30px
    }

    .NavMenu li a label::after {
        right: 10px
    }

    .NavMenu li input:checked+ul,
    .NavMenu li ul li input:checked+ul {
        display: flex;
        flex-direction: column;
        margin-bottom: 15px
    }

    input:checked+.NavMenu {
        transform: translateX(0);
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        align-items: normal
    }

    .get-quote {
        display: none
    }

    .logo img {
        width: 190px;
    }

    .NavMenu {
        top: 83px
    }

    .NavMenu li>ul,
    .NavMenu li ul li>ul {
        width: 100% !important
    }
}

@media(max-width:375px) {

    .NavMenu li>ul,
    .NavMenu li ul li>ul {
        width: 87% !important
    }
}

@media(max-width:320px) {

    .NavMenu li>ul,
    .NavMenu li ul li>ul {
        width: 75% !important
    }

    .NavMenu {
        top: 81px
    }
}

.NavMenu li>ul,
.NavMenu li ul li>ul {
    width: max-content
}

ul,
li {
    margin: 0;
    padding: 0;
    list-style: none
}

.dropdown {
    position: relative
}

.dropdown-header {
    display: flex;
    cursor: pointer;
    border-bottom: 1px solid rgb(0 0 0 / .1);
    padding: 0 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center
}

.dropdown-header a {
    border: none !important
}

.main-link {
    text-decoration: none;
    padding: 10px 15px;
    display: inline-block;
    color: #333
}

.toggle-icon {
    padding: 10px 15px;
    cursor: pointer;
    font-size: 14px;
    color: var(--main-color)
}

.submenu {
    display: none;
    padding-left: 15px;
    background: #f9f9f9
}

.submenu li {
    display: inline
}

input[type="checkbox"]:checked+.dropdown-header+.submenu {
    display: block
}

.call-head a {
    font-size: 16px;
    line-height: 1.75em;
    font-weight: 500;
    color: #FF6614;
    letter-spacing: 0;
    text-decoration: none
}

.call-head p {
    font-size: 16px;
    line-height: 1.75em;
    font-weight: 500;
    color: #273b91 !important;
    letter-spacing: 0;
    text-decoration: none
}
#carouselExample .carousel-inner {
    overflow: hidden;
}

#carouselExample .carousel-item img {
    width: 100%;
    height: auto;
    transition: transform 5s ease; /* slow 5-sec zoom */
}

/* Zoom effect on active slide */
#carouselExample .carousel-item.active img {
    transform: scale(1.1);
}

/* Smooth fade effect */
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
/* BTN ANIMATION */
.btn-holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1000px;
    margin: 10px auto 0px;
}

/* Base button */
.btn {
    position: relative;
    display: inline-block;
    cursor: pointer;
    margin: 0px 25px 15px;
    min-width: 150px;
    overflow: hidden;
    /* keep hover effect inside */
    border: none;
    background: transparent;
    padding: 0;
    /* remove default button padding */
}

/* Button text */
.btn span {
    position: relative;
    display: block;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 20px;
    border: 1px solid #FF6614;
    color: #FF6614;
    transition: color 0.3s ease;
    z-index: 2;
}

/* Background animation */
.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 0%;
    width: 100%;
    background-color: #FF6614;
    transition: height 0.3s ease-out;
    z-index: 1;
}

/* Hover animation */
.btn:hover::before {
    height: 100%;
}

.btn:hover span {
    color: #fff;
}

/* social Sidebar */
.social-sidebar {
    position: absolute;
    top: 0;
    left: 0;
    padding: 200px 30px;
    background: #f5f5f5;
    align-items: center;
    /* Vertical center */
    justify-content: center;
    display: flex;
    /* light gray */
    z-index: 111111;
    min-height: 100vh;
}

/* Vertical line top */
.social-links-wrapper::before {
    content: "";
    position: absolute;
    left: 18px;
    top: -145px;
    width: 2px;
    height: 120px;
    background: #d8d7d7;
}

/* Vertical line bottom */
.social-links-wrapper::after {
    content: "";
    position: absolute;
    left: 18px;
    bottom: -145px;
    width: 2px;
    height: 120px;
    background: #d8d7d7;
}

.social-links-wrapper {
    position: relative;
}

/* Social icons list */
.social-icons {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-icons li {
    display: block;
    margin: 15px 0;
}

.social-icons li a {
    color: #333;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons li a i {
    font-size: 18px;
    background: #fff;
    border: 1px solid #ddd;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons li a span {
    font-size: 14px;
    text-transform: capitalize;
    display: none;
    /* hidden label */
}

.social-icons li a:hover {
    color: #FF6614;
    /* primary hover */
}

.social-icons li a:hover i {
    background: #FF6614;
    color: #fff;
    border-color: #FF6614;
}

/* small head */
.small-head {
    font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
    color: #1a191d;
    border: 1px solid #FF6614;
    padding: 2px 15px 3px;
    border-radius: 30px;
    background-color: rgba(255, 102, 20, 0.21);
    margin-bottom: 15px;
}

.about-section {
    max-width: 1300px;
    margin: auto;
    padding: 60px 15px;
}

.about-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #ff6600;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.about-box,
.about-box h1 {
    font-size: 50px;
    line-height: 60px;
    color: #3b4693;
    font-weight: 400;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-family: "Barlow Condensed", sans-serif;
}

.about-box h3 {
    font-size: 46px;
    line-height: 46px;
    color: #3b4693;
    font-weight: 400;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-family: "Barlow Condensed", sans-serif;
}

/* .about-box span {
    color: #ff6600;
} */

.about-box img {
    max-height: 60px;
}

.about-section {
    background-image: url(../img/section-bg-shape-1.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    padding: 100px 0;
}

@media (max-width: 768px) {
    .about-box {
        font-size: 24px;
        line-height: 34px;
        flex-direction: column;
        text-align: center;
    }
}

.main-para p {
    font-family: "Rubik", sans-serif;
    font-size: 16px;
    line-height: 28px;
    color: #262626;
    letter-spacing: 0;
    text-align: justify;
    font-weight: 400
}

/* counter */
.counter-section {
    padding: 100px 0;
    text-align: center;
}

.counter-box {
    margin: 10px auto;
}

.counter-box h2,
.counter-box p {
    font-size: 78px;
    line-height: 110px;
    font-weight: 700;
    color: #ff6600;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-box h4 span:last-child {
    margin-left: 0px;
    font-size: 60px;
    color: #ff6600;
    font-weight: bold;
}

.counter-box h3 {
    margin-top: 15px;
    font-size: 22px;
    font-weight: 500;
    color: #333;
}

/* products */
.portfolio-multi-layout-4 .rtin-item {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 10px;
}

.portfolio-multi-layout-4 .rtin-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.portfolio-multi-layout-4 .rtin-item:hover img {
    transform: scale(1.08);
}

/* Content box */
.portfolio-multi-layout-4 .rtin-content {
    position: absolute;
    left: 0;
    bottom: 20px;
    right: 0;
    margin: 0;
    width: calc(100% - 60px);
    background-color: #3b4693;
    padding: 16px 16px 16px 24px;
    border-radius: 0px 43px 43px 0px;
    z-index: 1;
    overflow: hidden;
    transition: all ease 0.5s;
}

.portfolio-multi-layout-4 .rtin-content::before {
    content: "";
    height: 5%;
    width: 23%;
    background-color: #fa360a;
    position: absolute;
    bottom: 0;
    left: 24px;
    transition: all 0.8s;
    z-index: -1;
}

.portfolio-multi-layout-4 .rtin-content .cat-list a {
    color: #dbdbdb;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
}

.portfolio-multi-layout-4 .rtin-content h3 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 0;
}

.portfolio-multi-layout-4 .rtin-content h3 a {
    text-decoration: none;
    color: #ffffff;
    transition: color 0.3s ease;
}

/* .portfolio-multi-layout-4 .rtin-content h3 a:hover {
    color: #fa360a;
} */

/* Read More Button */
.portfolio-multi-layout-4 .read-more-btn {
    position: absolute;
    right: 40px;
    bottom: 0px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #fa360a;
    border-radius: 50%;
    transition: all 0.8s ease;
    visibility: hidden;
    opacity: 0;
    transform: translateY(30%);
    z-index: 2;
    font-size: 22px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-multi-layout-4 .rtin-item:hover .read-more-btn {
    visibility: visible;
    opacity: 1;
    transform: translateY(-50%);
}

/* Initial bar (bottom small strip) */
.portfolio-multi-layout-4 .rtin-item .rtin-content::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 24px;
    height: 5%;
    width: 23%;
    background-color: #fa360a;
    transition: all 0.8s ease;
    z-index: -1;
    border-radius: 0;
}

/* On hover expand fully */
.portfolio-multi-layout-4 .rtin-item:hover .rtin-content::before {
    height: 100%;
    width: 100%;
    left: 0;
    border-radius: 0px 43px 43px 0px;
    transform: scaleY(1.1);
}

.portfolio-multi-layout-4 .rtin-item:hover .rtin-content h3 a {
    color: #FFF !important;
}

.portfolio-multi-layout-4 .rtin-item:hover .cat-list a {
    color: #FFF !important;
}

.custom-portfolio-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* 5 items by default */
    gap: 20px;
}

/* Tablets (≤ 992px) */
@media (max-width: 992px) {
    .custom-portfolio-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile landscape (≤ 768px) */
@media (max-width: 768px) {
    .custom-portfolio-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small mobiles (≤ 576px) */
@media (max-width: 576px) {
    .custom-portfolio-row {
        grid-template-columns: 1fr;
    }
}

.custom-portfolio-row .rtin-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.portfolio-multi-layout-4 {
    background-color: #F3F5F7;
}

.blog-card {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.blog-img {
    height: 270px;
    border-radius: 10px;
    background-size: cover;
    background-position: center bottom;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
}

.blog-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgb(0 0 0 / 20%);
    backdrop-filter: blur(7px);
    padding: 20px 25px;
    border-radius: 6px;
    max-width: 322px;
}

.blog-title {
    font-size: 22px;
    line-height: 32px;
    margin: 0;
    font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
    font-weight: 500;
}

.swiper {
    width: 100%;
    padding: 20px 0;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    max-width: 205px;
    width: 100%;
    max-height: 115px;
    filter: grayscale(100%);
    transition: 0.3s;
    border: 5px solid #fff;
    filter: grayscale(0%);
    border-radius: 7px;
}

.swiper-slide img:hover {
    filter: grayscale(100%);
}

.bg-orange {
    background-color: #ff6600;
}

.head h4 {
    font-size: 50px;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
}

/* footer css */
.rs-footer-two {
    position: relative;
    z-index: 2;
}

.rs-footer-two .rs-footer-bg-thumb::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #111111;
    top: 0;
    inset-inline-start: 0;
    opacity: 0.6;
    z-index: 1;
}

.rs-footer-two .rs-footer-bg-thumb {
    position: absolute;
    width: 100%;
    height: 100%;
    inset-inline-end: 0;
    top: 0;
    background-position: bottom right;
    background-repeat: no-repeat;
    z-index: -1;
    background-size: cover;
}

.rs-footer-two .rs-footer-top {
    padding: 70px 0 80px;
}

.rs-footer-two .footer-2-col-1 {
    margin-inline-end: 30px;
}

.rs-footer-two .rs-footer-widget-title {
    color: #fff;
    margin-bottom: 25px;
}

.rs-footer-two .rs-footer-widget-description {
    color: #cbcccd;
    margin-bottom: 40px;
}

.rs-footer-two .rs-footer-stroke-text.has-theme-red {
    -webkit-text-stroke-color: #fa360a;
    stroke: #fa360a;
}

.rs-footer-two .rs-footer-stroke-text {
    -webkit-text-stroke-width: 1px;
    stroke-width: 1px;
    -webkit-text-stroke-color: #fa360a;
    stroke: #fa360a;
    font-size: 45px;
}

.rs-footer-widget-links ul {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

.rs-footer-widget-links ul li {
    list-style: none;
    position: relative;
}

.rs-footer-widget-links ul li a {
    color: #cbcccd;
    font-weight: 500;
    transition: 0.5s;
    position: relative;
}

.rs-footer-widget-links.has-theme-red ul li a:hover {
    color: #fa360a;
}

.rs-footer-widget-links ul li a:hover {
    color: #fa360a;
    padding-inline-start: 25px;
}

.rs-footer-widget-links ul li a {
    color: #fff;
    font-weight: 500;
    transition: 0.5s;
    position: relative;
    text-decoration: none;
}

a:focus,
a:hover {
    text-decoration: none;
    color: inherit;
}

.rs-footer-widget-links.has-theme-red ul li a:hover {
    color: #fa360a;
}

.rs-footer-widget-links.has-theme-red ul li a::before {
    color: #fa360a;
}

.rs-footer-widget-links ul li a:hover::before {
    opacity: 1;
    visibility: visible;
}

.rs-footer-widget-links ul li a::before {
    content: "🡪";
    color: #fa360a;
    font-size: 18px;
    margin: 0;
    font-weight: 400;
    display: inline-block;
    font-family: "Font Awesome 6 ";
    position: absolute;
    inset-inline-start: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}

.rs-footer-two .rs-footer-widget-title {
    color: #fff;
    margin-bottom: 25px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 30px;
    font-weight: 600;
}

.rs-footer-two .rs-footer-widget-address {
    margin-bottom: 30px;
}

.rs-footer-two .rs-footer-widget-address a:hover {
    color: #fa360a;
}

.rs-footer-two .rs-footer-widget-email a {
    color: #cbcccd;
}

.rs-footer-two .rs-footer-widget-meta p {
    color: #cbcccd;
    margin: 0;
}

.rs-footer-two .rs-footer-widget-number {
    margin-bottom: 30px;
}

.rs-footer-two .rs-footer-widget-number span a,
.rs-footer-widget-address a {
    color: #cbcccd;
    text-decoration: none;
}

.rs-theme-social {
    display: inline-flex;
    gap: 15px;
}

.rs-theme-social a {
    color: #ff6600;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    font-size: 20px;
    border-radius: 50%;
    background-color: #ffffff;
    /* default purple */
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

/* Sliding gradient overlay */
.rs-theme-social a::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #00176b, #ff6a00);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
    border-radius: 50%;
    z-index: 0;
}

.rs-theme-social a i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover effect */
.rs-theme-social a:hover::after {
    transform: translateX(0%);
}

.rs-theme-social a:hover i {
    transform: scale(1.3) rotate(-10deg);
    color: #fff;
}

.mob-head {
    display: none;
}

/* why choose us */
.section-title {
    font-weight: 700;
    font-size: 2rem;
    color: #9d50ff;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #555;
}

.content-box h4 {
    color: #ff6a00;
    font-size: 1.2rem;
    font-weight: 600;
}

.content-box p {
    margin-bottom: 10px;
    color: #333;
}

.list-check {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.list-check li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-weight: 500;
    color: #222;
}

.list-check li::before {
    content: "✔";
    /* FontAwesome check */
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #3B4693;
    background: rgba(157, 80, 255, 0.1);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.highlight-box {
    background: linear-gradient(135deg, #323b86, #232b66);
    color: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.highlight-box h4 {
    font-weight: 700;
}

.highlight-box .list-check li {
    color: #fff;
}

.highlight-box .list-check li::before {
    color: #ff6a00;
    background: #fff;
}

/* OUR PRESENCE SECTION */
.simple-presence-section {
    padding: 80px 0;
    background-image: url(../img/shape26.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    /* Light grey background */
    font-family: "Rubik", sans-serif;
}

.simple-presence-section .sub-heading {
    font-family: "Rubik", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #0d6efd;
    /* Accent color */
    margin-bottom: 8px;
}

.simple-presence-section h2 {
    font-family: "Rubik", sans-serif;
    font-weight: 600;
    font-size: 2.5rem;
    color: #212529;
    margin-bottom: 16px;
}

.simple-presence-section p.lead {
    color: #2b2b2b;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

/* --- The Scrolling Ticker --- */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background-color: #FFFFFF;
    padding: 20px 0;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    /* This creates the fade-out effect on the edges */
    -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
    mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}

.ticker-content {
    display: inline-block;
    white-space: nowrap;
    animation: ticker-scroll 90s linear infinite;
}

.ticker-item {
    display: inline-block;
    padding: 0 30px;
    font-size: 1.1rem;
    color: #495057;
    position: relative;
}

/* Adds a subtle dot separator */
.ticker-item:not(:last-child)::after {
    content: '•';
    color: #ff6600;
    opacity: 0.8;
    position: absolute;
    right: -5px;
}

/* 2nd abt sec */
.about-img-wrap {
    max-width: 582px;
    width: 100%;
    height: 500px;
    position: relative;
}

.about-img-wrap .about-img-1 {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 294px;
    width: 100%;
    height: 371px;
    padding: 5px;
    border: 2px solid #DDE1E7;
    border-radius: 0 60px 0 60px;
}

.about-img-wrap .about-img-1 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 0 60px 0 60px;
}

.about-img-wrap .about-img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 260px;
    width: 100%;
    height: 352px;
}

.about-img-wrap .about-img-2 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 60px 0 60px 0;
}

.about-img-wrap .about-contact {
    background-color: #5666a9;
    position: absolute;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 50px 1fr;
    align-items: center;
    grid-gap: 15px;
    max-width: 294px;
    width: 100%;
    padding: 30px;
    border-radius: 0 60px 0 60px;
}

.about-img-wrap .about-contact .icon {
    background-color: #ffffff;
    font-size: 20px;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #3B4693;
}

.about-img-wrap .about-contact .icon i {
    /* transform: rotate(-45deg); */
}

.about-img-wrap .about-contact .content span {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    display: block;
}

.about-img-wrap .about-contact .content a {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    line-height: 1;
}



/* over */
@keyframes ticker-scroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        /* Moves the content by half its width for a seamless loop */
        transform: translateX(-50%);
    }
}

@media (max-width:1024px) {
    .contact-head {
        display: none;
    }

    ul.NavMenu {
        margin: 0;
    }

}

@media (max-width: 768px) {
    .simple-presence-section h2 {
        font-size: 2rem;
    }

    .rw-dir {
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
    }
}

/* over */
@media (min-width:1300px) and (max-width: 1340px) {
    .social-sidebar {
        padding: 200px 20px;
    }

    header.sticky-top.px-5 {
        padding-right: 0 !important;
    }

    nav.container-fluid.align-items-center.py-2.px-5 {
        padding-left: 35px !important;
    }

    .logo img {
        width: 165px;
    }

    .NavMenu li a {
        letter-spacing: 0;
    }

    .portfolio-multi-layout-4 .rtin-content {
        bottom: 15px;
        width: calc(100% - 15px);
        padding: 16px 16px 16px 16px;
    }

    .portfolio-multi-layout-4 .rtin-content h3 a {
        font-size: 19px;
    }

    .portfolio-multi-layout-4 .read-more-btn {
        right: 7px;
        bottom: 34px;
        width: 50px;
        height: 50px;
        transform: translateY(30%);
        font-size: 18px;
    }

    .desktop-head .about-box {
        font-size: 48px;
        gap: 0px;
    }

    .about-img-wrap .about-img-1 {
        max-width: 280px;
        height: 368px;
    }

    .about-img-wrap .about-contact {
        grid-template-columns: 50px 1fr;
        grid-gap: 8px;
        max-width: 280px;
    }
}

@media (min-width:1341px) and (max-width: 1550px) {

    .about-img-wrap .about-img-1 {
        max-width: 280px;
        height: 368px;
    }

    .about-img-wrap .about-contact {
        grid-template-columns: 50px 1fr;
        grid-gap: 8px;
        max-width: 280px;
    }

    .social-sidebar {
        padding: 200px 20px;
    }

    header.sticky-top.px-5 {
        padding-right: 0 !important;
    }

    nav.container-fluid.align-items-center.py-2.px-5 {
        padding-left: 35px !important;
    }

    .logo img {
        width: 165px;
    }

    .NavMenu li a {
        letter-spacing: 0;
    }

    .portfolio-multi-layout-4 .rtin-content {
        bottom: 15px;
        width: calc(100% - 15px);
        padding: 16px 16px 16px 16px;
    }

    .portfolio-multi-layout-4 .rtin-content h3 a {
        font-size: 19px;
    }

    .portfolio-multi-layout-4 .read-more-btn {
        right: 7px;
        bottom: 34px;
        width: 50px;
        height: 50px;
        transform: translateY(30%);
        font-size: 18px;
    }
}

@media (max-width: 425px) {
    .contact-head {
        display: none;
    }

    .social-sidebar {
        display: none;
    }

    .g-5,
    .gx-5 {
        --bs-gutter-x: 1rem !important;
    }

    header.sticky-top.px-5 {
        padding: 0 !important;
    }

    .NavMenu {
        margin-left: 0;
    }

    .about-box {
        font-size: 28px;
        /* line-height: 23px; */
    }

    .portfolio-multi-layout-4 .about-box {
        font-size: 38px;
        line-height: 15px;
        flex-direction: row;
    }

    .desktop-head {
        display: none;
    }

    .mob-head {
        display: block !important;
    }

    .head h4 {
        font-size: 32px;
    }

    .col-lg-4.mb-4.mb-lg-0.text-center.text-lg-start.head {
        margin-bottom: 5px !important;
    }

    img.w-100.p-3.bg-white.rounded-3.mb-4 {
        width: 200px !important;
    }

    .about-section {
        padding: 50px 0;
    }

    .counter-box h3 {
        margin-top: 0px;

    }

    .counter-box h4 {
        font-size: 50px;
        line-height: 55px;
    }

    .counter-box {
        margin: 22px auto;
    }

    nav.container-fluid.align-items-center.py-2.px-5 {
        padding: 10px 15px !important;
    }

    .simple-presence-section {
        padding: 40px 0;
    }

    .mob-head .about-content.mt-4.mb-4.justify-content-start.gap-1 {
        flex-direction: column;
    }

    .mob-small {
        text-align: center;
    }

    .about-box.fw-bold.mob-head-1 {
        flex-direction: row;
        gap: 9px;
    }

    .mob-head-2 {
        display: none;
    }

    .about-box h3 {
        font-size: 34px;
        text-align: left;
    }

    p.section-subtitle {
        text-align: left;
    }

    section.distributor-section.py-5 .text-center {
        text-align: left !important;
    }

    .portfolio-multi-layout-4 .rtin-content h3 a {
        font-size: 20px;
    }

    .counter-box h2,
    .counter-box p {
        font-size: 50px;
        line-height: 60px;
    }

    .about-box,
    .about-box h1 {
        font-size: 36px;
    }

    .about-content.mt-4.mb-5 {
        margin: 15px 0 !important;
    }

    section.about-section.text-center .text-start {
        text-align: center !important;
    }

    .logo img {
        width: 155px;
    }
}

@media (max-width: 375px) {
    .NavMenu {
        width: 100%;
    }

    nav.container-fluid.align-items-center.py-2.px-5 {
        padding: 10px 15px !important;
    }

    .logo img {
        width: 150px;
    }
}

@media (max-width: 320px) {
    .NavMenu {
        width: 100%;
    }
}

/*  font-family: "Barlow Condensed", sans-serif; */
/* font-family: "Rubik", sans-serif; */