/* ============================================================
   COMMON.CSS – AgamiSoft Healthcare Landing Page
   ============================================================ */

/* ── LOCAL SATOSHI FONT FACES ── */
@font-face {
    font-family: 'Satoshi';
     
    src: url('../fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Light.woff2') format('woff2'),
         url('../fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Regular.woff2') format('woff2'),
         url('../fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Medium.woff2') format('woff2'),
         url('../fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Bold.woff2') format('woff2'),
         url('../fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ============================================================
   STICKY HEADER
   ============================================================ */

.sticky-header {
    position: fixed;
    top: 0;
    left: 50%;
    right: auto;
    width: calc(100% - 32px);
    max-width: 1140px;
    height: 60px;
    z-index: 1050;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 15px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
    padding: 8px 16px;
    transform: translate(-50%, -120%);
    transition: transform 0.3s ease;
}

.sticky-header--visible {
    transform: translate(-50%, 0);
}

.sticky-header .container,
.sticky-header .row {
    height: 100%;
}

.sticky-header .container {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

.sticky-header-logo {
    width: 120px;
    height: 40px;
    object-fit: contain;
    opacity: 1;
    align-self: center;
}

.sticky-header-text {
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: 0;
    color: var(--text-dark);
    vertical-align: middle;
    margin: 0;
}

.sticky-header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 163px;
    height: 42px;
    background: #F58220;
    color: #ffffff;
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0;
    vertical-align: middle;
    align-self: center;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.sticky-header-btn:hover {
    background: var(--orange-hover);
    color: #ffffff;
    text-decoration: none;
}

/* ── CSS Variables ── */
:root {
    --orange:        #F58220;
    --orange-hover:  #e0731a;
    --blue:   #3F6FBA;
    --blue-hover: ;

    --orange-light:  rgba(245, 130, 32, 0.10);
    --dark-bg:       #111111;

    --text-dark:     #1a1a1a;
    --text-mid:      #444444;
    --text-light:    #666666;
    --text-muted:    #888888;
    --border-light:  #e8e8e8;
    --section-bg:    #FEF5EC;
    --card-bg:       #FCE9D4;
    --tag-bg:        #F9D4AC;
    --tag-text:      #C25F10;
    --body-text:     #2D2D3A;
    --ring-track:    #E8D5C0;
    --ring-size:     140px;
    --ring-stroke:   12px;
    --white:         #FFFFFF;
    --subtitle:      #242424;

}

body {
    font-family: 'Satoshi', sans-serif;
    color: var(--text-dark);
    background: #FFFBF5;
 ;
}

.mb-24px{
    margin-bottom: 24px !important;
}

.mt-24px{
    margin-top: 24px !important;
}

.fs-20px{
    font-size: 20px !important;
}

.plan-price{
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.plan-price > span:nth-child(1) {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
    letter-spacing: 0;
    color: hsla(0, 0%, 0%, 1);
}

.plan-card {
    position: relative;
    background: #ffffff;
    border-radius: 18px;
    padding: 30px 28px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 20px rgba(0,0,0,.25);
    
    /* Flex layout for button alignment */
    display: flex;
    flex-direction: column;
}

/* Push the last mt-24px div (button wrapper) to bottom */
.plan-card > div.mt-24px:last-of-type {
    margin-top: auto;
}

.plan-card.popular {
    border: 1px solid hsla(28, 91%, 54%, 1);
    box-shadow: 0 4px 8px hsla(28, 91%, 54%, 0.5);
    position: relative;
    overflow: visible; /* Allow popular-bar to extend */
}

.plan-card.popular .popular-bar{
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: hsla(28, 91%, 54%, 1);
    color: hsla(0, 0%, 100%, 1);
    padding: 4px 16px;
    border-radius: 62px;
    font-size: 20px;
    font-weight: 500;
}

.plan-card.popular a{
    background: hsla(28, 91%, 54%, 1);
    color: hsla(0, 0%, 100%, 1);
}

.plan-card a {
    border: 1px solid hsla(28, 91%, 54%, 1);
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 4px;
    padding-right: 4px;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: hsla(0, 0%, 14%, 1);
    line-height: 1;
    font-weight: bold;

    border-radius: 10px;
    overflow: hidden;
}

.plan-price > span:nth-child(2) {
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    font-size: 16px;
 
    letter-spacing: 0;
    color: hsla(0, 0%, 0%, 1);
}

/* ============================================================
   SHARED UTILITIES
   ============================================================ */

.section-title {
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    font-size: 46px;
    line-height: 1;
    letter-spacing: 0;
    margin-bottom: 16px;
    color: var(--blue);
}

.section-subtitle {
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.1;
    letter-spacing: 0;
   
    max-width: 820px;
}

.section-description {
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    color: var(--text-light);
    max-width: 820px;
}

.section-title .highlight {
    color: var(--orange);
}

.section-subtitle {
    margin-bottom: 36px;
    margin-left: auto;
    margin-right: auto;
}

.section-description {
    font-size: 18px;
    line-height: 1.65;
    color: var(--text-mid);
}

.section-badge,
.project-badge,
.about-badge,
.overview-badge,
.ui-design-badge,
.result-badge,
.prob-sol-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: auto;
    min-width: 0;
    height: auto;
    min-height: 50px;
    background: #F5822066;
    border: none;
    border-radius: 50px;
    padding: 10px 16px;
    position: relative;
    transform: rotate(0deg);
    opacity: 1;
    align-self: flex-start;
}

.section-badge .badge-dot,
.project-badge .badge-dot,
.about-badge .badge-dot,
.overview-badge .badge-dot,
.ui-design-badge .badge-dot,
.result-badge .badge-dot,
.prob-sol-badge .badge-dot {
    width: 15px;
    height: 15px;
    background: var(--orange);
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.section-badge .badge-text,
.project-badge .badge-text,
.about-badge .badge-text,
.overview-badge .badge-text,
.ui-design-badge .badge-text,
.result-badge .badge-text,
.prob-sol-badge .badge-text {
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    color: #000000;
    letter-spacing: 0;
    white-space: nowrap;
}

/* Shared card icon box */
.card-icon {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border: 1px solid #FFD9B8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 1px 1px 4px rgba(0,0,0,0.25),
                2px 2px 8px rgba(0,0,0,0.25);
    flex-shrink: 0;
    opacity: 1;
}

.card-icon svg,
.card-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}




.card-icon-2 {
    /* width: 60px;
    height: 60px; */
    /* background: #ffffff; */
    /* border: 1px solid #FFD9B8; */
    /* border-radius: 10px; */
    display: flex;
    align-items: center;
    /* justify-content: center; */
    /* box-shadow: inset 1px 1px 4px rgba(0,0,0,0.25),
                2px 2px 8px rgba(0,0,0,0.25); */
    flex-shrink: 0;
    opacity: 1;

    border-radius: 12px;
    overflow: hidden;
}

.card-icon-2 svg,
.card-icon-2 img {
    /* width: 28px; */
    /* height: 28px; */
    object-fit: contain;
}

/* ============================================================
   HEADER
   ============================================================ */

.top-bar {
    background-color: #f8f4e8;
    padding: 8px 0;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-bar-right {
    justify-content: flex-end;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #333333;
    font-family: 'Satoshi', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
}

.top-bar-item i {
    color: var(--orange);
}

.top-bar-flag {
    width: 20px;
    height: auto;
    border-radius: 2px;
    vertical-align: middle;
    margin-top: -2px;
}

.main-header {
    padding: 10px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #f0f0f0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    max-height: 44px;
    width: auto;
}

.btn-contact {
    background: var(--orange) !important;
    border: none !important;
    color: #ffffff !important;
    padding: 7px 20px;
    font-family: 'Satoshi', sans-serif;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    transition: background 0.2s ease;
    cursor: pointer;
}

.btn-contact:hover {
    background: var(--orange-hover) !important;
}

/* ============================================================
   BUTTON OVERRIDES
   ============================================================ */

.btn-primary {
    background: var(--orange) !important;
    border-color: var(--orange) !important;
    color: #ffffff !important;
    padding: 12px 24px;
    gap: 10px;
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0;
    border-radius: 8px;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-primary:hover {
    background: var(--orange-hover) !important;
    border-color: var(--orange-hover) !important;
}

.btn-outline-primary {
    border: 1px solid var(--orange) !important;
    color: #242424 !important;
    background: #ffffff !important;
    padding: 12px 24px;
    gap: 10px;
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 16px;
 
    letter-spacing: 0;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
}

.btn-outline-primary:hover {
    background: var(--orange) !important;
    border-color: var(--orange) !important;
    color: #ffffff !important;
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
    padding: 50px 0 60px;
    display: flex;
    align-items: center;
    background-color: #ffffff;
}

.hero .row {
    gap: 44px 0;
}

.hero-content h1 {
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    font-size: 46px;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
    color: var(--blue);
}

.hero-content h1 .highlight {
    font-size: 46px;
    color: var(--orange);
    display: block;
}

.hero-content p {
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: 0;
    color: #242424;
    margin-bottom: 24px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.hero-image {
    width: 100%;
    max-width: 100%;
    border-radius: 15px;
    overflow: hidden;
    line-height: 0;
    opacity: 1;
    transform: rotate(0deg);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: -3px 7px 20px 0px #00000040;
}

.hero-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    opacity: 1;
    transform: rotate(0deg);
}

.hero-content h1,
.hero-content p,
.hero-buttons {
    margin-bottom: 0;
}

/* ============================================================
   CHALLENGES SECTION
   ============================================================ */

.challenges {
    padding: 56px 0;
    background-color: #f8f9fa;
}

.challenge-card {
    text-align: left;
    padding: 30px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.challenge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,.12);
}

.challenge-card .card-icon {
    margin-bottom: 20px;
}

.challenge-card h3 {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.challenge-card p {
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-light);
    margin: 0;
}

/* ============================================================
   SOLUTION SECTION
   ============================================================ */

.solution {
    padding: 56px 0;
    background-color: #ffffff;
}

.solution-cards-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    justify-content: center;
}

.solution-card {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    min-width: 0;
    padding: 22px 20px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 2px 4px 16px rgba(245,130,32,.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-3px);
    box-shadow: 2px 6px 20px rgba(245,130,32,.28);
}

.solution-card h3 {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    color: var(--text-dark);
    margin: 0;
}

/* ============================================================
   WHAT WE BUILD SECTION
   ============================================================ */

.what-we-build {
    padding: 40px 0;
    
}

 

.what-we-build .section-title .highlight {
    color: var(--orange);
}

 

.build-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.build-card {
    position: relative;
    background: #ffffff;
    border-radius: 18px;
    padding: 32px 28px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 20px rgba(0,0,0,.25);
}

.build-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0,0,0,.35);
}

/* Large decorative bg icon – top-right corner */
.build-card-bg {
    position: absolute;
    top: 13px;
    right: 14px;
    width: 90px;
    height: 90px;
    opacity: 1;
    pointer-events: none;
    color: #F5822026;
    opacity: 85%;

   
}

.build-card-bg svg,
.build-card-bg img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    display: block;
}

