/* ═══════════════════════════════════════════════════════════════
   CRESTERE TECHNOLOGIES — Shared Stylesheet
   Color palette derived from the Crestere logo:
     Navy  #1B2A4A  |  Red  #C0392B  |  White  #FFFFFF
   ═══════════════════════════════════════════════════════════════ */

/* ── Design Tokens ──────────────────────────────────────────── */
:root {
  --font-sans:'IBM Plex Sans',ui-sans-serif,system-ui,sans-serif;
  --font-mono:'IBM Plex Mono',ui-monospace,SFMono-Regular,Menlo,monospace;
  --navy:         #1B2A4A;
  --navy-deep:    #111d35;
  --navy-light:   #22395e;
  --red:          #C0392B;
  --red-hover:    #a93226;
  --red-light:    rgba(192,57,43,.12);
  --white:        #FFFFFF;
  --off-white:    #F4F6FA;
  --gray-light:   #E8ECF3;
  --gray-mid:     #8494B2;
  --gray-dark:    #3D4F6E;
  --text:         #1B2A4A;

  --radius-sm:    4px;
  --radius:       8px;
  --radius-lg:    14px;
  --shadow-sm:    0 2px 8px  rgba(27,42,74,.08);
  --shadow:       0 4px 24px rgba(27,42,74,.12);
  --shadow-lg:    0 8px 40px rgba(27,42,74,.18);
  --transition:   .22s ease;

  --header-h:     70px;
  --max-w:        1200px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 100%; }
body {
  font-family: var(--font-sans);
  color: #000;
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

/* ── Utility ────────────────────────────────────────────────── */
.inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-inline: 1.5rem;
}
.section { padding: 5.5rem 1.5rem; }
.section-sm { padding: 3.5rem 1.5rem; }

.section-label {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .6rem;
}
.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: .9rem;
}
.section-sub {
  font-size: .98rem;
  /* color: var(--gray-mid); */
  color: #222;
  line-height: 1.75;
}
.section-head { margin-bottom: 0; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin-inline: auto; }


/* ════════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  box-shadow: 0 1px 8px rgba(0,0,0,.07);
}
.header-inner {
  /* max-width: var(--max-w); */
  margin: 0 auto;
  padding-inline: 1.5rem;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-img {
  height: 44px;
  width: auto;
  display: block;
}

/* Nav */
.main-nav { display: flex; align-items: center; gap: .15rem; }

.nav-item { position: relative; }

.nav-link {
  display: flex; align-items: center; gap: .3rem;
  padding: .5rem .95rem;
  color: var(--navy);
  font-size: .865rem; font-weight: 500;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
  user-select: none;
}
.nav-link:hover,
.nav-item:hover > .nav-link { color: var(--red); }

/* chevron */
.chev {
  width: 12px; height: 12px; flex-shrink: 0;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--transition);
}
.nav-item:hover > .nav-link .chev { transform: rotate(225deg) translateY(-2px); }

/* CTA link in nav — plain text, no button styling */
.nav-cta {
  color: var(--navy) !important;
  font-weight: 500 !important;
  background: transparent !important;
}
.nav-cta:hover { background: var(--off-white) !important; transform: none !important; }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px); left: 0;
  min-width: 228px;
  background: var(--white);
  border-radius: var(--radius);
  border-top: 3px solid var(--red);
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 800;
}
.nav-item:hover > .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown li a {
  display: flex; align-items: center; gap: .7rem;
  padding: .58rem 1rem;
  font-size: .83rem; color: var(--gray-dark);
  border-bottom: 1px solid var(--gray-light);
  transition: background var(--transition), color var(--transition), padding-left var(--transition);
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: var(--off-white); color: var(--navy); padding-left: 1.3rem; }
.dd-icon {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--off-white); display: flex; align-items: center;
  justify-content: center; font-size: .75rem; color: var(--red);
  flex-shrink: 0; transition: background var(--transition), color var(--transition);
}
.dropdown li a:hover .dd-icon { background: var(--navy); color: var(--white); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: .4rem;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}


/* ════════════════════════════════════════════════════════════
   HERO — Landing Page (light blue Archibus style)
═══════════════════════════════════════════════════════════ */
.hero {
    background: #F1F6FF;
    padding-left: 30px;
    min-height: 350px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-left: none;
}

.hero-inner {
    width: 100%;
    display: grid;
    grid-template-columns: 560px 1fr;
    align-items: center;
    padding: 0 60px;
}


/* Left content */
.hero-content h1 {
  font-size: clamp(1.75rem, 2.8vw, 2.2rem);
  font-weight: 700; color: #000;
  line-height: 1.1; 
  margin-bottom: 1.1rem;
}
.hero-desc {
  font-size: .98rem; color: var(--gray-dark);
  max-width: 460px; line-height: 1.75; margin-bottom: 2rem;
}
.btn-hero-cta {
  display: inline-block;
  background: var(--red); color: var(--white);
  padding: .75rem 2rem; border-radius: 100px;
  font-size: .92rem; font-weight: 700;
  transition: background var(--transition), transform var(--transition);
  box-shadow: 0 4px 14px rgba(192,57,43,.35);
}
.btn-hero-cta:hover { background: var(--red-hover); transform: translateY(-1px); }

/* Visual area — laptop + floating icons */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px;
}
.hero-visual-img {
  width: auto;
  display: block;
}
/* ── Responsive hero ── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
  }
  .hero-visual { display: none; }
}

.hero-visual-img {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.hero-visual:hover .hero-visual-img {
    transform: scale(1.05);
}


/* ════════════════════════════════════════════════════════════
   PAGE HERO — Inner pages
═══════════════════════════════════════════════════════════ */
.page-hero{
    background-image: url("../asset/cropped-case-studies-banner.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 300px;
    padding: 5rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.page-hero .breadcrumb {
  display: none; align-items: center; justify-content: center;
  gap: .5rem; font-size: .78rem;
  color: rgba(255,255,255,.5); margin-bottom: 1rem;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,.55); transition: color var(--transition); }
.page-hero .breadcrumb a:hover { color: var(--white); }
.page-hero .breadcrumb span { color: rgba(255,255,255,.25); }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; color: var(--white); line-height: 1.18;
  margin-bottom: 1rem;
}
.page-hero h1 em { font-style: normal; color: var(--red); }
.page-hero p { font-size: 1rem; color: rgba(255,255,255,.65); line-height: 1.75; }


