
/* home hero section*/
:root {
    --primary-color: #2563eb;
    --secondary-color: #7c3aed;
    --accent-color: #f59e0b;
    --dark-color: #0f172a;
    --light-color: #f8fafc;
    --gray-color: #e2e8f0;
    --text-color: #334155;
    --text-light: #64748b;
    --white: #ffffff;
    --black: #000000;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20 20px;
    background: #0f0f29;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}
/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a1f 0%, #1a1a3a 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    color: var(--white);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 6px 15px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
}

.badge i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.title-highlight {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.title-highlight::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 20px;
    background: rgba(245, 158, 11, 0.2);
    bottom: 5px;
    left: 0;
    z-index: -1;
    border-radius: 10px;
}

.hero-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
    font-size: 0.9rem;
}

.floating-card i {
    font-size: 1rem;
    color: var(--primary-color);
}

.floating-card span {
    font-weight: 600;
    color: var(--dark-color);
}

.card-1 {
    top: 10%;
    left: 6%;
}

.card-2 {
    top: 30%;
    right: 3%;
}

.card-3 {
    bottom: 30%;
    left: 3%;
}

.card-4 {
    bottom: 50%;
    right: 8%;
}
.card-5 {
    top: 40%;
    left: 6%;
}

.card-6 {
    top: 50%;
    right: 3%;
}

.card-7 {
    bottom: 30%;
    left: 3%;
}

.card-8 {
    bottom: 40%;
    right: 8%;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Background Elements */
.bg-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.5;
}

.element-1 {
    width: 200px;
    height: 200px;
    background: rgba(37, 99, 235, 0.3);
    top: -100px;
    right: -100px;
}

.element-2 {
    width: 250px;
    height: 250px;
    background: rgba(124, 58, 237, 0.3);
    bottom: -120px;
    left: -120px;
}

.element-3 {
    width: 150px;
    height: 150px;
    background: rgba(245, 158, 11, 0.3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.btn .btn-outline{
   color: #ffffff !important;
}

/*service card*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.container1 {
    max-width: 1200px;
    margin: auto;
    padding: 80px 20px;
    background: #f5f7fb;
}

/* Section Header */

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .subtitle {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #2563eb;
    display: block;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 15px;
}

.section-header h2 span {
    color: #2563eb;
}

.section-header p {
    max-width: 600px;
    margin: auto;
    color: #6b7280;
    font-size: 15px;
}

/* Services Grid */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Service Card */

.service-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    border: 1px solid #e5e7eb;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

/* Icon */

.service-card .icon {
    width: 55px;
    height: 55px;
    background: #e0e7ff;
    color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}

/* Text */

.service-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #111827;
}

.service-card p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 18px;
    line-height: 1.6;
}

.service-card a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: #2563eb;
}

/* Responsive */

/* Tablet */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 24px;
    }
}

/*counter Section*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

/* Section */
.counter-section {
    background: #0b1e33;
    padding: 40px 20px;
}


/* Grid */
.counter-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Box */
.counter-box {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    color: #fff;
    backdrop-filter: blur(6px);
    transition: 0.3s;
}

.counter-box:hover {
    transform: translateY(-5px);
}

/* Icon */
.counter-box i {
    font-size: 26px;
    margin-bottom: 15px;
    opacity: 0.9;
}
.svg-inline--fa1 {
    display: var(--fa-display, inline-block);
    height: 3em;
    overflow: visible;
    vertical-align: -.125em;
}

/* Number */
.counter-box h2 {
    font-size: 28px;
    margin-bottom: 8px;
}

.counter-box p {
    font-size: 20px;
    opacity: 0.9;
}

/* Tablet */
@media (max-width: 992px) {
    .counter-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .counter-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .counter-box {
        padding: 30px 15px;
    }
}