.build-card .card-icon {
    margin-bottom: 52px;
    position: relative;
    z-index: 1;
}

.build-card h3 {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 19px;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 12px !important;
    position: relative;
    z-index: 1;
}

.build-card h6 {
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color : #242424;
    position: relative;
    margin-bottom: 12px !important;
    z-index: 1;
}


.build-card p {
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-light);
    margin-bottom: 24px !important;
    position: relative;
    z-index: 1;
}




/* ============================================================
     Intelligent AI Features We Embed In Your Platform
   ============================================================ */
 

/* Card */
.ai-card {
  background: #fff;
  color: #222;
  border-radius: 18px;
  padding: 32px 28px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}

.ai-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

/* Top section */
.ai-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}

/* Metric alignment fix */
.metric-box {
  text-align: right;
  min-width: 120px;
}

.ai-metric {
  font-family: 'Satoshi', sans-serif;
  color: #F58220;
  font-weight: 900;
  font-size: 22px;
}

/* Title */
.ai-card h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #242424;
}

/* Description */
.ai-card p {
  font-size: 16px;
  color: #666;
}

/* Tags */
.ai-tags {
    margin-top:16px;
   font-size: 16px;
}

.ai-tags span {
  display: inline-block;
  background: #fde6d2;
  color: #333;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  margin: 4px 4px 0 0;
}




