/* ===== BRAND VARIABLES — edit these to match your brand ===== */
:root {
  --color-primary: #ff6b2c;
  --color-primary-dark: #e65a1f;
  --color-secondary: #FF6B4A;   /* accent color */
  --color-bg: #ffffff;
  --color-bg-alt: #f6f5fb;
  --color-text: #14121f;
  --color-text-muted: #6b6878;
  --color-border: #e6e4ef;
  --color-dark: #0f0d1a;

  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 14px;
  --max-width: 1180px;
}

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

.logo img{
    height:50px;   /* adjust based on logo */
    width:auto;
    display:block;
}
body {
  font-family: var(--font-main);
  color: var(--color-text);
  background: #f1f1f1;
  line-height: 1.6;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
h3 { font-size: 2.5rem; }
h4 { font-size: 1.15rem; margin-bottom: 8px; }

.eyebrow {
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.section-sub {
  color: var(--color-text-muted);
  max-width: 560px;
  margin-bottom: 40px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--color-primary);
  color: #fff;
}
.btn-primary:hover { background: var(--color-primary-dark); }
.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}
.btn-secondary:hover { border-color: var(--color-primary); color: var(--color-primary); }

/* ===== Placeholder images ===== */
.placeholder-img {
  background: var(--color-bg-alt);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  min-height: 180px;
}
.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  min-height: unset;
  flex-shrink: 0;
}

/* ===== Navbar ===== */
/* .navbar {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  z-index: 100;
} */
.navbar{
    width:100%;
    padding:25px 0;
    position:fixed;
    top:0;
    left:0;
    z-index:999;
    transition: all 0.4s ease;
    background: transparent;
}
.navbar.scrolled{
    width:65%;
    left:50%;
    transform:translateX(-50%);
    top:20px;
    padding:4px 0;

    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);

    border:1px solid #ddd;
    border-radius:999px;

    box-shadow:0 8px 30px rgba(0,0,0,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 18px;
}
.logo { font-weight: 800; font-size: 1.25rem; }
.nav-links {
  display: flex;
  gap: 32px;
  font-weight: 500;
}

.nav-cta{
    display:flex;
    align-items:center;
    gap:14px;
    background:#111;
    color:white;
    padding:5px 10px 8px 15px;
    border-radius:999px;
    font-weight:600;
    transition:0.3s ease;
}

.nav-cta span{
    width:38px;
    height:38px;
    border-radius:50%;
    background:#ff6b2c;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

.nav-cta:hover{
    transform:translateY(-2px);
}
.nav-links a:hover { color: var(--color-primary); }

/* ===== Hero ===== */
.hero{
    position: relative;
    min-height: 100vh;
    padding-top: 180px;   /* added */
    padding-bottom: 80px;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* changed from center */
    text-align: center;
    overflow: hidden;
    background: #f5f5f5;
}

.hero-bg{
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at left center, rgba(0,0,0,0.05), transparent 40%),
        radial-gradient(circle at right center, rgba(0,0,0,0.04), transparent 40%);
    opacity:0.7;
}

.hero-container{
    position:relative;
    z-index:2;
    max-width:950px;
}

/* Badge */
.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:14px;
    margin-bottom:35px;
}

.badge-avatars{
    display:flex;
}

.badge-avatars img{
    width:42px;
    height:42px;
    border-radius:50%;
    border:2px solid white;
    margin-left:-10px;
}

.stars{
    color:#ff6b2c;
}

.rating-pill{
    background:black;
    color:white;
    padding:6px 12px;
    border-radius:20px;
    font-weight:600;
}

/* Heading */
.hero-title{
    font-size: clamp(44px, 4.5vw, 64px);
    line-height: 1.1;
    font-weight: 800;
    color: #111;
    margin: 0;
}
.hero-title span{
    color:#8f8f8f;
}

/* Subtitle */
.hero-subtitle{
    max-width:850px;
    margin:30px auto;
    font-size:22px;
    line-height:1.7;
    color:#6f6f6f;
}

/* Buttons */
.hero-buttons{
    display:flex;
    justify-content:center;
    gap:24px;
    margin-top:20px;
}

.primary-btn,
.secondary-btn{
    display:inline-flex !important;
    align-items:center;
    gap:16px;
    text-decoration:none;
    padding:5px 10px 5px 22px;
    border-radius:999px;
    font-weight:600;
}