/* ════════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .82rem 1.85rem;
  border-radius: var(--radius);
  font-size: .92rem; font-weight: 700;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--red); color: var(--white);
  box-shadow: 0 4px 16px rgba(192,57,43,.38);
}
.btn-primary:hover { background: var(--red-hover); transform: translateY(-2px); box-shadow: 0 6px 22px rgba(192,57,43,.5); }
.btn-outline {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.25);
}
.btn-outline:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.5); }
.btn-outline-dark {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--gray-light);
}
.btn-outline-dark:hover { background: var(--off-white); border-color: var(--gray-mid); }


/* ════════════════════════════════════════════════════════════
   TECH MARQUEE
═══════════════════════════════════════════════════════════ */
.marquee-band {
  background: var(--off-white);
  padding: 1.75rem 0; overflow: hidden;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
}
.marquee-track {
  display: flex; gap: 2.5rem; width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.tech-pill {
  display: flex; align-items: center; gap: .45rem;
  padding: .4rem 1rem;
  background: var(--white); border: 1px solid var(--gray-light);
  border-radius: 100px;
  font-size: .78rem; font-weight: 600;
  color: var(--gray-dark); white-space: nowrap;
  box-shadow: var(--shadow-sm);
}
.tech-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); }


/* ════════════════════════════════════════════════════════════
   SERVICE CARDS
═══════════════════════════════════════════════════════════ */
.services-section {
    /* padding: 3rem 0rem; */
    background: #fff;
    width: 100%;
}
.section-head {
    width: 100%;
    margin-bottom: 0;
    padding: 2rem 5.5rem 2rem 5.5rem;
}

.section-label {
    display: inline-block;
    color: #C81F3B;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.sections-title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 700;
    line-height: 1.15;
    color: #000;
    margin-bottom: 1.5rem;
}

.services-grid {
  padding: 1rem 5.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.svc-card {
    background: #fff;
    border: 3px solid #E5E5E5;
    border-radius: 2rem;
    padding: 2rem 2rem;
    transition: all .3s ease;
}

.svc-card:hover {
    transform: translateY(-8px);
    
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
}

.svc-icon {
    width: 50px;
    height: 50px;
    border: 3px solid #D9D9D9;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1.5rem;
    margin-bottom: 1.4rem;
}

.purple {
    color: #A73BFF;
}

.blue {
    color: #3F3DFF;
}

.yellow {
    color: #F4BC00;
}

.svc-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
}

.svc-card p {
    font-size: 0.9rem;
    line-height: 1.9;
    color: #111;
}

@media (max-width: 992px) {

    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2.5rem;
    }
}
.trusted-section {
    background: #ffffff;
    padding: 2rem 0 3rem;
    text-align: center;
}

.trusted-section .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.trusted-title {
    font-size: clamp(1.4rem, 3vw, 1.7rem);
    font-weight: 600;
    line-height: 1.2;
    color: #000;
    margin-bottom: 2.5rem;
}

.trusted-title span {
    color: #3b49ff;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    flex-wrap: wrap;
}

.logo-item {
    transition: all .4s ease;
}

.logo-item img {
    max-height: 60px;
    width: auto;
    object-fit: contain;

    /* filter: grayscale(100%); */
    opacity: .85;
    transition: all .4s ease;
}

.logo-item:hover img {
    /* filter: grayscale(0%); */
    opacity: 1;
    transform: scale(1.08);
}


/* .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.4rem;
}
.svc-card {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 2rem 1.7rem;
  position: relative; overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.svc-card::after {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.svc-card:hover::after { transform: scaleX(1); }
.svc-icon {
  width: 50px; height: 50px; border-radius: 12px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.2rem;
  transition: background var(--transition);
}
.svc-card:hover .svc-icon { background: var(--red); }
.svc-card h3 { font-size: .98rem; font-weight: 700; color: var(--navy); margin-bottom: .45rem; }
.svc-card p  { font-size: .83rem; color: var(--gray-mid); line-height: 1.65; }
.svc-link {
  display: inline-flex; align-items: center; gap: .25rem;
  margin-top: 1rem; font-size: .78rem; font-weight: 700;
  color: var(--red); transition: gap var(--transition);
}
.svc-link:hover { gap: .5rem; }
.svc-link::after { content: '→'; } */

/* Full-detail service card (services.html) */
/* .svc-detail {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.svc-detail:hover { box-shadow: var(--shadow); }
.svc-detail-header {
  background: var(--navy);
  padding: 2rem 2.25rem;
  display: flex; align-items: center; gap: 1.25rem;
} */
/* .svc-detail-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; flex-shrink: 0;
}
.svc-detail-header h3 { font-size: 1.15rem; font-weight: 800; color: var(--white); }
.svc-detail-header p  { font-size: .8rem; color: var(--gray-mid); margin-top: .2rem; }
.svc-detail-body { padding: 2rem 2.25rem; }
.svc-detail-body p { font-size: .9rem; color: var(--gray-dark); line-height: 1.75; margin-bottom: 1.25rem; }
.svc-bullets { display: flex; flex-direction: column; gap: .55rem; }
.svc-bullets li {
  font-size: .85rem; color: var(--gray-dark);
  padding-left: 1.25rem; position: relative;
}
.svc-bullets li::before {
  content: ''; position: absolute;
  left: 0; top: .55em;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red);
}
.svc-detail-footer {
  padding: 1.25rem 2.25rem;
  border-top: 1px solid var(--gray-light);
  background: var(--off-white);
} */