/* ============================================================
   MEDICLOUD – PROJECT SHOWCASE SECTION
   ============================================================ */

.medicloud-section {
    padding: 40px 0;
    background-color: #ffffff;
    overflow: hidden;
}


.medicloud-section .row {
    align-items: stretch !important;
}

.medicloud-section .col-lg-6:last-child {
    padding-right: 0;
}

.project-badge {
    margin-bottom: 0;
}

.medicloud-section .project-badge {
    min-height: 42px;
    padding: 8px 12px;
    margin-bottom: 18px;
}

/* Solid brand title */
.medicloud-brand-title {
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    font-size: 46px;
    line-height: 1;
    color: var(--blue);
    letter-spacing: 0;
    margin-bottom: 4px;
}

/* Orange subheading */
.medicloud-heading {
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    font-size: 46px;
    line-height: 1;
    color: var(--orange);
    margin-bottom: 22px;
    letter-spacing: 0;
}

/* Description text */
.medicloud-desc {
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: 0;
    margin-right: 0;
}

/* Meta info row */
.medicloud-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 0;
}

.meta-item {
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--text-mid);
    white-space: nowrap;
}

.meta-label {
    font-weight: 700;
    color: var(--text-dark);
}

.meta-divider {
    color: #cccccc;
    font-size: 14px;
    padding: 0 10px;
    user-select: none;
}

/* Left content column */
.medicloud-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