/*-------------testimonial-------------*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, sans-serif;
}

.testimonial-section{
    background:#f4f6fb;
    padding:80px 20px;
}

.container2{
    max-width:1200px;
    margin:auto;
    text-align:center;
}

.sub-title{
    color:#4f6df5;
    letter-spacing:2px;
    font-size:14px;
    margin-bottom:10px;
}

.main-title{
    font-size:32px;
    margin-bottom:50px;
}

.main-title span{
    color:#4f6df5;
}

/* Slider */
.testimonial-wrapper{
    overflow:hidden;
}

.testimonial-track{
    display:flex;
    gap:25px;
    transition:transform 0.5s ease-in-out;
}

/* Card */
.testimonial-card{
    min-width:calc(33.33% - 17px);
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
    text-align:left;
}

.stars{
    color:#f4a100;
    font-size:18px;
    margin-bottom:15px;
}

.testimonial-card p{
    font-size:15px;
    color:#555;
    margin-bottom:20px;
    line-height:1.6;
}

.client{
    display:flex;
    align-items:center;
    gap:12px;
}

.client img{
    width:45px;
    height:45px;
    border-radius:50%;
}

.client h4{
    font-size:15px;
}

.client span{
    font-size:13px;
    color:#777;
}

/* Tablet */
@media(max-width:992px){
    .testimonial-card{
        min-width:calc(50% - 15px);
    }
}

/* Mobile */
@media(max-width:576px){
    .testimonial-card{
        min-width:100%;
    }
}

/*-----------------------our clients------------*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    background:#f5f7fb;
}

/* Section */
.results-section{
    padding:80px 20px;
}

.results-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:60px;
}

/* Image Side */
.results-image{
    position:relative;
    flex:1;
}