.primary-btn{
    background:black;
    color:white;
    box-shadow:0 10px 25px rgba(0,0,0,0.18);
}

.secondary-btn{
    background:white;
    color:#222;
}

.arrow-circle{
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#ff6b2c;
    color:white;
}

.orange{
    background:#ff6b2c;
}

/* Features */
.hero-features{
    display:flex;
    justify-content:center;
    gap:30px;
    margin-top:34px;
    color:#666;
    font-size:18px;
}

/*Video upload*/

/* .video-wrapper iframe{
    width:100%;
    height:700px;
} */

/* ===== Stats / Intro ===== */

.brand-section{
    padding:80px 0;
    text-align:center;
    overflow:hidden;
}

.brand-title{
    font-size:22px;
    margin-bottom:40px;
    color:#222;
}

.marquee{
    overflow:hidden;
    white-space:nowrap;
}

.marquee-track{
    display:inline-flex;
    gap:80px;
    animation: scrollLeft 35s linear infinite;
    font-size:34px;
    font-weight:700;
    color:#999;
}
.marquee-container{
    width: 82%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.marquee-container::before,
.marquee-container::after{
    content:"";
    position:absolute;
    top:0;
    width:140px;
    height:100%;
    z-index:2;
    pointer-events:none;
}

.marquee-container::before{
    left:0;
    background: linear-gradient(
        to right,
        #f5f5f5 0%,
        rgba(245,245,245,0) 100%
    );
}

.marquee-container::after{
    right:0;
    background: linear-gradient(
        to left,
        #f5f5f5 0%,
        rgba(245,245,245,0) 100%
    );
}

@keyframes scrollLeft{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

.intro-section{
    display:grid;
    grid-template-columns: 280px 1fr;   /* increased from 180 */
    gap: 100px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 40px 100px 40px;
}

.intro-badge{
    background: white;
    padding: 12px 26px;
     margin-left: 80px;
    border-radius: 999px;
    font-size: 20px;
    font-weight: 500;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.intro-right{
    max-width: 850px;
    margin-left: 80px;
}

.scroll-text{
    max-width: 700px;
    font-size: clamp(22px, 2vw, 32px);
    line-height: 1.35;
    font-weight: 600;
    letter-spacing: -0.02em;
}
.word{
    color: #b0b0b0;
    transition: color 0.3s ease;
}
.about-btn{
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin-top: 48px;

    background: #111;
    color: white;
    padding: 10px 12px 10px 28px;
    border-radius: 999px;
    font-size: 28px;
    font-weight: 600;
}

.about-btn .arrow{
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #ff6b2c;

    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

/* Stats section */
.stats-section{
    max-width: var(--max-width);
    margin: 70px auto 120px auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 0.9fr 1fr;
    gap: 24px;
}

.stat-card{
    height: 300px;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.light-card{
    background: #ffffff;
    padding: 42px 32px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

.light-card h2{
    font-size: 55px;
    font-weight: 700;
    line-height: 1;
    color: #111;
}

.light-card p{
    font-size: 16px;
    color: #777;
    margin-top: 8px;
}

.light-card span{
    position: absolute;
    bottom: 28px;
    right: 28px;
    font-size: 14px;
    font-weight: 700;
    color: #777;
}

.image-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-card::after{
    content:"";
    position:absolute;
    inset:0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.1)
    );
}

.overlay-text{
    position: absolute;
    inset: 0;
    z-index: 2;
    padding: 42px 30px;
    color: white;
}

.overlay-text h2{
    font-size: 55px;
    font-weight: 700;
    line-height: 1;
}

.overlay-text p{
    font-size: 16px;
    margin-top: 10px;
}

.overlay-text span{
    position: absolute;
    bottom: 28px;
    right: 28px;
    font-size: 14px;
    font-weight: 700;
}

@media (max-width: 992px){
    .stats-section{
        grid-template-columns: 1fr;
    }

    .stat-card{
        height: 260px;
    }
}


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

body{
    background:#f4f4f4;
    padding:70px 20px;
}

/*=========================
        SERVICE CARD
==========================*/

.service-card{

    max-width:1200px;
    width:100%;

    margin:auto;

    background:#f8f8f8;

    border-radius:32px;

    padding:22px;

    display:flex;

    align-items:center;

    gap:45px;

    box-shadow:0 10px 40px rgba(0,0,0,.08);

}

/*=========================
        IMAGE
==========================*/

.service-media{

    width:50%;

}

.carousel{

    position:relative;

    overflow:hidden;

    height:470px;

    border-radius:24px;

}

.carousel-track{

    display:flex;

    width:300%;

    height:100%;

    transition:.6s;

}

.carousel-slide{

    width:33.333%;

    flex-shrink:0;

    object-fit:cover;

    height:100%;

}

/*=========================
          DOTS
==========================*/

.carousel-dots{

    position:absolute;

    left:50%;

    bottom:20px;

    transform:translateX(-50%);

    display:flex;

    gap:10px;

    background:rgba(0,0,0,.25);

    padding:8px 15px;

    border-radius:25px;

}

.dot{

    width:12px;
    height:12px;

    background:#cfcfcf;

    border-radius:50%;

    cursor:pointer;

}

.dot.active{

    background:#fff;

}

/*=========================
        CONTENT
==========================*/

.service-text{

    width:50%;

}

.service-text h3{

    font-size:52px;

    line-height:1.1;

    color:#111;

    margin-bottom:25px;

}

.service-text p{

    color:#6d6d6d;

    font-size:20px;

    line-height:1.8;

    margin-bottom:40px;

}

.service-list{

    list-style:none;

}

.service-list li{

    display:flex;

    align-items:center;

    gap:18px;

    font-size:21px;

    margin-bottom:24px;

}

.tick{

    width:28px;

    height:28px;

    min-width:28px;

    border:2px solid #ff6b2d;

    color:#ff6b2d;

    border-radius:8px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-weight:bold;

}

/*=========================
        RESPONSIVE
==========================*/

@media(max-width:900px){

.service-card{

    flex-direction:column;

}

.service-media,
.service-text{

    width:100%;

}

.carousel{

    height:300px;

}

.service-text{

    padding:10px;

}

.service-text h3{

    font-size: 35px;

}

.service-text p{

    font-size:17px;

}

.service-list li{

    font-size: 15px;

}

}

.services-header{
    display: flex;
    flex-direction: column;
    align-items: center;   /* horizontal center */
    justify-content: center;
    text-align: center;
    max-width: 850px;
    margin: 0 auto 70px auto;
}

.section-pill{
    display: inline-block;
    padding: 10px 22px;
    background: #ffffff;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.services-header h2{
    font-size:55px;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 22px;
    color: #111;
}

.services-header p{
    max-width: 760px;
    font-size: 20px;
    line-height: 1.7;
    color: #6f6f6f;
}


.service-card.reverse{

    flex-direction:row;

}

.service-card{

    background:#ffffff;

    padding:45px;

    border-radius:30px;

}

.service-text{

    width:48%;

    padding-right:30px;

}

.service-media{

    width:52%;

}
.service-text h3{

    font-size:58px;

font-weight:700;

line-height:1.15;
}
.service-text p{

    font-size:22px;

    line-height:1.8;

    color:#666;

    margin:30px 0 40px;

}
.service-list li{

    display:flex;

    align-items:center;

    gap:16px;

    margin-bottom:24px;

    font-size:22px;

    color:#444;

}

.tick{

    width:30px;

    height:30px;

    border-radius:8px;

    border:2px solid #ff6b2d;

    color:#ff6b2d;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:16px;

    font-weight:bold;

}

.carousel-slide{

    object-fit:cover;

    border-radius:22px;

}
.carousel-slide{

    object-fit:cover;

    border-radius:22px;

}
.dot{

    width:11px;

    height:11px;

    background:#d8d8d8;

}

.dot.active{

    background:#ffffff;

}



/* ===== Case Studies ===== */

.case-studies{
    width:100%;
    padding:120px 0 20px;
    background:#f1f1f1;
}

.case-studies .container{
    max-width:1180px;
    margin:0 auto;
    padding:0 20px;
}

/* =====================================
   Heading
===================================== */

.case-heading{
    max-width:850px;
    margin:0 auto 80px;
    text-align:center;
}

.case-heading .section-pill{
    display:inline-block;
    padding:12px 22px;
    background:#fff;
    border-radius:999px;
    font-size:16px;
    font-weight:500;
    margin-bottom:28px;
}

.case-heading h2{
    font-size:54px;
    line-height:1.1;
    font-weight:600;
    color:#111;
    margin-bottom:22px;
}

.case-heading p{
    font-size:20px;
    line-height:1.7;
    color:#666;
    max-width:760px;
    margin:auto;
}

/* =====================================
   Cards
===================================== */

.case-card{

    display:grid;

    grid-template-columns:46% 54%;

    gap:45px;

    background:#fff;

    border-radius:30px;

    padding:28px;

    margin-bottom:40px;

    position:sticky;

    top:100px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);

}

/* stacking order */

.case-card:nth-of-type(2){
    z-index:1;
}

.case-card:nth-of-type(3){
    z-index:2;
}

.case-card:nth-of-type(4){
    z-index:3;
}

/* =====================================
   Left
===================================== */

.case-content{

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.case-date{

    display:inline-block;

    width:max-content;

    background:#f5f5f5;

    padding:10px 18px;

    border-radius:999px;

    font-size:14px;

    font-weight:600;

    color:#555;

    margin-bottom:25px;

}

.case-title{

    font-size:40px;

    line-height:1.15;

    font-weight:700;

    color:#111;

    margin-bottom:20px;

}

.case-description{

    font-size:18px;

    color:#666;

    line-height:1.8;

    margin-bottom:35px;

}

/* =====================================
   Stats
===================================== */

.case-stats{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

.stat-box{

    background:#f8f8f8;

    border-radius:18px;

    padding:22px;

}

.stat-label{

    display:block;

    color:#888;

    font-size:14px;

    margin-bottom:12px;

}

.stat-box h4{

    font-size:34px;

    color:#111;

    font-weight:800;

}

/* =====================================
   Image
===================================== */

.case-image{

    position:relative;

    overflow:hidden;

    border-radius:24px;

    height:480px;

}

.case-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s ease;

}

.case-card:hover img{

    transform:scale(1.06);

}

.case-overlay{

    position:absolute;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    font-size:58px;

    font-weight:800;

    text-shadow:0 8px 20px rgba(0,0,0,.4);

}

/* =====================================
   Reveal Animation
===================================== */

.case-card{

    opacity:0;

    transform:translateY(60px);

    transition:

    opacity .8s ease,

    transform .8s ease;

}

.case-card.show{

    opacity:1;

    transform:translateY(0);

}

/* =====================================
   Responsive
===================================== */

@media(max-width:991px){

.case-card{

grid-template-columns:1fr;

top:80px;

}

.case-image{

order:-1;

height:350px;

}

.case-heading h2{

font-size:40px;

}

.case-title{

font-size:32px;

}

.case-description{

font-size:17px;

}

}

@media(max-width:768px){

.case-stats{

grid-template-columns:1fr;

}

.case-card{

padding:20px;

}

.case-heading h2{

font-size:34px;

}

.case-heading p{

font-size:17px;

}

}

/* ===== Process ===== */

.process-section{

    padding:120px 0;

}

.process-wrapper{

    display:grid;

    grid-template-columns:45% 55%;

    gap:80px;

    align-items:start;

}

/* LEFT */

.process-pill{

    display:inline-block;

    padding:12px 22px;

    background:#fff;

    border-radius:999px;

    font-weight:500;

    margin-bottom:30px;

}

.process-left h2{

    font-size:40px;

    line-height:1.1;

    margin-bottom:25px;

    font-weight:600;

}

.process-left p{

    font-size:18px;

    color:#666;

    line-height:1.7;

    margin-bottom:45px;

}

.process-left img{

    width:100%;

    border-radius:24px;

    display:block;

}

/* RIGHT */

.process-right{

    position:relative;

    padding-left:70px;

}

/* vertical line */

.timeline{

    position:absolute;

    left:24px;

    top:0;

    bottom:0;

    width:2px;

    background:#ddd;

}

/* each item */

.process-step{

    position:relative;

    margin-bottom:70px;

}

/* orange dot */

.timeline-dot{

    position:absolute;

    left:-58px;

    top:38px;

    width:22px;

    height:22px;

    background:#ff6b2c;

    border-radius:50%;

    border:6px solid #fff;

    box-shadow:0 0 0 2px #ff6b2c;

    z-index:2;

}

/* card */

.step-card{

    background:#fff;

    border-radius:24px;

    padding:15px;

    display:flex;

    gap:20px;

    align-items:flex-start;

    box-shadow:

    0 15px 40px rgba(0,0,0,.06);

}

.step-number{

    font-size:20px;

    font-weight:600;

    color:#222;

    min-width:40px;

}

.step-card h3{

    font-size:25px;

    margin-bottom:10px;

}

.step-card p{

    color:#666;

    font-size:17px;

    line-height:1.7;

}


/* ===== Why Us ===== */
/* ===================================
   WHY CHOOSE US
=================================== */

.why-section{

    width:100%;
    padding:120px 0 80px;
    background:#f1f1f1;

}

.why-section .container{

    max-width:1180px;
    margin:auto;
    padding:0 20px;

}

/* Heading */

.why-header{

    max-width:850px;
    margin:0 auto;
    text-align:center;

}

/* Pill */

.why-pill{

    display:inline-block;

    padding:12px 22px;

    background:#fff;

    border-radius:999px;

    font-size: 16px;

    font-weight: 500;

    color:#111;

    box-shadow:
    0 8px 25px rgba(0,0,0,.05);

    margin-bottom:30px;

}

/* Heading */

.why-header h2{

    font-size:55px;

    line-height:1.05;

    font-weight:600;

    color:#111;

    margin-bottom:28px;

    letter-spacing:-2px;

}

/* Paragraph */

.why-header p{

    max-width:760px;

    margin:auto;

    font-size:20px;

    line-height:1.8;

    color:#6c6c6c;

}

/* ===============================
   Responsive
================================ */

@media(max-width:991px){

.why-header h2{

font-size:54px;

}

.why-header p{

font-size:19px;

}

}

@media(max-width:768px){

.why-section{

padding:80px 0;

}

.why-header h2{

font-size:40px;

}

.why-header p{

font-size:17px;

}

}

/* Lordicon section */
/*=============================
WHY CARDS
==============================*/

.why-cards{

padding:20px 0 80px;

}

.cards-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:28px;

}

.why-card{

background:#fff;

border-radius:28px;

padding:25px;

transition:.35s;

cursor:pointer;

box-shadow:
0 12px 30px rgba(0,0,0,.04);

}

.why-card:hover{

transform:translateY(-8px);

box-shadow:
0 25px 45px rgba(0,0,0,.08);

}

.icon{

margin-bottom:10px;

}

.why-card h3{

font-size:22px;

font-weight:600;

line-height:1.2;

margin-bottom:10px;

color:#111;

}

.why-card p{

font-size:17px;

line-height:1.6;

color:#666;

}

/* Tablet */

@media(max-width:991px){

.cards-grid{

grid-template-columns:repeat(2,1fr);

}

}

/* Mobile */

@media(max-width:768px){

.cards-grid{

grid-template-columns:1fr;

}

.why-card{

padding:28px;

}

}

/* ===== Comparison ===== */
/*==========================
Comparison
==========================*/

.comparison{

    padding:30px 0;

    background:#f1f1f1;

}

.comparison-heading{

    text-align:center;

    margin-bottom:70px;

}

.comparison-pill{

    display:inline-block;

    background:#fff;

    padding:10px 24px;

    border-radius:999px;

    margin-bottom:25px;

    font-weight:600;

    box-shadow:0 8px 20px rgba(0,0,0,.05);

}

.comparison-heading h2{

    font-size:50px;

    line-height:1.08;

    font-weight:600;

    color:#111;

}

/*======================*/

.comparison-grid{

    max-width:1050px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:40px;

}

/*======================*/

.comparison-col{

    border-radius:30px;

    padding:30px;

    transition:.35s;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.comparison-col:hover{

    transform:translateY(-8px);

}

/*======================*/

.other{

    background:#fff;

}

.us{

    background:#181818;

    color:#fff;

}

/*======================*/

.comparison-col h3{

    text-align:center;

    font-size:30px;

    margin-bottom:20px;

}

/*======================*/

.comparison-col ul{

    list-style:none;

    padding:0;

    margin:0;

}

.comparison-col li{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:10px;

    font-size:17px;

    line-height:1.4;

    font-weight:400;   

}

/*======================*/

.minus{

    width:28px;

    height:28px;

    min-width:28px;

    background:#ededed;

    border-radius:10px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:500;

    color:#777;

}

.check{

    width:28px;

    height:28px;

    min-width:28px;

    background:#ff6b2c;

    border-radius:10px;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-weight:500;

}

/*======================*/
/* Animation */
/*======================*/

.compare-reveal{

    opacity:0;

    transform:translateY(80px);

    transition:.8s;

}

.compare-reveal.show{

    opacity:1;

    transform:translateY(0);

}

/*======================*/

@media(max-width:991px){

.comparison-grid{

grid-template-columns:1fr;

}

.comparison-heading h2{

font-size:42px;

}

}

@media(max-width:768px){

.comparison-col{

padding:30px;

}

.comparison-col h3{

font-size:30px;

}

.comparison-col li{

font-size:18px;

}

}

/*==========================
Testimonials
===========================*/

.testimonials{

    padding:50px 0;

}

.testimonial-heading{

    text-align:center;

    margin-bottom:50px;

}

.testimonial-heading h2{

    font-size:50px;

    line-height:1.05;

    margin-top:25px;

}

/*==============================
GRID
==============================*/

.testimonial-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:25px;

    align-items:stretch;

}

/*==============================
COMMON CARD
==============================*/

.testimonial-card{

    background:#fff;

    border-radius:30px;

    overflow:hidden;

    box-shadow:0 12px 35px rgba(0,0,0,.06);

    min-height:400px;

    transition:.35s;

}

.testimonial-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 55px rgba(0,0,0,.12);

}

/*==============================
BIG CARD
==============================*/

.large-card{

    display:flex;

    padding:0;

}

/* Left */

.large-content{

    width:56%;

    padding:38px;

    display:flex;

    flex-direction:column;

}

/* Right */

.large-image{

    width:44%;

}

.large-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

}

/*==============================
TEXT
==============================*/

.quote-icon{

    font-size:72px;

    color:#ff6b2c;

    line-height:1;

}

.testimonial-text{

    font-size:19px;

    line-height:1.8;

    color:#333;

    margin:35px 0;

    flex:1;

}

/*==============================
AUTHOR
==============================*/

.testimonial-author{

    display:flex;

    align-items:center;

    gap:10px;

    border-top:1px solid #ececec;

    padding-top:20px;

}

.avatar{

    width:60px;

    height:60px;

    border-radius:50%;

    object-fit:cover;

}

.testimonial-author h4{

    font-size:18px;

    margin-bottom:5px;

}

.testimonial-author span{

    color:#777;

    font-size:14px;

}

/*==============================
ANIMATION
==============================*/

.reveal{

    opacity:0;

    transform:translateY(80px);

    transition:all .8s ease;

}

.reveal.active{

    opacity:1;

    transform:translateY(0);

}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:1200px){

.testimonial-grid{

grid-template-columns:1fr;

}

.large-card{

flex-direction:column;

}

.large-content{

width:100%;

}

.large-image{

width:100%;

height:420px;

}

}