/* Right image column */
.medicloud-img-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    /* justify-content: flex-end; */
    height: 100%;
    margin-right: -15px;
}

/* Soft orange glow behind image */
.medicloud-img-wrapper::before {
    content: '';
    position: absolute;
    top: 5%;
    right: -60px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245,130,32,.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.medicloud-img-wrapper img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 656px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,.14));
    border-radius: 12px;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */

.about-section {
    padding: 44px 0;
    background-color: #ffffff;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.about-badge {
    margin-bottom: 0;
}

/* About description */
.about-desc {
    margin: 0;
    max-width: 100%;
}


/* ============================================================
   OVERVIEW
   ============================================================ */

.overview-section {
    padding: 48px 0;
    background: #ffffff;
   
}

.overview-badge {
    margin-bottom: 34px;
}

.overview-label {
    font-family: 'Satoshi', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-mid);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.overview-img-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overview-img-wrap::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245,130,32,0.55) 0%, rgba(245,130,32,0.15) 56%, transparent 72%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.overview-img {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 16px 40px rgba(0,0,0,0.18));
    border-radius: 10px;
    width: 760px;
   
    object-fit: contain;
}

.overview-desc {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 20px;
}

.overview-stat-card {
     text-align: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 10px;
    padding: 10px;
    box-shadow: 2px 4px 12px 0px rgba(1, 127, 253, 0.25);
    backdrop-filter: blur(20px);
    
}

.overview-stat-num {
    font-family: 'Urbanist', sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 4px;
}

