:root {
  /* === BACKGROUNDS & SURFACES === */
  --bg-primary:     maroon;
  --bg-page:        #ffffff;
  --bg-section:     #fff9f9;   /* overall page background */
  --bg-surface:    #ffffff;   /* cards, modals, navbar */
  --pastel-blush:  #fff9f9;   /* section backgrounds, card fills */
  --pastel-rose:   #faedef;   /* hover fills, alternate sections */
  --pastel-soft:   #f9f0f1;   /* subtle row alternates, input bg */
  --border:        #e8c5c5;   /* all borders, dividers, outlines */

  /* === BUTTONS & ACCENTS (maroon only) === */
  --btn-primary:   maroon;   /* primary button bg */
  --btn-hover:     #8B1A27;   /* button hover */
  --btn-active:    #A0303E;   /* button active / pressed */
  --btn-soft:      #C56070;   /* ghost button border, icon accents */
  --btn-text:      #ffffff;   /* text on maroon buttons */

  /* === TEXT (neutral) === */
  --text-heading:  #111111;   /* titles, h1–h2 */
  --text-body:     #333333;   /* paragraphs, descriptions */
  --text-muted:    #666666;   /* captions, placeholders, labels */
  --text-subtle:   #999999;   /* disabled, hints */

  /* === TYPOGRAPHY === */
  --font-heading:  'Georgia', serif;
  --font-body:     system-ui, sans-serif;

  --size-title:    2rem;        /* h1 */
  --size-heading:  1.5rem;      /* h2 */
  --size-subhead:  1.125rem;    /* h3 / card titles */
  --size-body:     1rem;        /* paragraphs */
  --size-small:    0.875rem;    /* labels, captions */
  --size-tiny:     0.75rem;     /* tags, badges */

  --weight-bold:   700;
  --weight-semi:   500;
  --weight-normal: 400;
  --leading-body:  1.65;

  /* === SPACING === */
  --space-xs:  0.5rem;
  --space-sm:  0.75rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;

  /* === RADIUS === */
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-pill: 999px;
}

a{
    text-decoration: none;
}
/* ============================================
   1. BACKDROP — blur + opacity
   ============================================ */
.offcanvas-backdrop.show {
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    background: rgba(0, 0, 0, 0.4) !important;
    opacity: 1 !important;
}

/* ============================================
   2. OFFCANVAS PANEL
   ============================================ */
.offcanvas {
    background-color: var(--bg-page) !important;
}

/* ============================================
   3. NAVBAR & OFFCANVAS — no borders
   ============================================ */
.navbar,
.offcanvas {
    border: none !important;
   box-shadow: 0 2px 20px rgba(107, 15, 26, 0.08) !important;
}

/* ============================================
   4. DESKTOP DROPDOWN — border + shadow
   ============================================ */
.dropdown-menu {
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08) !important;
    border-radius: 12px;
    padding: 0.5rem;
}

.dropdown-item {
    padding: 10px 18px;
    border-radius: 8px;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: maroon;
    color: white;
}

/* ============================================
   5. MOBILE DROPDOWN — in-flow, no border/shadow
   ============================================ */
#mobileMenu .dropdown-menu {
    position: static !important;
    transform: none !important;
    display: none;
    box-shadow: none !important;
    border: none !important;
    padding: 0.5rem 0 0.5rem 1rem;
    margin: 0;
    background: transparent;
}

#mobileMenu .dropdown-menu.show {
    display: block;
}

#mobileMenu .dropdown-item {
    padding: 8px 16px;
    color: #444;
    font-size: 0.95rem;
}

/* Mobile hover + focus + active — force maroon */
#mobileMenu .dropdown-menu .dropdown-item:hover,
#mobileMenu .dropdown-menu .dropdown-item:focus,
#mobileMenu .dropdown-menu .dropdown-item:active {
    background: maroon !important;
    background-color: maroon !important;
    color: white !important;
}

/* ============================================
   6. NAV LINKS
   ============================================ */
.nav-link {
    color: (--btn-text);
    font-weight: 500;
}

.nav-link:hover {
    color: maroon;
}

/* ============================================
   7. SOCIAL ICONS
   ============================================ */