.expertise-section {
    padding: 2rem 5.5rem;
    background: #fffdfd;
    overflow: hidden;
}

.expertise-card {
    padding: 0 2rem;
}

.expertise-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.expertise-header h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin: 0;
}

.slider-controls {
    display: flex;
    gap: .75rem;
}

.slider-controls button {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background: #cfcfcf;
    color: white;
    cursor: pointer;
    font-size: 14px;
}

.slider-wrapper {
    overflow: hidden;
}

.slider-track {
    display: flex;
    gap: 40px;
    transition: transform .5s ease;
}

.service-slide {
    min-width: calc((100% - 80px) / 3);
}

.service-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 28px;
}

.service-slide h3 {
    font-size: 1.5rem;
    margin: 0.5rem 0 1rem;
    font-weight: 700;
}

.service-slide p {
    font-size: 1rem;
    line-height: 1.8;
    color: #222;
}

.dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d0d0d0;
    cursor: pointer;
}

.dot.active {
    background: #c81f3b;
}

.service-slide {
    transition: transform .4s ease;
}

/* .service-slide:hover {
    transform: translateY(-5px);
} */

.service-slide img {
    transition: transform .4s ease;
}

.service-slide:hover img {
    transform: scale(1.01);
}
.workplace{
padding: 2rem 5.5rem;
}

.work-container{
    width:100%;
    margin:auto;
    display:flex;
    align-items:center;
    gap:3rem;
}



.image-box{
    position: relative;
    width: 320px;
    flex-shrink: 0;
}

.purple-shape{
    position: absolute;
    top: -30px;
    right: -30px;
    width: 70px;
    height: auto;
    z-index: 2;
    transform: rotate(25deg); /* clockwise */
}

.green-shape{
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 70px;
    height: auto;
    z-index: -1;
    transform: rotate(25deg); /* clockwise */
}
.purple-shape,
.green-shape{
    animation: spin 50s linear infinite;
}

@keyframes spin{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}
.purple-shape,
.green-shape{
    transition: transform 0.5s ease;
}

.purple-shape:hover,
.green-shape:hover{
    transform: rotate(45deg);
}


.sub-title{
    color:#c71f3a;
    font-size:0.95rem;
    font-weight:700;
    letter-spacing:1px;
}

.content-box h2{
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    line-height:1.05;
    font-weight:700;
    margin:10px 0;
    color:#000;
}

.top-text,
.bottom-text{
    font-size:1rem;
    line-height:1.8;
    color:#111;
}

.demo-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    color:#000;
    margin:10px 0;
}

.icon{
    width:52px;
    height:52px;
    background:#ddd4ff;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#3518ff;
    font-size:28px;
}

.text{
    font-size:1.35rem;
    text-decoration:underline;
}

.arrow{
    font-size:1.75rem;
}

@media(max-width:991px){

    .container{
        flex-direction:column;
    }

    .image-box{
        width:100%;
        max-width:400px;
    }
}
.why-use-section{
    margin:auto;
    padding:2rem 5.5rem;
}

.why-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:10px;
}

.content{
    flex:1;
    max-width:900px;
}

.sub-title{
    color:#c41230;
    font-size:0.95rem;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:20px;
    letter-spacing:1px;
}

.content h2{
    font-size: clamp(1.6rem, 3vw, 2rem);
    line-height:1;
    margin-bottom:15px;
    color:#000;
}

.intro{
    font-size:1rem;
    line-height:1.5;
    margin-bottom:15px;
    color:#000;
}

.content ul{
  list-style-type: disc;
    margin-left:20px;
    margin-bottom:10px;
}

.content ul li{
    font-size:0.9rem;
    line-height:1.5;
    color:#000;
}

.description{
    font-size:1rem;
    line-height:1.6;
    color:#000;
    margin-bottom:15px;
}

.btn{
    display:inline-block;
    background:#c41230;
    color:#fff;
    text-decoration:none;
    padding:8px 15px;
    border-radius:50px;
    font-size:1rem;
    transition:0.3s;
}

.btn:hover{
    background:#a70f28;
}

.image-side{
  width:400px;
    height:400px;
    justify-content:center;
    position:relative;
}
@media(max-width:1100px){

    .container{
        flex-direction:column;
    }
}

@media(max-width:600px){

    .why-use-section{
        padding:50px 20px;
    }

}
.case-studies{
    padding:2rem 5.5rem;
}

.case-container{
    width:100%;
}

.section-tag{
    display:block;
    text-align:center;
    color:#c91c3b;
    font-size:1rem;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:10px;
}

.section-title{
    text-align:center;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight:600;
    color:#000;
    margin-bottom:20px;
}

.case-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.case-card{
    background:#fff;
    border:1px solid #cfcfcf;
    border-radius:6px;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    height:100%;
}

.case-card img{
    width:100%;
    height:175px;
    object-fit:cover;
    display:block;
}

.case-content{
    padding:10px 15px 17px;
    display:flex;
    flex-direction:column;
    flex-grow:1;
}

.case-content h3{
    font-size:1.5rem;
    margin-bottom:12px;
    font-weight:600;
    color:#000;
}

.case-content p{
    font-size:0.9rem;
    line-height:1.75;
    color:#111;
}

.image-wrapper{
    position:relative;
}

.image-label{
    position:absolute;
    bottom:-10px;
    left:50%;
    transform:translateX(-50%);
    background:#fff;
    border:1px solid #999;
    padding:6px 12px;
    font-size:14px;
}

.btn-wrap{
    text-align:center;
    margin-top:45px;
}

.case-btn{
    display:inline-block;
    background:#c80d33;
    color:#fff;
    text-decoration:none;
    padding:10px 18px;
    border-radius:40px;
    font-size:1rem;
    font-weight:500;
    transition:.3s;
}

