/* =====================================================
   GLOBAL TYPOGRAPHY
   ===================================================== */

:root {
    --primary-color: #189dc9;
    --secondary-color: #ff7a00;
    --heading-color: #1d1d1d;
    --text-color: #555555;
    --light-text: #777777;
    --white: #ffffff;

    --transition: all .3s ease;
}

/* =====================================================
   BODY
   ===================================================== */

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    font-weight: 400;
    background: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* =====================================================
   HEADINGS
   ===================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 18px;
}

h1 {
    font-size: 52px;
    font-weight: 700;
}

h2 {
    font-size: 42px;
}

h3 {
    font-size: 32px;
}

h4 {
    font-size: 26px;
}

h5 {
    font-size: 22px;
}

h6 {
    font-size: 18px;
    font-weight: 600;
}

/* =====================================================
   TEXT
   ===================================================== */

p {
    margin: 0 0 18px;
    color: var(--text-color);
    line-height: 1.8;
    font-size: 16px;
}

strong,
b {
    font-weight: 700;
    color: var(--text-color);
}

em,
i {
    font-style: italic;
}

small {
    font-size: 90%;
}

mark {
    background: rgba(24, 157, 201, .15);
    padding: 2px 5px;
}

/* =====================================================
   LINKS
   ===================================================== */

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover,
a:focus {
    color: var(--secondary-color);
    text-decoration: none;
}

a:focus {
    outline: none;
}

/* =====================================================
   LIST
   ===================================================== */

ul,
ol {
    margin: 0 0 20px;
    padding-left: 22px;
}

ul li,
ol li {
    margin-bottom: 10px;
    line-height: 1.8;
}

/* =====================================================
   BLOCKQUOTE
   ===================================================== */

blockquote {
    margin: 25px 0;
    padding: 20px 25px;
    border-left: 4px solid var(--primary-color);
    background: #f7fbfd;
    font-style: italic;
    color: #555;
}

blockquote p:last-child {
    margin-bottom: 0;
}

/* =====================================================
   IMAGE
   ===================================================== */

/* img {
    max-width: 100%;
    height: auto;
    display: block;
} */

/* =====================================================
   TABLE
   ===================================================== */

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
}

table th,
table td {
    border: 1px solid #e6e6e6;
    padding: 12px 15px;
}

table th {
    background: #f8f8f8;
    font-weight: 600;
}

/* =====================================================
   HR
   ===================================================== */

hr {
    border: 0;
    border-top: 1px solid #e5e5e5;
    margin: 40px 0;
}

/* =====================================================
   SELECTION
   ===================================================== */

::selection {
    background: var(--primary-color);
    color: #fff;
}

/* =====================================================
   PLACEHOLDER
   ===================================================== */

::placeholder {
    color: #999;
    opacity: 1;
}

/* =====================================================
   FORM
   ===================================================== */

input,
textarea,
select {
    font-family: inherit;
    font-size: 16px;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width:1200px) {

    h1 {
        font-size: 46px;
    }

    h2 {
        font-size: 38px;
    }

    h3 {
        font-size: 30px;
    }

}

@media (max-width:991px) {

    body {
        font-size: 15px;
    }

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 34px;
    }

    h3 {
        font-size: 28px;
    }

    h4 {
        font-size: 24px;
    }

    h5 {
        font-size: 20px;
    }

    h6 {
        font-size: 17px;
    }

}

@media (max-width:767px) {

    body {
        font-size: 15px;
        line-height: 1.7;
    }

    h1 {
        font-size: 34px;
        line-height: 1.25;
    }

    h2 {
        font-size: 30px;
        line-height: 1.3;
    }

    h3 {
        font-size: 26px;
    }

    h4 {
        font-size: 22px;
    }

    h5 {
        font-size: 19px;
    }

    h6 {
        font-size: 17px;
    }

    p {
        font-size: 15px;
    }

}

@media (max-width:575px) {

    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 26px;
    }

    h3 {
        font-size: 23px;
    }

    h4 {
        font-size: 20px;
    }

    h5 {
        font-size: 18px;
    }

    h6 {
        font-size: 16px;
    }

    p {
        font-size: 15px;
    }

}
/* ===========================
   Job Openings Listing
=========================== */

.job-openings-wrapper{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:35px;
    padding:60px 0;
}

.job-card{
    background:#fff;
    border:1px solid #f1f1f1;
    border-radius:15px;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    transition:all .35s ease;

    box-shadow:
        0 8px 20px rgba(0,0,0,.06),
        0 20px 45px rgba(0,0,0,.08);
}

.job-card:hover{
    transform:translateY(-8px);
    border-color:#e5e5e5;

    box-shadow:
        0 15px 35px rgba(0,0,0,.10),
        0 30px 60px rgba(0,0,0,.12);
}

.job-image{
    overflow:hidden;
}

