@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

html, body{
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body{
    font-family: "Outfit", sans-serif;
}

:root {
    --titleFont:"Outfit";
    --color_black:#272727;
    --color_white:#ffffff;
    --primary1 :#2B71B8;
    --primary2:#808080;
    --primary3:#404040;
    --primary4:#F5FAFF;
}

ul,li {list-style: none;margin: 0;padding: 0;}
*::-webkit-scrollbar {width: 5px;cursor: pointer;}
*::-webkit-scrollbar:horizontal {height: 2px;cursor: pointer;}
*::-webkit-scrollbar-track {background: var(--color_white);border-radius: 30px;}
*::-webkit-scrollbar-thumb { background: var(--primary1);border-radius: 30px;}
*::-webkit-scrollbar-thumb:hover {background: var(--primary1);}
input:focus,textarea:focus,select:focus,button:focus,a:focus {outline: none;box-shadow: none;}
p{margin: 0; padding: 0;}
a { text-decoration: none;}
::selection {color:var(--color_black);background:var(--primary1) ;}

/* smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Container responsive fix */


/* Prevent horizontal overflow */
* {
    box-sizing: border-box;
}

/*:not(.mask-group-img) {
    max-width: 100%;
} */

/* Header css start */
.header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background-color: transparent;
    transition: all 0.3s ease;
    width: 1440px;
    height: 103px;
    opacity: 1;
    padding-top: 24px;
    padding-right: 80px;
    padding-bottom: 24px;
    padding-left: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header.sticky {
    background-color: rgba(43, 113, 184, 0.95);
    backdrop-filter: blur(10px);
    padding-top: 24px;
    padding-right: 80px;
    padding-bottom: 24px;
    padding-left: 80px;
}

.header .navbar {
    padding: 0;
    width: 100%;
    height: 55px;
    display: flex;
    align-items: center;
}

.header .navbar-brand {
    display: flex;
    align-items: center;
}

.header .navbar-logo {
    width: 200px;
    height: 49.63px;
    opacity: 1;
    object-fit: contain;
}

.header .navbar-collapse {
    width: 579px;
    height: 55px;
    opacity: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header .navbar-nav {
    display: flex;
    gap: 40px;
    margin: 0;
    align-items: center;
}

.header .navbar-nav .nav-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 125%;
    letter-spacing: 0%;
    color: #FFFFFF;
    opacity: 0.5;
    height: 23px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
}

.header .navbar-nav .nav-link:hover {
    opacity: 1;
    color: #FFFFFF;
}

.header .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color_white);
    transition: width 0.3s ease;
}

.header .navbar-nav .nav-link:hover::after {
    width: 100%;
}

.header .navbar-toggler {
    border: none;
    padding: 0;
}

.header .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
/* Header css end */