.case-btn:hover{
    background:#aa082b;
}
/* ════════════════════════════════════════════════════════════
   RESOURCE / BLOG CARDS
═══════════════════════════════════════════════════════════ */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.6rem;
}
.resource-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.resource-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.resource-thumb {
  height: 168px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy), var(--gray-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.resource-thumb img { width: 100%; height: 100%; object-fit: cover; }
.resource-thumb::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--red);
}
.resource-tag {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--red); color: var(--white);
  font-size: .63rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: .22rem .65rem; border-radius: 100px;
}
.resource-body {
  padding: 1.5rem; flex: 1;
  display: flex; flex-direction: column;
}
.resource-body h3 {
  font-size: .95rem; font-weight: 700;
  color: var(--navy); line-height: 1.4;
  margin-bottom: .5rem;
}
.resource-body p {
  font-size: .82rem; color: var(--gray-mid);
  line-height: 1.65; flex: 1; margin-bottom: 1rem;
}
.resource-meta {
  display: flex; justify-content: space-between;
  align-items: center; font-size: .74rem; color: var(--gray-mid);
  border-top: 1px solid var(--gray-light);
  padding-top: .85rem; margin-top: auto;
}
.resource-read {
  color: var(--red); font-weight: 700;
  display: inline-flex; align-items: center; gap: .2rem;
  transition: gap var(--transition);
}
.resource-read:hover { gap: .45rem; }
.resource-read::after { content: '→'; }


/* ════════════════════════════════════════════════════════════
   WHY / METRICS
═══════════════════════════════════════════════════════════ */
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.why-points { display: flex; flex-direction: column; gap: 1.5rem; }
.why-point  { display: flex; gap: 1rem; }
.why-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0; margin-top: .1rem;
}
.why-point h4 { font-size: .94rem; font-weight: 700; color: var(--navy); margin-bottom: .28rem; }
.why-point p  { font-size: .84rem; color: var(--gray-mid); line-height: 1.65; }

.metrics-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.25rem; box-shadow: var(--shadow);
  border: 1px solid var(--gray-light);
}
.metrics-card h3 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 1.6rem; }
.metric-row { margin-bottom: 1.35rem; }
.metric-row:last-child { margin-bottom: 0; }
.metric-labels { display: flex; justify-content: space-between; font-size: .78rem; margin-bottom: .35rem; }
.metric-name { font-weight: 600; color: var(--navy); }
.metric-pct  { font-weight: 700; color: var(--red); }
.metric-bar  { height: 6px; background: var(--gray-light); border-radius: 3px; overflow: hidden; }
.metric-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--red), #e67e22); }


/* ════════════════════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  padding: 5rem 1.5rem; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(192,57,43,.14) 0%, transparent 70%);
}
.cta-banner-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-banner h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; color: var(--white); margin-bottom: .9rem; }
.cta-banner h2 em { font-style: normal; color: var(--red); }
.cta-banner p   { color: rgba(255,255,255,.65); font-size: .98rem; margin-bottom: 2rem; }


/* ════════════════════════════════════════════════════════════
   CONTACT FORM
═══════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 4rem; align-items: start;
}
.contact-info p {
  font-size: .9rem; color: var(--gray-mid);
  line-height: 1.75; margin-bottom: 2rem;
}
.contact-details { display: flex; flex-wrap: wrap; gap: 2rem; }
.contact-item { display: flex; gap: .9rem; align-items: flex-start; }
.contact-item-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.contact-item dt { font-size: .72rem; font-weight: 700; color: var(--gray-mid); text-transform: uppercase; letter-spacing: .5px; }
.contact-item dd { font-size: .9rem; color: var(--navy); font-weight: 600; margin-top: .12rem; }
.contact-item dd a { color: inherit; transition: color var(--transition); }
.contact-item dd a:hover { color: var(--red); }

.form-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.25rem; box-shadow: var(--shadow);
  border: 1px solid var(--gray-light);
}
.form-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 1.6rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; margin-bottom: .9rem; }
.form-group label { font-size: .73rem; font-weight: 700; color: var(--gray-dark); text-transform: uppercase; letter-spacing: .6px; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: .68rem .95rem;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  font-size: .9rem; font-family: inherit;
  color: var(--navy); background: var(--off-white);
  outline: none; transition: border-color var(--transition), background var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy); background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 118px; }
.form-submit {
  width: 100%; padding: .88rem;
  background: var(--red); color: var(--white);
  border: none; border-radius: var(--radius);
  font-size: .92rem; font-weight: 700; font-family: inherit;
  transition: background var(--transition), transform var(--transition);
}
.form-submit:hover { background: var(--red-hover); transform: translateY(-1px); }
.form-submit.success { background: #27ae60; }


/* ════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.site-footer { background: #2e2e2e; padding: 1rem 1.5rem 0; }

.footer-main {
  max-width: var(--max-w); margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.6fr;
  gap: 4.5rem;
  /* padding-bottom: 3rem; */
  border-bottom: 1px solid rgba(255,255,255,.1);
}

/* ── Column 1: Brand + Sitemap ── */
.footer-logo-link { display: inline-block; margin-bottom: 1.3rem; }
.logo-img--footer {
  height: 40px; width: auto;
  background: rgba(255,255,255,.93);
  padding: 5px 12px; border-radius: 6px;
}
.footer-about {
  font-size: .7rem; 
  color: rgba(255,255,255,.55);
  /* line-height: 1.85;  */
  margin-bottom: 1rem;
}

/* ── Column headings ── */
.footer-col-heading {
  font-size: 1.05rem; 
  font-weight: 700;
  color: var(--white); 
  margin-bottom: .7rem;
}

/* ── Footer links ── */
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .3rem; }
.footer-links li a {
  font-size: .7rem; color: rgba(255,255,255,.6);
  transition: color var(--transition); display: block;
}
.footer-links li a:hover { color: var(--white); }

/* ── Column 2: Services ── (top-aligned) */
.footer-services-col { padding-top: 0; }