.social-icon {
    color: maroon;
    font-size: 1.3rem;
    text-decoration: none;
}

.social-icon:hover {
    color: #000;
}

/* ============================================
   8. MOBILE MENU WIDTH
   ============================================ */
#mobileMenu {
    --bs-offcanvas-width: 300px;
}

.navbar .container-fluid{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.navbar-brand{
    margin-right:0 !important;
    flex-shrink:0;
}

.navbar-toggler{
    margin-left:auto;
    padding:0;
}
.btn-178 {
    position: relative;
    text-align: center;
    font-size: 16px;
    color: maroon;
    padding: 12px 15px;
    border-radius: 10px 3px 10px 3px;
    font-family: Arial, Helvetica, sans-serif;
    cursor: pointer;
    text-decoration: none;
    user-select: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    border: solid 2px maroon;
    background: none;
    /*** full width block ***/
    /* width: 100%; */
}

.btn-178:hover {
    animation: .8s animate_178 ease infinite;
    background-color: maroon;
    color: white;

}

@keyframes animate_178 {
    0% {
        border-radius: 10px 30px 10px 30px;
    }

    50% {
        border-radius: 30px 10px 30px 10px;
    }

    100% {
        border-radius: 10px 30px 10px 30px;
    }
}

/*** disabled style ***/
.btn-178:disabled {
    pointer-events: none;
    opacity: .65;
    color: #7e7e7e;
    background: #dcdcdc;
    box-shadow: none;
    text-shadow: none;
    border: solid 2px #7e7e7e;
}
/* ============================================
   ACTIVE STATE — Desktop Navbar
   ============================================ */
.nav-link.active {
    color: maroon !important;
    font-weight: 600;
    position: relative;
}

/* ✅ NEW — ::before for underline, ::after stays free for arrow */
.nav-link.active::before {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px !important;
    background-color: maroon;
    border-radius: 2px;
}

/* Dropdown parent when active */
.nav-link.dropdown-toggle.active {
    color: maroon !important;
}









/* ============================================
   HERO SECTION — Compact White Background
   ============================================ */
.hero-section {
    position: relative;
    min-height: auto;          /* Removed forced full viewport */
    padding: 80px 0 60px;      /* Controlled padding instead */
    background: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* --- Floating Particles --- */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: maroon;
    border-radius: 50%;
    opacity: 0.15;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 0.15; }
    90% { opacity: 0.15; }
    100% {
        transform: translateY(-10vh) rotate(720deg);
        opacity: 0;
    }
}

/* ============================================
   LEFT CONTENT — Compact
   ============================================ */
.hero-content {
    position: relative;
    z-index: 10;
    padding: 0;                 /* Removed 100px padding */
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
    border: 1.5px solid maroon;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;        /* Reduced from 24px */
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: maroon;
    border-radius: 50%;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(128,0,0,0.4); }
    50% { box-shadow: 0 0 0 8px rgba(128,0,0,0); }
}

/* --- Title: Static + Typed --- */
.hero-heading {
    font-size: clamp(2rem, 4vw, 3.2rem);  /* Slightly smaller */
    font-weight: 800;
    line-height: 30px;           /* Tighter line height */
    color: #111;
    margin-bottom: 16px;        /* Reduced from 20px */
    min-height: auto;           /* Removed fixed 140px */
}

.title-static {
    display: block;
    color: #111;
}

.title-typed {
    display: inline;
    background: linear-gradient(135deg, #cc0000 0%, maroon 50%, #660000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.type-cursor {
    display: inline;
    color: maroon;
    font-weight: 300;
    animation: cursorBlink 0.8s step-end infinite;
    margin-left: 2px;
}

@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* --- Description (Visible Immediately) --- */
.hero-desc {
    font-size: 1rem;            /* Slightly smaller */
    color: #555;
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 24px;        /* Reduced from 32px */
}

.hero-desc strong {
    color: maroon;
    font-weight: 600;
}

/* --- Buttons (Visible Immediately) --- */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;        /* Reduced from 48px */
}


@keyframes animate_178 {
    0% { border-radius: 10px 30px 10px 30px; }
    50% { border-radius: 30px 10px 30px 10px; }
    100% { border-radius: 10px 30px 10px 30px; }
}


