/* === STYLES SPLIT FROM STYLE.CSS === */

.testimonial-card{
    width:520px;
    min-height:520px;
    background:#ffffff;
    color:#123F6B;
    border:2px solid #66E7EF;
    border-radius:18px;
    padding:45px;
    transform:rotate(3deg);
    box-shadow:0 15px 35px rgba(102,231,239,.25);
    transition:all .4s ease;
    position:relative;
}

.testimonial-card:hover{
    transform:rotate(0deg) translateY(-8px);
    box-shadow:
    0 25px 45px rgba(102,231,239,.35);
}

.testimonial-card h3{
    font-size:30px;
    color:#123F6B;
    margin-bottom:25px;
    font-weight:700;
}

.client-name{
    color:#123F6B;
    font-weight:700;
    font-size:18px;
}

.client-role{
    color:#4F6785;
    font-size:14px;
}

.testimonial-text{
    font-size:22px;
    line-height:1.8;
    color:#123F6B;
    margin-top:35px;
}

.testimonial-card::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:18px;
    box-shadow:
    0 0 40px rgba(102,231,239,.18);
    z-index:-1;
}

.testimonial-text{
    line-height:1.8;
   font-size:18px;
}
/* TESTIMONIAL SECTION */

.testimonials-section{
    margin-top:80px;
    background:#14325C;
    position:relative;
   padding:120px 100px 80px;
}
/* CURVE */

.curve-top{
    position:absolute;
    top:-60px;
    left:0;
    width:100%;
    height:120px;
    background:#f7f7f7;
    border-bottom-left-radius:50% 100%;
   border-bottom-right-radius:50% 100%;
}
/* TITLE */

.testimonial-container h2{
    text-align:center;
    color:white;
    font-size:34px;
    font-weight:700;
   margin-bottom:25px;
}
/* ORANGE BAR */

.testimonial-bar{
    max-width:900px;
    margin:0 auto 50px;
    background:#F79421;
    color:white;
    text-align:center;
    padding:12px;
    border-radius:6px;
   font-weight:600;
}
/* GRID */

/* SCROLLING MARQUEE CONTAINER */
.feedback-marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 30px 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.feedback-marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll-feedback 48s linear infinite;
    will-change: transform;
}

.feedback-marquee-container:hover .feedback-marquee-track,
.feedback-marquee-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-feedback {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* GLASSMORPHISM CARD DESIGN */
.feedback-card {
    width: 450px;
    background: rgba(255, 255, 255, 0.85); /* Light glassmorphic card bg */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 20px;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feedback-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    border-color: rgba(201, 134, 30, 0.4); /* Accent brand glow */
}

.feedback-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.feedback-logo {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.feedback-client-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.feedback-client-info h4 {
    margin: 0;
    font-size: 18px !important;
    font-weight: 700;
    color: #123F6B;
}

.feedback-client-info span {
    font-size: 13px;
    color: #667085;
    margin-top: 2px;
}

.feedback-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 10px;
    color: #F79421; /* Brand gold stars */
    font-size: 10px;
    text-align: left;
}

.feedback-text {
    font-size: 15px;
    line-height: 1.6;
    color: #36506B;
    margin: 0;
    font-weight: 500;
    font-style: italic;
    text-align: left;
}

.clients-section{
    background:linear-gradient(
        180deg,
        #f8fcff 0%,
        #eef9ff 100%
    );
}
/* CLIENT REVIEW CARD */

/* HERO TESTIMONIAL SLIDER */
.hero-testimonial-slider {
    grid-column: span 2;
    width: 100%;
    max-width: 100%;
    margin-top: 50px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-testimonial-track-wrapper {
    width: 100%;
    overflow: hidden;
    background: white;
    border: 2px solid #A8F0F4;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .05);
    transition: all 0.3s ease;
}

.hero-testimonial-track-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, .08);
}