.job-image img{
    width:100%;
    height:250px;
    object-fit:cover;
    display:block;
    transition:transform .5s ease;
}

.job-card:hover .job-image img{
    transform:scale(1.05);
}

.job-content{
    padding:28px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.job-title{
    margin:0 0 18px;
    font-size:28px;
    font-weight:700;
    line-height:1.3;
}

.job-title a{
    color:#222;
    text-decoration:none;
    transition:.3s;
}

.job-title a:hover{
    color:#ff7a00;
}

.job-description{
    font-size:16px;
    line-height:1.8;
    color:#666;
    margin-bottom:25px;
    flex:1;
}

.job-description p:last-child{
    margin-bottom:0;
}

.job-btn{
    margin-top:auto;
}

.apply-now-btn{
    display:inline-block;
    background: #189dc9;
    color: #fff !important;
    padding:14px 32px;
    border-radius:6px;
    text-decoration: none !important;
    font-weight:600;
    transition:all .3s ease;
}

.apply-now-btn:hover{
    background:#222;
    color:#fff;
    text-decoration:none;
}

/* ===========================
   Tablet
=========================== */

@media (max-width:991px){

    .job-openings-wrapper{
        grid-template-columns:1fr;
        gap:30px;
        padding:50px 0;
    }

    .job-title{
        font-size:24px;
    }

}

/* ===========================
   Mobile
=========================== */

@media (max-width:767px){

    .job-openings-wrapper{
        gap:20px;
        padding:40px 0;
    }

    .job-image img{
        height:220px;
    }

    .job-content{
        padding:20px;
    }

    .job-title{
        font-size:22px;
    }

    .job-description{
        font-size:15px;
        line-height:1.7;
    }

    .apply-now-btn{
        width:100%;
        text-align:center;
        padding:14px;
    }

}
/* over by ND */
/* for team page */
/*==========================
 TEAM SLIDER
==========================*/

/*==================================================
                TEAM SECTION
==================================================*/

.team-slider-wrapper{
    width:100%;
    /* margin:70px auto; */
    margin: 40px auto 0;
    position:relative;
}

.team-slider{
    margin:0 -15px;
}

/* Slick */

.team-slider .slick-track{
    display:flex !important;
    align-items:stretch;
}

.team-slider .slick-slide{
    height:inherit !important;
    padding:18px;
    box-sizing:border-box;
}

.team-slider .slick-slide > div{
    height:100%;
}

/*==================================================
                CARD
==================================================*/

.team-item{
    height:100%;
}

.team-card-link{
    display:block;
    text-decoration:none !important;
    color:inherit;
    height:100%;
}

.team-card-link:hover{
    text-decoration:none !important;
    color:inherit;
}

.team-card{

    height:100%;

    display:flex;
    flex-direction:column;
    justify-content:flex-start;

    background:linear-gradient(180deg,#ffffff,#fbfcff);

    border-radius:16px;

    padding:40px 35px;

    text-align:center;

    border-top:5px solid var(--light-text);

    box-shadow:
        0 10px 35px rgba(0,0,0,.08);

    transition:all .35s ease;

    overflow:hidden;
}

.team-card:hover{

    transform:translateY(-10px);

    box-shadow:
        0 25px 50px rgba(0,0,0,.16);

}

/*==================================================
                IMAGE
==================================================*/

.team-image{
    margin-bottom:25px;
}

.team-image img{

    width:135px;
    height:135px;

    display:block;
    margin:auto;

    object-fit:cover;

    border-radius:50%;

    border:5px solid #fff;

    box-shadow:
        0 0 0 4px var(--light-text),
        0 15px 35px rgba(0,0,0,.18);

    transition:.4s;
}

.team-card:hover .team-image img{

    transform:scale(1.05);

}

/*==================================================
                CONTENT
==================================================*/

.team-content{

    flex:1;

    display:flex;
    flex-direction:column;

}

.team-name{

    margin:0;

    font-size:32px;

    font-weight:700;

    line-height:1.25;

    color:var(--primary-color);

    text-decoration:none !important;
}

.team-name:hover{

    color:var(--primary-color);

}

.team-designation{

    display:inline-block;

    margin:18px auto 25px;

    padding:8px 18px;

    border-radius:40px;

    background:#fff8e5;

    color:#b88b00;

    font-size:15px;

    font-weight:700;

    letter-spacing:.5px;

    text-transform:uppercase;
}

.team-description{

    margin-top:auto;

    font-size:17px;

    line-height:1.9;

    color:var(--text-color);

    word-break:break-word;
}

.team-description p{

    margin-bottom:15px;
}

.team-description p:last-child{

    margin-bottom:0;
}

/*==================================================
                DOTS
==================================================*/

.team-slider .slick-dots{

    position:relative;

    bottom:auto;

    margin-top:35px;
}

.team-slider .slick-dots li{

    margin:0 3px;
}

.team-slider .slick-dots li button:before{

    font-size:12px;

    color:var(--primary-color);

    opacity:.30;
}

.team-slider .slick-dots li.slick-active button:before{

    opacity:1;

    color:var(--secondary-color);
}

/*==================================================
                TABLET
==================================================*/

@media(max-width:991px){

.team-slider-wrapper{

margin:60px auto;

}

.team-card{

padding:35px 28px;

}

.team-image img{

width:120px;
height:120px;

}

.team-name{

font-size:28px;

}

.team-designation{

font-size:14px;

padding:8px 16px;

}

.team-description{

font-size:16px;

line-height:1.8;

}

}

/*==================================================
                MOBILE
==================================================*/

@media(max-width:767px){

.team-slider{

margin:0;

}

.team-slider .slick-slide{

padding:10px;

}

.team-card{

padding:30px 22px;

border-radius:14px;

}

.team-image{

margin-bottom:20px;

}

.team-image img{

width:105px;
height:105px;

}

.team-name{

font-size:24px;

}

.team-designation{

font-size:13px;

padding:7px 14px;

margin:15px auto 20px;

}

.team-description{

font-size:15px;

line-height:1.75;

}

}

/*==================================================
                SMALL MOBILE
==================================================*/

@media(max-width:480px){

.team-card{

padding:25px 18px;

}

.team-image img{

width:90px;
height:90px;

}

.team-name{

font-size:21px;

}

.team-description{

font-size:14px;

}

}
/* over */
/*==================================
Single Team
===================================*/
/*=========================================
        SINGLE TEAM PAGE
=========================================*/

.ve-single-team{
    padding:100px 0 70px;
    background:#fff;
}

/* Heading */

.ve-team-heading{
    text-align:center;
    margin-bottom:55px;
}

.ve-team-heading h1{
    margin:0;
    font-size:46px;
    font-weight:700;
    color:#0B2A63;
    line-height:1.2;
}
.ve-team-heading::after{
    content:"";
    width:70px;
    height:3px;
    background:#0B2A63;
    display:block;
    margin:18px auto 0;
    border-radius:50px;
}
.ve-team-designation{
    margin:12px 0 0;
    font-size:22px;
    color:#666;
    font-weight:500;
    letter-spacing:.5px;
}

/* Layout */

.ve-team-wrapper{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:60px;
}

/* Content */

.ve-team-content{
    flex:1;
    background:#f8fafc;
    padding:45px;
    border-radius:18px;
    border-left:5px solid #0B2A63;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.ve-team-content p{
    font-size:18px;
    line-height:1.9;
    color:#444;
    margin-bottom:22px;
}

.ve-team-content strong{
    color:#0B2A63;
}

.ve-team-content h2,
.ve-team-content h3{
    color:#0B2A63;
    margin:25px 0 15px;
}

.ve-team-content ul{
    padding-left:20px;
}

.ve-team-content li{
    margin-bottom:10px;
}

/* Image */
.ve-team-photo{
    width:340px;
    height:400px;      /* Fixed height */
    flex-shrink:0;
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.ve-team-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center top;
    display:block;
    transition:.3s ease;
}

.ve-team-photo:hover img{
    transform:scale(1.03);
}

/* Tablet */

@media(max-width:991px){

.ve-team-wrapper{
    gap:35px;
}

.ve-team-photo{
    width:280px;
}

.ve-team-heading h1{
    font-size:38px;
}

}

/* Mobile */

@media(max-width:767px){

.ve-single-team{
    padding:60px 0;
}

.ve-team-heading{
    margin-bottom:35px;
}

.ve-team-heading h1{
    font-size:30px;
}

.ve-team-designation{
    font-size:18px;
}

.ve-team-wrapper{
    flex-direction:column-reverse;
}

.ve-team-photo{
    width:280px;
    height:340px;
    margin:0 auto;
}

.ve-team-content{
    padding:30px;
}

.ve-team-content p{
    font-size:16px;
}

}
/*==================================================
        SINGLE SERVICE CONTENT
==================================================*/

.service-content{
    padding:40px 0;
    background:#fff;
}

.service-editor{
    max-width:900px;
    margin:auto;
}
/*=========================
    Single Service Page
==========================*/

/* Title */
.service-single .entry-title,
.single-service .entry-title,
.single-portfolio .entry-title{
    max-width: 1000px;
    margin: 50px auto 40px;
    text-align: center;
    font-size: 52px;
    line-height: 1.2;
    font-weight: 700;
}

/* Featured Image */
.service-single .post-thumbnail,
.single-service .post-thumbnail,
.single-portfolio .post-thumbnail{
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 70px;
    text-align: center;
}

.service-single .post-thumbnail img,
.single-service .post-thumbnail img,
.single-portfolio .post-thumbnail img{
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    margin: auto;
}

/* Content */
/* .service-hero{
    padding: 60px 0;
    text-align: center;
}

.service-hero-content{
    max-width: 1200px;
    margin: 0 auto;
}

.service-hero-content h1{
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 auto 40px;
    max-width: 1000px;
    text-align: center;
} */
.service-hero{
    padding: 70px 0 50px;
}

.service-hero-content{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
}

.service-hero-content h1{
    display: block;
    width: 100%;
    max-width: 950px;
    margin: 0 auto 40px;

    font-size: clamp(32px, 4vw, 54px);
    font-weight: 700;
    line-height: 1.25;

    text-align: center;

    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
}
.service-featured-image{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.service-featured-image img{
    width:100%;
    aspect-ratio:16/8;
    object-fit:cover;
    display:block;
    border-radius:20px;
}

/* .service-featured-image{
    width:100%;
    max-width:1200px;
    margin:0 auto;
}

.service-featured-image img{
    width:100%;
    display:block;
    aspect-ratio:16/8;
    object-fit:cover;
    border-radius:20px;
} */
/*-----------------------
Typography
-----------------------*/

.service-editor h2{
    position:relative;
    font-size:40px;
    font-weight:700;
    color:#1a1a1a;
    margin:80px 0 30px;
    padding-bottom:18px;
    line-height:1.3;
}

.service-editor h2:first-child{
    margin-top:0;
}

.service-editor h2::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:70px;
    height:4px;
    background:#ff9800;
    border-radius:20px;
}

.service-editor h3{
    font-size:30px;
    color:#222;
    margin:50px 0 20px;
    font-weight:600;
}

.service-editor h4{
    font-size:24px;
    color:#333;
    margin:35px 0 15px;
}

.service-editor p{
    font-size:18px;
    color:#555;
    line-height:2;
    margin-bottom:25px;
}

/*-----------------------
Images
-----------------------*/

.service-editor img{
    width:100%;
    height:auto;
    margin:45px 0;
    border-radius:20px;
    transition:.5s;
}

.service-editor img:hover{
    transform:scale(1.02);
}

/*-----------------------
Lists
-----------------------*/

.service-editor ul{
    list-style:none;
    padding:0;
    margin:35px 0;
}

.service-editor ul li{
    position:relative;
    padding-left:35px;
    margin-bottom:18px;
    font-size:18px;
    color:#444;
    line-height:1.8;
}

.service-editor ul li:before{
    content:"✓";
    position:absolute;
    left:0;
    top:2px;
    width:22px;
    height:22px;
    border-radius:50%;
    background:#ff9800;
    color:#fff;
    font-size:13px;
    text-align:center;
    line-height:22px;
    font-weight:bold;
}

.service-editor ol{
    padding-left:25px;
    margin:30px 0;
}

.service-editor ol li{
    margin-bottom:15px;
    font-size:18px;
    line-height:1.8;
}

/*-----------------------
Blockquote
-----------------------*/

.service-editor blockquote{
    margin:60px 0;
    padding:35px 40px;
    border-left:5px solid #ff9800;
    background:#fff7ec;
    font-size:22px;
    font-style:italic;
    color:#444;
}

/*-----------------------
Tables
-----------------------*/

.service-editor table{
    width:100%;
    border-collapse:collapse;
    margin:45px 0;
}

.service-editor table td,
.service-editor table th{
    border:1px solid #e6e6e6;
    padding:15px;
}

.service-editor table th{
    background:#f7f7f7;
}

/*-----------------------
Links
-----------------------*/

.service-editor a{
    color:#ff9800;
    font-weight:600;
}

.service-editor a:hover{
    color:#222;
}

/*-----------------------
HR
-----------------------*/

.service-editor hr{
    margin:70px 0;
    border:none;
    height:1px;
    background:#ececec;
}

/*-----------------------
Responsive
-----------------------*/

@media(max-width:991px){

.service-content{
    padding:25px 0;
}

.service-editor h2{
    font-size:34px;
}

.service-editor h3{
    font-size:28px;
}

}

@media(max-width:767px){

.service-content{
    padding:50px 0;
}

.service-editor h2{
    font-size:28px;
}

.service-editor h3{
    font-size:24px;
}

.service-editor p,
.service-editor li{
    font-size:16px;
    line-height:1.9;
}

.service-editor blockquote{
    padding:25px;
    font-size:18px;
}

}
/*==========================
    CTA Section
===========================*/

.service-cta{
    position: relative;
    padding: 30px 0;
    background: linear-gradient(135deg, #F5F7FA 0%, #EEF3F8 100%);
    overflow: hidden;
}

/* Decorative Circles */

.service-cta::before{
    content:'';
    position:absolute;
    width:280px;
    height:280px;
    background:rgba(255,152,0,.08);
    border-radius:50%;
    top:-120px;
    right:-100px;
}

.service-cta::after{
    content:'';
    position:absolute;
    width:180px;
    height:180px;
    border:2px solid rgba(255,152,0,.12);
    border-radius:50%;
    bottom:-70px;
    left:-70px;
}

.cta-content{
    max-width:900px;
    margin:auto;
    text-align:center;
    position:relative;
    z-index:2;
}

.cta-tag{
    display:inline-block;
    color:#ff9800;
    font-size:14px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.cta-content h2{
    font-size:48px;
    line-height:1.2;
    font-weight:700;
    color:#0f172a;
    margin-bottom:25px;
    text-transform:uppercase;
}

.cta-content p{
    font-size:20px;
    color:#5b6470;
    line-height:1.9;
    max-width:760px;
    margin:0 auto 45px;
}

.cta-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:16px 36px;
    background:#ff9800;
    color:#fff;
    font-size:16px;
    font-weight:600;
    text-decoration:none;
    border-radius:50px;
    transition:.35s ease;
}

.cta-btn::after{
    content:"→";
    transition:.35s;
}

.cta-btn:hover{
    background:#0f172a;
    color:#fff;
    transform:translateY(-4px);
}

.cta-btn:hover::after{
    transform:translateX(5px);
}

/* Responsive */

@media(max-width:991px){

.service-cta{
    padding:80px 0;
}

.cta-content h2{
    font-size:38px;
}

.cta-content p{
    font-size:18px;
}

}

@media(max-width:767px){

.service-cta{
    padding:60px 0;
}

.cta-content h2{
    font-size:28px;
}

.cta-content p{
    font-size:16px;
}

.cta-btn{
    padding:14px 28px;
    font-size:15px;
}

}

@media (max-width:991px){

    .service-hero{
        padding:60px 0 40px;
    }

    .service-hero-content h1{
        max-width: 90%;
        font-size: 42px;
        line-height: 1.3;
        margin-bottom: 30px;
    }

    .service-featured-image img{
        aspect-ratio:16/9;
    }

}

/* Mobile */

@media (max-width:767px){

    .service-hero{
        padding:40px 0 30px;
    }

    .service-hero-content{
        padding:0 20px;
    }

    .service-hero-content h1{
        max-width:100%;
        font-size:30px;
        line-height:1.35;
        margin-bottom:25px;
    }

    .service-featured-image{
        padding:0;
    }

    .service-featured-image img{
        border-radius:12px;
        aspect-ratio:auto;
    }

}
/*==================================================
CASE STUDY GRID
==================================================*/

.case-study-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    margin:50px 0;
}

.case-study-card{
    display:flex;
    flex-direction:column;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:all .35s ease;
    height:100%;
    border:1px solid rgba(15,42,90,.08);
}

.case-study-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(15,42,90,.15);
}

.case-study-img{
    display:block;
    overflow:hidden;
    position:relative;
}

.case-study-img img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
    transition:transform .6s ease;
}

