* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #f5f7fb;
    color: #111827;
    overflow-x: hidden;
}

:root {
    --primary: #0d6efd;
    --dark: #081b3d;
    --light: #ffffff;
    --text: #6b7280;
    --border: #e5e7eb;
}

.navbar {
    padding: 18px 0;
    background: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-size: 30px;
    font-weight: 800;
    color: var(--dark);
}

.navbar-brand span {
    color: var(--primary);
}

.nav-link {
    font-weight: 500;
    color: var(--dark);

    margin: 0 10px;
}

.hero {
    background: linear-gradient(135deg, #021024, #041b44);
    color: white;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.35), transparent);
    top: -200px;
    right: -100px;
}

.hero h1 {
    font-size: 62px;
    font-weight: 800;
    line-height: 1.1;
}

.hero h1 span {
    color: #2d8cff;
}

.hero p {
    color: #d1d5db;
    margin-top: 20px;
    line-height: 1.8;
}

.hero-btns {
    margin-top: 30px;
}

.btn-main {
    background: var(--dark)!important;
    color: white!important;
    border-radius: 12px;
    padding: 14px 28px;
    font-weight: 600;
    border: none;
}

.btn-outline-custom {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white!important;
    border-radius: 12px;
    padding: 14px 28px;
    font-weight: 600;
    background: transparent;
}

.hero-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-card h2 {
    font-size: 48px;
    font-weight: 800;
}

.chart-box {
    height: 220px;
    border-radius: 20px;
    margin-top: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    position: relative;
    overflow: hidden;
}

.chart-line {
    position: absolute;
    width: 100%;
    height: 100%;
}

.chart-line svg {
    width: 100%;
    height: 100%;
}

.stats {
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.stat-card i {
    color: var(--dark);
    font-size: 28px;
    margin-bottom: 10px;
}

.section-title {
    margin-bottom: 20px;
}
/* card */
.service-link,
.service-link:hover,
.service-link:focus,
.service-link:active,
.service-link:visited{
    text-decoration:none !important;
    color:inherit;
    display:block;
    height:100%;
}

.premium-card{
    background:#fff;
    border-radius:16px;
    padding:30px 25px;
    height:100%;
    border:1px solid #e9ecef;
    box-shadow:0 5px 25px rgba(0,0,0,.06);
    transition:.35s ease;
    position:relative;
    overflow:hidden;
}

.premium-card::before{
    content:"";
    position:absolute;
    top:0;
    left:50%;
    transform:translateX(-50%);
    width:80px;
    height:4px;
    background:linear-gradient(90deg,#061f44,#000000);
    border-radius:0 0 10px 10px;
}

.premium-card:hover{
    transform:translateY(-8px);
    border-color:var(--dark);
   
    background:linear-gradient(180deg,#ffffff,#f8fbff);
    box-shadow:0 15px 40px rgba(13,110,253,.15);
}

.premium-card h4{
    font-size:22px;
    font-weight:700;
    color:var(--dark);
    margin-bottom:15px;
    line-height:1.4;
}

.premium-card p{
    font-size:15px;
    color:var(--text);
    line-height:1.8;
    margin-bottom:20px;
}

.read-more{
    font-size:14px;
    font-weight:600;
    color:var(--dark);
}

.premium-card:hover .read-more{
    letter-spacing:1px;
}

@media(max-width:768px){

    .premium-card{
        padding:25px 20px;
    }

    .premium-card h4{
        font-size:19px;
    }

    .premium-card p{
        font-size:14px;
    }

}
/* card */
.section-title h2 {
    font-size: 44px;
    font-weight: 800;
    color: var(--dark);
}

.section-title p {
    color: var(--text);
}

.service-card {
    background: white;
    border-radius: 24px;
    padding: 25px;
    transition: 0.4s;
    height: 100%;
    border: 1px solid #eef1f7;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: rgba(13, 110, 253, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon i {
    color: var(--dark);
    font-size: 28px;
}

.service-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text);
    line-height: 1.7;
}

.about {
    padding: 100px 0;
}

.about-img {
    position: relative;
}

.about-img img {
    width: 100%;
    border-radius: 30px;
}

.experience-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.experience-box h3 {
    font-size: 40px;
    color: var(--dark);
    font-weight: 800;
}

.feature-list li {
    list-style: none;
    margin-bottom: 14px;
    color: #374151;
}

.feature-list li i {
    color: var(--dark);
    margin-right: 10px;
}

.case-study {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.case-study img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.case-content {
    padding: 30px;
}

.cta {
    background: linear-gradient(135deg, #041b44, #0b2d6d);
    padding: 20px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.3), transparent);
    top: -200px;
    right: -100px;
}

.footer {
    background: #020817;
    color: white;
    padding: 60px 0 5px;
}

.footer h5 {
    margin-bottom: 20px;
    font-weight: 700;
}

.footer a {
    color: #d1d5db;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
}

.footer a:hover {
    color: white;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding-top: 20px;
    text-align: center;
    color: #9ca3af;
}

@media(max-width:991px) {
    .hero h1 {
        font-size: 42px;
    }

    .hero {
        text-align: center;
    }

    .hero-card {
        margin-top: 50px;
    }
}


/*  */
.page-banner {
    padding: 30px 0 50px;
    background: linear-gradient(135deg, #021024, #0b2d6d);
    color: #fff;
}

.industry-box,
.case-card,
.job-card,
.blog-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .06);
}