/* ── Column 3: Office ── */
.footer-col-heading--office {
  display: flex; align-items: center; gap: .45rem;
}
.footer-office-icon { font-size: 1.2rem; }
.footer-address {
  font-size: .7rem; color: rgba(255,255,255,.55);
  line-height: 1.75; margin-bottom: 1.1rem;
}
.footer-msg-link { margin: 1.4rem 0 .5rem; }
.footer-msg-link a {
  font-size: .9rem; font-weight: 600;
  color: var(--white); display: inline-flex;
  align-items: center; gap: .4rem;
  transition: color var(--transition);
}
.footer-msg-link a:hover { color: rgba(255,255,255,.75); }
.footer-email a {
  font-size: .86rem; color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-email a:hover { color: var(--white); }

/* ── Bottom bar ── */
.footer-bottom {
  max-width: var(--max-w); 
  /* margin: 0 auto;
  padding: 1.2rem 0; */
  text-align: center;
  font-size: .78rem; color: rgba(255,255,255,.35);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .footer-main { grid-template-columns: 1fr; gap: 2.5rem; }
}


/* ════════════════════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: none; }


/* ════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-desc  { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats   { justify-content: center; }
  .hero-cards   { display: none; }
  .why-grid     { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .main-nav {
    display: none; flex-direction: column;
    position: absolute; top: var(--header-h);
    left: 0; right: 0;
    background: var(--navy-deep);
    padding: .75rem 1rem 1.25rem;
    gap: 0;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .main-nav.open { display: flex; }
  .nav-item { width: 100%; }
  .nav-link { width: 100%; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,.05); padding: .65rem 1rem; color: var(--white); }
  .nav-link:hover { color: var(--red); }
  .nav-cta  { margin-left: 0 !important; margin-top: .5rem; border-radius: var(--radius) !important; background: var(--red) !important; color: var(--white) !important; text-align: center; justify-content: center; }
  .dropdown {
    position: static; opacity: 1; visibility: visible;
    transform: none; box-shadow: none; border-top: none;
    border-left: 3px solid var(--red);
    margin-left: 1rem; border-radius: 0;
    display: none;
    background: transparent;
  }
  .nav-item.open .dropdown { display: block; }
  .dropdown li a { color: rgba(255,255,255,.8); border-bottom: 1px solid rgba(255,255,255,.05); }
  .dropdown li a:hover { background: rgba(255,255,255,.05); color: var(--white); }
  .dd-icon { background: rgba(255,255,255,.1); color: var(--white); }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 3.5rem 1.5rem; }
  .contact-details { flex-direction: column; gap: 1.5rem; }
}

/* ════════════════════════════════════════════════════════════
   ARCHIBUS SOLLUTION
═══════════════════════════════════════════════════════════ */
.archibus-section{
    background:#d8e0e7; /* light blue-gray */
    padding:1rem 5.5rem;
}

.arch-container{
    width:100%;
}

.content-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:80px;
}

.left-content{
    flex:0 0 65%;
}

.left-content p{
    font-size:18px;
    line-height:1.7;
    color:#000;
    margin-bottom:28px;
}

.highlight{
    font-size:20px;
    font-weight:700;
    margin-bottom:25px;
}

.right-content{
    flex:0 0 28%;
    display:flex;
    justify-content:center;
    align-items:flex-start;
    padding-top:10px;
}

.right-content img{
    max-width:100%;
    height:auto;
    display:block;
}


#archibusSection{
    width:100%;
    padding:1rem 5.5rem;
    color: #000;
}

#mainHeading{
    text-align:center;
    margin-bottom:2rem;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

#portfolioArea{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
}

#imageArea, #buildingImageArea, #spaceImageArea, #workplaceImageArea, #assetImageArea, #capitalImageArea{
    width:40%;
}

#imageArea img, #buildingImageArea img, #spaceImageArea img, #workplaceImageArea img, #assetImageArea img, #capitalImageArea img{
    width:100%;
}

#contentArea, #buildingContentArea, #spaceContentArea, #workplaceContentArea, #assetContentArea, #capitalContentArea{
    width:60%;
}

#portfolioHeading, #buildingHeading, #spaceHeading, #workplaceHeading, #assetHeading, #capitalHeading{
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom:10px;
}

#portfolioText, #spaceText, #buildingText, #workplaceText, #assetText, #capitalText{
    font-size:0.98rem;
    line-height:1.3;
    margin-bottom:30px;
}

#listArea{
    display:flex;
    justify-content:space-evenly;
    padding: 2rem;
}

#leftList,
#rightList{
    color:#b3122f;
    font-size:.84rem;
    list-style-type: disc;
}

#leftList li,
#rightList li{
    margin-bottom:5px;
}


#spacePlanningSection {
    width:100%;
    padding:1rem 5.5rem;
}

#spacePlanningArea {
  color: #000;
    display:flex;
    justify-content:space-around;
    align-items:center;
    gap:60px;
}
#spaceImageArea{
    text-align:right;
}
#buildingArea{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
}
#buildingSection{
   width:100%;
    padding:1rem 5.5rem;
}
#workplaceArea{
  color: #000;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
}
#workplaceSection{
   width:100%;
    padding:1rem 5.5rem;
}
#assetArea{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
}
#assetSection{
     width:100%;
    padding:1rem 5.5rem;
}
#capitalSection{
     width:100%;
    padding:1rem 5.5rem;
}
#capitalArea{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
}
#archibusInfoSection{
    background: linear-gradient(to right,#f19a4d,#d3222a);
    padding:1rem 5.5rem;
}
#archibusInfoHeading{
    color:white;
    text-align:center;
    font-size:1.3rem;
    line-height:1.5;
    font-weight:600;
    width:100%;
    margin:0 auto 2rem auto;
}

#archibusListContainer{
    display:flex;
    justify-content:space-between;
    gap:4rem;
}