/* Outline Button */
.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: transparent;
    color: maroon;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px 3px 10px 3px;
    border: 2px solid maroon;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    transform: translateY(-2px);
}

/* --- Stats (Visible Immediately) --- */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;                  /* Reduced from 24px */
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 1.5rem;          /* Reduced from 1.8rem */
    font-weight: 800;
    color: #111;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: #888;
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 32px;               /* Reduced from 40px */
    background: #ddd;
}

/* ============================================
   RIGHT: Robot Image with Cursor Follow
   ============================================ */
.hero-image-wrap {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 380px;           /* Reduced from 450px */
    margin: 0 auto;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
}

.hero-robot-img {
    width: 100%;
    max-width: 340px;           /* Reduced from 400px */
    height: auto;
    position: relative;
    z-index: 5;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.1));
    transition: transform 0.15s ease-out;
    animation: robotFloat 6s ease-in-out infinite;
}

/* Glow behind robot */
.robot-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    background: radial-gradient(ellipse, rgba(128,0,0,0.08) 0%, rgba(100,149,237,0.04) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
    animation: glowPulse 4s ease-in-out infinite;
}

/* Orbit rings */
.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(128,0,0,0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.ring-1 {
    width: 110%;
    height: 110%;
    animation: orbitSpin 25s linear infinite;
}

.ring-2 {
    width: 130%;
    height: 130%;
    border-color: rgba(0,0,0,0.05);
    animation: orbitSpin 35s linear infinite reverse;
}

/* Floating tech icons */
.float-icon {
    position: absolute;
    width: 36px;
    height: 36px;
    background: #ffffff;
    border: 1.5px solid rgba(128,0,0,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: maroon;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    z-index: 10;
    animation: iconFloat 4s ease-in-out infinite;
}

.float-icon i {
    font-size: 0.9rem;
}

.icon-1 {
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.icon-2 {
    top: 5%;
    right: 5%;
    animation-delay: 1s;
}

.icon-3 {
    bottom: 25%;
    left: 0%;
    animation-delay: 2s;
}

.icon-4 {
    bottom: 15%;
    right: -2%;
    animation-delay: 0.5s;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes robotFloat {
    0%, 100% { transform: translateY(0); }
    25% { transform: translateY(-10px); }
    50% { transform: translateY(-5px); }
    75% { transform: translateY(-15px); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes orbitSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .hero-section {
        padding: 40px 0 30px;   /* Tight mobile padding */
    }
    
    .hero-content {
        text-align: start;
        padding: 0 20px;
    }
    
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: start;
    }
    
    .hero-stats {
        justify-content: start;
    }
    
    .hero-image-wrap {
        padding: 80px 40px 40px;
    }
    
    .hero-robot-img {
        max-width: 260px;
    }
    
    .hero-image-container {
        max-width: 300px;
    }
    
    .float-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
}





/* ==========================================
   SERVICES STRIP
========================================== */

.services-strip{
    background: maroon;
}

.services-strip .row{
    margin: 0;
}

.service-link{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    gap:8px;
    padding:28px 15px;
    text-decoration:none;
    color:#fff;
    transition:all .3s ease;
    height:100%;
}

.service-link i{
    font-size:2rem;
}

.service-link span{
    font-size:1rem;
    font-weight:600;
}

.service-link small{
    display:block;
    margin-top:4px;
    font-size:0.85rem;
    line-height:1.4;
    color:rgba(255,255,255,0.75);
    max-width:160px;
}

.service-link:hover{
    background:rgba(255,255,255,.08);
    color:#fff;
}

.services-strip .service-col{
    border-right:1px solid rgba(255,255,255,.15);
}

.services-strip .service-col:last-child{
    border-right:none;
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px){

    .services-strip .service-col{
        border-right:none;
        border-bottom:1px solid rgba(255,255,255,.15);
    }

    .services-strip .service-col:nth-child(odd){
        border-right:1px solid rgba(255,255,255,.15);
    }

    .service-link{
        padding:22px 10px;
    }

    .service-link i{
        font-size:1.6rem;
    }

    .service-link span{
        font-size:0.9rem;
    }

    .service-link small{
        font-size:0.75rem;
    }
}




.why-card{
    background: var(--bg-surface);
    border: 1px solid var(--border) !important;
    border-radius: 24px;
    transition: all .3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,.03);
}

.why-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,.06);
}

.why-icon-wrap{
    width: 80px;
    height: 80px;
    margin: auto;
    border-radius: 50%;
    background: var(--pastel-rose);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}

.why-icon{
    font-size: 2rem;
    color: maroon;
    transition: all .3s ease;
}

.why-card:hover .why-icon-wrap{
    transform: scale(1.05);
    background: var(--pastel-blush);
}

.why-card:hover .why-icon{
    transform: rotate(8deg);
}






/* ==========================================
   SERVICES SHOWCASE
========================================== */

.services-showcase{
    background:#fff;
}

/* Heading */

.services-heading{
    padding:90px 20px 70px;
}

.services-heading p{
    max-width:850px;
}

/* Grid */

.service-box{
    border-top:1px solid var(--border);
    border-right:1px solid var(--border);
    background:#fff;
    overflow:hidden;
    transition:.35s ease;
}

.service-box:hover{
    background:var(--pastel-soft);
}

/* Remove right border from last column */

.service-box:nth-child(3),
.service-box:nth-child(6){
    border-right:none;
}

/* Image Area */

.service-image-wrap{
    height:280px;
    overflow:hidden;
    background:var(--pastel-blush);
}

.service-img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s ease;
}