.case-study-card:hover .case-study-img img{
    transform:scale(1.08);
}

.case-study-content{
    display:flex;
    flex-direction:column;
    flex:1;
    padding:28px;
}

.case-study-content h3{
    margin:0 0 15px;
    font-size:24px;
    font-weight:700;
    line-height:1.4;
}

.case-study-content h3 a{
    color:var(--primary-color);
    text-decoration:none;
    transition:.3s;
}

.case-study-content h3 a:hover{
    color:var(--secondary-color);
}

.case-study-content p{
    color:#666;
    font-size:16px;
    line-height:1.8;
    margin-bottom:25px;
    flex:1;
}

.case-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    align-self:flex-start;
    padding:12px 26px;
    border-radius:50px;
    background:var(--primary-color);
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:all .35s ease;
    border:2px solid var(--primary-color);
}

.case-btn:hover{
    background:var(--secondary-color);
    border-color:var(--secondary-color);
    color:#fff;
    transform:translateX(5px);
}

/*==================================================
PAGINATION
==================================================*/

.case-pagination{
    margin:60px 0 20px;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:12px;
}

.case-pagination .page-numbers{
    min-width:48px;
    height:48px;
    padding:0 16px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    background:#fff;
    color:var(--primary-color);
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    border:1px solid #dfe5ef;
    box-shadow:0 5px 15px rgba(0,0,0,.05);
    transition:all .35s ease;
}