.results-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.shape{
    position:absolute;
    bottom:-30px;
    left:-30px;
    width:150px;
    height:150px;
    background:linear-gradient(135deg,#002c5e,#4f6df5);
    border-radius:30px;
    z-index:-1;
}

/* Content Side */
.results-content{
    flex:1;
}

.results-content h2{
    font-size:36px;
    margin-bottom:20px;
    line-height:1.3;
}

.results-content h2 span{
    color:#4f6df5;
}

.desc{
    color:#666;
    margin-bottom:35px;
    line-height:1.7;
    font-size:16px;
}

/* Info Cards */
.info-boxes{
    display:flex;
    gap:20px;
    margin-bottom:30px;
}

.info-card{
    flex:1;
    background:rgba(255,255,255,0.6);
    padding:20px;
    border-radius:15px;
    backdrop-filter:blur(10px);
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:0.3s;
}

.info-card:hover{
    transform:translateY(-5px);
}

.info-card h4{
    margin-bottom:10px;
    color:#002c5e;
}

.info-card p{
    font-size:14px;
    color:#555;
    line-height:1.6;
}

/* Button */
.btn-primary{
    display:inline-block;
    padding:12px 28px;
    background:linear-gradient(135deg,#002c5e,#4f6df5);
    color:#fff;
    text-decoration:none;
    border-radius:30px;
    font-size:14px;
    transition:0.3s;
}

.btn-primary:hover{
    opacity:0.9;
}

/* Responsive */
@media(max-width:992px){
    .results-container{
        flex-direction:column;
    }

    .info-boxes{
        flex-direction:column;
    }

    .results-content h2{
        font-size:28px;
    }
}

/*------------choose section-----------------*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

body{
    background:linear-gradient(135deg,#f4f6fb,#e9edf7);
}

/* Section */
.why-section{
    padding:100px 20px;
    overflow:hidden;
    background: white;
}

.why-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

/* LEFT CONTENT */
.why-content{
    flex:1;
}

.title{
    font-size:36px;
    margin-bottom:40px;
    line-height:1.3;
    opacity:0;
    transform:translateX(-50px);
    animation:slideLeft 1s forwards;
}

.title span{
    color:#002c5e;
}

/* Features */
.feature{
    display:flex;
    gap:20px;
    margin-bottom:30px;
    opacity:0;
    transform:translateY(40px);
    animation:fadeUp 1s forwards;
}

.feature:nth-child(2){ animation-delay:0.3s; }
.feature:nth-child(3){ animation-delay:0.6s; }
.feature:nth-child(4){ animation-delay:0.9s; }

.icon{
    min-width:55px;
    height:55px;
    background:linear-gradient(135deg,#002c5e,#4f6df5);
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
    box-shadow:0 10px 25px rgba(0,44,94,0.3);
}

.feature h4{
    margin-bottom:8px;
    font-size:18px;
}

.feature p{
    color:#555;
    line-height:1.6;
    font-size:15px;
}

/* RIGHT IMAGE */
.why-image{
    flex:1;
    position:relative;
    display:flex;
    justify-content:flex-end;
    align-items:center;
}

.why-image img{
    width:420px;
    height:420px;
    border-radius:50%;
    object-fit:cover;
    position:relative;
    z-index:2;
    box-shadow:0 25px 60px rgba(0,0,0,0.2);
    animation:float 4s ease-in-out infinite;
}

/* Background Circle */
.circle-bg{
    position:absolute;
    width:470px;
    height:470px;
    background:linear-gradient(135deg,#002c5e,#4f6df5);
    border-radius:50%;
    z-index:1;
    animation:rotate 20s linear infinite;
}

/* Play Button */
.play-btn{
    position:absolute;
    bottom:30px;
    right:30px;
    width:80px;
    height:80px;
    background:#002c5e;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:26px;
    cursor:pointer;
    z-index:3;
    animation:pulse 2s infinite;
}

/* Animations */
@keyframes slideLeft{
    to{opacity:1; transform:translateX(0);}
}

@keyframes fadeUp{
    to{opacity:1; transform:translateY(0);}
}

@keyframes float{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-15px);}
}

@keyframes rotate{
    from{transform:rotate(0deg);}
    to{transform:rotate(360deg);}
}

@keyframes pulse{
    0%{box-shadow:0 0 0 0 rgba(0,44,94,0.6);}
    70%{box-shadow:0 0 0 20px rgba(0,44,94,0);}
    100%{box-shadow:0 0 0 0 rgba(0,44,94,0);}
}

/* Responsive */
@media(max-width:992px){
    .why-container{
        flex-direction:column;
        text-align:center;
    }

    .why-image{
        justify-content:center;
        margin-top:40px;
    }

    .why-image img{
        width:300px;
        height:300px;
    }

    .circle-bg{
        width:340px;
        height:340px;
    }
}

/*-------success section-------------------*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

body{
    background:linear-gradient(135deg,#4867e9,#06306a);
}

.success-section{
    padding:50px 20px;
}

.container5{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:60px;
}

/* LEFT CONTENT */
.content-side{
    flex:1;
    color:#fff;
}

.section-title1{
    font-size:38px;
    margin-bottom:20px;
}

.section-title span{
    color:#ffffff;
}

.section-subtitle{
    margin-bottom:40px;
    color:#dfe6ff;
    line-height:1.6;
}

/* Progress */
.progress-item{
    margin-bottom:25px;
}

.label{
    display:flex;
    justify-content:space-between;
    margin-bottom:8px;
    font-size:14px;
}

.progress-bar{
    width:100%;
    height:10px;
    background:rgba(255,255,255,0.15);
    border-radius:20px;
    overflow:hidden;
}

.progress-fill{
    height:100%;
    width:0;
    background:#ffffff;
    border-radius:20px;
    transition:2s ease;
}

/* Button */
.primary-btn{
    display:inline-block;
    margin-top:30px;
    padding:12px 30px;
    background:#ffffff;
    color:#06306a;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    transition:0.4s;
}

.primary-btn:hover{
    background:#dfe6ff;
    transform:translateY(-3px);
}

/* RIGHT SIDE */
.visual-side{
    flex:1;
}

.image-box img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 60px rgba(0,0,0,0.4);
    margin-bottom:30px;
}

/* FAQ CARD */
.faq-card{
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(15px);
    padding:25px;
    border-radius:20px;
}

.faq-item{
    border-bottom:1px solid rgba(255,255,255,0.2);
    padding:15px 0;
    cursor:pointer;
    transition:0.3s;
}

.faq-item:last-child{
    border:none;
}

.faq-question{
    font-weight:600;
    color:#fff;
}

.faq-answer{
    font-size:14px;
    color:#dfe6ff;
    margin-top:10px;
    display:none;
    line-height:1.6;
}

.faq-item.active .faq-answer{
    display:block;
}

/* Responsive */
@media(max-width:992px){
    .container{
        flex-direction:column;
        text-align:center;
    }
  }

/*--------growth-section-------------*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

.growth-section{
    padding:80px 20px;
    background:#ffffff;
    text-align:center;
}

.container6{
    max-width:1200px;
    margin:auto;
}

/* HEADER */
.section-header h2{
    font-size:36px;
    font-weight:700;
    color:#111827;
    margin-bottom:15px;
}

.section-header h2 span{
    color:#4867e9;
}

.section-header p{
    color:#6b7280;
    max-width:600px;
    margin:0 auto 60px;
    line-height:1.6;
}

/* GRID */
.growth-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

/* CARD */
.growth-card{
    background:#f9fafc;
    border-radius:20px;
    padding:40px 30px;
    transition:0.4s ease;
    border:1px solid #eef1f6;
}

.growth-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

/* ICON */
.icon-box{
    width:70px;
    height:70px;
    margin:0 auto 20px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    background:linear-gradient(135deg,#4867e9,#06306a);
    color:#fff;
    transition:0.4s;
}

.growth-card:hover .icon-box{
    transform:scale(1.1) rotate(8deg);
}

/* TEXT */
.growth-card h4{
    font-size:20px;
    margin-bottom:15px;
    color:#111827;
}

.growth-card p{
    font-size:14px;
    color:#6b7280;
    line-height:1.6;
}

/* RESPONSIVE */
@media(max-width:992px){
    .growth-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .growth-grid{
        grid-template-columns:1fr;
    }

    .section-header h2{
        font-size:26px;
    }
}

/*--------------logo Slide----------------*/
h2{
  text-align:center;
  padding: 20px;
}
/* Slider */

.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: 100%;
}

.slick-slider
{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;
    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/*----horizontal-scroll-wrapper--------*/

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: #f6f9fc;
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
            overflow-x: hidden;
        }

        /* main wrapper – no extra height, just natural flow */
        .horizontal-scroll-wrapper {
            width: 100%;
            position: relative;
        }

        /* section acts as horizontal panel */
        .products_content_block.horizontal {
            padding: 3rem 0;
            background: white;
            border-top: 1px solid rgba(0,0,0,0.05);
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .container-fluid {
            max-width: 100%;
            padding-left: 2rem;
            padding-right: 0;
        }

        .row {
            --bs-gutter-x: 0;
            flex-wrap: nowrap;
        }

        /* left fixed panel column */
        .col-lg-4.col-md-4 {
            width: 33.333%;
            flex: 0 0 auto;
            position: relative;
            background: transparent;
            z-index: 5;
            pointer-events: none;
        }

        /* re-enable pointer events for inner content */
        .title_group {
            pointer-events: auto;
            background: white;
            padding: 1.5rem 1.5rem 1.5rem 1rem;
            border-radius: 0 32px 32px 0;
            box-shadow: 0 10px 25px rgba(0,20,40,0.06);
            max-width: 360px;
            margin-left: 0 !important;
        }

        /* Right scrollable cards area */
        .col-lg-8.col-md-8 {
            flex: 0 0 auto;
            width: 66.666%;
            overflow: visible;
            padding-right: 20px;
        }

        /* the horizontal scroll container */
        .wrap_content {
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            gap: 24px;
            overflow-x: auto;
            overflow-y: hidden;
            scroll-behavior: smooth;
            padding: 12px 0 30px 0;
            scrollbar-width: thin;
            scrollbar-color: #aaa #eaeef2;
            -ms-overflow-style: auto;
            cursor: grab;
            scroll-snap-type: x mandatory;
            overflow: hidden;
        }

        .wrap_content::-webkit-scrollbar {
            height: 8px;
        }
        .wrap_content::-webkit-scrollbar-track {
            background: #eaeef2;
            border-radius: 20px;
        }
        .wrap_content::-webkit-scrollbar-thumb {
            background: #2b6c94;
            border-radius: 20px;
        }

        /* each card item */
        .item {
            flex: 0 0 auto;
            width: 340px;
            scroll-snap-align: start;
            transition: transform 0.2s;
        }

        .item.w_420 {
            width: 380px;
            opacity: 0;
            pointer-events: none;
        }

        /* card anchor */
        .products_content_block--item {
            display: block;
            background: #ffffff;
            border-radius: 32px;
            box-shadow: 0 20px 35px -8px rgba(0,35,65,0.15);
            text-decoration: none;
            color: inherit;
            padding: 24px 20px 20px 20px;
            transition: all 0.25s ease;
            border: 1px solid rgba(0,110,180,0.08);
            height: 100%;
            min-height: 480px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .products_content_block--item:hover {
            transform: translateY(-1px);
            box-shadow: 0 28px 45px -8px rgba(0,65,130,0.25);
            border-color: rgba(0,162,255,0.2);
        }

        .products_content_block--details {
            flex: 1;
        }

        .products_content_block--logo {
            max-height: 44px;
            width: auto;
            object-fit: contain;
        }

        .button_round--logo {
            background: #003b5c;
            width: 48px;
            height: 48px;
            border-radius: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
        }

        .products_content_block--item:hover .button_round--logo {
            background: #0066a0;
        }

        .button_round--icon svg {
            stroke: white;
            width: 24px;
            height: 24px;
        }

        .heading {
            font-weight: 600;
            margin-top: 20px;
            margin-bottom: 12px;
            font-size: 1.5rem;
            line-height: 1.2;
            color: #102a3c;
        }

        .text_primary {
            color: #313f8c;
        }

        .text {
            color: #2f4858;
            font-size: 0.95rem;
            line-height: 1.5;
            opacity: 0.85;
        }

        /* Image section styling */
        .products_content_block--images {
            margin-top: 20px;
            border-radius: 24px;
            overflow: hidden;
            height: 250px;
            width: 100%;
            position: relative;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .products_content_block--images img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .products_content_block--item:hover .products_content_block--images img {
            transform: scale(1.1);
        }

        /* Optional overlay for images */
        .products_content_block--images::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(0,102,179,0.1), rgba(0,40,80,0.2));
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .products_content_block--item:hover .products_content_block--images::after {
            opacity: 1;
        }

        /* left panel pagination dots */
        .list_pagination {
            display: flex;
            gap: 14px;
            list-style: none;
            padding-left: 0;
            margin-top: 30px;
        }

        .list_pagination li {
            width: 50px;
            height: 6px;
            border-radius: 20px;
            background: #d0dde5;
            transition: 0.2s;
            cursor: pointer;
        }

        .list_pagination li.active {
            background: #0b5f8b;
            width: 80px;
        }

        .title_group h4 {
            font-size: 2.1rem;
            font-weight: 700;
            line-height: 1.2;
        }

        /* small adjustments for narrow viewports */
        @media (max-width: 991px) {
            .col-lg-4.col-md-4 { width: 40%; }
            .col-lg-8.col-md-8 { width: 60%; }
            .title_group h4 { font-size: 1.8rem; }
            .item { width: 300px; }
        }
        .cantainer11 {
            width: 100%;
        }
        .title_group {
            background: #ffffffd9;
            backdrop-filter: blur(2px);
        }
        .list_pagination li {
            pointer-events: auto;
        }
        .products_content_block--item {
            text-decoration: none;
        }
        .d-flex {
            display: flex;
            align-items: center;
        }
        .justify-content-between {
            justify-content: space-between;
        }
        .row {
            flex-wrap: nowrap !important;
        }
        /*----------blog section---------------/
        
           