#archibusListOne,
#archibusListTwo,
#archibusListThree{
    list-style:none;
    color:white;
    font-size:0.98rem;
    line-height:1.5;
    width:33%;
}
/* ════════════════════════════════════════════════════════════
   WORKSPACE SOLLUTION
═══════════════════════════════════════════════════════════ */
.hotdesk-section{
  color: #000;
    width:100%;
    padding:4.5rem 5.5rem;
}

.main-heading{
    text-align:center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight:700;
    margin-bottom:3rem;
}

.hotdesk-area{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:80px;
}

.image-area{
    width:30%;
}

.image-area img{
    width:100%;
    display:block;
}

.content-area{
    width:70%;
}

.section-heading{
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight:600;
    margin-bottom:1rem;
}

.section-text{
    font-size:0.93rem;
    line-height:1.4;
    margin-bottom:0.8rem;
}

.benefit-list{
    padding-left:2rem;
    margin-top:1.5rem;
}

.benefit-list li{
    list-style: disc;
    color:#c61f3a;
    font-size:0.85rem;
    margin-bottom:0.5rem;
}
/* ════════════════════════════════════════════════════════════
   DEVOPS SOLLUTION
═══════════════════════════════════════════════════════════ */
.devops-section{
    background-color:#dfe5ea;
    padding:4.5rem 5.5rem;
}

.devops-container{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
}

.devops-content{
    width:70%;
}

.devops-paragraph{
    font-size:0.98rem;
    line-height:1.5;
    margin-bottom:1.8rem;
    color:#000;
}

.devops-image-box{
    width:30%;
}

.devops-image-box img{
    width:100%;
    display:block;
    border-radius: 10px;
}
.devops-life-section{
  color: #000;
    width:100%;
    padding:4.5rem 5.5rem;
}

.devops-life-main-heading{
    text-align:center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight:700;
    margin-bottom:3rem;
}

.devops-life-container{
  color: #000;
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:80px;
}

.devops-life-image{
    width:30%;
}

.devops-life-image img{
    width:100%;
    display:block;
}

.devops-life-content{
    width:70%;
}

.devops-life-heading{
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-weight:700;
    margin-bottom:1rem;
}

.devops-life-text{
    font-size:0.98rem;
    line-height:1.5;
    margin-bottom:1.5rem;
}

.devops-life-list{
    padding-left:2rem;
}

.devops-life-list li{
    list-style: disc;
    color:#c61f3a;
    font-size:0.85rem;
    line-height:1.5;
    margin-bottom:0.5rem;
}
.devops-benefits-section{
    color: #000;
    width:100%;
    padding:4.5rem 5.5rem;
}

.devops-benefits-heading{
  color: #000;
    text-align:center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight:700;
    margin-bottom:2rem;
}

.devops-benefits-container{
    display:flex;
    justify-content:space-between;
    gap:2rem;
}

.devops-benefit-card{
    flex:1;
    text-align:center;
}

.devops-benefit-card img{
    width:100%;
    max-width:460px;
    display:block;
    margin:auto;
}

.devops-benefit-card h3{
    margin-top:1.5rem;
    font-size:1.2rem;
    font-weight:600;
}

.devops-benefit-bottom{
    text-align:center;
    margin-top:4rem;
}

.devops-benefit-bottom img{
    width:100%;
    max-width:460px;
}
.service-container{
  color: #000;
  padding: 4.5rem 5.5rem;
    width:100%;
    display:flex;
    justify-content:space-between;
    gap:20px;
}

.service-card{
    flex:1;
    border:2px solid #d9d9d9;
    border-radius:25px;
    padding:25px;
}

.service-card h2{
    font-size:1.5rem;
    margin-bottom:20px;
}

.service-card p{
    font-size:0.98rem;
    line-height:1.5;
}

.service-offering-heading{
  color: #000;
    text-align:center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom:20px;
}

.service-offering-text{
    text-align:center;
    margin-bottom:60px;
    font-size:1rem;
}

/* ════════════════════════════════════════════════════════════
   MOBILE  SOLLUTION
═══════════════════════════════════════════════════════════ */
.app-overview-section{
    background-color:#dfe7ee;
    padding:4.5rem 5.5rem;
}

.app-overview-container{
    width:100%;
    text-align:center;
}

.app-overview-text{
    font-size:0.98rem;
    line-height:1.5;
    color:#000;
    margin-bottom:2rem;
}
.ios-app-section{
    width:100%;
    padding:4.5rem 5.5rem;
}

.ios-main-heading{
    text-align:center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight:700;
    margin-bottom:3rem;
}

.ios-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
}

.ios-image-box{
    width:30%;
}

.ios-image-box img{
    width:100%;
    border-radius:20px;
    display:block;
}

.ios-content-box{
    width:70%;
}

.ios-heading{
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-weight:700;
    margin-bottom:1.5rem;
}

.ios-text{
    font-size:.98rem;
    line-height:1.5;
    margin-bottom:1.5rem;
}
.mobile-benefit-list{
    padding-left:2rem;
    margin-top:1rem;
}

.mobile-benefit-list li{
    color:#c61f3a;
    margin-bottom:0.8rem;
    font-size:0.85rem;
}
.app-process-section{
    width:100%;
    padding:4.5rem 5.5rem;
}

.app-process-heading{
    text-align:center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight:700;
    margin-bottom:1.5rem;
}

.app-process-text{
    width:100%;
    text-align:center;
    font-size:0.85rem;
    line-height:1.8;
    margin-bottom:4rem;
}

.app-process-image-box{
    text-align:center;
}

.app-process-image-box img{
    width:100%;
    /* max-width:1100px; */
    display:block;

}
.mobile-cta-section{
    background: linear-gradient(
        90deg,
        #f39a4a 0%,
        #ea6a47 50%,
        #d31f34 100%
    );

    padding:4.5rem 5.5rem;
}

.mobile-cta-content{
    width:100%;
    text-align:center;
}