.overview-stat-strong {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.overview-stat-sub {
    font-family: 'Satoshi', sans-serif;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ============================================================
   PROBLEM & SOLUTIONS
   ============================================================ */

.prob-sol-section {
    padding: 56px 0;
    background: #ffffff;
}

.prob-sol-left {
    padding-top: 0;
    padding-bottom: 40px;
}

.prob-sol-right {
    padding-top: 40px;
}

.prob-card {
    background: #fff0f0;
    border: 1.5px solid #f5c0c0;
    border-radius: 16px;
    padding: 32px 36px;
}

.sol-card {
    background: #f0fff4;
    border: 1.5px solid #a8e6bc;
    border-radius: 16px;
    padding: 32px 36px;
}

.prob-card-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.prob-card-label strong {
    font-family: 'Satoshi', sans-serif;
    font-size: 20px;
    font-weight: 700;
}

.prob-card .prob-card-label strong { color: #c0392b; }
.sol-card  .prob-card-label strong { color: #1e8449; }

.prob-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
}

.prob-dot--red   { background: #e74c3c; }
.prob-dot--green { background: #27ae60; }

.prob-card p,
.sol-card p {
    font-family: 'Satoshi', sans-serif;
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.75;
    margin: 0;
}

/* ============================================================
   UI DESIGN SECTION
   ============================================================ */


/* UI Design Section */
.ui-design-section {
    padding: 40px 0 0;
    background-color: #ffffff;
}

.ui-design-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-top: 28px;
}

.ui-design-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ui-design-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,.14);
}

.ui-design-text {
    flex: 1;
    display: flex;
    align-items: center;
}

.ui-design-text p {
    margin: 0;
    margin-left: 0;
    margin-right: 0;
    line-height: 1.6;
}

.ui-design-badge {
    margin-bottom: 0;
}

.mobile-applicaton-section {
    padding: 24px 0 0;
}

.mobile-applicaton-section .h4 {
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.6;
    letter-spacing: 0;
    color: #242424;
    margin-bottom: 0;
}




 
/* ============================================================
   FOOTER
   ============================================================ */

footer {
    background-color: #0D1B3E;
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
}

.footer-main {
    padding: 40px 0 32px;
}

.footer-logo {
    height: 48px;
    width: auto;
    display: block;
    margin-bottom: 20px;
}

.footer-tagline {
    color: #c8d4e8;
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 28px;
}

.footer-cta {
    display: inline-block;
    background: #F97316;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.footer-cta:hover {
    background: #e06210;
    color: #ffffff;
    text-decoration: none;
}

.footer-col-heading {
    font-weight: 700;
    font-size: 16px;
    color: #ffffff;
    letter-spacing: 0.4px;
    margin-bottom: 24px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-contact-item:last-child {
    margin-bottom: 0;
}

.footer-contact-icon {
    color: #F97316;
    font-size: 16px;
    width: 18px;
    flex-shrink: 0;
}

.footer-contact-link {
    color: #c8d4e8;
    font-size: 15px;
    text-decoration: none;
}

.footer-contact-link:hover {
    color: #ffffff;
    text-decoration: none;
}

.footer-social-list {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-social-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 8px;
    color: #0D1B3E;
    font-size: 17px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.footer-social-list a:hover {
    background: #F97316;
    color: #ffffff;
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin: 0;
}

.footer-bottom {
    padding: 18px 0;
}

.footer-deck {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-deck-icon {
    width: 44px;
    height: 44px;
    background: #F97316;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
}

.footer-deck-title {
    font-weight: 700;
    font-size: 14px;
    color: #ffffff;
    line-height: 1.2;
}

.footer-deck-meta {
    font-size: 12px;
    color: #8a9bbf;
    line-height: 1.2;
}

.footer-copyright {
    font-size: 13px;
    color: #8a9bbf;
    margin: 0;
}

.footer-legal a {
    color: #8a9bbf;
    font-size: 13px;
    text-decoration: none;
}

.footer-legal a:hover {
    color: #ffffff;
    text-decoration: none;
}

/* ============================================================
   IMAGE GRID SECTION
   ============================================================ */

.image-grid-section {
    padding: 40px 0;
    background-color: #ffffff;
}

.image-grid-container {
    display: flex;
    gap: 30px;
    align-items: start;
}

.image-grid-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-grid-item:first-child {
    flex: 2;
}

.image-grid-item:nth-child(2) {
    flex: 1;
}

.image-grid-item:nth-child(3) {
    flex: 0.735;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.image-grid-item:nth-child(3) img {
    flex: 1;
    min-height: auto;
}

.image-grid-item img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: contain;
    border-radius: 12px;
}

 

/* ============================================================
   APP SNAPSHOT
   ============================================================ */

.app-snap-section {
    margin-top:24px;
    padding: 24px 0 40px;
    background: #ffffff;
}

.app-snap-phone {
    display: inline-block;
    width: 100%;
    max-width: 260px;
    margin: 0 auto 20px;
}

.app-snap-phone img {
    width: 100%;
    height: auto;
    border-radius: 28px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.18);
    display: block;
}

.app-snap-label {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1;
    color: #242424;
    margin: 0;
}

/* ============================================================
   RESULT SECTION
   ============================================================ */
 /* ── Section ── */
    .result-section {
      
      padding: 40px 0 48px;
      font-family: 'DM Sans', sans-serif;
    }
    /* ── Body copy ── */
    .result-body {
      font-family: 'Satoshi', sans-serif;
      font-weight: 500;
      max-width: 880px;
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: 0;
    color: #242424;
    margin-bottom: 24px;
    margin-top: 24px;
    }


    

    /* ── Testimonial ── */
    .testimonial-row {
    
      display: flex;
      align-items: center !important;
      gap: 8px;
      max-width: 600px;
      margin-bottom: 24px;
    }
    .testimonial-text {
      flex: 1;
    }
    .testimonial-text p {
      font-size: 16px;
 
   color: var(--subtitle);
      margin-bottom: 10px;
    }
    .testimonial-text .attribution {
      font-size: 16px;
      font-weight: 800;
       color: var(--subtitle);
      margin: 0;
    }
    .testimonial-avatar {
      flex-shrink: 0;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid var(--white);
    }
    /* placeholder avatar circle if no image */
    .avatar-placeholder img {
      width: 150px;
      height: 150px;
      opacity: 1;
      border-radius: 50%;
      object-fit: cover;

    }

    /* ── Stat Cards ── */
    .stat-card {
      background: var(--card-bg);
      border-radius: 20px;
      padding: 28px 20px 26px;
      text-align: center;
      position: relative;
    }
  .stat-tag {
    position: absolute;
    top: 25px;
    left: 25px;

    background: #F5822066;
    color: #000000;

    font-size: 14px;
    font-weight: 600;
    line-height: 1;

    padding: 10px 16px;
    border-radius: 50px;

    box-shadow: 2px 2px 8px rgba(0,0,0,0.25);

    display: inline-flex;
    align-items: center;
    gap: 10px;

    opacity: 1;
}

    /* ── Ring Chart ── */
    .ring-wrap {
      width: var(--ring-size);
      height: var(--ring-size);
      margin: 44px auto 20px;
      position: relative;
    }
    .ring-wrap svg {
      width: 100%;
      height: 100%;
      transform: rotate(-90deg);
    }
    .ring-wrap .ring-label {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      font-weight: 700;
      color: var(--body-text);
    }
    .ring-track {
      fill: none;
      stroke: var(--ring-track);
      stroke-width: var(--ring-stroke);
      stroke-linecap: round;
    }
    .ring-progress {
      fill: none;
      stroke: var(--orange);
      stroke-width: var(--ring-stroke);
      stroke-linecap: round;
      transition: stroke-dashoffset 1s ease;
      filter: drop-shadow(0 0 6px rgba(108, 99, 255, 0.55));
    }
   

    .stat-label {
      font-size: 15px;
      font-weight: 700;
      color: var(--body-text);
      margin-bottom: 4px;
    }
    .stat-sub {
      font-size: 13px;
      color: var(--muted-text);
      margin: 0;
    }



/* ============================================================
   CTA BANNER
   ============================================================ */

.cta-banner {
    background: url('../assets/images/cta-banner-bg.png') center center / cover no-repeat;
    padding: 60px 0;
    position: relative;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 20, 0.72);
}

.cta-banner .container {
    position: relative;
    z-index: 1;
}

.cta-banner-title {
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    font-size: 40px;
     color: var(--orange);
    line-height: 1.15;
    margin-bottom: 10px;
}

.cta-banner-title span {
    color: var(--orange);
}

.cta-banner-subtitle {
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #c8d4e8;
    margin: 0;
    line-height: 1.6;
    letter-spacing: 0;
}

.cta-banner-btn {
    display: inline-block;
    background: var(--orange);
    color: #ffffff;
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease;
}

.cta-banner-btn:hover {
    background: var(--orange-hover);
    color: #ffffff;
    text-decoration: none;
}

.cta-banner.discuss-submit {
    display: inline-block;
    background: var(--orange);
    color: #ffffff;
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.discuss-submit:hover {
    background: var(--orange-hover);
    color: #ffffff;
}

.discuss-submit:disabled {
    background: #cccccc;
    cursor: not-allowed;
}

/* Form alerts */
.form-alert {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
    font-family: 'Satoshi', sans-serif;
    font-size: 14px;
    line-height: 1.4;
}

.form-alert.alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.form-alert.alert-danger {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* ============================================================
   YOUR TECHNOLOGY PARTNER
   ============================================================ */

.tech-partner-section {
    padding: 56px 0;
    background: #ffffff;
}

.tech-partner-title {
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    font-size: 46px;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 24px;
}

.tech-partner-title .highlight {
    color: var(--orange);
}

.tech-partner-subtitle {
    margin-bottom: 36px;
    max-width: 100%;
}

.tech-stats-row {
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.tech-stat-card {
    width: 170px;
    height: auto;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 15px;
    padding: 16px 12px;
    text-align: center;
    box-shadow: 2px 4px 12px 0px rgba(245, 130, 32, 0.25);
    margin: 0 6px;
    opacity: 1;
}

.tech-stat-number {
    font-family: 'Satoshi', sans-serif;
    font-weight: 800;
    font-size: 36px;
    color: var(--orange);
    line-height: 1.1;
    margin-bottom: 8px;
}

.tech-stat-label {
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: var(--text-dark);
}

/* ============================================================
   SERVICES WE OFFER
   ============================================================ */

.services-section {
    padding: 56px 0;
    background: #ffffff;
}

.services-col-heading {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--orange);
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li {
    display: flex;
    align-items: center;
    gap: 18px;
    font-family: 'Satoshi', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    padding: 14px 16px;
    border: 1px solid var(--border-light);
    border-radius: 15px;
    background: #ffffff;
    box-shadow: 2px 4px 12px 0px rgba(245, 130, 32, 0.25);
    margin-bottom: 12px;
}

.services-list li:last-child {
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 0;
}

.services-icon {
    display: flex;
    width: 60px;
    height: 60px;
    background: #ffffff;
    border: 1px solid #FFD9B8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 1px 1px 4px rgba(0,0,0,0.25),
                2px 2px 8px rgba(0,0,0,0.25);
    flex-shrink: 0;
    opacity: 1;
 
}

.services-list li:hover .services-icon {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 130, 32, 0.25);
}

.services-icon svg,
.services-icon img {
    width: 24px;
    height: 24px;
}

/* ============================================================
   DISCUSS YOUR PROJECT
   ============================================================ */

.discuss-section {
    padding: 56px 0;
    background: #ffffff;
}

.discuss-title {
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    font-size: 46px;
    color: var(--orange);
    line-height: 1;
    letter-spacing: 0;
    margin-bottom: 16px;
}

.discuss-subtitle {
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: #242424;
    line-height: 1.1;
    letter-spacing: 0;
    margin-bottom: 36px;
}

.discuss-office-heading {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #242424;
    line-height: 1;
    letter-spacing: 0;
    margin-bottom: 20px;
}

.office-card {
    background: #ffffff;
    border: 1px solid #FFD9B8;
    border-radius: 12px;
    padding: 20px;
    height: 100%;
}

.office-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--orange);
}

.office-flag {
    width: 28px;
    height: auto;
    border-radius: 3px;
}

.office-country {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--text-dark);
}

.office-address {
    font-family: 'Satoshi', sans-serif;
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.6;
    margin-bottom: 12px;
}

.office-phone {
    font-family: 'Satoshi', sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
    margin: 0;
}

.office-phone i {
    color: var(--orange);
    margin-right: 6px;
}

.discuss-badges {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
/* First two badge images */
.discuss-badges .badge-item:nth-child(-n+2) img {
    width: 80%;
}

/* Last two badge images */
.discuss-badges .badge-item:nth-child(n+3) img {
     width: 90%;
}

.badge-stars {
    color: #F9A825;
    font-size: 13px;
    letter-spacing: 1px;
}

.badge-name {
    font-family: 'Satoshi', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
}

.discuss-form-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.10);
}

.discuss-input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--orange);
    border-radius: 8px;
    font-family: 'Satoshi', sans-serif;
    font-size: 15px;
    color: var(--text-dark);
    background: #ffffff;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    appearance: none;
}

