* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    font-family: "Barlow", sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
    color: inherit;
}

section {
    width: 100%;
    float: left;
}

p {
    font-family: "Inter", sans-serif;
    font-size: 18px;
}

h2 {
    font-size: 40px;
}

h5 {
    font-size: 22px;
}

/* Header */
.header {
    width: 100%;
    transition: all 0.3s;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9;
}

.header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.navbar {
    background: #ffffff;
    padding: 12px 0;
}

/* Logo */
.navbar-brand {
    width: 200px;
}

/* Menu */
.navbar-nav .nav-link {
    color: #222;
    font-size: 18px;
    margin: 0 10px;
    font-weight: 500;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #D32F2F;
}

/* Button */
.quote-btn {
    background: #D32F2F;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
    font-size: 18px;
    width: 100%;
}

.quote-btn:hover {
    background: #b82121;
    color: #fff;
}

@media(min-width: 1600px) {
    .navbar-nav .nav-link {
        font-size: 18px;
    }

    .quote-btn {
        padding: 13px 38px;
        border-radius: 10px;
        font-size: 22px;
    }
}


/* Banner */
.banner {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.banner_content {
    width: 100%;
    float: left;
}

.banner_content h1 {
    font-size: 66px;
    line-height: 1.05;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.banner_content h3 {
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1A1A1A;
    margin-bottom: 10px;
}

.red {
    color: #D32F2F;
}

.banner_content p {
    color: #444;
    padding-right: 60px;
    margin-bottom: 22px;
}

.banner_content ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.banner_content ul li a {
    padding: 13px 28px;
    border-radius: 7px;
    font-weight: 700;
    font-size: 15px;
    border: none;
    transition: 0.3s;
    display: inline-block;
}

.btn-red {
    background: #D32F2F;
    color: #fff;
}

.btn-red:hover {
    background: #b81e17;
    color: #fff;
}

.btn-yellow {
    background: #F5A623;
    color: #111;
}

.btn-yellow:hover {
    background: #db9018;
    color: #1a1a1a;
}

.hero-box {
    width: 100%;
    height: 380px;
    background: #d9d9d9;
    border-radius: 4px;
    display: block;
    max-width: 670px;
    margin: 0 auto;
}

.hero-image-wrap {
    display: block;
    position: relative;
    z-index: 1;
}

.hero-image-wrap:after {
    content: "";
    position: absolute;
    left: 50%;
    top: -30px;
    transform: translate(-50%, 0);
    width: 60%;
    height: 280px;
    background: #FFF8F8;
    z-index: -1;
    border-radius: 50% 50% 0 0;
}

.hero-image-wrap:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 250px;
    transform: translate(-50%, 0);
    width: 60%;
    height: 280px;
    background: linear-gradient(180deg, #FCEDED 0%, #FFFFFF 42.02%);
    border-radius: 0 0 50% 50%;
    z-index: -1;
}

@media(min-width: 1200px) {
    .hero-image-wrap:after {
        top: -60px;
        width: 406px;
        height: 470px;
    }

    .hero-image-wrap:before {
        top: 410px;
        width: 406px;
        height: 470px;
    }

    .banner {
        padding: 240px 0 144px !important;
    }
}


@media(min-width: 1600px) {
    .banner_content ul li a {
        padding: 13px 36px;
        border-radius: 10px;
        font-size: 22px;
    }

    .banner_content ul {
        gap: 30px !important;
    }
}

/* Counter Section */
.counter-section {
    background: #D32F2F;
    padding: 30px 60px;
}

.counter-wrapper {
    width: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.counter-box {
    flex: 1;
    min-width: 160px;
    text-align: center;
    color: #fff;
    position: relative;
}

.counter-number {
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}

.counter-title {
    font-size: 26px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
}

/* Categories Section */
.spcl_heading {
    position: relative;
}

.spcl_heading h2 {
    float: left;
    background-color: #fff;
}

.main_heading a {
    color: #fff;
    background: #D32F2F;
    padding: 12px 28px;
    font-weight: 700;
    font-size: 20px;
    display: inline-block;
    transition: 0.3s;
    border-radius: 12px;
}

.main_heading a:hover {
    background-color: #b82121;
}

.spcl_heading a {
    float: right;
}

.spcl_heading::before {
    content: "";
    position: absolute;
    width: 86%;
    height: 2px;
    background: #1A1A1A33;
    bottom: 6px;
    left: 0;
    z-index: -1;
}

.product-slider {
    width: 100%;
    float: left;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.item-box {
    width: 100%;
    float: left;
    background-color: #F6F6F6;
    padding: 8px;
    border: 1px solid #E2E2E2;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.item-box:hover {
    border: 1px solid #D32F2F;
    transition: all 0.3s ease;
}

.item-box img {
    width: 100%;
    height:300px;
    border-radius: 10px;
    height: auto;
}

.item-box h4 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 10px 0 5px;
}

.item-box h3 {
    font-size: 18px;
    font-weight: 400;
    color: #D32F2F;
    margin: 16px 0 5px;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.item-box h5 {
    font-size: 16px;
    font-weight: 400;
    color: #545454;
    margin: 10px 0 15px;
}

.item-box p {
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    margin: 0 0 16px;
}

.item-box__image {
    aspect-ratio: 2 / 0.97;
    border-radius: 10px;
    overflow: hidden;
}

.item-box__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-section .item-box h5 {
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.item-box h6 {
    font-size: 18px;
    font-weight: 400;
    color: #D32F2F;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 18px 0 5px;
}

ul.action-btns {
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
}

ul.action-btns li {
    float: left;
}

ul.action-btns li:first-child {
    width: calc(80% - 10px);
    margin-right: 10px;
}

ul.action-btns li:last-child {
    width: 20%;
}

ul.action-btns li a {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-weight: 600;
    font-size: 22px;
    transition: 0.3s;
    border-radius: 10px;
}

ul.action-btns li a i {
    font-size: 30px;
}

ul.action-btns li:first-child a {
    background-color: #F5A623;
    color: #1a1a1a;
}

ul.action-btns li:first-child a:hover {
    background-color: #db9018;
    color: #1a1a1a;
}

ul.action-btns li:last-child a {
    background-color: #1B6E35;
    color: #fff;
   
}

ul.action-btns li:last-child a:hover {
    background-color: #125226;
    color: #fff;
}

/* Choose Us */
.choose-section {
    background-color: #F7F7F7;
}

.py-80 {
    padding: 80px 0;
}

.py-120 {
    padding: 120px 0;
}

.main_heading {
    width: 100%;
    float: left;
    position: relative;
    margin-bottom: 40px;
}

.main_heading h5 {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1a1a1a;
    font-weight: 400;
    margin-bottom: 10px;
}

.main_heading h2 {
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

/* Cards */
.choose-card {
    width: 100%;
    background: #fff;
    border: 1px solid #D32F2F;
    border-radius: 14px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0 20px;
    flex-direction: column;
    height: 220px;
    position: relative;
    transition: 0.3s ease;
    text-align: left;
}

.choose-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.choose-dot {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    position: absolute;
    top: 22px;
    right: 22px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.choose-dot:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 42px;
    height: 42px;
    transform: translate(-50%, -50%);
    opacity: 0.18;
    filter: blur(7px);
}

.choose-dot.dot-red:after {
    background: #D32F2F;
}

.choose-dot.dot-green:after {
    background: #1B6E35;
}

.choose-dot.dot-yellow:after {
    background: #F5A623;
}


.dot-red {
    background: #D32F2F;
}

.dot-green {
    background: #1B6E35;
}

.dot-yellow {
    background: #F5A623;
}

.choose-card h4 {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 15px;
}

.choose-card h3 {
    font-size: 18px;
    font-weight: 400;
    color: #1A1A1A;
    margin: 0 0 2px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.choose-card p {
    color: #444;
    margin: 0;
}

/* Features Section */
.features-section .spcl_heading::before {
    width: 82%;
}

.star {
    color: #F5A623;
    font-size: 18px;
    margin-left: 10px;
}

.star i {
    margin-left: 2px;
}

.features-section .product-slider {
    grid-template-columns: repeat(3, 1fr);
}

/* Serve Section */
.pd-left {
    padding-left: 16%;
}

.serve-section {
    background-color: #F7F7F7;
}

.left_div {
    width: 50%;
    float: left;
}

.serve-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
    float: left;
}

.serve-card {
    position: relative;
}

.serve-card summary {
    list-style: none;
    cursor: pointer;
    background: #D32F2F;
    color: #fff;
    padding: 15px 18px;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;
    border-radius: 10px;
}

.serve-card summary::-webkit-details-marker {
    display: none;
}

.serve-card summary:hover {
    background: #b82121;
}

.serve-card summary i {
    transition: 0.3s;
}

.serve-card[open] summary i {
    transform: rotate(90deg);
}

.serve-content {
    position: absolute;
    z-index: 99;
    width: 100%;
    top: 100%;
    background: #fff5f5;
    border: 1px solid #f1c5c5;
    border-top: none;
    padding: 15px;
    border-radius: 0 0 10px 10px;
}

.serve-content p {
    margin: 0;
    color: #444;
}

.right_div {
    width: calc(50% - 40px);
    float: right;
    background-color: #403F3F;
    height: 600px;
    margin-left: 40px;
}

/* Blog Section */
.blog-section {
    background-image: url(../images/blog-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.blog-section .spcl_heading::before {
    z-index: 2;
    background: #FFFFFF33;
    width: calc(100% - 440px);
    left: 310px;
}

.blog-section .main_heading h5 {
    color: #fff;
}

.blog-section .main_heading h2 {
    color: #fff;
}

.blog-section .main_heading h2 {
    background: transparent;
}

.blog-slider {
    width: 100%;
    display: inline-block !important;
    padding: 0 0 70px;
}

.blog-slider .owl-nav {
    position: absolute;
    bottom: -5px;
    right: 0;
    margin: 0;
    display: flex;
}

.blog-slider .owl-nav button {
    background: #D32F2F !important;
    color: #fff !important;
    border: none;
    width: 50px !important;
    height: 50px !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    margin: 0 10px;
}

.blog-slider .owl-nav button:hover {
    background: #b82121 !important;
}

.blog-slider .owl-nav button span {
    font-size: 50px !important;
    margin: 0 0 12px !important;
}

.learn-btn {
    margin-bottom: 10px;
    font-size: 20px;
    color: #1a1a1a;
    font-weight: 700;
    padding-bottom: 2px;
    border-bottom: 1px solid #D32F2F;
    transition: all 0.3s;
}

.learn-btn:hover {
    color: #D32F2F;
    transition: all 0.3s;
}

/* Testimonials */
.testimonial-section .spcl_heading::before {
    width: 90%;
}

.testimonial-slider {
    width: 100%;
    float: left;
}

.testimonial-slider .owl-stage {
    padding-left: 0 !important;
}

.testimonial-slider .owl-nav {
    position: absolute;
    top: -80px;
    right: 16%;
    margin: 0;
    display: flex;
    background: #fff;
}

.testimonial-slider .owl-nav button {
    background: #D32F2F !important;
    color: #fff !important;
    border: none;
    width: 50px !important;
    height: 50px !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    margin: 0 10px;
}

.testimonial-slider .owl-nav button:hover {
    background: #b82121 !important;
}

.testimonial-slider .owl-nav button span {
    font-size: 50px !important;
    margin: 0 0 12px !important;
}

.testimonial-slider .item {
    background-color: #FFF8F8;
    padding: 20px;
    border-radius: 30px 30px 0 30px;
    border: 1px solid #D32F2F;
    color: #444;
}

.testimonial-slider .item p {
    margin: 0 0 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #404040;
}

.testimonial-slider .item img {
    width: 66px !important;
    float: left;
    margin-right: 20px;
}

.testimonial-slider .item h5 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.testimonial-slider .item h5 span {
    font-size: 18px;
    font-weight: 400;
    color: #444;
    display: block;
    margin-top: 5px;
}

@media(min-width: 1600px) {
    .testimonial-slider {
        padding-left: 12%;
    }

    .testimonial-slider .item h5 {
        font-size: 24px;
    }
}


.certification {
    width: 100%;
    float: left;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #1A1A1A33;
}

.certification h5 {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1a1a1a;
    font-weight: 400;
    margin-bottom: 20px;
}

.certification_details {
    width: 100%;
    float: left;
}

.certification_details ul {
    width: 170px;
    float: left;
    list-style: none;
    padding: 0;
    margin: 0;
}

.certification_details ul li {
    width: 70px;
    height: 70px;
    background-color: #D32F2F;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    float: left;
    margin: 0 5px;
    flex-direction: column;
}

.certification_details ul li span {
    font-size: 16px;
    font-weight: 400;
    display: block;
}

.certification_details p {
    width: calc(100% - 170px);
    float: left;
    font-size: 16px;
    color: #909090;
    margin: 0;
}

.certification_details p span {
    color: #444;
    display: block;
}

/* Upgrade Section */
.upgrade-section {
    background: #D32F2F;
    padding: 38px 0;
    position: relative;
    overflow: hidden;
}

.upgrade-section::before,
.upgrade-section::after {
    content: "";
    position: absolute;
    width: 72px;
    height: 100%;
    top: 0;
    background-repeat: no-repeat;
    background-position: center;
}

.upgrade-section::before {
    left: 0;
    background-image: url(../images/B.png);
}

.upgrade-section::after {
    right: 0;
    background-image: url(../images/B2.png);
}

.upgrade-content {
    width: 100%;
    float: left;
}

.upgrade-content h2 {
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 4px 2px rgba(0, 0, 0, 0.25);
}

.upgrade-content p {
    color: #fff;
    margin: 0;
}

.upgrade-btn {
    padding: 14px 26px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 700;
    min-width: 190px;
    transition: 0.3s;
}

.btn-outline-white {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-outline-white:hover {
    background: #fff;
    color: #1a1a1a;
}

@media(min-width: 768px) {
    .btn-outline-white i {
        font-size: 34px;
    }
}

@media(min-width: 1200px) {
    .upgrade-btn {
        padding: 11px 36px;
        border-radius: 10px;
        font-size: 22px;
    }
}

/* Footer */
.footer {
    width: 100%;
    float: left;
}

.footer-logo img {
    width: 200px;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 0;
    width: 100%;
    display: inline-block;
    color: #f5f5f5;
}

.footer-logo a {
    display: block;
    margin-top: 10px;
    color: #f5f5f5;
    font-size: 16px;
    transition: 0.3s;
}

.footer-logo a:hover {
    color: #D32F2F;
}

.footer h6 {
    color: #f5f5f5;
    font-size: 18px;
    margin-bottom: 15px;
}

ul.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.footer-links li {
    margin-bottom: 10px;
}

ul.footer-links li a {
    color: #f5f5f5;
    transition: 0.3s;
}

ul.footer-links li a:hover {
    color: #D32F2F;
}

a.chat-btn {
    border-radius: 51px 0 51px 51px;
    background-color: #25D366;
    color: #fff;
    padding: 12px 30px;
    display: inline-block;
    transition: all 0.3s;
    font-weight: 600;
    margin-top: 15px;
}

a.chat-btn:hover {
    background-color: #F5A623;
    color: #1a1a1a;
}

.copyright {
    color: #f5f5f5;
    font-family: "Inter", sans-serif;
    font-size: 14px;
}

/*=====================================================
MEDIA QUERY
=====================================================*/
@media (max-width:767px) {
    h2 {
        font-size: 32px;
    }

    p {
        font-size: 14px;
    }

    .navbar-nav {
        text-align: center;
        padding-top: 15px;
    }

    .navbar-brand {
        width: 160px;
    }

    .navbar-collapse {
        position: absolute;
        width: 100%;
        top: 100%;
        background: #fff;
        z-index: 99;
        left: 0;
        height: calc(100vh - 64px);
        padding: 0 22px;
        border-top: 1px solid #D32F2F;
    }

    .quote-mobile {
        margin: 15px 0 30px;
        text-align: center;
    }

    .banner {
        padding: 104px 0 40px 0;
    }

    .banner_content {
        text-align: center;
    }

    .banner_content h1 {
        font-size: 40px;
    }

    .banner_content p {
        padding-right: 0;
    }

    .banner_content ul li a {
        margin-bottom: 10px;
    }

    .py-80,
    .py-120 {
        padding: 50px 0;
    }

    .hero-box {
        height: 240px;
        margin: 40px auto 0;
        width: 70%;
    }

    .counter-section {
        padding: 25px 15px;
    }

    .main_heading h5 {
        font-size: 18px;
    }

    .main_heading a {
        font-size: 18px;
        float: left;
        margin-top: 20px;
    }

    .spcl_heading::before {
        display: none;
    }

    .counter-box {
        flex: 2;
        padding: 12px 0;
    }

    .counter-number {
        font-size: 36px;
    }

    .counter-title {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .choose-section .main_heading {
        margin-bottom: 10px;
    }

    .choose-card {
        height: 180px;
    }

    .serve-section {
        padding: 50px 15px !important;
    }

    .serve-section .d-flex {
        display: inline-block !important;
    }

    .left_div {
        width: 100%;
        float: left;
        margin: 0 0 20px;
    }

    .right_div {
        width: 100%;
        float: left;
        margin: 0;
        height: 300px;
    }

    .pd-left {
        padding-left: 15px;
    }

    .serve-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .serve-card summary {
        font-size: 16px;
    }

    .serve-content p {
        font-size: 14px;
    }

    .learn-btn {
        font-size: 18px;
    }

    .testimonial-slider .owl-nav {
        top: 0;
        position: relative;
        right: 0;
        margin: 20px 0 0;
        display: flex;
    }

    .testimonial-slider .item h5 {
        font-size: 20px;
    }

    .upgrade-section::before,
    .upgrade-section::after {
        display: none;
    }

    .certification h5 {
        font-size: 18px;
    }

    .certification_details ul {
        width: 100%;
    }

    .certification_details p {
        width: 100%;
        margin-top: 20px;
    }

    .upgrade-btn {
        min-width: 150px;
        padding: 7px 0;
        font-size: 16px;
    }

    .half_col {
        width: 50% !important;
        float: left;
    }
}

@media (min-width: 768px) and (max-width:1023px) {
    h1 {
        font-size: 48px !important;
    }

    h2 {
        font-size: 32px;
    }

    p {
        font-size: 16px;
    }

    .navbar-nav {
        text-align: center;
        padding-top: 15px;
    }

    .quote-mobile {
        display: table;
        margin: 10px auto 30px;
    }

    .navbar-collapse {
        position: absolute;
        width: 100%;
        top: 100%;
        background: #fff;
        z-index: 99;
        left: 0;
        height: calc(100vh - 66px);
        border-top: 1px solid #D32F2F;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    .banner {
        padding: 130px 0 50px 0;
    }

    .banner_content {
        text-align: center;
        margin-bottom: 40px;
    }

    .banner_content p {
        padding-right: 0;
    }

    .py-80,
    .py-120 {
        padding: 50px 0;
    }

    .counter-section {
        padding: 30px 5px;
    }

    .counter-box {
        min-width: 180px;
    }

    .counter-number {
        font-size: 50px;
    }

    .counter-title {
        font-size: 15px;
    }

    .main_heading h5 {
        font-size: 18px;
    }

    .main_heading a {
        font-size: 18px;
    }

    .spcl_heading::before {
        width: 82%;
        height: 1px;
        bottom: 14px;
    }

    .product-slider {
        gap: 15px;
        grid-template-columns: repeat(3, 1fr);
    }

    ul.action-btns li:first-child {
        width: calc(74% - 10px);
        margin-right: 10px;
    }

    ul.action-btns li:last-child {
        width: 26%;
    }

    ul.action-btns li a {
        font-size: 18px;
    }

    .serve-section {
        padding: 50px 30px !important;
    }

    .serve-section .d-flex {
        display: inline-block !important;
    }

    .left_div {
        width: 100%;
        float: left;
        margin: 0 0 20px;
    }

    .right_div {
        width: 100%;
        float: left;
        margin: 0;
        height: 300px;
    }

    .pd-left {
        padding-left: 4%;
    }

    .serve-card summary {
        font-size: 16px;
    }

    .blog-section .spcl_heading::before {
        width: calc(100% - 380px);
        left: 250px;
    }

    .serve-content p {
        font-size: 14px;
    }

    .learn-btn {
        font-size: 16px;
    }

    .testimonial-slider .owl-nav {
        top: -85px;
        right: 2%;
    }

    .testimonial-slider .item h5 {
        font-size: 20px;
    }

    .upgrade-section::before,
    .upgrade-section::after {
        display: none;
    }
}

@media (min-width: 1024px) and (max-width: 1279px) {
    h1 {
        font-size: 48px !important;
    }

    h2 {
        font-size: 32px;
    }

    p {
        font-size: 16px;
    }

    .banner {
        padding: 80px 0;
    }

    .py-80,
    .py-120 {
        padding: 60px 0;
    }

    .counter-section {
        padding: 30px 5px;
    }

    .counter-number {
        font-size: 50px;
    }

    .counter-title {
        font-size: 15px;
    }

    .main_heading h5 {
        font-size: 18px;
    }

    .main_heading a {
        font-size: 18px;
    }

    .spcl_heading::before {
        width: 82%;
        height: 1px;
        bottom: 14px;
    }

    .blog-section .spcl_heading::before {
        width: calc(100% - 380px);
        left: 250px;
    }

    .product-slider {
        gap: 15px;
    }

    ul.action-btns li:first-child {
        width: calc(74% - 10px);
        margin-right: 10px;
    }

    ul.action-btns li:last-child {
        width: 26%;
    }

    ul.action-btns li a {
        font-size: 18px;
    }

    .pd-left {
        padding-left: 4%;
    }

    .serve-card summary {
        font-size: 16px;
    }

    .serve-content p {
        font-size: 14px;
    }

    .testimonial-slider .owl-nav {
        top: -85px;
        right: 2%;
    }

    .upgrade-section::before,
    .upgrade-section::after {
        display: none;
    }
}

@media (min-width: 1280px) and (max-width:1365px) {
    .banner {
        padding: 80px 0;
    }

    .counter-section {
        padding: 30px;
    }

    .counter-number {
        font-size: 56px;
    }

    .counter-title {
        font-size: 16px;
    }

    .pd-left {
        padding-left: 6%;
    }

    .testimonial-slider .owl-nav {
        top: -80px;
        right: 8%;
    }
}

@media (min-width: 1366px) and (max-width:1599px) {
    .banner {
        padding: 80px 0;
    }

    .counter-section {
        padding: 30px 50px;
    }

    .counter-number {
        font-size: 60px;
    }

    .counter-title {
        font-size: 20px;
    }

    .pd-left {
        padding-left: 9%;
    }

    .testimonial-slider .owl-nav {
        top: -80px;
        right: 8%;
    }
}

@media (min-width: 768px) {
    .blog-slider {
        padding: 0;
    }

    .blog-slider .owl-nav {
        top: -85px;
        bottom: unset;
    }
}

@media (min-width: 1200px) {
    .blog-section {
        padding: 120px 0;
    }
}

/* ================================================== */

.breedcum ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.breedcum ul li {
    font-size: 14px;
    color: #1A1A1A;
    font-weight: 700;
    letter-spacing: 0.1em;
    display: block;
    line-height: 1em;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    position: relative;
}

.breedcum ul li:after {
    content: "";
    position: absolute;
    right: -16px;
    top: 0;
    width: 1px;
    height: 15px;
    background: #1A1A1A;
}

.breedcum ul li:last-child:after {
    display: none;
}

.breedcum ul li a {
    font-size: 14px;
    color: #1A1A1A;
    font-weight: 400;
    letter-spacing: 0.1em;
    display: block;
    line-height: 1em;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
}

.breedcum {
    padding: 20px 0 0;
    border-top: 1px solid #DFDFDF;
}

.inner-banner .hero-box {
    height: auto;
    max-width: 440px;
    aspect-ratio: 2 / 1.46;
}

.inner-banner .hero-image-wrap:before,
.inner-banner .hero-image-wrap:after {
    display: none;
}

.inner-banner {
    padding: 104px 0 50px !important;
    background: #F9F9F9;
}

.inner-banner .banner_content h1 {
    font-size: 30px;
}

.wysing-content__wrapper {
    max-width: 1048px;
    margin: 0 auto;
}

.wysing-content h2 {
    margin: 0 0 20px;
}

blockquote {
    border-left: 3px solid #D32F2F;
    background: #FFF5F5;
    padding: 30px 22px;
    font-size: 18px;
    color: #D32F2F;
    font-weight: 700;
    display: inline-block;
    width: 100%;
    margin: 20px 0;
}

.wysing-content-image {
    width: 100%;
    aspect-ratio: 2 / 1;
    margin: 0 auto 20px;
    overflow: hidden;
}

.wysing-content {
    padding: 50px 0;
}

.wysing-content .main_heading {
    margin: 0;
}


/* milestone */
.milestone-section .spcl_heading::before {
    width: 90%;
}

.milestone-slider {
    width: 100%;
    float: left;
}



.milestone-slider .owl-nav {
    position: absolute;
    top: -80px;
    right: 16%;
    margin: 0;
    display: flex;
    background: #fff;
}

.milestone-slider .owl-nav button {
    background: #D32F2F !important;
    color: #fff !important;
    border: none;
    width: 50px !important;
    height: 50px !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    margin: 0 10px;
}

.milestone-slider .owl-nav button:hover {
    background: #b82121 !important;
}

.milestone-slider .owl-nav button span {
    font-size: 50px !important;
    margin: 0 0 12px !important;
}

.milestone-slider .item {
    background-color: #FFF8F8;
    padding: 30px 30px 18px 30px;
    border-radius: 30px 30px 0 30px;
    border: 1px solid #D32F2F;
    color: #444;
}

.milestone-slider .item p {
    margin: 0 0 10px;
}

.milestone-slider .item h3 {
    text-align: right;
    color: #D32F2F;
    text-shadow: 0px 4px 24px rgba(211, 47, 47, 0.3);
    font-weight: 700;
    font-size: 44px;
    margin: 0;
}




.milestone-slider .item img {
    width: 66px !important;
    float: left;
    margin-right: 20px;
}

.milestone-slider .item h5 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.milestone-slider .item h5 span {
    font-size: 18px;
    font-weight: 400;
    color: #444;
    display: block;
    margin-top: 5px;
}


.choose-section .row {
    justify-content: center;
}

.choose-section--black-bg {
    background-color: #060606;
}

.choose-section--black-bg .main_heading h5,
.choose-section--black-bg .main_heading h2 {
    color: #fff;
}

.choose-section--more .choose-card {
    height: unset;
    padding: 30px;
    background: #101010;
}

.choose-section--more .choose-card p {
    color: #fff;
}

.choose-section--more .dot-red + h4 {
    color: #D32F2F;
}

.choose-section--more .dot-green + h4 {
    color: #1B6E35;
}

.choose-section--more .dot-yellow + h4 {
    color: #F5A623;
}

.choose-card:has(.dot-green) {
    border-color: #1B6E35;
}

.choose-card:has(.dot-yellow) {
    border-color: #F5A623;
}

.certification_details .certification_details-item ul li {
    width: 112px;
}

.certification_details-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.certification_details-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #444444;
    margin: 0 0 8px;
    padding: 0;
    font-family: "Inter", sans-serif;
}

.certification_details-item p {
    margin: 0;
}

.certification-section .row .col-lg-6 + .col-lg-6 {
    margin-top: 32px;
}

.certification-section .certification {
    padding: 0;
    margin: 0;
    border-top: none;
}
@media (max-width: 768px) {
    .milestone-slider .owl-nav {
        top: 0;
        position: relative;
        right: 0;
        margin: 20px 0 0;
        display: flex;
    }

    .milestone-slider .item h5 {
        font-size: 20px;
    }
}


@media (min-width: 1024px) and (max-width: 1279px) {
    .milestone-slider .owl-nav {
        top: -85px;
        right: 2%;
    }
}

@media (min-width: 1280px) and (max-width:1365px) {
    .milestone-slider .owl-nav {
        top: -80px;
        right: 8%;
    }
}

@media (min-width: 1366px) and (max-width:1599px) {
    .milestone-slider .owl-nav {
        top: -80px;
        right: 8%;
    }
}

@media (min-width: 768px) {

    .breedcum ul li,
    .breedcum ul li a {
        font-size: 16px;
    }

    .inner-banner .banner_content h1 {
        font-size: 50px;
    }

    .wysing-content-image {
        width: 300px;
        float: right;
        aspect-ratio: 2 / 1;
        margin: 0 0 20px 40px;
    }

    blockquote {
        padding: 30px 40px;
    }

    .wysing-content {
        padding: 80px 0;
    }

    .single-column .serve-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .milestone-slider .owl-nav {
        top: -98px;
        position: absolute;
        right: 0;
        margin: 0;
    }

    .certification_details-item {
        display: flex;
        justify-content: flex-start;
        gap: 22px;
        flex-direction: row;
    }

    .certification_details-item ul {
        width: 112px;
    }

    .certification_details-item ul li {
        margin: 0;
    }

    .certification_details-item p {
        max-width: 100%;
        width: 100%;
    } 

    .certification_details__content {
        width: calc(100% - 123px);
    }
}

@media (min-width: 1200px) {
    .wysing-content {
        padding: 120px 0;
    }

    .inner-banner .banner_content h1 {
        font-size: 50px;
    }

    .inner-banner .banner_content p {
        padding-right: 0;
    }

    .inner-banner .banner_content {
        max-width: 509px;
    }

    .breedcum ul {
        justify-content: flex-start;
    }

    .inner-banner {
        padding: 154px 0 50px !important;
    }

    .wysing-content-image {
        width: 476px;
    }

    .serve-section .right_div {
        height: 757px;
        width: calc(50% - 100px);
        margin-left: 100px;
    }

    .milestone-slider .owl-stage {
        display: flex;
    }

    .milestone-slider .item {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .milestone-slider .owl-stage-outer {
        padding-left: 3px;
    }

    .certification-section .row .col-lg-6 + .col-lg-6 {
    margin-top: 0;
}
}

@media (min-width: 1600px) {
    .serve-section.pd-left {
        padding-left: 14%;
    }

    .milestone-slider .item h5 {
        font-size: 24px;
    }

    .milestone-slider .item p {
        font-size: 20px;
    }

    .certification-section .row {
            --bs-gutter-x: 90px;
    }
}