.case-pagination a.page-numbers:hover{
    background:var(--secondary-color);
    border-color:var(--secondary-color);
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(241,90,34,.25);
}

.case-pagination .current{
    background:var(--primary-color);
    color:#fff;
    border-color:var(--primary-color);
    box-shadow:0 10px 25px rgba(15,42,90,.25);
}

.case-pagination .prev,
.case-pagination .next{
    min-width:52px;
    padding:0 18px;
    font-size:18px;
    font-weight:700;
}

.case-pagination .prev:hover,
.case-pagination .next:hover{
    background:var(--secondary-color);
    color:#fff;
}
.case-pagination .page-numbers{
    width:auto !important;
    float:none !important;
}

.case-pagination a{
    display:inline-flex !important;
}

/*=========================
Responsive
=========================*/

@media (max-width:767px){

.case-pagination{
    gap:8px;
    margin:40px 0 15px;
}

.case-pagination .page-numbers{
    min-width:42px;
    height:42px;
    padding:0 14px;
    font-size:14px;
    border-radius:10px;
}

.case-pagination .prev,
.case-pagination .next{
    min-width:46px;
    font-size:16px;
}

}

/*==================================================
RESPONSIVE
==================================================*/

@media (max-width:1199px){

.case-study-grid{
    gap:30px;
}

.case-study-img img{
    height:240px;
}

.case-study-content{
    padding:24px;
}

.case-study-content h3{
    font-size:22px;
}

}