.service-box:hover .service-img{
    transform:scale(1.06);
}

/* Content */

.service-content{
    padding:32px;
}

.service-content h4{
    font-size:1.35rem;
    font-weight:700;
    color:#111;
    margin-bottom:14px;
}

.service-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:0;
}

/* Tablet */

@media(max-width:991px){

    .service-box:nth-child(3),
    .service-box:nth-child(6){
        border-right:1px solid var(--border);
    }

    .service-box:nth-child(even){
        border-right:none;
    }

    .service-image-wrap{
        height:240px;
    }
}

/* Mobile */

@media(max-width:767px){

    .service-box{
        border-right:none;
    }

    .services-heading{
        padding:70px 20px 50px;
    }

    .service-image-wrap{
        height:220px;
    }

    .service-content{
        padding:24px;
    }

    .service-content h4{
        font-size:1.2rem;
    }
}

.service-btn{
    display:inline-flex;
    align-items:center;
    gap:4px;
    margin-top:20px;
    text-decoration:none;
    color:maroon;
    font-weight:600;
    transition:.3s ease;
}

.service-btn:hover{
    color:#9b001f;
}

.service-btn i{
    transition:.3s ease;
}

.service-btn:hover i{
    transform:translateX(4px);
}




/* === SEO Marquee Strip === */
.seo-marquee-strip {
  background: #800000;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  height: 36px;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.seo-marquee-track {
  display: inline-flex;
  align-items: center;
  animation: seoScroll 40s linear infinite;
  will-change: transform;
}

.seo-keyword {
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 0 0.6rem;
  opacity: 0.95;
  transition: opacity 0.2s ease;
}

.seo-sep {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.6rem;
  padding: 0 0.3rem;
  user-select: none;
}

/* Pause on hover */
.seo-marquee-strip:hover .seo-marquee-track {
  animation-play-state: paused;
}

/* Hover effect on individual keywords */
.seo-marquee-strip:hover .seo-keyword {
  opacity: 0.6;
}
.seo-marquee-strip:hover .seo-keyword:hover {
  opacity: 1;
  cursor: default;
}

@keyframes seoScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Mobile tweak */
@media (max-width: 768px) {
  .seo-marquee-strip {
    height: 32px;
  }
  .seo-keyword {
    font-size: 0.75rem;
  }
  .seo-marquee-track {
    animation-duration: 25s;
  }
}










/* ==================================
   PROJECTS SECTION
================================== */

.projects-section{
    background: var(--bg-section);
}

/* Card */

.project-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:24px;
    overflow:hidden;

    transition:.5s ease;

    transform-style:preserve-3d;
}

.project-card:hover{
    transform:
        perspective(1000px)
        rotateX(4deg)
        rotateY(-4deg)
        translateY(-8px);
}

/* Image */

.project-img{
    width:100%;
    height:260px;
    object-fit:cover;

    transition:.5s ease;
}