.mobile-cta-text{
    color:#ffffff;
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight:600;
    line-height:1.5;
    margin-bottom:3rem;
}

.mobile-cta-heading{
    color:#ffffff;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight:700;
}

/* ════════════════════════════════════════════════════════════
   ANGULAR  SOLLUTION
═══════════════════════════════════════════════════════════ */

.angular-feature-section{
    width:100%;
    padding:4.5rem 5.5rem;
}

.angular-feature-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
}

.angular-feature-image{
    width:30%;
}

.angular-feature-image img{
    width:100%;
    display:block;
}

.angular-feature-content{
    width:70%;
}

.angular-feature-heading{
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight:600;
    margin-bottom:1rem;
}

.angular-feature-text{
    font-size:0.98rem;
    line-height:1.5;
}
/* ════════════════════════════════════════════════════════════
   REACT  SOLLUTION
═══════════════════════════════════════════════════════════ */
/* Main Section */
.feature-section{
    width: 100%;
    padding: 2rem 5.5rem;
}

/* Main Heading */
.feature-main-title{
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom:2.5rem;
}

/* Content Container */
.feature-container{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    position: relative;
    margin-bottom: 30px;
}

/* Image Side */
.feature-image{
    width: 45%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-image img{
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
}

/* Text Side */
.feature-content{
    width: 55%;
}

.feature-content h2{
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.feature-content p{
    font-size: 0.98rem;
    line-height: 1.6;
    color: #222;
    margin-bottom: 15px;
}

@media(max-width:991px){

    .feature-container{
        flex-direction: column;
        text-align: center;
    }

    .reverse-section .feature-container {
        flex-direction: column-reverse;
    }

    .feature-image,
    .feature-content{
        width: 100%;
    }
}
.react-intro{
    width:100%;
    background:#dfe7ee;
    padding:4.5rem 5.5rem;
}

.react-intro-content{
    width:100%;
    text-align:center;
}

.react-intro-content h2{
    font-size: clamp(1.3rem, 2.5vw, 1.5rem);
    font-weight:700;
    margin-bottom:40px;
}

.react-intro-content p{
    font-size:1rem;
    line-height:1.3;
    color:#111;
    margin-bottom:30px;
}
/* ════════════════════════════════════════════════════════════
   CUSTOM  SOLLUTION
═══════════════════════════════════════════════════════════ */
.custom-app-section{
    width:100%;
    background:#dfe7ee;
    padding:4.5rem 5.5rem;
}

.custom-app-content{
    width:100%;
    text-align:center;
}

.custom-app-content h2{
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight:600;
    color:#2d2d2d;
    margin-bottom:40px;
}

.custom-app-content p{
    font-size:0.98rem;
    line-height:1.5;
    color:#111;
    margin-bottom:10px;
}
.cta-gradient-section{
    background:linear-gradient(90deg,#f39c52,#d62839);
    padding:4.5rem 5.5rem;
}

.cta-gradient-content{
  padding:0;
    text-align:center;
}

.cta-gradient-content p{
    color:#fff;
    font-size:1rem;
    font-weight:600;
    line-height:1.5;
}
.staff-augmentation-section{
    width:100%;
    padding:4.5rem 5.5rem;
}

.staff-augmentation-content{
    width:100%;
    text-align:center;
}

.staff-augmentation-content h2{
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight:700;
    margin-bottom:30px;
}

.staff-augmentation-content p{
    font-size:0.98rem;
    line-height:1.5;
    color:#111;
}
.gradient-cta-section{
    background:linear-gradient(90deg,#ee9648 0%,#d12b37 100%);
    padding:4.5rem 5.5rem;
}

.gradient-cta-content{
    text-align:center;
}

.gradient-cta-content p{
    color:#fff;
    font-size:1rem;
    line-height:1.5;
    font-weight:700;
}
.case-study-page{
    background:#f4f4f4;
    padding:2rem 5.5rem;
}

.case-study-container{
    width:100%;
    display:flex;
    gap:25px;
}

.case-study-left{
    flex:3;
}

.main-title{
    text-align:center;
    font-size: clamp(1.6rem, 3vw, 2rem);
    margin-bottom:25px;
    font-weight:700;
}

.case-list-card {
    display:flex;
    flex-direction:row;
    gap:20px;
    background:#e9e9e9;
    padding:12px;
    margin-bottom:15px;
    border-radius:4px;
}

.case-list-card img {
    width:130px;
    height:110px;
    object-fit:cover;
    border-radius:4px;
}

.case-list-card h3 {
    color:#c8102e;
    margin-bottom:10px;
    font-size:0.98rem;
}

.case-list-card p {
    font-size:1rem;
    line-height:1.5;
    color:#222;
    margin-bottom:8px;
}

.case-list-card a {
    color:#c8102e;
    text-decoration:none;
    font-size:0.85rem;
    font-weight:600;
}

@media (max-width: 768px) {
    .case-list-card { flex-direction: column; }
    .case-list-card img { width: 100%; height: 200px; }
}

.case-study-sidebar{
    flex:1;
}

.sidebar-title{
    text-align:center;
    color:#c8102e;
    font-size:1.5rem;
    font-weight:700;
    margin-bottom:15px;
}

.mt{
    margin-top:30px;
}

.sidebar-card{
    display:flex;
    gap:10px;
    background:#e9e9e9;
    padding:8px;
    margin-bottom:10px;
    border-radius:4px;
    align-items:flex-start;
}

.sidebar-card img{
    width:70px;
    height:55px;
    object-fit:cover;
}

.sidebar-card p{
    font-size:.85rem;
    line-height:1.5;
    color:#222;
}
.case-detail-section{
    padding:2rem 5.5rem;
}

.case-detail-container{
    width:100%;
    display:flex;
    gap:40px;
}

.case-detail-content{
    width:75%;
}

.case-sidebar{
    width:25%;
}

.case-detail-image img{
  max-height: 400px ;
    width:100%;
    margin:20px 0;
}

.case-sub-title{
    color:#c8102e;
    margin:25px 0 10px;
    font-size:1.5rem;
}

.case-list{
    padding-left:25px;
}

.case-list li{
    margin-bottom:10px;
    line-height:1.5;
}

.sidebar-heading{
    color:#c8102e;
    font-size:1.2rem;
    margin-bottom:10px;
}

.sidebar-item{
    display:flex;
    gap:10px;
    background:#e9e9e9;
    padding:10px;
    margin-bottom:10px;
}

.sidebar-item img{
    width:70px;
    height:70px;
    object-fit:cover;
}

.sidebar-item p{
    font-size:0.85rem;
    line-height:1.5;
}
.blog-page-section{
    padding:60px 0;
    background:#f5f5f5;
}

.blog-page-container{
    width:90%;
    margin:auto;
    display:flex;
    gap:30px;
}

.blog-content{
    flex:3;
}

.blog-card{
    display:flex;
    gap:20px;
    background:#e9e9e9;
    padding:15px;
    margin-bottom:10px;
    border-radius:4px;
}

.blog-card img{
    width:120px;
    height:90px;
    object-fit:cover;
}

.blog-card-content h3{
    color:#c8102e;
    margin-bottom:10px;
}

.blog-card-content a{
    color:#c8102e;
    text-decoration:none;
}

.blog-pagination{
    margin-top:20px;
}

.blog-pagination a{
    padding:6px 10px;
    background:#eee;
    text-decoration:none;
    color:#000;
    margin-right:5px;
}

.active-page{
    background:#c8102e !important;
    color:#fff !important;
}
.feature-intro{
  margin-bottom: 2rem;
}

/* ════════════════════════════════════════════════════════════
   GLOBAL RESPONSIVE FIXES (SPACING, TYPOGRAPHY, IMAGES)
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  /* Reduce horizontal padding on all main sections to remove useless spaces */
  .section-head, 
  .services-grid, 
  .expertise-section, 
  .workplace, 
  .why-use-section, 
  .case-studies,
  .archibus-section,
  #archibusSection,
  #spacePlanningSection,
  #buildingSection,
  #workplaceSection,
  #assetSection,
  #capitalSection,
  #archibusInfoSection,
  .hotdesk-section,
  .devops-section,
  .devops-life-section,
  .devops-benefits-section,
  .service-container,
  .app-overview-section,
  .ios-app-section,
  .app-process-section,
  .mobile-cta-section,
  .angular-feature-section,
  .feature-section,
  .react-intro,
  .custom-app-section,
  .cta-gradient-section,
  .staff-augmentation-section,
  .gradient-cta-section,
  .case-study-page,
  .case-detail-section {
    padding: 3rem 1.5rem !important;
  }

  /* Fix container layouts and gaps */
  .work-container,
  .why-container,
  .case-study-container,
  .content-wrapper,
  #portfolioArea, #spacePlanningArea, #buildingArea, #workplaceArea, #assetArea, #capitalArea,
  #archibusListContainer,
  .hotdesk-area,
  .devops-container, .devops-life-container, .devops-benefits-container, .service-container,
  .ios-container,
  .angular-feature-container,
  .feature-container {
    flex-direction: column;
    gap: 2.5rem;
  }
  
  .reverse-layout {
     flex-direction: column !important;
  }
  .reverse-section .feature-container {
     flex-direction: column-reverse !important;
  }

  /* Make image holders and sections responsive */
  .image-box,
  .image-side,
  .feature-image,
  .ios-image-box,
  .angular-feature-image,
  .devops-image-box,
  .devops-life-image,
  .app-process-image-box {
    width: 100% !important;
    max-width: 500px;
    height: auto !important;
    margin: 0 auto;
  }

  .image-side img, 
  .image-box img:not(.purple-shape):not(.green-shape),
  .app-process-image-box img {
    width: 100%;
    height: auto;
  }
  
  .content-box,
  .content,
  .feature-content,
  .ios-content-box,
  .angular-feature-content,
  .devops-content, .devops-life-content,
  .left-content, .right-content,
  #imageArea, #contentArea, #buildingImageArea, #buildingContentArea, 
  #spaceImageArea, #spaceContentArea, #workplaceContentArea, #workplaceImageArea, 
  #assetImageArea, #assetContentArea, #capitalContentArea, #capitalImageArea,
  #archibusListOne, #archibusListTwo, #archibusListThree,
  .image-area, .content-area,
  .devops-benefit-card, .service-card {
    width: 100% !important;
    max-width: 100% !important;
  }

  #listArea {
     flex-direction: column !important;
     gap: 1rem !important;
     padding: 1rem 0 !important;
  }

  /* Adjust typography for readability on mobile/tablet */
  .sections-title,
  .section-title,
  .content-box h2,
  .content h2,
  .trusted-title,
  .expertise-header h2,
  .main-heading,
  .devops-life-main-heading,
  .ios-main-heading,
  .app-process-heading,
  .feature-main-title,
  .custom-app-content h2,
  .staff-augmentation-content h2,
  #mainHeading, #portfolioHeading, #spaceHeading, #buildingHeading, #workplaceHeading, #assetHeading, #capitalHeading,
  .section-heading, .angular-feature-heading {
    font-size: clamp(1.75rem, 5vw, 2.2rem) !important;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: clamp(2rem, 6vw, 2.6rem) !important;
  }

  /* Services Grid responsive */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Case Grid responsive */
  .case-grid {
    grid-template-columns: 1fr;
  }

  /* Fix hero alignment on mobile */
  .hero {
    padding-left: 0;
  }
  
  .trusted-logos {
    gap: 2rem;
  }
  
  /* Carousel/Slider responsiveness */
  .service-slide {
    min-width: calc((100% - 40px) / 2);
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .service-slide {
    min-width: 100%;
  }
}