@media (max-width:991px){

.case-study-grid{
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.case-study-img img{
    height:220px;
}

.case-study-content{
    padding:22px;
}

.case-study-content h3{
    font-size:21px;
}

.case-study-content p{
    font-size:15px;
}

.case-pagination .page-numbers{
    width:44px;
    height:44px;
}

}

@media (max-width:767px){

.case-study-grid{
    grid-template-columns:1fr;
    gap:20px;
}

.case-study-card{
    border-radius:15px;
}

.case-study-img img{
    height:230px;
}

.case-study-content{
    padding:20px;
}

.case-study-content h3{
    font-size:20px;
}

.case-study-content p{
    font-size:15px;
    line-height:1.7;
}

.case-btn{
    width:100%;
    justify-content:center;
}

.case-pagination{
    margin-top:40px;
}

.case-pagination ul{
    gap:8px;
}

.case-pagination .page-numbers{
    width:42px;
    height:42px;
    font-size:14px;
}

.case-pagination .prev,
.case-pagination .next{
    padding:0 15px;
}

}

@media (max-width:480px){

.case-study-grid{
    margin:35px 0;
}

.case-study-img img{
    height:210px;
}

.case-study-content{
    padding:18px;
}

.case-study-content h3{
    font-size:18px;
}

.case-study-content p{
    font-size:14px;
}

.case-pagination .page-numbers{
    width:40px;
    height:40px;
    font-size:13px;
}

.case-pagination .prev,
.case-pagination .next{
    width:40px;
    padding:0;
}

}
/*==================================================
    SINGLE CASE STUDY PAGE
==================================================*/

.case-study-single-page{
    position: relative;
    width: 100%;
    background: #f8f9fb;
    padding: 60px 0;
}

.case-study-main{
    width: 100%;
}

.case-study-article{
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,.08);
}

