/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 09 2026 | 16:31:25 */
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@10/swiper-bundle.min.css" />
.case-studies-wrapper * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

.rp-tab:hover {
    background: #343B49;
    transform: translateY(0px);
}

[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
    cursor: inherit;
}

.case-studies-wrapper {
    background-color: #0b0e2c;
    color: #ffffff;
    overflow-x: hidden;
    padding: 20px 0;
}

.case-studies-wrapper .section-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.case-studies-wrapper .section-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #fff;
}




.case-studies-wrapper .section-desc {
    color: #a0aec0;
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.case-studies-wrapper .tabs-container {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.case-studies-wrapper .tab-btn {
    background: transparent;
    color: #ffffff;
    border: 1px solid #4a5568;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.case-studies-wrapper .tab-btn:hover {
    border-color: #ff8c00;
}

.case-studies-wrapper .tab-btn.active {
    background-color: #ff8c00;
    border-color: #ff8c00;
    color: #000;
    font-weight: bold;
}

.case-studies-wrapper .swiper {
    width: 100%;
    padding: 20px 0 50px 0;
}

.case-studies-wrapper .swiper-slide {
    width: 78%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: opacity 0.4s ease;
}

.case-studies-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.case-studies-wrapper .slide-heading {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 1.5rem;
    backdrop-filter: blur(5px);
    z-index: 10;
}

.case-studies-wrapper .swiper-slide:not(.swiper-slide-active) {
    opacity: 0.6;
}

.case-studies-wrapper .slider-nav {
    display: flex;
    justify-content: flex-start;
    gap: 5px;
    margin-top: 10px;
}

.case-studies-wrapper .nav-btn {
    background: #1a202c;
    border: 1px solid #4a5568;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    font-size: 16px;
}

.case-studies-wrapper .nav-btn:hover {
    background: #ff8c00;
    border-color: #ff8c00;
    color: #000;
}

.case-studies-wrapper .nav-btn.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.case-studies-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.case-studies-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.case-studies-lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.case-studies-lightbox .close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    transition: 0.3s;
}

.case-studies-lightbox .close-btn:hover {
    color: #ff8c00;
}

@media (max-width: 768px) {
    .case-studies-wrapper .swiper-slide {
        width: 100%;
        height: 300px;
    }
    .case-studies-wrapper .slide-heading {
        font-size: 1.2rem;
        bottom: 15px;
        left: 15px;
    }
    .case-studies-wrapper .section-title {
        font-size: 2.5rem;
    }
    
    .case-studies-wrapper .tabs-container{
        
      
    }
}

/* PRICING TABLE CSS */






.raabit-pricing{
  --rp-orange:#F0670E;
  --rp-bg:#17191F;
  --rp-tab:#292F3B;
  --rp-tab-active:#4B5260;
  --rp-card:#171C25;
  --rp-border:#303746;
  --rp-text:#FFFFFF;
  --rp-muted:#AEB4BF;
  --rp-radius:22px;
  --rp-tab-radius:15px;
  --rp-gap:22px;
  width:100%;
  max-width:1180px;
  margin:0 auto;
  color:var(--rp-text);
  font-family:inherit;
}
.raabit-pricing *{box-sizing:border-box}
.rp-tabs{
  background:#111722;
  border:1px solid var(--rp-border);
  border-radius:var(--rp-radius);
  padding:8px;
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:8px;
}
.rp-tab{
  min-height:50px;
  padding:8px 18px;
  border:1px solid transparent;
  border-radius:var(--rp-tab-radius);
  background:#343B49;
  color:#fff;
  text-align:left;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  transition:.3s ease;
}
/* .rp-tab:hover{background:#343B49;transform:translateY(-2px)} */
/* .rp-tab.is-active{background:#fc6902;box-shadow:0 8px 25px rgba(0,0,0,.18)} */
.rp-tab-copy strong{display:block;font-size:19px;line-height:1.1;margin-bottom:7px;font-weight:700}
.rp-tab-copy small{display:block;font-size:12px;color:#C7CBD3;white-space:nowrap}
.rp-tab-logo{
  width: 35px;
    height: 35px;
}
/* .rp-tab.is-active .rp-arrow{background:#fc6902;color:white;} */
/* .rp-tab:hover .rp-arrow{transform:translateX(3px)} */
.rp-panels{margin-top:35px}
.rp-panel{display:none;grid-template-columns:repeat(3,1fr);gap:var(--rp-gap)}
.rp-panel.is-active{display:grid;animation:rpFade .4s ease}
@keyframes rpFade{from{opacity:0;transform:translateY(12px)}to{opacity:1;transform:translateY(0)}}
.rp-card{
  position:relative;background:var(--rp-card);border:1px solid var(--rp-border);
  border-radius:var(--rp-radius);padding:35px 30px;overflow:hidden;transition:.3s ease
}
.rp-card:hover{transform:translateY(-6px);border-color:#596171;box-shadow:0 20px 50px rgba(0,0,0,.25)}
.rp-card.rp-featured{
  border-color:var(--rp-orange);
  background:linear-gradient(180deg,rgba(240,103,14,.09),transparent 45%),var(--rp-card)
}
.rp-popular{
  position:absolute;top:0;right:0;padding:8px 15px;background:var(--rp-orange);
  color:#fff;font-size:10px;font-weight:700;letter-spacing:1px;border-radius:0 0 0 12px
}
.rp-label{display:inline-block;color:var(--rp-orange);font-size:11px;font-weight:700;letter-spacing:1.5px;margin-bottom:12px}
.rp-card h3{color:#fff;font-size:28px;margin:0 0 8px;font-weight:700}
.rp-card p{color:var(--rp-muted);font-size:14px;margin:0 0 25px}
.rp-price{color:#fff;font-size:45px;line-height:1;font-weight:700;margin-bottom:28px}
.rp-price sup{color:var(--rp-orange);font-size:22px;vertical-align:top;position:relative;top:5px}
.rp-price small{color:#9299A6;font-size:13px;font-weight:400;margin-left:4px}
.rp-btn{
  width:100%;display:block;text-align:center;padding:14px 20px;border-radius:10px;
  background:#292F3B;border:1px solid #414958;color:#fff!important;font-size:14px;
  font-weight:600;text-decoration:none!important;transition:.3s ease;margin-bottom:28px
}
.rp-btn:hover,.rp-card.rp-featured .rp-btn{background:var(--rp-orange);border-color:var(--rp-orange);color:#fff!important}
.rp-card.rp-featured .rp-btn:hover{filter:brightness(.9)}
.rp-card ul{list-style:none;padding:0;margin:0}
.rp-card ul li{color:#C5CAD2;font-size:13px;padding:10px 0;border-bottom:1px solid #292F39}
.rp-card ul li:before{content:"✓";color:var(--rp-orange);font-weight:700;margin-right:9px}
.rp-card ul li:last-child{border-bottom:0}
@media(max-width:991px){
  .rp-tabs{grid-template-columns:repeat(3,1fr)}
  .rp-panel{grid-template-columns:repeat(2,1fr)}
  .rp-card:last-child{grid-column:1/-1;max-width:50%;width:100%;margin:auto}
}
@media(max-width:767px){
  .rp-tabs{grid-template-columns:1fr 1fr;border-radius:18px}
  .rp-tab{min-height:35px}
  .rp-panels{margin-top:22px}
  .rp-panel{grid-template-columns:1fr;gap:15px}
  .rp-card:last-child{grid-column:auto;max-width:none}
  .rp-card{padding:28px 23px}
  .rp-card h3{font-size:25px}
  .rp-price{font-size:40px}
}
/* Pricing Cards Tab Change Animation */

.rp-cards.rp-animate .rp-card {
    animation: rpCardAnimation 0.55s ease both;
}

.rp-cards.rp-animate .rp-card:nth-child(1) {
    animation-delay: 0s;
}

.rp-cards.rp-animate .rp-card:nth-child(2) {
    animation-delay: 0.08s;
}

.rp-cards.rp-animate .rp-card:nth-child(3) {
    animation-delay: 0.16s;
}

@keyframes rpCardAnimation {

    0% {
        opacity: 0;
        transform: translateY(25px) scale(0.98);
    }

    60% {
        opacity: 1;
        transform: translateY(-3px) scale(1);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}


/* Chrome, Safari, Edge, aur Opera ke liye (Webkit) */
::-webkit-scrollbar {
  width: 12px; /* Scrollbar ki chorai (width) */
}
::-webkit-scrollbar-track {
  background: #f1f1f1; /* Scrollbar ke peeche ka background color */
}

::-webkit-scrollbar-thumb {
  background: #ff6600; /* Scrollbar ka main color (Orange) */
  border-radius: 6px;  /* Scrollbar ke corners ko round karne ke liye */
  border: 3px solid #f1f1f1; /* Thumb ke aaspas padding jaisa look dene ke liye */
}

/* Firefox ke liye support */
html {
  scrollbar-width: auto;
  scrollbar-color: #ff6600 #f1f1f1; /* Pehla color thumb ka, doosra track ka */
}


/* 1. Saari Headings ke liye PT Serif (Bold) */
h1, h2, h3, h4, h5, h6, 
.elementor-heading-title {
    font-family: 'PT Serif', serif !important;
    font-weight: 700 !important; /* Bold */
}

/* 2. Headings ke neeche waale text aur paragraphs ke liye Poppins (Regular) */
body, p, span, a, li, 
.elementor-text-editor, 
.elementor-widget-text-editor {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 400 !important; /* Regular */
}

#ck5c24oacvlk1788895188212 {left: 30px !important;}