.hero-testimonial-track {
    display: flex;
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-testimonial-slide {
    width: 100%;
    flex-shrink: 0;
    padding: 20px 30px;
    box-sizing: border-box;
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-testimonial-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-review-top {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
}

.hero-client-logo-wrap {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7fafc;
}

.hero-client-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-review-content {
    flex: 1;
    text-align: left;
}

.hero-review-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    flex-wrap: wrap;
    gap: 6px;
}

.hero-review-industry {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #F79421; /* Brand gold */
}

.hero-review-stars {
    display: flex;
    gap: 2px;
    color: #ffb400;
    font-size: 10px;
}

.hero-review-quote {
    color: #5b6574;
    line-height: 1.5;
    font-size: 15px;
    margin: 0 0 8px 0;
    font-weight: 500;
    font-style: italic;
}

.hero-review-content h4 {
    color: #123F6B;
    font-size: 18px !important;
    margin: 0;
    font-weight: 700;
}

.hero-review-content h4 span {
    display: block;
    margin-top: 2px;
    font-size: 13px;
    color: #667085;
    font-weight: 400;
}

/* Premium Designation Badge styling */
.hero-review-designation-wrap {
    margin-top: 12px;
    display: flex;
    align-items: center;
}

.hero-review-designation-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(18, 63, 107, 0.05);
    color: #123F6B;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12.5px;
    font-weight: 600;
    border: 1px solid rgba(18, 63, 107, 0.08);
    transition: all 0.3s ease;
}

.hero-review-designation-badge i {
    color: #F79421;
    font-size: 12px;
}

.feedback-designation {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(18, 63, 107, 0.05);
    color: #123F6B;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 600;
    margin-top: 4px;
    border: 1px solid rgba(18, 63, 107, 0.08);
}

.feedback-designation i {
    color: #F79421;
    font-size: 11px;
}

.hero-review-badge {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ff4d4d;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
}

/* Dots for hero testimonial */
.hero-testimonial-dots {
    display: flex;
    gap: 6px;
    margin-top: 12px;
}

.hero-testimonial-dots .hero-testimonial-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-testimonial-dots .hero-testimonial-dot.active {
    background: #F79421;
    transform: scale(1.3);
}
/*==================================
CLIENTS HERO
==================================*/

.clients-hero{
position:relative;
padding:50px 20px 60px 20px;
background:#112b4d;
display:flex;
align-items:center;
justify-content:center;
overflow:hidden;
}

.clients-hero-content{
position:relative;
z-index:10;
text-align:center;
width: 100%;
max-width: var(--container-max-width);
margin-left: auto;
margin-right: auto;
padding-left: var(--container-padding);
padding-right: var(--container-padding);
box-sizing: border-box;
}
/* Heading */

.clients-hero h1{
font-size:42px;
line-height:1.4; /* increased from 1.2 to prevent overlap with descenders on the line below */
font-weight:800;
color:#fff;
margin-bottom:25px;
}


/* Paragraph */

.clients-hero p{
font-size:17px;
line-height:1.65;
color:#d2d9e6;
max-width:760px;
margin:auto;
}
/* Animation */

.clients-hero-content{
animation:fadeUp 1s ease;
}

/* All layout styles are imported from style.css */

/*===============================
PLATFORMS SECTION
===============================*/

.platforms-section{
padding:50px 0 30px 0;
background:#f7f9fc;
text-align:center;
}

.platform-title h2{
font-size:34px;
font-weight:700;
color:#173d73;
line-height:1.25;
margin-bottom:40px;
}

.platform-title span{
color:#F79421;
}

.platform-icons{
display:flex;
justify-content:center;
align-items:center;
gap:110px;
margin-bottom:70px;
flex-wrap:wrap;
}

.platform-card{
transition:.45s;
}

.platform-card img{
width:170px;
height:170px;
object-fit:contain;
transition:.45s;
filter:drop-shadow(0 12px 20px rgba(0,0,0,.12));
}

.platform-card:hover img{
transform:translateY(-15px) scale(1.08);
}

.platform-card h3{
margin-top:25px;
font-size:24px;
font-weight:700;
color:#173d73;
}

.platform-content{
max-width:1000px;
margin:auto;
}

.platform-content p{
font-size:20px;
font-weight:500;
line-height:1.55;
color:#475467;
margin-bottom:35px;
}

.platform-btn{
display:inline-flex;
align-items:center;
gap:10px;
padding:12px 30px;
background:#ff7300;
color:white;
font-size:16px;
font-weight:600;
text-decoration:none;
border-radius:30px;
transition:.45s;
box-shadow:0 15px 35px rgba(255,115,0,.30);
}

.platform-btn:hover{
transform:translateY(-4px);
background:#ff8618;
box-shadow:0 25px 45px rgba(255,115,0,.45);
}

.platform-btn span{
font-size:20px;
transition:.35s;
}

.platform-btn:hover span{
transform:translateX(8px);
}

.portfolio-section{
padding:20px 0 100px 0;
background:#f8fbff;
}