/* Hero Section css start */
.hero-section {
    background: radial-gradient(46.81% 36.53% at 50% 30.52%, #2B71B8 0%, #004B97 100%);
    position: relative;
    overflow: hidden;
    padding-top: 330px;
    padding-bottom: 100px;
    z-index: 1;
}



/* Mask Group SVG - HTML image tag */
.mask-group-img {
    position: absolute;
    top: 140px;
    left: 50%;
    transform: translateX(-50%);
    width: 1100px;
    height: 282.8893737792969px;
    opacity: 1;
    border: 1.06px solid transparent;
    z-index: 2;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 63.33px;
    left: 119.17px;
    width: 1201.07px;
    height: 885.85px;
    background-image: url('../image/Vector 1.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 3;
}

.hero-main-row {
    min-height: 400px;
    padding: 40px 0;
}

.product-showcase {
    text-align: center;
    padding: 20px 0;
}

.product-showcase img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

.hero-content {
    padding: 20px 0;
}

.hero-title {
   font-size: 40px;
    font-weight: 800;
    color: var(--color_white);
    line-height: 125%;
    margin-bottom: 24px;
    font-family: var(--titleFont);
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 200;
    color: #FFFFFFB8;
    margin-bottom: 40px;
    line-height: 125%;
    font-family: var(--titleFont);
    white-space: pre-line;
}

.carousel-controls {
    display: flex;
    gap: 16px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.carousel-btn:hover {
    background-color: var(--color_white);
    border-color: var(--color_white);
}

.carousel-btn span {
    font-size: 18px;
    color: var(--color_white);
    transition: color 0.3s ease;
}

.carousel-btn:hover span {
    color: var(--primary1);
}
/* Hero Section css end */

/* Features Bar css start */
.features-bar {
    margin-top: 30px;
    padding: 0 15px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.features-container {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(43, 113, 184, 0.3);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.features-container .col {
    padding: 20px 50px;
    min-height: 80px;
    gap: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.features-container .feature-text {
    white-space: nowrap;
    flex-shrink: 0;
}

.features-container .feature-icon {
    flex-shrink: 0;
}

.feature-icon {
    font-size: 20px;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.9);
    text-stroke: 1.5px rgba(255, 255, 255, 0.9);
}

.feature-text {
   font-size: 18px;
    font-weight: 200;
    color: #FFFFFFB8;
    font-family: var(--titleFont);
    text-align: center;
}
/* Features Bar css end */

/* hover css */
.site-link{position: relative;}
.site-link:before{position: absolute;top: -1px;left: 0;overflow: hidden;padding: 0 0 4px 0;max-width: 0;border-bottom: 2px solid #fff;color: #fff;content: attr(data-hover);transition: max-width 0.5s;white-space: pre;}
.site-link:hover:before{max-width: 100%;}

/* title button css  */
.title-btn{position: relative;border-radius: 12px;padding: 8px 24px;background: linear-gradient(#fff, #fff) padding-box, linear-gradient(178.53deg, rgba(43, 113, 184, 1), rgba(43, 113, 184, 0.3)) border-box; border: 1px solid transparent;font-size: 16px;font-weight: 300; color: rgba(43, 113, 184, 1);}

.sub-title{color: rgba(43, 113, 184, 1); font-size: 48px;font-weight: 400;}


/* footer start */
.footer{display:block; background-color:var(--primary1); padding-top: 80px; padding-bottom: 35px; box-shadow: -4px -16px 16px rgba(0, 0, 0, 0.25);  border-style: solid;border-top: 1px solid;border-image-source: linear-gradient(270deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.72) 50%, rgba(255, 255, 255, 0.1) 100%); }
.footer img { max-width: 100%;margin: auto;text-align: center;display: block;}
.footer p {color: rgba(255, 255, 255, 0.5);text-align: center;font-weight: 300;font-size: 18px; padding-top: 20px; padding-bottom: 48px;}
.footer ul {display: flex;justify-content: center; flex-wrap: wrap;padding-bottom: 50px;}
.footer ul li{padding: 0px 24px 0px 24px;}
.footer ul li a {color: var(--color_white); font-size: 18px; font-weight: 300;font-family: var(--titleFont);}
.follow-sec h6 strong{ display: block; text-align: left !important; color: var(--color_white); font-size: 20px; font-weight: 400;}
.follow-sec h6 {font-size: 16px; font-weight: 300; color: rgba(255, 255, 255, 0.5);}
.follow-sec {display: flex;justify-content: space-evenly;align-items: center;padding-top: 25px;padding-bottom: 25px;border-image-slice: 1; width: 100%; border-width: 1px 0px 1px 0px;border-style: solid;border-image-source: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.72) 50%, rgba(255, 255, 255, 0.1) 100%);}
.follow-sec ul {padding-bottom: 0px;}
.follow-sec ul li {padding: 0px 0px 0px 16px;}
.follow-sec ul li a {display: flex;align-items: center;justify-content: center;color: var(--color_white);background-color: rgba(255, 255, 255, 0.12);width: 45px;height: 45px;text-align: center;position: relative;z-index: 0;transition: 0.4s all;border-radius: 50%;overflow: hidden;}
.follow-sec ul li a:before {content: '';position: absolute;left: 0; width: 100%; bottom: 0; height: 0%; z-index: -2; background: var(--color_white); transition: 0.5s all}
.follow-sec ul li a:hover:before {height: 100%}
.follow-sec ul li a:hover img { z-index: 999;filter: invert(39%) sepia(79%) saturate(595%) hue-rotate(171deg) brightness(85%) contrast(89%);}
.copyright-sec p { padding: 24px 0px 24px 0px;color: rgba(255, 255, 255, 0.5);font-size: 16px;font-weight: 300; text-align: center; padding-bottom: 0px !important;}
.copyright-sec p a{color: var(--color_white);}
/* footer end */

/* Contact Us sec start */
.contact-us-sec{ display: block;padding-top: 100px;padding-bottom: 100px;background-image: linear-gradient(#F5FAFF, #FFFFFF);}
.contact-content .sub-title {padding-top: 24px;}
.contact-content  P{font-size: 18px; font-weight: 300; color: var(--primary2); padding-top: 24px;}
.contact-content h3{font-size: 20px; font-weight: 400; color:var(--primary3) ; padding-top: 24px;}
.contact-content h6{font-size: 18px; font-weight: 300; color: var(--primary3); padding-top: 8px;}
.contact-content h5{font-size: 18px; font-weight: 300; color: var(--primary2); padding-top: 16px; padding-bottom: 12px;}
.send-message-sec { display: block; padding: 40px; box-shadow: 0px 4px 8px -2px rgba(0, 0, 0, 0.05);border: 1px solid rgba(128, 128, 128, 0.3);border-radius: 16px;background-color: var(--color_white);}
.send-message-sec h6{ font-size: 24px; font-weight: 400;color: var(--primary1); padding-bottom: 24px; margin-bottom: 0px;}
.send-message-sec .form-group label.form-label { font-size: 14px; font-weight: 400; color: var(--primary3);}
.send-message-sec .form-group .form-control {border: 1px solid rgba(128, 128, 128, 0.3) !important; border-radius: 8px; padding: 12px 16px;}
.send-message-sec .form-group textarea { resize: none;height: 120px;}
.send-message-sec .form-group  label.form-check-label { font-size: 14px; font-weight: 400;color: var(--primary2);}
.send-message-sec .form-group  label.form-check-label a{ color: var(--primary3);text-decoration: underline;}
.send-message-sec .submit-btn { text-align: center; display: block; padding: 12px 20px; background-color: var(--primary1); color: var(--color_white); border-radius: 30px;margin-top: 24px;border: 1px solid var(--primary1);transition: 0.5s all ease-in;}
.send-message-sec .submit-btn:hover{background-color: var(--color_white);color: var(--primary1);border: 1px solid var(--primary1);}
/* Contact Us sec end */

/* about choose sec css start */
.about-choose-sec{ display: block;background-color: var(--primary1);padding-top: 64px;padding-bottom: 64px;border-radius: 32px;}
.about-us-logo {text-align: center;position: relative;}
.about-us-sec h2{font-size: 40px;font-weight: 400; color: var(--color_white);}
.about-us-sec p{ font-size: 18px;color: var(--color_white); font-weight: 300; white-space: pre-line; padding-top: 24px;}
.why-choose-us h2{ font-size: 40px; font-weight: 400; color: var(--color_white);text-align: right;}
.why-choose-us h6{font-size: 18px;font-weight: 400; color: var(--color_white);text-align: right; padding-top: 24px;}
.why-choose-us p{ font-size: 16px; font-weight: 300; color:rgba(255, 255, 255, 0.5); text-align: right;}
.about-us-logo{position: relative; display: block;}
.about-us-logo img {max-width: 100%;}
.about-us-logo::before {position: absolute; content: ''; top: 40%; left: 1%; background-image: url(../image/border-left.png); background-repeat: no-repeat; width: 300px; height: 100px;}
.about-us-logo::after { position: absolute; content: ''; top: 40%;right: -1%;background-image: url(../image/border-right.png);background-repeat: no-repeat; width: 300px; height: 100px;}
/* about choose sec css end */

/* video sec css start */
.video-sec{ display: block;padding-top: 100px; padding-bottom: 100px; background-image: radial-gradient(rgba(0, 89, 178, 1), rgba(43, 113, 184, 1));}
.video-content .sub-title{color: var(--color_white);}
.video-content p { font-size: 18px; font-weight: 300; white-space: pre-line; color: var(--color_white); padding-top: 24px;}
.info-content {background-color: rgb(255 255 255 / 2%);padding: 20px;border: 1px solid #FFFFFF40;border-radius: 16px;}
.info-content ul li {position: relative;font-size: 16px; font-weight: 300;color: var(--color_white); line-height: 250%; padding-left: 40px;}
.info-content ul li::before { content: '';position: absolute; top: 10px; left: 0px; width: 35px;height: 27px;aspect-ratio: 1 / 1;background: url(../image/sparkwell-icon.png) no-repeat; background-size: contain;}
.product-video-sec video {width: 100%; object-fit: cover; height: 100%;border-radius: 24px; filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.12));}
/* video sec css end */


/* products sec start */
.products-sec{display: block;padding-top: 100px;padding-bottom: 100px;}
.products-sec .sub-title {padding-top: 24px;margin-bottom: 80px;}
/* .product-box { background-color: var(--color_white);padding: 30px;border-radius: 12px; box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);max-width: 650px;margin: 50px auto;} */
.main-image { width: 100%;height: auto;position: relative;object-fit: contain;margin-bottom: 15px;}
.thumbnail-bar {display: flex;justify-content: space-between;flex-wrap: wrap;gap: 10px;}
.thumbnail-bar img { width: 100px;height: 70px;object-fit: cover;border: 2px solid transparent;border-radius: 6px;cursor: pointer;transition: 0.3s ease;}
.thumbnail-bar img:hover,.thumbnail-bar img.active { border-color: #0d6efd;}
/* .product-title {font-size: 1.5rem;font-weight: 600;margin-top: 25px; color: #0d6efd;text-align: center;} */
.product-description h3{font-size: 32px;font-family: var(--titleFont);color: var(--primary1); margin-bottom: 0px;}
.product-description .underline {display: block; width: 75px; height: 1px; background-color: #2B71B880; margin-top: 24px;}
.product-description h4 {color:#707070;font-size: 20px;font-weight: 400; font-family: var(--titleFont); margin-top: 24px; margin-bottom: 8px;}
.product-description p{color: #808080;font-weight:300; font-size: 16px;font-family: var(--titleFont);white-space: pre-line;}
.product-description ul li { position: relative;font-size: 16px;font-weight: 300;font-family: var(--primary1);color: #808080;padding-left: 30px;margin-bottom: 10px;}
.product-description ul li::before {content: '';position: absolute;top: 10px;left: 0px;width: 15px;height: 11px;background: url(../image/check.png) no-repeat;background-size: contain;}
.product-description .order-btn { display: inline-block;background-color:var(--primary1) ;color: var(--color_white) !important;border-radius: 200px;padding: 14px 24px;margin-top: 24px;font-family: var(--titleFont);font-weight: 400;font-size: 16px;transition: 0.5s all ease-in;border: 1px solid var(--primary1);}
.product-description .order-btn span img{padding-left: 8px;transition: 0.5s all ease-in;}
.product-slider {text-align: center;border: 1px solid #ddd;border-radius: 15px;padding: 16px;box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.05);}
.main-image img {max-width: 100%;height: auto;}
.thumb-slider { margin-top: 15px;display: flex;gap: 10px;overflow-x: auto;padding: 10px 0;scroll-behavior: smooth;}
.thumb-slider img {width: 90px;height: 90px;object-fit: contain;cursor: pointer;transition: 0.3s;background-color: #f0f7fe;padding: 10px;border-radius: 8px;border: 1px solid rgba(128, 128, 128, 0.20);margin: 0px 2px;}
.thumb-slider img.active {border-color: var(--primary1);}
.image-box {display: block;overflow: hidden;position: relative;padding-top: 94.48%;border-radius: 16px;background: #F0F7FE;}
.image-box img {width: 100%;height: 100%;position: absolute;left: 0;top: 0;object-fit: contain;padding: 24px;}
.thumb-slider::-webkit-scrollbar {height: 2px;cursor: pointer;}
.thumb-slider::-webkit-scrollbar-thumb {background: #ccc;border-radius: 3px;}
/* products sec end */

/* How to Use sec css start  */
.how-to-use-sec{display: block;padding-top: 100px;padding-bottom: 100px; background-color: #F5FAFF;}
.how-to-use-sec .sub-title{ margin-top: 25px; margin-bottom: 80px;}
.cooking-system-sec {display: block;position: relative; }
.cooking-system-sec img {width: 100%;max-width: 87%;z-index: 999;position: relative; padding-top: 130px; padding-bottom: 88px;}
.cooking-system-sec:before {position: absolute;content: ''; left: 0px;top: 0px;right: 200px;bottom: 0px;background-image: radial-gradient(rgba(255, 255, 255, 1),rgba(165, 210, 255, 1)); border-radius: 8px;}
.vector-icon{position: relative;}
.vector-icon::before {position: absolute;content: ''; right: -81px; bottom: 0; top: -22px; background-image: url(../image/vector-icon.png); z-index: 999;width: 100%;height: 100%;background-repeat: no-repeat;max-width: 300px; min-height: 300px;}
.vector-icon::after {position: absolute;content: ''; bottom: 0;left: -21px;top: 500px;background-image: url(../image/vector-icon.png);background-repeat: no-repeat;z-index: 999;right: 0;width: 100%;height: 100%;max-width: 300px; min-height: 300px;}
.nav-sec{display: flex; align-items: center;justify-content: center;}
.nav-sec .nav{width: 170px;}
.nav-pills .nav-link {text-align: right; padding: 0;margin: 0;margin-bottom: 50px;transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);transform: scale(1);will-change: transform;}
.nav-pills .nav-link.active {text-align: right;background-color: transparent;transform: scale(1.1);}
.description-sec {width: 100%;max-width: 400px;}
.step-content {margin-bottom: 70px;transition:0.5s ease-in-out;color: var(--primary3); font-size: 16px;font-weight: 300;opacity: 0.5;}
.step-content.active {display: block;font-size: 18px;font-weight: 400; color: var(--primary1); opacity: 1;}
.step-number{font-size: 32px; font-weight: 800;font-family: var(--titleFont);color: rgba(43, 113, 184, 0.4);}
.step-label{font-family: var(--titleFont);font-size: 18px;font-weight: 400;color: rgba(43, 113, 184, 0.4);}
.nav-pills .nav-link.active .step-number { font-size: 38.4px;font-weight: 700;color: rgba(43, 113, 184, 0.7);font-family: var(--titleFont);}
.nav-pills .nav-link.active .step-label {font-size: 24px;font-weight: 400;color: var(--primary1);font-family: var(--titleFont);}
.vertical-line {position: relative; width: 1px;height: 100%;min-height: 500px;margin: 0 80px;}
.line-sec {position: absolute; top: 0; left: 0; width: 1px; height: 100%; background-color: #8080801A;}
.line-progress-auto {position: absolute; top: 0; left: 0; width: 1px; height: 0;background-color: var(--primary1);animation: growLine 16s linear infinite; transform-origin: top;}
@keyframes growLine { 0% {height: 0%;} 100% { height: 100%; }}
/* How to Use sec css end */


/* benefits sec start */
.benefits-sec{display: block; padding-top: 100px; padding-bottom: 100px;}
.benefits-sec .sub-title { margin-top: 25px; margin-bottom: 65px;}
.benefit-title h5 {font-size: 24px;color: var(--primary1);font-weight: 400; white-space: pre-line;}
.benefit-text p{font-size: 16px; font-weight: 300; color: var(--primary2);}
.benefit-text p strong { color: var(--primary1);font-weight: 400;}
span.line {display: block;border: 1px solid rgb(128 128 128 / 10%); margin-top: 31px;margin-bottom: 31px;}
.line-second{ display: block; border: 1px solid rgb(128 128 128 / 10%); margin-top: 40px; margin-bottom: 20px;}
.line-third{display: block;border: 1px solid rgb(128 128 128 / 10%); margin-top: 15px; margin-bottom: 10px;}
.hotplate-wrapper{ position: relative; display: block; text-align: center;}
.hotplate-wrapper img{margin-bottom: 24px;}
.hotplate-wrapper:before {position: absolute;content: '';left: 0px;right: 0; bottom: 0px;background-image: radial-gradient(rgba(255, 255, 255, 1),rgba(165, 210, 255, 1));width: 100%;border-radius: 14px;z-index: -1;height: 120px;}
.arrow-img {display: block;text-align: center;}
.arrow-img img {margin-top: -240px;width: 100%;max-width: 150px;}
.description-box p{font-size: 18px;font-weight: 300; font-family: var(--titleFont);color: var(--primary1);text-align: right; white-space: pre-line;}
/* benefits sec end */


.our_value_scssn{display: block; padding-top: 65px; padding-bottom: 65px; }
.our_value_scssn h3 {font-size: 35px; color: rgba(43, 113, 184, 0.4); font-weight: 400; line-height: 1.5; white-space: pre-line; position: sticky; top: 50px; }
.our_value_accordion .accordion-item { border: none; border-bottom: 1px solid #e8e8e8; padding: 20px 0px;  background-color: #F5FAFF; }
.our_value_accordion .accordion-button{font-size: 22px;font-weight: 400; text-transform: capitalize; }
.our_value_accordion .accordion-button.collapsed{color: rgba(43, 113, 184, 0.4); background-color:#F5FAFF; }
.our_value_accordion .accordion-button:not(.collapsed){background: #F5FAFF;box-shadow: none;color:var(--primary1);}
.our_value_accordion .accordion-header {display: flex; align-items: center; }


.our_value_accordion .accordion-header span {color: #cccccc75; }
.our_value_accordion .accordion-header .accordion-button::before {width: 2px; height: 20px; right: 28px; }
.our_value_accordion .accordion-header .accordion-button::after, .our_value_accordion .accordion-header .accordion-button::before {position: absolute; right: 20px; color: rgba(43, 113, 184, 0.4); width: 20px; height: 2px; background: rgba(43, 113, 184, 0.4); content: ''; transition: 0.4s all; }
.our_value_accordion .accordion-header .accordion-button::before {width: 2px; height: 2px; right: 28px; color: #e8e8e8; }
.our_value_accordion .accordion-button:not(.collapsed)::after{background:var(--primary1); } 
.our_value_accordion .accordion-header .accordion-button:not(.collapsed)::before {height: 0; }
.our_value_accordion .accordion-body p {color: #808080;margin-left: 30px;}
.our_value_accordion .accordion-button:focus {z-index: 3;border-color: #ffffff;outline: 0;box-shadow: 0 0 0 .25rem rgba(255, 255, 255, 0.25);}
.our_value_accordion .accordion-body span {color: #cccccc75; margin-right: 15px; }

  /* Testimonials Section CSS start */
  /* 🔹 Container */
.carousel-container {width: 100%;position: relative;height: 700px;max-width: 600px;}
/* 🔹 Testimonial Card */
.testimonial-card {width: 100%;max-width: 550px;padding: 32px;border-radius: 20px;position: absolute; left: 0; opacity: 0;transition: all 0.6s ease-in-out; background: radial-gradient(66.29% 42.18% at 54.11% 109.32%, #0059B3 0%, #2B71B8 100%);color: #fff;}
/* 🔹 Active Card */
.testimonial-card.active {top: 50%;transform: translateY(-50%) scale(1);opacity: 1; z-index: 3;filter: blur(0);transform: translate(-10%, -100px);}
/* 🔹 Upper Card */
.testimonial-card.upper-card {
  top: 15%;transform: translateY(-70%) scale(0.95);opacity: 0.5;z-index: 2;filter: blur(4px);}

/* Lower Card */
.testimonial-card.lower-card {top: 85%;transform: translateY(-0%) scale(0.95);opacity: 0.5;z-index: 1;filter: blur(4px);}

/* Navigation Arrows */
.carousel-navigation { position: absolute;right: -50px;top: 50%;transform: translateY(-30%);display: flex;flex-direction: column;gap: 40px;z-index: 10;}
.arrow-container {width: 48px;height: 48px;cursor: pointer;transition: all 0.3s ease;}
.arrow-container:hover {transform: scale(1.1);}
.arrow-container.down-arrow {transform: rotate(180deg);}
.nav-arrow { width: 100%;height: 100%;object-fit: contain;}
.testimonials-title {white-space: pre-line;padding-top: 24px;}
.testimonials-description {color: #808080;font-weight: 300; font-size: 16px;font-family: var(--titleFont);white-space: pre-line;}
.testimonial-title {padding-top: 32px;font-size: 24px;font-family:var(--titleFont);}
p.testimonial-description {color: var(--color_white);font-weight: 300;font-size: 16px;font-family: var(--titleFont);padding-top: 16px;}
span.testimonial-author { display: block;padding-top: 32px;}
/* Upper Card Fade + Blur */
.testimonial-card.upper-card {opacity: 0.6;filter: blur(6px);mask-image: linear-gradient(to bottom, transparent 0%, #0059B2 60%);-webkit-mask-image: linear-gradient(to bottom, transparent 0%, #2B71B8 60%);}
/* Lower Card Fade + Blur */
.testimonial-card.lower-card {opacity: 0.6;filter: blur(6px);mask-image: linear-gradient(to top, transparent 0%,  #0059B2 60%);-webkit-mask-image: linear-gradient(to top, transparent 0%, #2B71B8 60%);}
.testimonials-sec{width: 100%; height: 100%;overflow: hidden;padding-bottom: 50px;}
/* Testimonials Section CSS end */

/* ----====== Whatsapp icon STAR ======---- */
.wtsapp { width: 75px; height: 75px;position: fixed;bottom: 20px; right: 20px; background: #02D661;color: #fff;border: 0;border-radius: 100%;z-index: 10;display: flex;align-items: center;justify-content: center;}
.wtsapp:before, .wtsapp:after {content: '';display: block;position: absolute;top: 0;right: 0;bottom: 0; left: 0;border: 1px solid rgb(37 211 102 / 63%);border-radius: 50%; z-index: -1;}
.wtsapp:before {animation: btn_ring_anim 2s linear infinite;}
.wtsapp:after {animation: btn_ring_anim 2s linear 1s infinite;}
.wtsapp a { font-size: 35px;border-radius: 50px;color: white;position: absolute;top: 8px;left: 8px;display: flex;right: 8px;bottom: 8px;align-items: center;justify-content: center;border: 3px solid #ffffff;}
@keyframes btn_ring_anim {
    0% {
        transform: scale(1);
        opacity: 0.1;
    }

    50% {
        transform: scale(1.3);
        opacity: 1;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* ----====== Whatsapp icon END ======---- */

/* Position of arrows */
.owl-carousel .owl-nav {
    position: absolute;
    /* top: 50%; */
    width: 100%;
        text-align: left;
    /* transform: translateY(-50%); */
    /* display: flex;
    justify-content: space-between;
    pointer-events: none; */
}

/* Common button style */
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    background: transparent !important;
    border: none !important;
    width: 45px;
    height: 45px;
    pointer-events: auto;
}

/* LEFT arrow */
.owl-carousel .owl-nav button.owl-prev {
    position: relative;
    background-image: url("../image/arrow_left_alt.png") !important;
    background-size: contain;
    background-repeat: no-repeat !important;
    background-position: center;
}

.owl-carousel .owl-nav button.owl-prev::before {
    position: absolute;
    content: '';
    left: -10px;
    right: 0;
    bottom: 0;
    top: -10px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

/* RIGHT arrow */
.owl-carousel .owl-nav button.owl-next {
    position: relative;
    background-image: url("../image/arrow_right_alt.png") !important;
    background-size: contain;
    background-repeat: no-repeat !important;
    background-position: center;
    margin-left: 30px;
}

.owl-carousel .owl-nav button.owl-next::after {
    position: absolute;
    content: '';
    left: 10px;
    right: 0;
    bottom: 0;
    top: -10px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

/* Remove default text */
.owl-carousel .owl-nav button span {
    display: none !important;
}