/*  */
/* HERO */
.healthcare-hero-section{
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.healthcare-hero-image{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.healthcare-hero-badge{
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #8b0029;
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: bold;
}

/* SERVICES */
.healthcare-service-wrapper{
  background: #f7f7f7;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.healthcare-service-card{
  text-align: center;
  padding: 35px 15px;
  border-right: 1px solid #ddd;
  transition: 0.3s;
  height: 100%;
}

.healthcare-service-card:hover{
  background: #fff;
  transform: translateY(-5px);
}

.healthcare-service-icon{
  font-size: 42px;
  color: #1e237e;
  margin-bottom: 15px;
}

.healthcare-service-title{
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.5;
}

.healthcare-service-btn{
  border: 1px solid #1e237e;
  padding: 6px 15px;
  text-decoration: none;
  font-size: 13px;
  color: #1e237e;
  transition: 0.3s;
}

.healthcare-service-btn:hover{
  background: #1e237e;
  color: #fff;
}

/* CONTENT */
.healthcare-main-content-section{
  padding: 60px 0;
}

.healthcare-main-heading{
  font-size: 38px;
  font-weight: 700;
  margin: 25px 0;
}

.healthcare-main-description{
  color: #555;
  line-height: 1.9;
  font-size: 15px;
}

/* FEATURE */
.healthcare-feature-box{
  margin-bottom: 30px;
}

.healthcare-feature-number{
  color: #bbb;
  font-size: 28px;
  font-weight: bold;
  margin-right: 10px;
}

.healthcare-feature-title{
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.healthcare-feature-description{
  color: #555;
  line-height: 1.8;
}

/* SIDEBAR */
.healthcare-sidebar-wrapper{
  background: #f5f5f5;
  padding: 30px;
}

.healthcare-sidebar-title{
  margin-bottom: 25px;
  font-weight: 700;
}

.healthcare-sidebar-list{
  list-style: none;
  padding: 0;
}

.healthcare-sidebar-item{
  border-bottom: 1px solid #ddd;
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.healthcare-sidebar-link{
  text-decoration: none;
  color: #111;
  font-size: 15px;
}

.healthcare-sidebar-arrow{
  font-size: 12px;
}

/*  */
.social-icons{
    display:flex;
    gap:12px;
}

.social-icons a{
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    
    background:#ffffff;
    color:#111;
    text-decoration:none;
    transition:0.3s;
    font-size:14px;
}

.social-icons a:hover{
    background:#111;
    color:#fff;
    transform:translateY(-7px);
}

/* inquary form */

.healthcare-inquiry-box{
    background:#ffffff;
    padding:30px;
    border-radius:15px;
    margin-top:50px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.healthcare-inquiry-title{
    font-size:24px;
    font-weight:700;
    margin-bottom:10px;
    color:#0d1b2a;
}

.healthcare-inquiry-text{
    font-size:14px;
    color:#6c757d;
    margin-bottom:20px;
}

.healthcare-input{
    border:1px solid #dcdcdc;
    border-radius:10px;
    padding:12px 15px;
    font-size:14px;
    box-shadow:none !important;
}

.healthcare-input:focus{
    border-color:#0d6efd;
}

.healthcare-textarea{
    resize:none;
}

.healthcare-submit-btn{
    width:100%;
    background-color:var(--dark) !important;
    color:#fff !important;
    padding:12px;
    border:none !important;
    border-radius:10px;
    font-weight:600;
    transition:0.3s;
}

.healthcare-submit-btn:hover{
    background-color:#084298 !important;
    color:#fff !important;
}

/*  */
/* =========================
   ABOUT SECTION
========================= */

.about-company-section{
    padding:30px 0;
    background:#f7f7f7;
}

.about-badge{
    display:inline-block;
    background:var(--dark);
    color:#fff;
    padding:8px 18px;
    border-radius:50px;
    font-size:12px;
    font-weight:600;
    margin-bottom:20px;
}

.about-main-title{
    font-size:35px;
    font-weight:700;
    line-height:1.2;
    color:#1b1b1b;
    margin-bottom:20px;
}

.about-description{
    font-size:16px;
    color:#666;
    line-height:1.8;
    margin-bottom:15px;
}

.about-image-group{
    position:relative;
}

.about-large-image{
    border-radius:10px;
    width:100%;
}

.about-overlay-image{
    width:220px;
    border-radius:10px;
    position:absolute;
    bottom:-40px;
    left:60%;
    border:6px solid #fff;
}

.about-info-card{
    background:#fff;
    padding:25px;
    border-radius:12px;
    height:100%;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.about-info-heading{
    font-size:20px;
    font-weight:700;
    margin-bottom:15px;
    color:#1b1b1b;
}

.about-info-heading i{
    color:#0d6efd;
    margin-right:8px;
}

.about-info-text{
    font-size:15px;
    color:#666;
    line-height:1.7;
}

.about-side-image{
    border-radius:12px;
    width:100%;
}

.about-process-wrapper{
    margin-top:100px;
}

.about-process-card{
    background:#fff;
    padding:35px 25px;
    border-radius:15px;
    border:1px solid #e6e6e6;
    height:100%;
    transition:0.4s;
}

.about-process-card:hover{
    transform:translateY(-5px);
}

.about-process-number{
    font-size:60px;
    font-weight:700;
    color:transparent;
    -webkit-text-stroke:1px #c9c9c9;
    margin-bottom:20px;
}

.about-process-heading{
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
    color:#1b1b1b;
}

.about-process-text{
    font-size:15px;
    line-height:1.8;
    color:#666;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .about-main-title{
        font-size:36px;
    }

    .about-overlay-image{
        width:180px;
        bottom:-20px;
        left:55%;
    }

    .about-process-wrapper{
        margin-top:70px;
    }

}

@media(max-width:767px){

    .about-company-section{
        padding:70px 0;
    }

    .about-main-title{
        font-size:30px;
    }

    .about-overlay-image{
        position:relative;
        width:100%;
        left:0;
        bottom:0;
        margin-top:20px;
    }

    .about-process-number{
        font-size:45px;
    }

    .about-process-heading{
        font-size:20px;
    }

}

/*  */

/* =========================
   MISSION & VISION
========================= */

.mission-vision-section{
    padding:30px 0;
    background:#f5f5f5;
}

.mission-vision-badge{
    display:inline-block;
    background:var(--dark);
    color:#fff;
    padding:10px 24px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
}

.mission-tabs{
    display:flex;
    gap:30px;
    margin-bottom:40px;
    flex-wrap:wrap;
}

.mission-tab-btn{
    background:none;
    border:none;
    font-size:22px;
    font-weight:700;
    color:#444;
    padding-bottom:15px;
    border-bottom:3px solid transparent;
    transition:0.3s;
}

.mission-tab-btn i{
    margin-right:10px;
    color:#0d6efd;
}

.mission-tab-btn.active-tab{
    border-color:#0f3d3e;
    color:#111;
}

.mission-content-box{
    display:none;
    animation:fadeEffect 0.4s ease;
}

.mission-content-box.active-content{
    display:block;
}

.mission-content-box p{
    font-size:18px;
    line-height:2;
    color:#222;
    margin-bottom:20px;
}

.mission-image-wrapper{
    overflow:hidden;
    border-radius:10px;
}

.mission-side-image{
    width:100%;
    border-radius:10px;
}

/* ANIMATION */

@keyframes fadeEffect{
    from{
        opacity:0;
        transform:translateY(10px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* RESPONSIVE */

@media(max-width:991px){

    .mission-tab-btn{
        font-size:18px;
    }

    .mission-content-box p{
        font-size:16px;
        line-height:1.8;
    }

    .mission-image-wrapper{
        margin-top:40px;
    }

}

@media(max-width:767px){

    .mission-vision-section{
        padding:70px 0;
    }

    .mission-tabs{
        gap:15px;
    }

    .mission-tab-btn{
        width:100%;
        text-align:left;
    }

}

/* faq */
/* =========================
   FAQ SECTION
========================= */

.custom-faq-section{
    background:#f8fbff;
}

.custom-faq-badge{
    display:inline-block;
    background:var(--dark);
    color:#fff;
    padding:8px 20px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.custom-faq-title{
    font-size:42px;
    font-weight:700;
    color:#111;
    margin-bottom:35px;
}

.custom-faq-item{
    border:none;
    margin-bottom:15px;
    border-radius:14px !important;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.06);
}

.custom-faq-item .accordion-button{
    font-size:17px;
    font-weight:600;
    padding:20px;
    background:#fff;
    color:#111;
    box-shadow:none !important;
}

.custom-faq-item .accordion-button:not(.collapsed){
    background:var(--dark);
    color:#fff;
}

.custom-faq-item .accordion-body{
    padding:20px;
    font-size:15px;
    color:#666;
    line-height:1.7;
}

.custom-faq-image-wrapper{
    position:relative;
}

.custom-faq-image{
    width:100%;
    border-radius:25px;
    object-fit:cover;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
}

/* Responsive */
@media(max-width:991px){

    .custom-faq-title{
        font-size:32px;
    }

    .custom-faq-image-wrapper{
        margin-top:20px;
    }

}

/*  */

/* =========================
   CONTACT PAGE CSS
========================= */

.nx-contact-area{
    padding:30px 0;
    background:#f8fbff;
}

.nx-contact-tag{
    display:inline-block;
    padding:8px 22px;
    background:var(--dark);
    color:#fff;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
}

.nx-contact-title{
    font-size:40px;
    font-weight:700;
    line-height:1.2;
    color:#111;
    margin-bottom:10px;
}

.nx-contact-description{
    font-size:17px;
    line-height:1.8;
    color:#666;
    margin-bottom:40px;
}

/* DETAILS */

.nx-contact-details-wrapper{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.nx-contact-detail-box{
    display:flex;
    align-items:center;
    gap:18px;
    background:#fff;
    padding:20px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.nx-contact-detail-icon{
    width:40px;
    height:40px;
    background:var(--dark);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    flex-shrink:0;
}

.nx-contact-detail-content h5{
    margin-bottom:6px;
    font-weight:700;
}

.nx-contact-detail-content p{
    margin:0;
    color:#666;
    font-size:15px;
}

/* FORM */

.nx-form-container{
    background:#fff;
    padding:45px;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.nx-form-title{
    font-size:30px;
    font-weight:700;
    margin-bottom:30px;
    color:#111;
}

.nx-input-field{
    height:58px;
    border-radius:14px;
    border:1px solid #ddd;
    padding:15px 18px;
    box-shadow:none !important;
}

.nx-input-field:focus{
    border-color:#0d6efd;
}

textarea.nx-input-field{
    height:auto;
    resize:none;
}

.nx-submit-btn{
    width:100%;
    height:58px;
    border:none;
    border-radius:14px;
    background:var(--dark);
    color:#fff;
    font-size:16px;
    font-weight:600;
    transition:0.3s;
}

.nx-submit-btn:hover{
    background:#0b5ed7;
}

/* MAP */

.nx-map-area{
    padding-bottom:40px;
    background:#f8fbff;
}

.nx-map-frame{
    overflow:hidden;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.nx-map-frame iframe{
    width:100%;
    height:450px;
    border:0;
}

/* FEATURES */

.nx-feature-area{
    padding:10px 0;
    background:#fff;
}

.nx-feature-heading{
    font-size:42px;
    font-weight:700;
    color:#111;
}

.nx-feature-card{
    background:#f8fbff;
    padding:40px 30px;
    border-radius:25px;
    text-align:center;
    transition:0.3s;
    height:100%;
}

.nx-feature-card:hover{
    transform:translateY(-8px);
}

.nx-feature-icon{
    width:50px;
    height:50px;
    background:var(--dark);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin:auto;
    margin-bottom:25px;
}

.nx-feature-card h4{
    font-weight:700;
    margin-bottom:15px;
}

.nx-feature-card p{
    color:#666;
    line-height:1.7;
}

/* RESPONSIVE */

@media(max-width:991px){

    .nx-contact-title{
        font-size:38px;
    }

    .nx-form-container{
        padding:30px;
    }

    .nx-feature-heading{
        font-size:32px;
    }

}

@media(max-width:576px){

    .nx-contact-title{
        font-size:30px;
    }

    .nx-contact-description{
        font-size:15px;
    }

}

/* term page  */

 .reclix-terms-section {
            padding: 30px 0;
        }

        .reclix-terms-card {
            background: #fff;
            border-radius: 18px;
            padding: 50px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .reclix-terms-title {
            font-size: 42px;
            font-weight: 700;
            color: #000000;
            margin-bottom: 15px;
        }

        .reclix-terms-subtitle {
            color: #666;
            font-size: 16px;
            margin-bottom: 40px;
        }

        .reclix-terms-item {
            margin-bottom: 35px;
        }

        .reclix-terms-item h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #111;
        }

        .reclix-terms-item p,
        .reclix-terms-item li {
            color: #555;
            line-height: 1.8;
            font-size: 16px;
        }

        .reclix-terms-item ul {
            padding-left: 20px;
        }

        .reclix-contact-box {
            background: #1b2c47;
            color: #fff;
            padding: 30px;
            border-radius: 15px;
            margin-top: 40px;
        }

        .reclix-contact-box h4 {
            font-size: 26px;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .reclix-contact-box p {
            margin-bottom: 8px;
            color: #fff;
        }

        @media(max-width:768px) {
            .reclix-terms-card {
                padding: 30px 20px;
            }

            .reclix-terms-title {
                font-size: 32px;
            }

            .reclix-terms-item h3 {
                font-size: 21px;
            }
        }
/*  */
        .privacy-header-section {
        background: linear-gradient(rgba(0, 0, 0, 0.75),
                rgba(0, 0, 0, 0.75)),
            url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?q=80&w=2070&auto=format&fit=crop') center/cover;
        padding: 20px 0;
        text-align: center;
    }

    .privacy-header-content h1 {
        color: #fff;
        font-size: 55px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .privacy-header-content p {
        color: #e5e5e5;
        font-size: 18px;
        max-width: 750px;
        margin: auto;
        line-height: 1.8;
    }

    .privacy-main-wrapper {
        padding: 30px 0;
        background: #f5f7fb;
    }

    .privacy-policy-card {
        background: #fff;
        padding: 50px;
        border-radius: 20px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    }

    .privacy-policy-card h2 {
        font-size: 38px;
        color: #141e2d;
        font-weight: 700;
        margin-bottom: 40px;
    }

    .privacy-single-box {
        margin-bottom: 40px;
        border-bottom: 1px solid #ececec;
        padding-bottom: 30px;
    }

    .privacy-single-box:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .privacy-single-box h3 {
        font-size: 26px;
        margin-bottom: 18px;
        font-weight: 700;
        color: #111;
    }

    .privacy-single-box p {
        font-size: 16px;
        color: #555;
        line-height: 1.9;
    }

    .privacy-single-box ul {
        padding-left: 20px;
        margin-top: 15px;
    }

    .privacy-single-box ul li {
        margin-bottom: 12px;
        color: #555;
        line-height: 1.8;
    }

    @media(max-width:768px) {

        .privacy-header-content h1 {
            font-size: 38px;
        }

        .privacy-policy-card {
            padding: 30px 20px;
        }

        .privacy-policy-card h2 {
            font-size: 28px;
        }

        .privacy-single-box h3 {
            font-size: 22px;
        }

    }

    /* how to work */
   



.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* .section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title span{
    display:inline-block;
    background:#0a0d1f;
    color:#fff;
    padding:14px 35px;
    border-radius:50px;
    font-size:28px;
    font-weight:700;
    text-transform:uppercase;
} */

.process-wrapper{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:20px;
    overflow:hidden;
}

.process-card{
    padding:25px;
    border-right:1px solid #e5e5e5;
    transition:all .4s ease;
    position:relative;
}

.process-card:last-child{
    border-right:none;
}

.process-number{
    font-size:30px;
    font-weight:700;
    line-height:1;
    color:transparent;
    -webkit-text-stroke:2px #5f7184;
    transition:all .4s ease;
    margin-bottom:25px;
}

.process-card h3{
    font-size:22px;
    margin-bottom:20px;
    color:#0d1b12;
    transition:.4s;
}

.process-card p{
    font-size:18px;
    line-height:1.8;
    color:#666;
    transition:.4s;
}

/* Hover Effect */

.process-card:hover{
    background:#0a0d1f;
}

.process-card:hover .process-number{
    color:#fff;
    -webkit-text-stroke:2px #fff;
    transform:translateY(-5px);
}

.process-card:hover h3,
.process-card:hover p{
    color:#fff;
}

/* Responsive */

@media(max-width:1200px){
    .process-wrapper{
        grid-template-columns:repeat(2,1fr);
    }

    .process-card:nth-child(2){
        border-right:none;
    }

    .process-card:nth-child(1),
    .process-card:nth-child(2){
        border-bottom:1px solid #e5e5e5;
    }
}

@media(max-width:768px){

    .process-wrapper{
        grid-template-columns:1fr;
    }

    .process-card{
        border-right:none;
        border-bottom:1px solid #e5e5e5;
    }

    .process-card:last-child{
        border-bottom:none;
    }

    .process-number{
        font-size:70px;
    }

    .section-title span{
        font-size:18px;
    }
}

    /* hwo to work */

    .popup-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.75);
    backdrop-filter:blur(6px);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:999999;
    padding:20px;
}

.popup-container{
    width:100%;
    max-width:500px;
    background:#fff;
    border-radius:20px;
    padding:35px;
    position:relative;
    animation:popupScale .4s ease;
    box-shadow:0 20px 60px rgba(0,0,0,.25);
}

@keyframes popupScale{
    from{
        opacity:0;
        transform:scale(.85);
    }
    to{
        opacity:1;
        transform:scale(1);
    }
}

.close-popup{
    position:absolute;
    top:10px;
    right:15px;
    border:none;
    background:none;
    font-size:32px;
    cursor:pointer;
    color:#777;
}

.popup-header h2{
    margin-bottom:10px;
    font-size:30px;
    font-weight:700;
}

.popup-header p{
    color:#666;
    margin-bottom:25px;
}

.input-group{
    margin-bottom:15px;
}

.input-group input,
.input-group textarea{
    width:100%;
    padding:14px 16px;
    border:1px solid #ddd;
    border-radius:10px;
    outline:none;
    font-size:15px;
}

.input-group input:focus,
.input-group textarea:focus{
    border-color:#0d6efd;
}

.submit-btn{
    width:100%;
    padding:15px;
    border:none;
    border-radius:10px;
    background:#0d6efd;
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
}

.submit-btn:disabled{
    opacity:.7;
    cursor:not-allowed;
}

.success-section{
    display:none;
    text-align:center;
    padding:30px 10px;
}

.checkmark-circle{
    width:90px;
    height:90px;
    border-radius:50%;
    background:#28a745;
    margin:auto;
    position:relative;
    animation:pop .4s ease;
}

@keyframes pop{
    from{
        transform:scale(0);
    }
    to{
        transform:scale(1);
    }
}

.checkmark{
    position:absolute;
    left:31px;
    top:20px;
    width:20px;
    height:40px;
    border:solid #fff;
    border-width:0 5px 5px 0;
    transform:rotate(45deg);
}

.success-section h3{
    margin-top:20px;
    color:#28a745;
}

.success-section p{
    color:#666;
}

@media(max-width:576px){

    .popup-container{
        padding:25px;
    }

    .popup-header h2{
        font-size:24px;
    }

}

/*  */

/* .popup-overlay{
    display:none;
} */
/* get conseltation  */
.reclix-consult-open-btn{
    background:#0057ff;
    color:#fff;
    border:none;
    padding:12px 26px;
    border-radius:8px;
    font-weight:600;
}

.reclix-consult-dialog{
    max-width:400px;
}

.reclix-consult-box{
    border:none;
    border-radius:24px;
    overflow:hidden;
}

.reclix-consult-topbar{
    padding:10px 40px 10px;
    position:relative;
}

.reclix-consult-heading{
    font-size:1rem;
    font-weight:700;
    margin-bottom:10px;
}

.reclix-consult-description{
    font-size:18px;
    color:#6c757d;
}

.reclix-consult-close{
    position:absolute;
    top:20px;
    right:25px;
    background:none;
    border:none;
    font-size:34px;
    cursor:pointer;
}

.reclix-consult-content{
    padding:15px 40px 10px;
}

.reclix-form-spacing{
    margin-bottom:18px;
}

.reclix-field-control,
.reclix-message-control{
    width:100%;
    border:1px solid #d9d9d9;
    border-radius:12px;
    padding:18px;
    font-size:16px;
}

.reclix-field-control:focus,
.reclix-message-control:focus{
    outline:none;
    border-color:#0057ff;
}

.reclix-message-control{
    height:50px;
    resize:none;
}

.reclix-submit-action{
    width:100%;
    background:#0057ff;
    color:#fff;
    border:none;
    padding:10px;
    border-radius:12px;
    font-size:18px;
    font-weight:600;
}