.section-heading{
text-align:center;
margin-bottom:70px;
width: 100%;
max-width: 100%;
margin-left: auto;
margin-right: auto;
padding-left: 0;
padding-right: 0;
box-sizing: border-box;
}

.portfolio-section .section-heading h2{
font-size:38px !important;
color:#f79421 !important;
margin-bottom:12px;
}

.section-heading p{
font-size:17px;
line-height:1.65;
color:#475467;
}

.portfolio-card{
    position:relative;
    display:flex;
    flex-direction:column;
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    padding:24px;
    border:1px solid #e8edf7;
    transition:all .45s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:0 12px 35px rgba(18,38,63,.04);
    height:100%;
}

.portfolio-card::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
    linear-gradient(rgba(22,194,207,.07) 1px,transparent 1px),
    linear-gradient(90deg,rgba(22,194,207,.07) 1px,transparent 1px);
    background-size:34px 34px;
    opacity:0;
    transition:.45s;
    z-index:0;
}

.portfolio-card::after{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    right:-120px;
    top:-120px;
    border-radius:50%;
    background:radial-gradient(circle,
    rgba(38,214,226,.18),
    transparent 70%);
    opacity:0;
    transition:.5s;
    z-index:0;
}

.portfolio-card:hover{
    transform:translateY(-10px) scale(1.015);
    border-color:#19c4d3;
    box-shadow:
    0 24px 50px rgba(18,38,63,.12),
    0 0 0 1px rgba(25,196,211,.15);
}

.portfolio-card:hover::before{
    opacity:1;
}

.portfolio-card:hover::after{
    opacity:1;
}

.portfolio-image,
.portfolio-content{
    position:relative;
    z-index:2;
}

.portfolio-image{
    width:100%;
    height:280px;
    overflow:hidden;
    border-radius:16px;
    margin-bottom:20px;
}

.portfolio-card:hover .portfolio-image img{
    transform:scale(1.06);
}

.portfolio-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card:hover img{
transform:scale(1.06);
}

.client-tag{
display:inline-block;
padding:6px 14px;
background:rgba(247, 148, 33, 0.1);
color:#F79421;
border-radius:30px;
font-weight:700;
font-size:12px;
letter-spacing:1px;
margin-bottom:12px;
}

.portfolio-content{
    position:relative;
    z-index:2;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    flex-grow:1;
}

.portfolio-content h3{
font-size:24px;
font-weight:700;
color:#17375d;
margin-bottom:12px;
}

.portfolio-content p{
font-size:15px;
line-height:1.6;
color:#556175;
margin-bottom:20px;
}

.project-features{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:10px;
margin-bottom:24px;
}

.project-features span{
padding:6px 12px;
background:#f0f4f9;
border-radius:30px;
color:#475569;
font-weight:600;
font-size:12.5px;
transition:all .3s ease;
}

.project-features span:hover{
background:#18d5e4;
color:#fff;
}

.project-btn{
display:inline-block;
padding:10px 24px;
background:#17375d;
color:#fff;
text-decoration:none;
border-radius:50px;
font-weight:600;
font-size:14.5px;
transition:all .3s ease;
border:2px solid #F79421;
margin-top:auto;
width:fit-content;
}

.project-btn:hover{
background:#F79421;
transform:translateY(-3px);
box-shadow:0 6px 15px rgba(247, 148, 33, 0.25);
}

.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
    margin-top:50px;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
}

.project-features span{
    transition:.35s;
}

.portfolio-card:hover .project-features span{
    background:#19c4d3;
    color:#fff;
    transform:translateY(-2px);
}

/* ================= CLIENTS MARQUEE STYLING ================= */
.clients-marquee-section {
    background: #f8fbff;
    padding: 20px 0 10px 0;
    border-top: 1px solid rgba(15,80,120,.05);
    border-bottom: 1px solid rgba(15,80,120,.05);
    width: 100%;
}

.clients-marquee {
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    padding: 20px 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    width: 100%;
}

.clients-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: scroll-clients-left 25s linear infinite;
    will-change: transform;
}

@keyframes scroll-clients-left {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

.client-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 12px 28px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(18, 38, 63, 0.03);
    transition: all 0.35s ease;
    height: 70px;
    width: 180px;
    box-sizing: border-box;
}

.client-logo-item:hover {
    transform: translateY(-3px) scale(1.04);
    border-color: #f79421;
    box-shadow: 0 10px 25px rgba(247, 148, 33, 0.12);
}

.client-logo-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}