.discuss-input::placeholder {
    color: #aaaaaa;
}

.discuss-input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(245, 130, 32, 0.15);
}

.discuss-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23444' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.discuss-textarea {
    min-height: 130px;
    resize: vertical;
}

.discuss-submit {
    display: block;
    width: 100%;
    margin-top: 20px;
    padding: 15px;
    background: var(--orange);
    color: #ffffff;
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.discuss-submit:hover {
    background: var(--orange-hover);
}

.discuss-submit:disabled {
    background: #cccccc;
    cursor: not-allowed;
}

/* Form alerts */
.form-alert {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
    font-family: 'Satoshi', sans-serif;
    font-size: 14px;
    line-height: 1.4;
}

.form-alert.alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.form-alert.alert-danger {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    pointer-events: none;
}

.toast {
    background: #ffffff;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-left: 4px solid var(--orange);
    min-width: 300px;
    max-width: 400px;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast.hide {
    transform: translateX(100%);
    opacity: 0;
}

.toast.success {
    border-left-color: #28a745;
    background: linear-gradient(135deg, #f8fff9 0%, #e8f5e8 100%);
}

.toast.error {
    border-left-color: #dc3545;
    background: linear-gradient(135deg, #fff8f8 0%, #ffe8e8 100%);
}

.toast-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #ffffff;
    font-size: 14px;
}

.toast.success .toast-icon {
    background: #28a745;
}

.toast.error .toast-icon {
    background: #dc3545;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 700;
    font-family: 'Satoshi', sans-serif;
    font-size: 15px;
    margin-bottom: 4px;
    color: #242424;
}

.toast-message {
    font-family: 'Satoshi', sans-serif;
    font-size: 14px;
    color: #666666;
    line-height: 1.4;
}








/* Page Specific CSS */

/* Digital Agency */



/* Industries Section */

.industry-section {
    background: #ffffff;
}

.industry-box {
 
border-width: 1px;
opacity: 1;
border-radius: 20px;
background: #FFFFFF;
border: 1px solid #FFECDB;
box-shadow: 2px 4px 8px 0px #00000040;
}

.industry-tabs {
    height: 100%;
    background: #fdebd8;
    border: 1px solid rgba(245,130,32,0.25);
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    border-width: 1px;
 

}

.industry-tab {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    border-bottom: 1px solid rgb(255, 255, 255);
    border-bottom-left-radius: 20px;
    cursor: pointer;
    transition: background 0.2s ease;
    margin-right: -1px;
}

.industry-tab:hover:not(.active) {
    background: rgba(245,130,32,0.08);
}

.industry-tab.active {
    border-right: 4px solid #F58220;
}

.industry-tab img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
}

.industry-tab i {
    color: #FFECDB;
    font-size: 24px;
    width: 32px;
    flex-shrink: 0;
    text-align: center;
}

.industry-tab h5 {
    font-family: 'Urbanist', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #242424;
    margin-bottom: 3px;
    line-height: 1.2;
}

.industry-tab p {
    font-family: Urbanist;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
}

.industry-panel {
    display: none;
}

.industry-panel.active {
    display: block;
}

.industry-content {
    padding: 40px 32px 32px;
    background: #ffffff;
}

.industry-content h3 {
    font-family: Urbanist;
    font-weight: 700;
    font-style: Bold;
    font-size: 32px;
    
    line-height: 100%;
    letter-spacing: 0%;

    color: #242424;
    margin-bottom: 36px;
}

.industry-card {
    width: 433;
    height: 240;
    top: 104px;
    left: 325px;
    border-width: 1px;
    background: #FFECDB;
    border: 1px solid #FFC798;
    border-radius: 14px;
    padding: 28px 26px;
    height: 100%;
}

.industry-card h4 {
    font-family: Urbanist;
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #F58220;
    width: 385;
height: 24;
 
opacity: 1;


}

.industry-card p {
    font-size: 16px;
    line-height: 1.65;
    color: #444444;
    margin: 0;
}

.industry-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.industry-list li {
    position: relative;
    font-size: 16px;
    line-height: 1.5;
    color: #444444;
    padding-left: 20px;
    margin-bottom: 12px;
}

.industry-list li:last-child {
    margin-bottom: 0;
}

.industry-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 7px;
    height: 7px;
    background: #f58220;
    border-radius: 50%;
}



/* ============================================================
   COMMIT PROCESS SECTION
   ============================================================ */


.commit-process-section {
    padding: 80px 0;
    background: #ffffff;
}

.commit-process-title {
    margin-bottom: 60px;
}

.commit-process-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.commit-step {
    width: 18%;
    text-align: center;
    flex-shrink: 0;
}

.commit-number {
    width: 60px;
    height: 60px;
    border: 3px solid #F58220;
    border-radius: 50%;
    margin: 0 auto 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: 'Satoshi', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #242424;
}

.commit-step h3 {
    font-family: 'Satoshi', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #242424;
    margin-bottom: 20px;
    white-space: nowrap;
    line-height: 1.2;
}

.commit-step h5 {
    font-family: 'Satoshi', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #F58220;
    margin-bottom: 22px;
}

.commit-step p {
    font-family: 'Satoshi', sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.2;
    color: #242424;
    margin: 0;
}

.commit-arrow {
    width: 23%;
    height: 3px;
    background: #F58220;
    position: relative;
    margin-top: 29px;
}

.commit-arrow::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;

    width: 10px;
    height: 10px;

    border-top: 2px solid #F58220;
    border-right: 2px solid #F58220;

    transform: translateY(-50%) rotate(45deg);
}





