@import url("../fonts/sora/sora.css");

body{
    margin: 0; 
}

/* ===== navbar starts ===== */
/* Main header container */
.top-header {
    /*width: 1440px;*/
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 60px;
    background-color: #5225B5;
    color: #ffffff;
}

.top-header .contact-info {
    display: flex;
    align-items: center;
    gap: 24px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Sora", sans-serif;
    padding-right: 24px;
    border-right: 1px solid;
}

.top-header .contact-info a {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    gap: 12px;
}

/* Ticker section */
.top-header .ticker-container {
    overflow: hidden;
    flex: 1;
    margin-left: 40px;
    position: relative;
    height: 24px;
}

.top-header .ticker-text {
    display: inline-block;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Sora", sans-serif;
    animation: scrollTicker 35s linear infinite;
}

@keyframes scrollTicker {
    from {
        transform: translateX(30%);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Optional hover pause */
.top-header .ticker-text:hover {
    animation-play-state: paused;
}

.bottom-header{
    padding: 20px 24px;
    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 40px;
    border-bottom: 1px solid #D9DBE9;
    border-left: 1px solid #D9DBE9;
    border-right: 1px solid #D9DBE9;
}

.header-search-area {
    background: #fff;
    border-bottom: 1px solid #eee;
}

/* --- LOGO --- */
.header-logo {
    max-height: 55px;
}

/* --- SEARCH BAR --- */
.search-wrapper {
    width: 100%;
    max-width: 640px;
    position: relative;
}

.search-input {
    padding-left: 40px;
    height: 48px;
    border-radius: 16px;
    background: #FBFBFE;
    border: 1px solid #D9DBE9;
    font-size: 14px;
    font-family: "Sora", sans-serif;
}

.search-icon {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: #6F6C8F;
}

/* --- DROPDOWNS --- */
.dropdown-box .btn {
    background: #FBFBFE;
    border: 1px solid #D9DBE9;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 14px;
    font-family: "Sora", sans-serif;
    display: flex;
    align-items: center;
}

.flag-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin-right: 6px;
}

@keyframes ticker {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Optional hover pause */
.top-header .ticker-text:hover {
    animation-play-state: paused;
}

ul {
    list-style-type: none;
}

/* ============================
   BASE MENU WRAPPER
============================ */
.menu-bar {
    margin: 0 auto;
    padding-top: 20px;
    background-color: #ffffff;
    font-family: "Sora", sans-serif;
}

/* ============================
   LEVEL-1 MENUS (DESKTOP)
============================ */
.menu-bar > ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    position: relative;
}

.menu-bar > ul > li {
    position: relative;
    padding: 6px 8px;
}

.menu-bar > ul > li:hover:not(li.nitroso) {
    border-radius: 20px;
    background: #F5F1FF;
}

.menu-bar ul li a {
    text-decoration: none;
    font-size: 14px;
    color: #000;
    font-weight: 400;
    display: inline-block;
    transition: color 0.3s ease;
}

/* ============================
   NITROSO TAB SPECIAL STYLING
============================ */
.nitroso {
    background: #E5F937;
    transform: skew(-20deg);
    border-radius: 4px;
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.nitroso::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 100%;
    background: #9967D1;
    transition: bottom 0.5s ease;
    z-index: -1;
}

.nitroso:hover::before {
    bottom: 0;
}

.nitroso a {
    position: relative;
    padding: 10px 20px;
    transform: skew(20deg);
    z-index: 1;
}

.menu-bar > ul > li.nitroso:hover {
    border-radius: 4px;    
}

/* ============================
   FIRST-LEVEL DROPDOWN
============================ */
.menu-bar ul li ul.dropdown {
    position: absolute;
    top: 35px;
    left: 0;
    padding: 4px;
    background: #fff;
    border: 1px solid #E7E8EF;
    border-radius: 30px;
    /* width: 300px; */
    width: max-content;
    display: none;
    flex-direction: column;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    z-index: 999;
}

.menu-bar ul li:hover > ul.dropdown {
    display: flex;
}

.menu-bar ul li ul.dropdown li {
    padding: 12px 16px;
    width: 100%;
    border-radius: 50px;
}

.menu-bar ul li ul.dropdown li a {
    color: #6F6C90;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-bar ul li.has-dropdown > a::after {
    content: "";
    width: 14px;
    height: 14px;
    background-image: url('../images/Chevron-down.svg');
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.menu-bar ul li.has-dropdown:hover > a::after {
    transform: rotate(180deg);
}

/* ============================
   SECOND-LEVEL DROPDOWN
============================ */
.menu-bar ul.sub-dropdown {
    display: none;
    padding-left: 20px;
    border-left: 1px solid #6F6C90;
    margin-top: 8px;
    list-style: none;
}

/* Show only when hovering parent */
.menu-bar ul.dropdown li:hover > ul.sub-dropdown {
    display: block;
}

/* Hover effect inside deeper dropdown */
.menu-bar ul.dropdown li ul.sub-dropdown li ul li:hover {
    background: #5225B533;
}

/* ============================
   MULTI-LEVEL (3rd level)
============================ */
/* .menu-bar ul.sub-dropdown li ul.sub-dropdown {
    display: none;
    padding-left: 20px;
    border-left: 1px dashed #AAA;
}

.menu-bar ul.sub-dropdown li:hover > ul.sub-dropdown {
    display: block;
} */

/* ============================
   THIRD-LEVEL DROPDOWN
============================ */
/* .sub-dropdown .has-dropdown:has(ul.third-dropdown) {
    position: relative;
}

.third-dropdown {
    width: 80% !important;
    list-style: none;
    top: 40px !important;
    left: 140px !important;
} */

.language-selector {
  position: relative;
  display: inline-block;
  font-family: "Sora", sans-serif;
}

.language-selector button {
  background: #FBFBFE;
  border: 1px solid #E7E8EF;
  border-radius: 20px;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 14px;
}

.language-selector ul {
  position: absolute;
  top: 40px;
  right: 0;
  background: #fff;
  border: 1px solid #E7E8EF;
  border-radius: 16px;
  list-style: none;
  margin: 0;
  padding: 8px 0;
  width: 160px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.language-selector ul li {
  padding: 8px 16px;
  cursor: pointer;
  font-size: 14px;
}

.language-selector ul li:hover {
  background-color: #F5F1FF;
}

.hidden { display: none; }
.goog-te-gadget { display: none !important; }
/* ===== navbar ends ===== */


/* ===== main slider starts ===== */
.main-slider .swiper-wrapper{
    padding: 0px 0px 0px 0px;
    height: auto !important;
    
}
.main-slider .swiper-slide{
    padding-top: 100px;
    background-color: #5225B5;
    border-radius: 44px;
    
    position: relative;
    width: 100%;
    /* height: 100vh; */
    overflow: hidden;
}
.main-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.main-slider .swiper-slide-top{
    padding: 0px 60px 202px;
}
.main-slider .swiper-slide-top h2{
    font-size: 70px;
    font-weight: 400;
    color: #F8F6F2;
    font-family: "Sora", sans-serif;
    margin: 0;
}
.main-slider .swiper-slide-bottom{
    border-top: 1px solid #C3C3C3;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.main-slider .swiper-slide-left{
    border-right: 1px solid #C3C3C3;
}
.main-slider .swiper-slide-right{
    padding:40px 60px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: start;
}
.main-slider .swiper-slide-right p{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #F8F6F2;
    font-family: "Sora", sans-serif;
    margin: 0;
}
.main-slider .swiper-slide-right a{
    text-decoration: none;
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    color: #3B3B33;
    font-family: "Sora", sans-serif;
    padding: 16px 24px;
    background: #FFFFFF;
    border-radius: 40px;
}
.main-slider .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
    width: 25px;
    border-radius: 5px;
}

.main-slider .swiper-pagination-horizontal > .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background-color: #007AFF;
}

.main-slider .swiper-pagination-horizontal > .swiper-pagination-bullet:not(swiper-pagination-bullet-active){
    background-color: #ffffff;
}

/* ===== main slider ends ===== */

/* ===== recent products starts ===== */
.recent-products{
    /* padding:120px 60px; */
    padding:120px 40px;
}

.recent-products-header {
    display: flex;
    justify-content: space-between;   /* keep both ends aligned */
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap; /* Prevent breaking layout on small screens */
}

.recent-products-title {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
}

.recent-products-nav {
    display: flex;
    gap: 10px;
}

.recent-products-nav button {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 10px;
    background:#E5F937;
    color:white;
    transition:.3s;
}

.recent-prev.swiper-button-disabled, .recent-next.swiper-button-disabled.disabled, .recent-next.swiper-button-disabled{
    background:#E6E6E6;
}

.recent-products-swiper .swiper-slide{
    /* width: fit-content !important; */
    /* width: 340px !important; */
    width: 330px !important;
    margin: 0px 12px;
}

.recent-products-title{
    font-size:44px; 
    font-weight:400; 
    font-family: "Sora", sans-serif;
    color: #1F271B;
    margin-bottom: 10px;
}

.recent-products-description{
    font-size:16px; 
    font-weight:400; 
    font-family: "Sora", sans-serif;
    color: #676767;
    margin-bottom: 60px;
}

.product-card{
    border-radius: 20px;
}

.product-card .product-name{
    background-color: #5225b5;
    color: #fff;
    text-align: center;
    text-transform: capitalize;
    /* padding: 20px 16px; */
    padding: 10px;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    margin:0px; 
    /* white-space:nowrap;  */
    /* overflow:hidden;  */
    text-overflow:ellipsis;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-card-body{
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    background-color: #F3EEFF;
}

.product-card .product-image-wrapper{
    padding: 8px;
}

.product-card .product-image{
    display:block; 
    background:#fff; 
    overflow:hidden;
    border-radius: 20px;
}

.product-card .product-image img{
    width:100%; 
    height:200px; 
    object-fit:contain;
}

.product-card .product-details{
    text-align: left;
    display: block;
    padding: 5px 16px;
    width: 100%;
    border-collapse: collapse;
}

.product-card .product-details tbody{
    display: block;
    width: 100%;
}

.product-card .product-details tr {
    display: grid;
    grid-template-columns: 1fr 1fr;  /* two equal columns */
    padding: 8px 0;
    border-bottom: 1px dotted #d9d7d2;
    align-items: center;
}

.product-card .product-details td {
    padding: 4px 8px;
}

.product-card .product-view-btn{
    display:inline-block;
    margin-top:12px;
    background:#fff;
    color:#5225B5;
    padding:10px 20px;
    border-radius:30px;
    text-decoration:none;
    font-size:14px;
}

.recent-products-swiper .custom-prev,
.recent-products-swiper .custom-next {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.recent-products-swiper .custom-prev::after,
.recent-products-swiper .custom-next::after {
    font-size: 16px;
    color: #5225B5; /* your theme color */
    font-weight: bold;
}


.in-stock{
    background-color: #055244;
    color: #fff;
    border-radius: 40px;
    padding: 8px 12px;
    gap: 10px;
    font-size: 14px;
    font-weight: 400px;
}

.out-of-stock{
    background-color: #999999;
    color: #fff;
    border-radius: 40px;
    padding: 8px 12px;
    gap: 10px;
    font-size: 14px;
    font-weight: 400px;
}

.custom-synthesis, .under-synthesis, .default-status{
    background-color: #929796;   
    color: #fff;
    border-radius: 40px;
    padding: 8px 12px;
    gap: 10px;
    font-size: 14px;
    font-weight: 400px;
}

/* ===== recent products ends ===== */

/* ===== our purpose starts ===== */

.our-purpose-right-title{
    color: #999999;
    font-size: 14px;
    font-family: Sora;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 18px;
    word-wrap: break-word;
    letter-spacing:1px;
}

.our-purpose-right-sub-title{
    color: #1F271B;
    font-size: 44px;
    font-family: Sora;
    font-weight: 400;
    word-wrap: break-word
}

.our-process-rounded-pill{
    color: white;
    font-size: 14px;
    font-family: Sora;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 18px;
    word-wrap: break-word;
    background: #5225B5; 
    border: none;
    padding: 5px 10px !important;
}

/* ===== our purpose ends ===== */

/* ===== services starts ===== */

.services-section {
    background: linear-gradient(135deg, #3B2968, #5225B5);
    border-radius: 60px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.service-theme-image{
    position: absolute;
    top: 0px;
}
.services-section .container{
    margin-top: 60px;
}

/* Headings */
.section-subtitle {
    color: #cccccc;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 44px;
    font-weight: 400;
}

/* Left Illustration */
.services-illustration {
    width: 640px;
    height: 640px;
}

.services-circle-border {
    width: 576px;
    height: 576px;
    border-radius: 50%;
    border: 1px solid #fff;
    /* background: #42297D; */
    position: absolute;
    top: 32px;
    left: 32px;
}

.services-circle-border-2 {
    width: 450px;
    height: 450px;
    border-radius: 50%;
    border: 1px solid #fff;
    /* background: #42297D; */
    position: absolute;
    top: 100px;
    left: 100px;
    z-index: 0;
}

.services-circle-border-3 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid #fff;
    /* background: #42297D; */
    position: absolute;
    top: 170px;
    left: 170px;
}

.synchemia-bubble-heading{
    position: relative;
    /* top: 275px; */
    top: 300px;
}

.synchemia-bubble-heading h4{
    font-size: 28px;
    color: #ffffff;
    font-weight: 400;
}

.synchemia-bubble-heading p{
    font-size: 18px;
    color: #8B8A8A;
    font-weight: 400;
}

.colored-dot-1{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #4FC1C2;
    position: relative;
    /* top: 40px; */

    top: 150px;

    left: 300px;
}
.colored-dot-2{
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #F6B400;
    position: relative;
    /* top: 170px;
    left: 85px; */

    top: 100px;
    left: 210px;

    z-index: 1;
}
.colored-dot-3{
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background: #FF7762;
    position: relative;
    /* top: 410px;
    left: 310px; */

    top: 45px;
    left: 420px;
}

/* Service Bubbles */
.service-bubble {
    /* width: 120px;
    height: 120px; */
    width: 80px;
    height: 80px;
    background: #42297D;
    border-radius: 50%;
    border: 1px solid #fff;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px;
    /* font-size: 14px; */
    font-size: 10px;
    line-height: 1.3;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.service-bubble p {
    margin: 0;
}

/* Example bubble position — add more later */
.service-bubble-1 {
    top: 400px;
    left: 12px;
    z-index: 1;
    background: #5f9ea0;
}

.service-bubble-2 {
    /* top: -25px; */
    top: -10px;
    left: 260px;
    z-index: 1;
    background: #ffa07a;
}

.service-bubble-3 {
    top: 135px;
    /* left: 80px; */
    left: 115px;
    z-index: 1;
    background: #0000ff;
}

.service-bubble-4 {
    top: 340px;
    /* left: 140px; */
    left: 150px;
    z-index: 1;
    background: #a52a2a;
}

.service-bubble-5 {
    /* top: 440px;
    left: 390px; */
    top: 475px;
    left: 400px;
    z-index: 1;
    background: #ed143d;
}

.service-bubble-6 {
    top: 400px;
    /* left: 515px; */
    left: 540px;
    z-index: 1;
    background: #b8860b;
}

.service-bubble-7 {
    top: 190px;
    /* left: 375px; */
    left: 395px;
    z-index: 1;
    background: #8a2be2;
}

.service-bubble.active {
    background: #ffffff;
    color: #1F271B;
    transform: scale(1.1);
}

/* Active bubble text */
.service-bubble.active p {
    color: #1F271B !important;
    font-weight: 600;
}

/* Image Box */
.services-image img {
    height: 300px;
    object-fit: cover;
    border-radius: 24px;
    width: 100%;
}

/* Right Column */
.service-heading {
    font-size: 24px;
    margin-bottom: 10px;
}

.service-description {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    max-width: 500px;
    margin-bottom: 25px;
}

/* CTA Button */
.services-btn {
    /* padding: 10px 20px; */
    text-transform: uppercase;
    font-size: 14px;
    border: none;
    /* border-radius: 40px; */
}

.services-btn:hover{
    color: #fff;
    background-color: unset;
    border: none;
}

.btn-icon {
    background: #E5F937;
    padding: 8px;
    border-radius: 50%;
}

.arrow-circle {
    width: 14px;
    height: 14px;
    border: 1.5px solid #3B3B33;
    border-radius: 50%;
    display: block;
}

/* animate the right section to scroll from bottom */
.service-content-viewport {
    overflow: hidden;
    position: relative;
    height: auto;
    transition: height 0.3s ease;
}

.service-content-track {
    position: relative;
    transform: translateY(0);
    transition: transform 0.55s cubic-bezier(0.35, 1, 0.68, 1);
}

.service-content-block {
    width: 100%;
    padding-bottom: 20px;
}



/* Orbit rotates */
.orbit {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform-origin: center;
}

.orbit-fast {
    animation: orbitRotateFast 10s linear infinite;
}

.orbit-medium {
    animation: orbitRotateMedium 18s linear infinite;
}

.orbit-slow {
    animation: orbitRotateSlow 25s linear infinite;
}

.orbit-slowest {
    animation: orbitRotateSlowest 32s linear infinite;
}

/* KEYFRAMES */
@keyframes orbitRotateFast {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@keyframes orbitRotateMedium {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@keyframes orbitRotateSlow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@keyframes orbitRotateSlowest {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* BUBBLE FIX: counter rotate same speed */
.orbit-fast .service-bubble {
    animation: counterRotate 10s linear infinite;
}

.orbit-medium .service-bubble {
    animation: counterRotate 18s linear infinite;
}

.orbit-slow .service-bubble {
    animation: counterRotate 25s linear infinite;
}

.orbit-slowest .service-bubble {
    animation: counterRotate 32s linear infinite;
}

/* Counter rotation keyframes */
@keyframes counterRotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(-360deg); }
}

/* Pause orbit rotation on hover */
.services-illustration:hover .orbit,
.services-illustration:hover .service-bubble {
    animation-play-state: paused !important;
}


.orbit {
    pointer-events: none;     /* orbit wrapper should not capture clicks */
}

.orbit .service-bubble {
    pointer-events: auto;     /* bubbles remain clickable */
}



/* ===== services ends ===== */

/* ===== choose us starts ===== */

/* Section spacing */
.why-choose-us-section {
    padding-top: 120px;
    padding-bottom: 120px;
}

/* Subtitle */
.wcu-subtitle {
    color: #999;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
    font-family: "Sora", sans-serif;
}

/* Main Title */
.wcu-title {
    font-size: 44px;
    font-weight: 400;
    color: #1F271B;
    line-height: 1.3;
    font-family: "Sora", sans-serif;
}

/* Cards */
.wcu-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wcu-icon {
    width: 60px;
    height: auto;
}

/* Card Title */
.wcu-item-title {
    font-size: 18px;
    font-weight: 600;
    color: #1F271B;
    margin: 0;
    font-family: "Sora", sans-serif;
}

/* Card Text */
.wcu-item-text {
    font-size: 16px;
    color: #676767;
    line-height: 22px;
    font-family: "Sora", sans-serif;
}

/* Arrows (currently hidden based on original) */
.wcu-arrow-btn {
    padding: 16px;
    background: #9967D1;
    border-radius: 60px;
    border: none;
}

.wcu-arrow-btn.disabled {
    opacity: 0.1;
}

/* ===== choose us ends ===== */

/* ===== impact starts ===== */

/* Wrapper section */
.impact-section {
    /* padding: 120px 0; */
    padding: 20px 0;
}

.impact-wrapper {
    background: linear-gradient(135deg, #3B2968 0%, #5225B5 100%);
    border-radius: 60px;
    overflow: hidden;
}

/* LEFT CONTENT */
.impact-left {
    padding: 60px;
}

.impact-subtitle {
    color: #999;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
    font-family: "Sora", sans-serif;
}

.impact-title {
    font-size: 44px;
    color: #fff;
    font-weight: 400;
    font-family: "Sora", sans-serif;
    margin-bottom: 20px;
}

.impact-text {
    font-size: 16px;
    color: #A3A3A3;
    max-width: 500px;
    line-height: 22px;
    font-family: "Sora", sans-serif;
}

/* Vertical Divider */
.impact-divider {
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
}

/* RIGHT CONTENT */
.impact-right {
    padding: 60px;
}

.metric-item {
    padding: 36px 0;
}

.metric-number {
    font-size: 64px;
    font-weight: 400;
    color: #F8F6F2;
    font-family: "Sora", sans-serif;
}

.metric-text {
    font-size: 16px;
    color: #F8F6F2;
    font-family: "Sora", sans-serif;
    line-height: 22px;
}

.metric-divider {
    width: 100%;
    height: 1px;
    opacity: 0.3;
    background: rgb(255 255 255 / 98%);
}

/* Disclaimer */
.impact-disclaimer {
    padding: 20px 0;
    font-size: 12px;
    color: #F8F6F2;
    line-height: 18px;
    font-family: "Sora", sans-serif;
}

/* ===== impact ends ===== */


/* ===== accreditions starts ===== */

/* Section Background */
.accreditations-section {
    background: #F8F6F2;
    border-radius: 24px;
}

.accreditations-section .col-md-3, .accreditations-section .col-6{
    display: flex;
    justify-content: center;
}

/* Title */
.accreditations-title {
    font-family: "Sora", sans-serif;
    font-size: 44px;
    font-weight: 400;
    color: #1F271B;
}

.accredation-cards-row{
    padding: 0 200px;
}

/* Accreditation Cards */
.accredit-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 24px;
    outline: 0.5px solid #D9DBE9;
    outline-offset: -0.5px;
    box-shadow: 0px 1px 4px rgba(25, 33, 60, 0.06);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 148px;
    cursor: pointer;
}

/* Card Image */
.accredit-card img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
}

.accredition-modal .modal-cls-btn{
    background-color: transparent;
    color: #ff0000;
    border: none;
    font-size: 20px;
}

.accredition-modal #myimgs{
    width: 300px;
    display: block;
    margin: 0 auto;
}

/* ===== accreditions ends ===== */

.hero-section{
    padding: 60px 0;
}

.page-title, .page-sub-title{
    margin-bottom: 5px;
}

.breadcrumbs span {
    font-size: 14px;
    color: #666;
}

.breadcrumbs a {
    text-decoration: none;
    color: inherit;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 220px;
    padding: 30px;
    text-align: center;
    background: #f8f9fa;
    border-radius: 14px;
    text-decoration: none;
    color: #00001a;
    transition: all 0.3s ease;
    /* box-shadow: 0 10px 25px rgba(0,0,0,0.06); */
    box-shadow: 0 2px 5px rgba(0,0,0,0.06);
}

.service-card.dark {
    background: #00001a;
    color: #fff;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.service-card h5 {
    margin-top: 15px;
    font-weight: 600;
}

/* Icon placeholders (use your existing classes) */
.service-icon {
    width: 60px;
    height: 60px;
    background-size: contain;
    background-repeat: no-repeat;
}

.ct-section3{
    margin-bottom: 50px;
}

.service-detail {
    padding: 70px 0;
}

.service-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-content h2 {
    margin-bottom: 15px;
    font-weight: 600;
}

.service-content p {
    line-height: 1.8;
    color: #555;
}


/* ===== footer starts ===== */

.footer {
    background: #5225B5;
    color: #F8F8F3;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
}

.footer-noise {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    pointer-events: none;
}

.footer-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li, .footer-list li a {
    color: rgba(248, 246, 242, 0.6);
    font-size: 14px;
    line-height: 24px;
    text-decoration: none;
}

.footer-icon img {
    width: 32px;
    height: 32px;
}

/* ===== footer ends ===== */


/* ===== search page starts ===== */

.search-product-card{
    width: 350px !important; 
    margin: 0 0 20px;
}

.search-product-card .product-details td {
    padding: 5px 0px;
}

/* ===== search page ends ===== */


/* ===== not-result page starts ===== */

.no-result{
    margin: 20px;
}

.no-result-text b{
    font-size: 36px;
    font-weight: 800;
    margin: 0 20px;
}

.no-result-text p{
    font-size: 17px;
    margin: 0 20px;
    margin-bottom: 20px;
}

.no-result-div{
    text-align: center; 
    margin: 0 20px; 
    background: #dcdcdc; 
    padding: 15px;
}

.quote-req-btn{
    background: #a04079;
    border: 0;
    color: #ffffff !important;
    display: inline-block;
    font-size: 12px !important;
    font-weight: 700;
    height: 34px;
    line-height: 26px !important;
    padding: 5px 20px;
    text-transform: uppercase !important;
    cursor: pointer !important;
    -webkit-transition: 0.3s !important;
    transition: 0.3s !important;
    margin-left: 20px;
    border-radius: 20px;
}

/* ===== not-result page ends ===== */


/* Hide on desktop, show only on mobile/tablets */
.show-mobile {
    display: none;
}

/* Show on desktop, hide on mobile */
.show-desktop {
    display: block;
}

@media (max-width: 768px) {

    .show-mobile {
        display: block !important;
    }

    .show-desktop {
        display: none !important;
    }

    .show-mobile-flex {
        display: flex !important;
    }

    .breadcrumb-main {
        margin-top: 15px;
        text-align: left;
    }

    .service-card {
        height: 180px;
    }

    .service-detail {
        padding: 40px 0;
    }

    .service-content {
        text-align: left;
    }
}

@media (min-width: 769px) {
    .show-desktop-flex {
        display: flex !important;
    }
}

@media (min-width: 768px) {
    .lg-menu{
        display: block;
    }

    .res-menu{
        display: none;
    }
}

@media (max-width: 1200px) {
    /* ===== accreditions starts ===== */

        .accredation-cards-row{
            padding: 0 110px;    
        }

    /* ===== accreditions ends ===== */
}

@media (max-width: 992px) {

    /* ===== services starts ===== */

    .service-theme-image{
        z-index: 0px;
    }
    .services-section .container{
        position: relative;
    }
    .services-illustration {
        width: 350px;
        height: 350px;
        margin: 0 auto 30px !important;
    }

    .services-circle-border {
        width: 320px;
        height: 320px;
        top: 16px;
        left: 16px;
    }

    .services-circle-border-2 {
        width: 235px;
        height: 235px;
        top: 55px;
        left: 55px;
        z-index: 0;
    }

    .services-circle-border-3 {
        width: 150px;
        height: 150px;
        top: 95px;
        left: 95px;
    }

    .synchemia-bubble-heading{
        position: relative;
        /* top: 150px; */
        top: 165px;
    }
    
    .synchemia-bubble-heading h4{
        font-size: 12px;
    }
    
    .synchemia-bubble-heading p{
        font-size: 10px;
    }

    .colored-dot-1{
        width: 19px;
        height: 19px;
        border-radius: 50%;
        background: #4FC1C2;
        position: relative;
        /* top: 15px;
        left: 160px; */

        top: 90px;
        left: 150px;
    }
    .colored-dot-2{
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: #F6B400;
        position: relative;
        /* top: 90px;
        left: 50px; */

        top: 55px;
        left: 200px;

        z-index: 1;
    }
    .colored-dot-3{
        width: 11px;
        height: 11px;
        border-radius: 50%;
        background: #FF7762;
        position: relative;
        /* top: 227px;
        left: 170px; */

        top: 25px;
        left: 100px;
    }

    .service-bubble {
        width: 60px;
        height: 60px;
        font-size: 10px;
    }

    .service-bubble-1 {
        top: 220px;
        left: 0;
    }
    .service-bubble-2 {
        top: -15px;
        left: 145px;
    }
    .service-bubble-3 {
        top: 40px;
        left: 90px;
    }
    .service-bubble-4 {
        top: 190px;
        left: 90px;
    }
    .service-bubble-5 {
        top: 230px;
        left: 215px;
    }
    .service-bubble-6 {
        top: 210px;
        left: 285px;
    }
    .service-bubble-7 {
        top: 95px;
        left: 190px;
        z-index: 1;
    }

    /* ===== services ends ===== */

    /* ===== accreditions starts ===== */

    .accredation-cards-row{
        padding: 0px;    
    }

    /* ===== accreditions ends ===== */
    
}


/* ===== MOBILE (max-width: 768px) ===== */
@media (max-width: 768px) {

    /* ===== navbar starts ===== */
    .lg-menu{
        display: none;
    }

    /* ROOT COLORS */
    :root {
        --syn-purple: #5225B5;
        --syn-purple-light: #F5F1FF;
        --syn-yellow: #FFDD57;
        --syn-text-dark: #000;
    }

    .res-top-header{
        background-color: #5225B5;
        color: #fff;
    }

    .res-top-header .res-contact-info {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 8px 12px;
        gap: 24px;
        white-space: nowrap;
        font-size: 10px;
        font-weight: 400;
        line-height: 24px;
        font-family: "Sora", sans-serif;
        border-right: 1px solid;
    }
    
    .res-top-header .res-contact-info a {
        color: #ffffff;
        text-decoration: none;
        display: flex;
        gap: 12px;
    }

    /* Ticker section */
    .res-top-header .ticker-container {
        overflow: hidden;
        flex: 1;
        position: relative;
        height: 24px;
    }

    .res-top-header .ticker-text {
        display: inline-block;
        white-space: nowrap;
        font-size: 14px;
        font-weight: 400;
        line-height: 24px;
        font-family: "Sora", sans-serif;
        animation: ticker 25s linear infinite;
    }

    @keyframes ticker {
        from {
            transform: translateX(30%);
        }
        to {
            transform: translateX(-100%);
        }
    }

    /* Optional hover pause */
    .res-top-header .ticker-text:hover {
        animation-play-state: paused;
    }

    /* MOBILE HEADER */
    .mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 18px;
        background: #fff;
        border-bottom: 1px solid #eee;
    }

    .mobile-header-right {
        display: flex;
        align-items: center;
    }

    .mob-menu-label {
        margin-left: 10px;
        font-size: 18px;
        line-height: 18px;
        font-weight: 400;
        font-family: "Sora", sans-serif;
        display: contents;
    }

    .mob-search {
        width: 100%;
        display: flex;
        justify-content: end;
    }

    .logo {
        height: 45px;
    }

    /* HAMBURGER */
    .hamburger-btn {
        width: 24px;
        height: 24px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        background: transparent;
        border: none;
        padding: 0;
        margin-right: 10px;
    }
    
    .hamburger-btn span {
        width: 100%;
        height: 3px;
        background: var(--syn-purple);
        border-radius: 2px;
    }

    /* OVERLAY */
    .drawer-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.35);
        backdrop-filter: blur(2px);
        opacity: 0;
        pointer-events: none;
        transition: 0.25s ease;
        z-index: 998;
    }

    /* DRAWER PANEL */
    .mobile-drawer {
        position: fixed;
        top: 0;
        /* left: -280px; */
        left: -385px;
        /* width: 260px; */
        width: 100%;
        height: 100%;
        background: #fff;
        box-shadow: 2px 0 18px rgba(0,0,0,0.1);
        z-index: 999;
        transition: 0.32s ease;
        padding-top: 20px;
        display: none;
    }

    .mobile-menu-level-2{
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }
    
    input[type="text"].mob-search1 {
        width: 45%;
        padding:16px;
        background-color: #FBFBFE;
        color: #D9DBE9;
        border-radius: 16px;
        border: 1px solid #D9DBE9;
    }

    input[type="text"]:focus,
    input[type="text"]:focus-visible {
        outline: none !important;
        box-shadow: none !important;
    }

    .mob-logo-section {
        display: flex;
        align-items: center;
    }

    .mob-logo-section .logo{
        padding-left: 15px;
    }
    
    .cls-menu-button{
        width: 100%;
        text-align: right;
        margin-right: 20px;
        font-family: "Sora", sans-serif;
        font-size: 20px;
        background-color: transparent;
        border: none;
    }

    input[type="text"].mob-search2{
        width: 85%;
        padding:16px;
        background-color: #FBFBFE;
        color: #D9DBE9;
        border-radius: 16px;
        border: 1px solid #FBFBFE !important;
        margin-left: 15px;
    }

    .search-btn2{
        margin: 0 10px; 
        font-size:18px;    
        background: transparent;
        border-radius: 16px;
        padding: 10px;
    }

    /* WHEN ACTIVE */
    .drawer-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-drawer.open {
        left: 0;
        display: block;
        /* max-height: 600px; */
        max-height: 900px;
        overflow-y: scroll !important;
    }

    /* MENU LIST */
    .drawer-menu {
        margin: 0;
        padding: 0;
        list-style: none;
        padding-right: 5px;
        overflow-y: auto;
        max-height: 600px;
    }

    .drawer-menu li {
        border-bottom: 1px solid #f0f0f0;
    }

    .drawer-menu a {
        /* display: block; */
        display: flex;
        align-items: center;
        padding: 15px 24px;
        font-size: 15px;
        color: var(--syn-text-dark);
        text-decoration: none;
        font-weight: 500;
        font-family: "Sora", sans-serif;
    }

    .drawer-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        /* padding: 14px 18px; */
        cursor: pointer;
        width: 100%;
    }

    .drawer-menu .dropdown {
        display: none;
        background: #fafafa;
        padding-left: 10px;
        border-left: 3px solid #e0d8ff;
        list-style: none;
    }
    
    /* Dropdown link style */
    .dropdown li a {
        /* padding: 12px 18px; */
        font-size: 15px;
    }

    .dropdown li a img{
        margin-right: 10px;
    }
    
    /* Arrow icon */
    .drawer-link .arrow {
        width: 7px;
        height: 7px;
        border-right: 2px solid #6F6C8F;
        border-bottom: 2px solid #6F6C8F;
        transform: rotate(45deg);
        transition: 0.3s ease;

        position: relative;
        right: 20px;
    }
    
    .has-dropdown.open .drawer-link{
        background-color: #3B29681A;
    }

    /* Rotate when open */
    .has-dropdown.open > .drawer-link .arrow {
        transform: rotate(-135deg);
    }

    /* HOVER */
    /* .drawer-menu a:hover {
        background: var(--syn-purple-light);
        color: var(--syn-purple);
    } */

    /* PERMANENT HIGHLIGHT PILL */
    .highlight-pill{
        background: #E5F937;
        transform: skew(-20deg);
        border-radius: 4px;
        width: fit-content;
    }
    .highlight-pill:hover{
        background: #E5F937 !important;
        transform: skew(-20deg) !important;
        border-radius: 4px !important;
    }

    .highlight-pill a{
        transform: skew(20deg);
    }
    /* ===== navbar ends ===== */

    /* ===== recent products starts ===== */
    .recent-products{
        padding:60px 15px;
    }

    .recent-products-header {
        flex-direction: column;
        align-items: center;
        gap:10px;
    }

    .recent-products-nav.mobile-only {
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap:10px;
    }

    /* .recent-products .product-card {
        margin: 0 30px;
    } */
    /* ===== recent products ends ===== */

    /* ===== choose us starts ===== */

    .wcu-title {
        font-size: 36px;
    }

    /* ===== choose us ends ===== */

    /* ===== impact starts ===== */

    .impact-section {
        padding: 60px 0;
    }

    .impact-title {
        font-size: 32px;
    }

    .metric-number {
        font-size: 48px;
    }

    /* Remove vertical divider on mobile/tablet */
    .impact-divider {
        display: none;
    }

    .impact-right {
        padding-top: 20px;
    }

    /* ===== impact ends ===== */

    /* ===== accreditions starts ===== */

    .accreditations-title {
        font-size: 32px;
    }

    .accredation-cards-row{
        padding: unset;
    }

    .accredit-card img {
        max-height: 60px;
    }

    /* ===== accreditions ends ===== */

    /* ===== footer starts ===== */

    .footer {
        padding: 60px 20px;
    }
    
    /* ===== footer ends ===== */

    /* ===== search page starts ===== */

    .search-product-card .product-card{
        width: 350px !important; 
        margin: 0 0 20px;
    }

    .search-product-card .product-details td {
        padding: 5px 0px;
    }

    /* ===== search page ends ===== */

    /* ===== not-result page starts ===== */

    .no-result-text b{
        margin: 0;
    }

    .no-result-text p{
        margin: 10px 0;
    }

    .no-result-div{
        margin: 0; 
    }

    /* ===== not-result page ends ===== */

}
