    /* Top accent border for all cards */
.info-card,
.card,
.testimonial,
.project,
.contact-card,
.contact-form,
.why-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.info-card::before,
.card::before,
.testimonial::before,
.project::before,
.contact-card::before,
.contact-form::before,
.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--card-accent, linear-gradient(90deg, #2563eb, #60a5fa));
  z-index: 2;
}

/* Highlight cards */
.highlight-grid .info-card:nth-child(1) { --card-accent: linear-gradient(90deg, #2563eb, #60a5fa); }
.highlight-grid .info-card:nth-child(2) { --card-accent: linear-gradient(90deg, #f97316, #fb923c); }
.highlight-grid .info-card:nth-child(3) { --card-accent: linear-gradient(90deg, #10b981, #34d399); }
.highlight-grid .info-card:nth-child(4) { --card-accent: linear-gradient(90deg, #8b5cf6, #a78bfa); }

/* About section 2 cards */
.about-grid .info-card:nth-child(1) { --card-accent: linear-gradient(90deg, #0ea5e9, #38bdf8); }
.about-grid .info-card:nth-child(2) { --card-accent: linear-gradient(90deg, #f43f5e, #fb7185); }

/* Services cards */
.services-grid .card:nth-child(1) { --card-accent: linear-gradient(90deg, #2563eb, #60a5fa); }
.services-grid .card:nth-child(2) { --card-accent: linear-gradient(90deg, #f97316, #fdba74); }
.services-grid .card:nth-child(3) { --card-accent: linear-gradient(90deg, #10b981, #6ee7b7); }
.services-grid .card:nth-child(4) { --card-accent: linear-gradient(90deg, #8b5cf6, #c4b5fd); }
.services-grid .card:nth-child(5) { --card-accent: linear-gradient(90deg, #ec4899, #f9a8d4); }
.services-grid .card:nth-child(6) { --card-accent: linear-gradient(90deg, #f59e0b, #fcd34d); }

/* Portfolio cards */
.portfolio-grid .project:nth-child(1) { --card-accent: linear-gradient(90deg, #2563eb, #60a5fa); }
.portfolio-grid .project:nth-child(2) { --card-accent: linear-gradient(90deg, #10b981, #34d399); }
.portfolio-grid .project:nth-child(3) { --card-accent: linear-gradient(90deg, #f97316, #fb923c); }

/* Process cards */
.process-grid .card:nth-child(1) { --card-accent: linear-gradient(90deg, #0ea5e9, #38bdf8); }
.process-grid .card:nth-child(2) { --card-accent: linear-gradient(90deg, #8b5cf6, #a78bfa); }
.process-grid .card:nth-child(3) { --card-accent: linear-gradient(90deg, #10b981, #4ade80); }
.process-grid .card:nth-child(4) { --card-accent: linear-gradient(90deg, #f97316, #fdba74); }

/* Why choose us cards */
.why-grid .why-card:nth-child(1) { --card-accent: linear-gradient(90deg, #2563eb, #60a5fa); }
.why-grid .why-card:nth-child(2) { --card-accent: linear-gradient(90deg, #f43f5e, #fb7185); }
.why-grid .why-card:nth-child(3) { --card-accent: linear-gradient(90deg, #10b981, #34d399); }
.why-grid .why-card:nth-child(4) { --card-accent: linear-gradient(90deg, #f59e0b, #fcd34d); }

/* Testimonial cards */
.testimonial-grid .testimonial:nth-child(1) { --card-accent: linear-gradient(90deg, #2563eb, #60a5fa); }
.testimonial-grid .testimonial:nth-child(2) { --card-accent: linear-gradient(90deg, #8b5cf6, #c4b5fd); }
.testimonial-grid .testimonial:nth-child(3) { --card-accent: linear-gradient(90deg, #f97316, #fdba74); }

/* Contact 2 cards */
.contact-grid > *:nth-child(1) { --card-accent: linear-gradient(90deg, #10b981, #34d399); }
.contact-grid > *:nth-child(2) { --card-accent: linear-gradient(90deg, #2563eb, #60a5fa); }

    :root {
      --bg: #edf2f8;
      --bg-soft: rgba(255, 255, 255, 0.58);
      --surface: rgba(255, 255, 255, 0.74);
      --surface-strong: rgba(255, 255, 255, 0.9);
      --text: #24324a;
      --text-soft: #62718a;
      --line: rgba(148, 163, 184, 0.22);
      --primary: #2563eb;
      --primary-dark: #1d4ed8;
      --accent: #77b9ff;
      --accent-soft: #d9ecff;
      --white: #ffffff;
      --shadow: 0 20px 50px rgba(31, 41, 55, 0.08);
      --shadow-soft: 0 10px 25px rgba(31, 41, 55, 0.05);
      --radius-xl: 28px;
      --radius-lg: 22px;
      --radius-md: 18px;
      --max-width: 1180px;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Inter, Arial, Helvetica, sans-serif;
      color: var(--text);
      line-height: 1.65;
      background:
        linear-gradient(rgba(243, 247, 252, 0.9), rgba(243, 247, 252, 0.92)),
        url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=80') center top/cover fixed;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      position: relative;
      z-index: 2;
    }

    .container {
      width: min(92%, var(--max-width));
      margin: auto;
    }

    @keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
    section {
      padding: 35px 0;
      position: relative;
      animation: fadeIn 0.6s ease;
    }

    /* Section visual separation */
    section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(148,163,184,0.3), transparent);
    }

    section:nth-of-type(even) {
      background: rgba(203, 213, 225, 0.55);
      backdrop-filter: blur(6px);
    }

    section:nth-of-type(odd) {
      background: transparent;
    }

    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      border-radius: 999px;
      border: 1px solid rgba(255, 140, 43, 0.2);
      background: rgba(255, 255, 255, 0.56);
      box-shadow: var(--shadow-soft);
      font-size: 13px;
      font-weight: 700;
      color: #5682af;
      margin-bottom: 18px;
      backdrop-filter: blur(10px);
    }

    .section-tag::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--primary);
      display: inline-block;
    }

    .section-title {
      position: relative;
      padding-bottom: 10px;
      line-height: 1.2;
      margin-bottom: 18px;
    }

    .section-title::after {
      content: "";
      width: 60px;
      height: 3px;
      background: linear-gradient(to right, #2f66f5, #40a0ff);
      position: absolute;
      bottom: 0;
      left: 0;
      border-radius: 10px;
    }

    .section-title {
      font-size: clamp(30px, 4vw, 30px);
      line-height: 1.14;
      font-weight: 800;
      letter-spacing: -0.03em;
      margin-bottom: 14px;
    /*  max-width: 900px; */
    }

    .section-subtitle {
      font-size: 17px;
      color: var(--text-soft);
    /*  max-width: 840px; */
	    margin-bottom: 15px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 52px;
      padding: 13px 24px;
      border-radius: 999px;
      border: 1px solid transparent;
      cursor: pointer;
      font-size: 15px;
      font-weight: 700;
      transition: 0.28s ease;
    }

    .btn-primary {
      background: linear-gradient(135deg, #2563eb, #3b82f6);
      color: #fff;
      box-shadow: 0 12px 24px rgba(37, 99, 235, 0.25);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 28px rgba(37, 99, 235, 0.3);
      background: linear-gradient(135deg, #1d4ed8, #2563eb);
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.72);
      color: var(--text);
      border-color: rgba(148, 163, 184, 0.22);
      box-shadow: var(--shadow-soft);
      backdrop-filter: blur(10px);
    }

    .btn-secondary:hover {
      transform: translateY(-2px);
      background: rgba(255, 255, 255, 0.92);
    }

    .topbar {
      background: rgba(36, 50, 74, 0.92);
      color: rgba(255, 255, 255, 0.84);
      font-size: 14px;
      padding: 10px 0;
    }

    .topbar .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 999;
      background: rgba(255, 255, 255, 0.68);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(148, 163, 184, 0.16);
    }

    .navbar {
      min-height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 30px;
      font-weight: 800;
      letter-spacing: -0.03em;
      color: var(--text);
    }

    .logo-mark {
      color: #365f96;
    }

    .logo-accent {
      color: var(--primary);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 26px;
      list-style: none;
    }

    .nav-links a {
      font-size: 15px;
      font-weight: 700;
      color: #040405;
      transition: color 0.25s ease;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: #2563eb;
    }

    .menu-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 30px;
      color: var(--text);
      cursor: pointer;
    }

    .hero {
      padding: 48px 0 15px;
    }

    .hero-shell {
      display: grid;
      grid-template-columns: 1fr 0.96fr;
      gap: 22px;
      align-items: stretch;
    }

    .glass-card {
      background: var(--surface);
      border: 1px solid rgba(255, 255, 255, 0.65);
      box-shadow: var(--shadow);
      backdrop-filter: blur(14px);
      border-radius: var(--radius-xl);
    }

    .hero-copy {
      padding: 34px;
    }

    .hero-copy h1 {
      font-size: 32px;
      line-height: 1.08;
      letter-spacing: -0.04em;
      margin-bottom: 18px;
      max-width: 640px;
    }

    .hero-copy p {
      font-size: 17px;
      color: var(--text-soft);
      max-width: 620px;
      margin-bottom: 22px;
    }

    .hero-actions {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
      margin-bottom: 18px;
    }

    .hero-note {
      color: #73839a;
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 26px;
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }

    .stat-card {
      background: rgba(255, 255, 255, 0.64);
      border: 1px solid rgba(148, 163, 184, 0.18);
      border-radius: 18px;
      padding: 18px;
      box-shadow: var(--shadow-soft);
    }

    .stat-card h3 {
      font-size: 28px;
      line-height: 1;
      margin-bottom: 10px;
    }

    .stat-card p {
      margin: 0;
      font-size: 14px;
      color: var(--text-soft);
    }

    .hero-visual {
      position: relative;
      min-height: 100%;
      overflow: hidden;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow);
      background:
        linear-gradient(rgba(36, 50, 74, 0.1), rgba(36, 50, 74, 0.14)),
        url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=1400&q=80') center/cover;
      border: 1px solid rgba(255, 255, 255, 0.62);
      min-height: 560px;
    }

    .hero-overlay-card {
      position: absolute;
      left: 24px;
      right: 24px;
      bottom: 24px;
      background: rgba(255, 255, 255, 0.88);
      border-radius: 22px;
      padding: 24px;
      box-shadow: var(--shadow);
      border: 1px solid rgba(148, 163, 184, 0.14);
      backdrop-filter: blur(14px);
    }

    .hero-overlay-card .pill {
      display: inline-block;
      padding: 7px 12px;
      border-radius: 999px;
      background: #e9f4ff;
      color: #5786b8;
      font-size: 12px;
      font-weight: 800;
      margin-bottom: 10px;
    }

    .hero-overlay-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin-top: 16px;
    }

    .mini-box {
      border-radius: 16px;
      background: rgba(248, 250, 252, 0.95);
      border: 1px solid rgba(148, 163, 184, 0.14);
      padding: 14px;
    }

    .mini-box strong {
      display: block;
      margin-bottom: 6px;
    }

    .mini-box span {
      font-size: 13px;
      color: var(--text-soft);
    }

    .clients {
      padding: 10px 0 0;
    }

    .client-row {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
    }

    .client-box {
      text-align: center;
      padding: 14px 16px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.62);
      border: 1px solid rgba(148, 163, 184, 0.16);
      color: #6d7b92;
      font-weight: 700;
      box-shadow: var(--shadow-soft);
      backdrop-filter: blur(10px);
    }

    .highlight-grid,
    .services-grid,
    .about-grid,
    .two-col-grid,
    .process-grid,
    .why-grid,
    .portfolio-grid,
    .testimonial-grid,
    .contact-grid,
    .footer-grid {
      display: grid;
      gap: 22px;
    }

    .highlight-grid {
      grid-template-columns: repeat(4, 1fr);
      margin-top: 34px;
    }

    .info-card,
    .card,
    .testimonial,
    .project,
    .contact-card,
    .contact-form,
    .why-card {
      background: var(--surface-strong);
      border: 1px solid rgba(255, 255, 255, 0.78);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      backdrop-filter: blur(12px);
    }

    .info-card {
      padding: 24px;
    }

    .info-card h3 {
      font-size: 28px;
      margin-bottom: 8px;
    }

    .info-card p {
      color: var(--text-soft);
      font-size: 15px;
    }

    .about-grid,
    .contact-grid {
      grid-template-columns: 1fr 1fr;
      margin-top: 40px;
    }

    .card {
      padding: 28px;
      transition: transform 0.28s ease, box-shadow 0.28s ease;
    }

    .card:hover,
    .testimonial:hover,
    .why-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 55px rgba(31, 41, 55, 0.12);
    }

    .project:hover {
      transform: translateY(-6px) scale(1.02);
      box-shadow: 0 24px 55px rgba(31, 41, 55, 0.14);
    }

    .services-grid {
      grid-template-columns: repeat(3, 1fr);
      margin-top: 38px;
    }

    .number-badge,
    .icon-badge {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      display: inline-grid;
      place-items: center;
      font-weight: 800;
      margin-bottom: 18px;
    }

    .number-badge {
      background: rgba(255, 140, 43, 0.16);
      color: var(--primary-dark);
      font-size: 14px;
    }

    .icon-badge {
      background: linear-gradient(135deg, #e7f2ff, #fef2e8);
      color: #4c79ab;
      font-size: 20px;
    }

    .card h3,
    .why-card h3,
    .project h3,
    .testimonial strong,
    .contact-card h3,
    .contact-form h3 {
      font-size: 22px;
      line-height: 1.25;
      margin-bottom: 10px;
    }

    .card p,
    .why-card p,
    .project p,
    .testimonial p,
    .contact-card p,
    .contact-form p {
      font-size: 15px;
      color: var(--text-soft);
    }

    .card ul,
    .contact-points {
      margin-top: 14px;
      padding-left: 18px;
      color: var(--text-soft);
      font-size: 14px;
    }

    .card ul li,
    .contact-points li {
      margin-bottom: 8px;
    }

    .two-col-grid {
      grid-template-columns: 1fr 1fr;
      margin-top: 34px;
    }

    .panel {
      padding: 30px;
    }

    .panel ul {
      padding-left: 18px;
      color: #2563eb;
      font-weight: 600;
    }

    .panel li {
      margin-bottom: 8px;
    }

    .process-grid {
      grid-template-columns: repeat(4, 1fr);
      margin-top: 38px;
    }

    .step-number {
      display: inline-block;
      margin-bottom: 14px;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.12em;
      color: #5d93d0;
    }

    .why-grid {
      grid-template-columns: repeat(4, 1fr);
      margin-top: 34px;
    }

    .why-card {
      padding: 26px;
    }

    .portfolio-grid {
      grid-template-columns: repeat(3, 1fr);
      margin-top: 36px;
    }

    .project {
      overflow: hidden;
    }

    .project-image {
      height: 200px;
      position: relative;
      overflow: hidden;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      padding: 0;
    }

    .project-frame {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: flex-end;
      padding: 24px;
      background: linear-gradient(to top, rgba(10, 17, 32, 0.22), rgba(10, 17, 32, 0.06));
    }

    .project-topbar {
      display: none;
    }

    .project-shot {
      width: 100%;
      height: 100%;
      position: relative;
      overflow: hidden;
      border-radius: 0;
      background: transparent;
    }

    .project-label {
      position: relative;
      left: auto;
      bottom: auto;
      right: auto;
      background: transparent;
      border-radius: 0;
      padding: 0;
      box-shadow: none;
      border: none;
      color: #081226;
    }

    .project-title-only {
      width: 100%;
      min-height: 100%;
      display: grid;
      place-items: center;
      text-align: center;
      font-size: 28px;
      font-weight: 800;
      line-height: 1.2;
      color: #081226;
      background: rgba(191, 219, 254, 0.72);
    }

    .project-content {
      padding: 22px;
    }

    .tags {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 14px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(255,255,255,0.8);
      border: 1px solid rgba(148,163,184,0.14);
      font-size: 12px;
      font-weight: 700;
      color: #627896;
    }

    .testimonial-grid {
      grid-template-columns: repeat(3, 1fr);
      margin-top: 36px;
    }

    .testimonial {
      padding: 26px;
    }

    .stars {
 
		    background: linear-gradient(45deg, #C9A227, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
      font-size: 18px;
      margin-bottom: 14px;
      letter-spacing: 2px;
    }

    .cta-box {
      padding: 42px;
      border-radius: 30px;
      background: linear-gradient(135deg, #2f66f5, #40a0ff);
      color: #fff;
      display: block;
      box-shadow: 0 24px 50px rgba(47, 102, 245, 0.24);
    }

    .cta-box p {
      color: rgba(255,255,255,0.86);
      max-width: 760px;
      margin-top: 10px;
      margin-bottom: 24px;
    }

    .cta-box .btn-secondary {
      background: #ffffff;
      color: #2563eb;
      font-weight: 700;
      padding: 14px 28px;
      border-color: rgba(255,255,255,0.8);
      box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
    }

    .cta-box .btn-secondary:hover {
      background: #eff6ff;
    }

    .contact-card,
    .contact-form {
      padding: 30px;
    }

    .contact-list {
      display: grid;
      gap: 16px;
      margin-top: 20px;
    }

    .contact-item {
      display: flex;
      gap: 14px;
      padding: 10px;
      border-radius: 18px;
      background: rgba(255,255,255,0.56);
      border: 1px solid rgb(9 28 55 / 12%);
    }

    .contact-icon {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: rgba(255, 140, 43, 0.14);
      color: var(--primary-dark);
      font-size: 18px;
      flex-shrink: 0;
    }

    form {
      display: grid;
      gap: 16px;
    }

    .form-row {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    input,
    select,
    textarea {
      width: 100%;
      border: 1px solid rgba(148,163,184,0.18);
      background: rgba(255,255,255,0.72);
      border-radius: 16px;
      padding: 14px 16px;
      font-size: 15px;
      color: var(--text);
      outline: none;
      transition: 0.25s ease;
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: rgba(47, 102, 245, 0.4);
      box-shadow: 0 0 0 4px rgba(64, 160, 255, 0.12);
      background: rgba(255,255,255,0.92);
    }

    textarea {
      min-height: 150px;
      resize: vertical;
    }

    footer {
      padding: 34px 0 28px;
       background: #0f172a;

    }

    .footer-grid {
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 16px;
      color: #66768d;
      font-size: 14px;
    }

    .footer-brand {
      text-align: left;
             color: #fff;
    }

    .footer-right {
      text-align: right;
             color: #fff;
    }

    @media (max-width: 1100px) {
      .services-grid,
      .why-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .highlight-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 980px) {
      .hero-shell,
      .about-grid,
      .two-col-grid,
      .contact-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .hero-visual {
        min-height: 480px;
      }

      .portfolio-grid,
      .testimonial-grid,
      .process-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .client-row {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 768px) {
      section {
        padding: 72px 0;
      }

      .menu-toggle {
        display: block;
      }

      .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 10px 4% 18px;
        background: rgba(255,255,255,0.94);
        backdrop-filter: blur(12px);
        border-top: 1px solid rgba(148,163,184,0.14);
      }

      .nav-links.show {
        display: flex;
      }

      .nav-links li,
      .nav-links a {
        width: 100%;
      }

      .nav-links a {
        padding: 12px 0;
      }

      .navbar .btn-primary {
        display: none;
      }

      .hero-copy,
      .hero-overlay-card,
      .card,
      .contact-card,
      .contact-form,
      .why-card,
      .info-card {
        padding: 22px;
      }

      .hero-stats,
      .highlight-grid,
      .services-grid,
      .why-grid,
      .portfolio-grid,
      .testimonial-grid,
      .process-grid,
      .form-row,
      .client-row,
      .hero-overlay-grid {
        grid-template-columns: 1fr;
      }

      .hero-visual {
        min-height: 420px;
      }

      .footer-right,
      .footer-brand {
        text-align: left;
      }
    }
    button.btn.btn-secondary.projects {
        margin-left: 20px;
        margin-bottom: 14px;
        margin-top: -8px;
		    border: 1px solid #d2d2d2;
    }
	
	
	
	/**************************************************/
	
	:root {
  --card: rgba(255, 255, 255, 0.9);
  --line: rgba(15, 23, 42, 0.1);
  --text: #162033;
  --muted: #5f6f87;
  --a: #f97316;
  --r: 24px;
  --w: 1280px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: Manrope, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: linear-gradient(
      rgba(248, 250, 252, 0.88),
      rgba(241, 245, 249, 0.94)
    ),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1600&q=80")
      center/cover fixed;
}
a {
  text-decoration: none;
  color: inherit;
}
.c {
  width: min(94%, var(--w));
  margin: auto;
}
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.navin {
  min-height: 74px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.links a {
  font-weight: 800;
  color: #64748b;
  transition: 0.3s ease;
}
.links a:hover {
  color: var(--text);
}
.logo,
h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.04em;
}
 
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid #d2d2d2;
  transition: 0.3s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(249, 115, 22, 0.18);
}
.pri {
  background: linear-gradient(135deg, var(--a), #fb923c);
  color: #fff;
}
.sec {
  background: rgba(255, 255, 255, 0.94);
  border-color: var(--line);
}
.hero {
  padding: 70px 0 34px;
}
.box,
.p {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
}
.box {
  padding: 25px;
}
.tag {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
     background: rgb(255 255 255 / 9%);
    border: 1px solid rgb(0 0 0 / 20%);
    color: #1327c8;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 18px;
}
.tag:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--a);
}
h1 {
  font-size: clamp(2rem, 5vw, 2rem);
  line-height: 1.05;
  margin-bottom: 20px;
}
.lead {
  font-size: 1.02rem;
  color: var(--muted);
  max-width: 760px;
}
.btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.secn {
  padding: 30px 0 90px;
  scroll-margin-top: 110px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.p {
  overflow: hidden;
}
.pv {
  min-height: 250px;
  padding: 20px;
  display: flex;
  align-items: end;
  position: relative;
  background-size: cover;
  background-position: center;
}
.pv:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(255, 255, 255, 0.14),
    rgba(22, 32, 51, 0.34)
  );
}
.badge,
.ui {
  position: relative;
  z-index: 1;
}
.badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 800;
}
.ui {
  width: 95%;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.1);
}
.pcon {
  padding: 24px;
}
.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}
.meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 12px;
}
.footer {
  padding: 28px 0 40px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(
    180deg,
    rgba(241, 245, 249, 0.92),
    rgba(248, 250, 252, 0.96)
  );
  color: #111827;
}
.foot {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: #111827;
}
@media (max-width: 1200px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 540px) {
  .btn {
    width: 100%;
  }
  .btns,
  .foot {
    flex-direction: column;
  }
  .links {
    display: none;
  }
}

.feedback-section {
  padding: 35px 20px;
  position: relative;
}

.feedback-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.feedback-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
}

.feedback-slider {
  overflow: hidden;
  width: 100%;
}

.feedback-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
  will-change: transform;
}

.feedback-card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(20, 35, 70, 0.08);
  min-height: 315px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  border-top: 4px solid #4d7cff;
}

.feedback-card:nth-child(2),
.feedback-card:nth-child(5) {
  border-top-color: #9b7bff;
}

.feedback-card:nth-child(3),
.feedback-card:nth-child(6) {
  border-top-color: #ff8b2b;
}

.stars {
  font-size: 22px;
  color: #c9a227;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.feedback-text {
  font-size: 17px;
  line-height: 1.8;
  color: #62708c;
  margin-bottom: 28px;
  flex-grow: 1;
}

.client-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.client-info h4 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 800;
  color: #17233c;
}

.client-info span {
  font-size: 16px;
  color: #6f7d98;
}

.client-media {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #edf1fb;
  background: #f8faff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #22345b;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
  flex-shrink: 0;
  transition: 0.3s ease;
}

.slider-btn:hover {
  background: #4d7cff;
  color: #fff;
  transform: translateY(-2px);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50px;
  background: #cfd6e4;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.slider-dots button.active {
  width: 28px;
  background: #ff4b3e;
}

@media (max-width: 991px) {
  .feedback-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}

@media (max-width: 767px) {
  .feedback-slider-wrapper {
    gap: 12px;
  }

  .feedback-card {
    flex: 0 0 100%;
    padding: 24px;
    min-height: auto;
  }

  .slider-btn {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
}
a.btn.btn-secondary.projects {
    margin: 0px 5px 15px 23px;
}
/*************Project details css*****************/