/*=========================================
Featured Image
=========================================*/

.case-study-featured-image{
    width: 100%;
    overflow: hidden;
}

.case-study-featured-image img{
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

/*=========================================
Content
=========================================*/

.case-study-content-wrap{
    padding: 40px;
}

.case-study-header{
    margin-bottom: 35px;
    text-align: center;
    border-bottom: 1px solid #e7e7e7;
    padding-bottom: 25px;
}

.case-study-title{
    margin: 0;
    font-size: 42px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--primary-color);
}

/*=========================================
Editor Content
=========================================*/

.case-study-content{
    color: #555;
    font-size: 17px;
    line-height: 1.9;
}

.case-study-content p{
    margin-bottom: 22px;
}

.case-study-content h2,
.case-study-content h3,
.case-study-content h4,
.case-study-content h5,
.case-study-content h6{
    /* color: var(--primary-color); */
    color: var(--text-color);
    margin: 40px 0 18px;
    line-height: 1.4;
    font-weight: 700;
}

.case-study-content h2{
    font-size: 34px;
}

.case-study-content h3{
    font-size: 28px;
}

.case-study-content h4{
    font-size: 24px;
}

.case-study-content ul,
.case-study-content ol{
    margin: 20px 0;
    padding-left: 25px;
}

.case-study-content li{
    margin-bottom: 12px;
}

.case-study-content img{
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 25px 0;
}

.case-study-content figure{
    margin: 30px 0;
}

.case-study-content blockquote{
    background: #f7f7f7;
    border-left: 5px solid var(--secondary-color);
    padding: 25px;
    margin: 35px 0;
    font-style: italic;
    border-radius: 8px;
}