/* ============================================================
   CASE STUDY SHOWCASE
   ============================================================ */

.case-study-section {
    padding: 80px 0;
    background: #ffffff;
}

.case-study-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 24px;
}

.case-study-card {
    background: transparent;
    display: flex;
    flex-direction: column;
}

.case-study-image-wrap {
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 24px;
    transition: transform 0.35s ease;
}

.case-study-image-wrap img {
    width: 100%;
    display: block;
    border-radius: 18px;
}

.case-study-card:hover .case-study-image-wrap {
    transform: translateY(-6px);
}

.case-study-title {
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 1;
    color: #242424;
   
}

.case-study-category {
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4;
    color: #767676;
 
}

.case-study-description {
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    color: #242424;
    flex: 1;
}

.case-study-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;

    border: 1px solid #F58220;
    border-radius: 12px;

    padding: 12px 16px;

    font-family: 'Satoshi', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;

    color: #F58220;
    background: transparent;

    text-decoration: none;
    transition: all 0.25s ease;
}

.case-study-btn:hover {
    background: #F58220;
    color: #ffffff;
    text-decoration: none;
}

.case-study-btn img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    transition: filter 0.25s ease;
}

.case-study-btn:hover img {
    filter: brightness(0) invert(1) !important;
}

/* Alternative: Use CSS mask for better color control */
.case-study-btn .arrow-icon {
    width: 18px;
    height: 18px;
    background-color: currentColor;
    mask-image: url('/landing-pages/assets/icons/arrow-right.svg');
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    transition: background-color 0.25s ease;
}




/* Testimonials  */

.testimonials-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonial-card {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 46px 28px;
    height: 100%;
    box-shadow: 2px 4px 8px 0px #00000040;

}

.testimonial-stars {
    margin-bottom: 15px;
    color: #F58220;
}

.testimonial-text {
   font-family: Satoshi;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0%;
    color: #000000;

}

.testimonial-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-container {
    display: flex;
    justify-content: flex-end;
}

.avatar-placeholder img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    font-family: 'Manrope', sans-serif;
    line-height: 1.5;
}

.testimonial-role {
    font-size: 18px;
    color: #767676;
}

.testimonial-attribution {
    margin-bottom: 0;
}

.testimonial-attribution .name {
    display: block;
    font-weight: bold;
    font-size: 20px;
    line-height: 1.3;
    color: #242424;
}

.testimonial-attribution .separator {
    color: #bdbdbd;
    font-weight: 400;
    margin: 0 6px;
}

.testimonial-attribution .title {
     
    font-size: 16px;
    color: #F58220;
    font-weight: 600;
}

.testimonial-attribution .organization {
    display: block;
    font-size: 16px;
    line-height: 1.4;
    color: #242424bb;
}

.highlight {
    color: #f58220;
}