.project-card:hover .project-img{
    transform:scale(1.05);
}

/* Content */

.project-content{
    padding:24px;
}

.project-content h5{
    margin:15px 0;
    font-weight:700;
    color:#111;
}

/* Tag */

.project-tag{
    display:inline-block;

    padding:6px 14px;

    background:var(--pastel-blush);

    color:maroon;

    border-radius:50px;

    font-size:.8rem;

    font-weight:600;
}

/* Link */

.project-link{
    text-decoration:none;
    color:maroon;
    font-weight:600;
}

.project-link i{
    margin-left:4px;
    transition:.3s;
}

.project-link:hover i{
    transform:translateX(4px);
}





/* ==========================
   CTA SECTION
========================== */

.cta-section{
    padding:100px 0;
    background:#fff;
}

.cta-box{
    position:relative;
    overflow:hidden;

    padding:70px;

    background:
        linear-gradient(
            135deg,
            maroon 0%,
            #8b0000 50%,
            #5f0015 100%
        );

    border-radius:60px;

    color:#fff;
}

/* Floating shapes */

.cta-shape{
    position:absolute;
    border-radius:50%;
    background:rgba(255,255,255,.08);
}

.shape-1{
    width:300px;
    height:300px;

    top:-120px;
    right:-80px;
}

.shape-2{
    width:180px;
    height:180px;

    bottom:-60px;
    left:-40px;
}

/* Badge */

.cta-badge{
    background:rgba(255,255,255,.12);
    color:#fff;
    border-color:rgba(255,255,255,.25);
}

/* Title */

.cta-title{
    font-size:clamp(2rem,4vw,3.5rem);
    font-weight:800;
    line-height:1.2;

    margin:20px 0;
}

/* Text */

.cta-text{
    color:rgba(255,255,255,.85);
    font-size:1.05rem;
    max-width:700px;
    line-height:1.8;
}

/* Secondary button */

.btn-cta-outline{
    padding:12px 28px;

    border:2px solid rgba(255,255,255,.25);

    color:#fff;
    text-decoration:none;

    border-radius:12px;

    transition:.3s ease;
}

.btn-cta-outline:hover{
    background:rgba(255,255,255,.1);
    color:#fff;
}

/* Mobile */

@media(max-width:991px){

    .cta-box{
        padding:45px 30px;
        border-radius:35px;
        text-align:center;
    }

    .cta-title{
        font-size:2rem;
    }

}



/* ==================================
   TESTIMONIALS
================================== */

.testimonials-section{
    padding:100px 0;
    background:var(--bg-section);
    overflow:hidden;
}

/* Slider */

.testimonial-slider{
    width:100%;
    overflow:hidden;
    position:relative;
}

.testimonial-track{
    display:flex;
    gap:25px;
    width:max-content;

    animation: scrollTestimonials 35s linear infinite;
}

.testimonial-slider:hover .testimonial-track{
    animation-play-state: paused;
}

/* Cards */

.testimonial-card{
    width:380px;
    min-height:260px;

    background:#fff;

    border:1px solid var(--border);

    border-radius:30px;

    padding:35px;

    position:relative;

    transition:.3s ease;
}

.testimonial-card:hover{
    transform:translateY(-8px);
}

/* Quote Icon */

.quote-icon{
    position:absolute;

    top:20px;
    right:25px;

    font-size:2.5rem;

    color:rgba(128,0,0,.15);

    animation: floatQuote 3s ease-in-out infinite;
}

/* Text */

.testimonial-card p{
    margin-top:20px;

    color:#555;

    line-height:1.8;
}

/* Client */

.client{
    display:flex;
    align-items:center;
    gap:15px;

    margin-top:25px;
}

.client img{
    width:55px;
    height:55px;

    border-radius:50%;
    object-fit:cover;
}

.client h6{
    margin:0;
    font-weight:700;
}

.client span{
    color:#888;
    font-size:.9rem;
}

/* Animation */

@keyframes scrollTestimonials{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }
}

@keyframes floatQuote{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-8px);
    }
}

/* Mobile */

@media(max-width:768px){

    .testimonial-card{
        width:300px;
        min-height:auto;
        padding:25px;
    }

}

