.case-study-content table{
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.case-study-content table th,
.case-study-content table td{
    border: 1px solid #ddd;
    padding: 15px;
}

.case-study-content table th{
    background: var(--primary-color);
    color: #fff;
}

.case-study-content a{
    /* color: var(--secondary-color); */
    color: #ffffff;
    text-decoration: none;
    transition: .3s;
}

.case-study-content a:hover{
    /* color: var(--primary-color); */
    color: #ffffff;
}

.case-study-content iframe{
    width: 100%;
    border: 0;
    border-radius: 12px;
}

/*=========================================
WordPress Alignments
=========================================*/

.case-study-content .alignleft{
    float: left;
    margin: 10px 25px 20px 0;
}

.case-study-content .alignright{
    float: right;
    margin: 10px 0 20px 25px;
}

.case-study-content .aligncenter{
    display: block;
    margin: 25px auto;
}

.case-study-content::after{
    content: "";
    display: block;
    clear: both;
}

/*==================================================
Large Desktop
==================================================*/

@media (max-width:1400px){

.case-study-title{
    font-size:38px;
}

.case-study-featured-image img{
    height:480px;
}

}

/*==================================================
Laptop
==================================================*/

@media (max-width:1199px){

.case-study-single-page{
    padding:50px 0;
}

.case-study-featured-image img{
    height:430px;
}

.case-study-content-wrap{
    padding:35px;
}

.case-study-title{
    font-size:34px;
}

.case-study-content h2{
    font-size:30px;
}

.case-study-content h3{
    font-size:26px;
}

}

/*==================================================
Tablet
==================================================*/

@media (max-width:991px){

.case-study-single-page{
    padding:40px 0;
}

.case-study-featured-image img{
    height:350px;
}

.case-study-content-wrap{
    padding:30px;
}

.case-study-title{
    font-size:30px;
}

.case-study-content{
    font-size:16px;
}

.case-study-content h2{
    font-size:28px;
}

.case-study-content h3{
    font-size:24px;
}

.case-study-content table{
    display:block;
    overflow-x:auto;
}

}

/*==================================================
Mobile
==================================================*/

@media (max-width:767px){

.case-study-single-page{
    padding:30px 0;
}

.case-study-article{
    border-radius:12px;
}

.case-study-featured-image img{
    height:250px;
}

.case-study-content-wrap{
    padding:25px 20px;
}

.case-study-header{
    margin-bottom:25px;
    padding-bottom:18px;
}

.case-study-title{
    font-size:26px;
    line-height:1.4;
}

.case-study-content{
    font-size:15px;
    line-height:1.8;
}

.case-study-content h2{
    font-size:24px;
}

.case-study-content h3{
    font-size:22px;
}

.case-study-content h4{
    font-size:20px;
}

.case-study-content img{
    margin:20px 0;
}

.case-study-content blockquote{
    padding:18px;
}

.case-study-content .alignleft,
.case-study-content .alignright{
    float:none;
    margin:20px auto;
    display:block;
}

}

/*==================================================
Small Mobile
==================================================*/

@media (max-width:480px){

.case-study-single-page{
    padding:20px 0;
}

.case-study-featured-image img{
    height:200px;
}

.case-study-content-wrap{
    padding:20px 15px;
}

.case-study-title{
    font-size:22px;
}

.case-study-content{
    font-size:14px;
}

.case-study-content h2{
    font-size:22px;
}

.case-study-content h3{
    font-size:20px;
}

.case-study-content h4{
    font-size:18px;
}

.case-study-content table th,
.case-study-content table td{
    padding:10px;
}

}
/*=========================================
          CONTACT FORM 7
=========================================*/

.cf7-form{
    width:100%;
}

.cf7-row{
    display:flex;
    gap:24px;
    margin-bottom:22px;
}

.cf7-col{
    flex:1;
}

.cf7-col.full-width{
    width:100%;
}

.cf7-col label{
    display:block;
    font-size:15px;
    font-weight:600;
    color:#222;
    margin-bottom:8px;
}

.cf7-col label span{
    color:#f15a22;
}

.cf7-col input,
.cf7-col select,
.cf7-col textarea{
    width:100%;
    height:52px;
    padding:0 16px;
    border:1px solid #dcdcdc;
    border-radius:8px;
    background:#fff;
    color:#333;
    font-size:15px;
    font-family:inherit;
    transition:all .3s ease;
    box-sizing:border-box;
}

.cf7-col textarea{
    height:170px;
    padding:14px 16px;
    resize:vertical;
}

.cf7-col input:focus,
.cf7-col select:focus,
.cf7-col textarea:focus{
    outline:none;
    border-color:#f15a22;
    box-shadow:0 0 0 4px rgba(241,90,34,.12);
}

.cf7-col ::placeholder{
    color:#999;
}

.cf7-submit{
    margin-top:10px;
}

.cf7-submit .wpcf7-submit{
    background:var(--primary-color);
    color:#fff;
    border:none;
    padding:15px 38px;
    border-radius:8px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:all .3s ease;
}

.cf7-submit .wpcf7-submit:hover{
    background:var(--secondary-color);
    transform:translateY(-2px);
}

.wpcf7-spinner{
    margin-left:15px;
}

.wpcf7-not-valid-tip{
    margin-top:6px;
    font-size:13px;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output{
    margin:25px 0 0;
    border-radius:8px;
    padding:12px 16px;
    font-size:14px;
}

/*==========================
      Tablet
==========================*/

@media (max-width:991px){

    .cf7-row{
        gap:18px;
    }

}

/*==========================
      Mobile
==========================*/

@media (max-width:767px){

    .cf7-row{
        flex-direction:column;
        gap:18px;
        margin-bottom:18px;
    }

    .cf7-col input,
    .cf7-col select,
    .cf7-col textarea{
        font-size:14px;
    }

    .cf7-submit .wpcf7-submit{
        width:100%;
    }

}
/*==================================================
                FAQ SECTION
==================================================*/

.faq-section{
    padding:60px 0;
    background:#f8fafc;
}

/*==================================================
                FAQ INTRO
==================================================*/

.faq-intro{
    margin-bottom:45px;
}

.faq-intro .section-header{
    text-align:center;
    margin-bottom:30px;
}

.faq-intro .section-header h2{
    font-size:40px;
    font-weight:700;
    color:var(--primary-color);
    margin:0;
    position:relative;
    display:inline-block;
    padding-bottom:15px;
}

.faq-intro .section-header h2::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:0;
    transform:translateX(-50%);
    width:70px;
    height:4px;
    background:var(--secondary-color);
    border-radius:50px;
}

.faq-intro .section-content{
    max-width:950px;
    margin:auto;
    background:#fff;
    border-radius:12px;
    padding:35px 40px;
    border-left:5px solid var(--secondary-color);
    box-shadow:0 8px 25px rgba(0,0,0,.06);
}

.faq-intro .section-content p{
    margin:0 0 18px;
    color:#666;
    line-height:1.9;
    font-size:16px;
}

.faq-intro .section-content p:last-child{
    margin-bottom:0;
}

.faq-intro .section-content strong{
    color:var(--primary-color);
}


/*==================================================
                FAQ ACCORDION
==================================================*/

.ive-accordion-wrap{
    max-width:950px;
    margin:auto;
}

.ive-accordion-pane{
    margin-bottom:15px;
    border-radius:10px;
    overflow:hidden;
    border:1px solid #e7e7e7;
    background:#fff;
    transition:.3s;
}

.ive-accordion-pane:hover{
    border-color:var(--primary-color);
}

.ive-blocks-accordion-header{
    width:100%;
    padding:18px 24px !important;
    background:#fff !important;
    border:none !important;
    box-shadow:none !important;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.ive-blocks-accordion-title{
    font-size:17px;
    font-weight:600;
    color:var(--secondary-color);
    line-height:1.6;
}

.ive-blocks-accordion-title strong{
    font-weight:600;
}

.ive-accordion-panel{
    background:#fff;
}

.ive-accordion-panel-inner{
    padding:0 24px 22px;
}

.ive-accordion-panel-inner p{
    margin:0;
    color:#666;
    font-size:15px;
    line-height:1.8;
}

/* Active */

.ive-accordion-panel-active>.ive-accordion-header-wrap .ive-blocks-accordion-header{
    background:var(--secondary-color) !important;
}

.ive-accordion-panel-active>.ive-accordion-header-wrap .ive-blocks-accordion-title,
.ive-accordion-panel-active>.ive-accordion-header-wrap .ive-blocks-accordion-title strong{
    color:#fff;
}

.ive-accordion-panel-active{
    border-color:var(--secondary-color);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

/* Icon */

.ive-accordion-icon-trigger{
    color:var(--primary-color);
    font-size:18px;
}

.ive-accordion-panel-active .ive-accordion-icon-trigger{
    color:#fff;
}


/*==================================================
                RESPONSIVE
==================================================*/

@media(max-width:991px){

.faq-intro .section-header h2{
    font-size:32px;
}

.faq-intro .section-content{
    padding:30px;
}

.ive-blocks-accordion-header{
    padding:16px 20px !important;
}

.ive-accordion-panel-inner{
    padding:0 20px 20px;
}

}

@media(max-width:767px){

.faq-section{
    padding:40px 0;
}

.faq-intro{
    margin-bottom:30px;
}

.faq-intro .section-header h2{
    font-size:26px;
}

.faq-intro .section-content{
    padding:22px 20px;
}

.faq-intro .section-content p{
    font-size:15px;
}

.ive-blocks-accordion-header{
    padding:15px 18px !important;
}

.ive-blocks-accordion-title{
    font-size:15px;
    padding-right:10px;
}

.ive-accordion-panel-inner{
    padding:0 18px 18px;
}

.ive-accordion-panel-inner p{
    font-size:14px;
}

}