@media(max-width:768px){

.testimonial-heading h2{

font-size:42px;

}

.testimonial-card{

min-height:auto;

}

.testimonial-text{

font-size:18px;

}

}

/* ===== FAQ ===== */
.faq { padding: 80px 0; background: var(--color-bg-alt); }
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.support-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 16px;
  margin: 24px 0;
}
.support-card p { font-size: 0.85rem; color: var(--color-text-muted); }
.faq-right details {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 12px;
}
.faq-right summary {
  font-weight: 600;
  cursor: pointer;
}
.faq-right p {
  margin-top: 12px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* ===== CTA ===== */
.cta {
  padding: 100px 0;
  text-align: center;
  background: var(--color-dark);
  color: #fff;
}
.cta p {
  max-width: 500px;
  margin: 16px auto 32px;
  color: rgba(255,255,255,0.7);
}

/* ===== Footer ===== */
.footer { padding: 60px 0 24px; background: var(--color-dark); color: rgba(255,255,255,0.7); }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer h5 { color: #fff; margin-bottom: 14px; }
.footer a { display: block; margin-bottom: 8px; }
.footer a:hover { color: #fff; }
.footer .logo { color: #fff; margin-bottom: 12px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  font-size: 0.85rem;
  text-align: center;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .stats-grid, .services-grid, .case-grid, .why-grid, .testimonial-grid,
  .comparison-grid, .process-grid, .faq-inner, .footer-inner {
    grid-template-columns: 1fr;
  }
  .hero-points { flex-direction: column; gap: 8px; }
}