/* ==================================
   FAQ SECTION
================================== */

.faq-section{
    background:#fff;
}

/* Accordion */

.custom-faq .accordion-item{
    border:1px solid var(--border);
    border-radius:18px !important;
    overflow:hidden;
    margin-bottom:16px;
    background:#fff;
}

.custom-faq .accordion-button{
    background:#fff;
    font-weight:600;
    color:#111;
    padding:20px 24px;
    box-shadow:none;
}

.custom-faq .accordion-button:not(.collapsed){
    background:var(--pastel-blush);
    color:maroon;
}

.custom-faq .accordion-body{
    color:#666;
    line-height:1.8;
    padding:20px 24px;
}

.custom-faq .accordion-button:focus{
    box-shadow:none;
}

.custom-faq .accordion-button::after{
    transition:.3s ease;
}









/* ==========================
   FOOTER
========================== */

.footer-section{

    background:#051812;

    color:#fff;

    padding:80px 0 30px;

    position:relative;
}

/* Top border */

.footer-section::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:maroon;
}

/* Logo */

.footer-logo{
    max-width:180px;
}

/* About */

.footer-about{

    color:rgba(255,255,255,.75);

    line-height:1.9;
}

/* Headings */

.footer-title{

    color:#fff;

    font-weight:700;

    margin-bottom:25px;

    position:relative;
}

.footer-title::after{

    content:"";

    display:block;

    width:40px;

    height:3px;

    background:maroon;

    margin-top:10px;

    border-radius:10px;
}

/* Links */

.footer-links{

    list-style:none;

    padding:0;

    margin:0;
}

.footer-links li{

    margin-bottom:12px;
}

.footer-links a{

    text-decoration:none;

    color:rgba(255,255,255,.75);

    transition:.3s;
}

.footer-links a:hover{

    color:#fff;

    padding-left:5px;
}

/* Contact */

.footer-contact{

    list-style:none;

    padding:0;

    margin:0;
}

.footer-contact li{

    display:flex;

    gap:12px;

    margin-bottom:16px;

    color:rgba(255,255,255,.75);
}

.footer-contact i{

    color:maroon;

    font-size:1rem;

    margin-top:3px;
}

/* Social */

.footer-social{

    display:flex;

    gap:12px;

    margin-top:25px;
}

.footer-social a{

    width:42px;
    height:42px;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:#fff;

    text-decoration:none;

    transition:.3s;
}

.footer-social a:hover{

    background:maroon;

    transform:translateY(-4px);
}

/* Bottom */

.footer-bottom{

    margin-top:60px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.1);

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:15px;
}

.footer-bottom p{

    margin:0;

    color:rgba(255,255,255,.65);
}

.footer-bottom-links{

    display:flex;

    gap:20px;
}

.footer-bottom-links a{

    text-decoration:none;

    color:rgba(255,255,255,.65);
}

.footer-bottom-links a:hover{

    color:#fff;
}

/* Mobile */

@media(max-width:768px){

    .footer-bottom{

        text-align:center;

        justify-content:center;
    }

}


.blog-card{
    border:1px solid #ececec;
    border-radius:18px;
    overflow:hidden;
    background:#fff;
    transition:.3s ease;
}

.blog-card:hover{
    border-color:#7A0019;
    transform:translateY(-4px);
}

.blog-img{
    width:100%;
    height:100%;
    object-fit:cover;
    min-height:250px;
}

.blog-content{
    padding:35px;
}

.blog-category{
    display:inline-block;
    background:#fdf2f4;
    color:#7A0019;
    padding:6px 14px;
    border-radius:50px;
    font-size:.85rem;
    font-weight:600;
    margin-bottom:15px;
}

.blog-content h4{
    font-weight:700;
    margin-bottom:15px;
}

.blog-content p{
    color:#6b7280;
    margin-bottom:20px;
}

.btn-blog{
    color:#7A0019;
    border:1px solid #7A0019;
    border-radius:10px;
    padding:10px 20px;
    font-weight:600;
}

.btn-blog:hover{
    background:#7A0019;
    color:#fff;
}

@media(max-width:991px){

    .blog-img{
        min-height:220px;
    }

    .blog-content{
        padding:25px;
    }

}