:root {
  --ink: #17211d;
  --muted: #5f5b57;
  --line: #eaded7;
  --surface: #fff8f3;
  --white: #ffffff;
  --orange: #e94e1b;
  --orange-dark: #c72e1a;
  --orange-soft: #ffe9e1;
  --green: #10b981;
  --gold: #ff914c;
  --coral: #f97316;
  --shadow: 0 24px 70px rgba(233, 78, 27, 0.12);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(234, 222, 215, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 250px;
}

.brand-logo {
  width: 76px;
  height: 52px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.2;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  color: #33413b;
  font-size: 0.94rem;
  font-weight: 650;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--orange);
}

.nav-cta {
  padding: 10px 16px;
  color: var(--white);
  background: var(--orange);
  border-radius: 8px;
}

.nav-cta:hover {
  color: var(--white) !important;
  background: var(--orange-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(56px, 8vw, 104px) clamp(18px, 6vw, 88px) clamp(36px, 5vw, 72px);
  background:
    linear-gradient(to right, var(--orange-soft), var(--white));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 5.6vw, 5.45rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.highlight {
  color: var(--orange);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.4vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
  line-height: 1.25;
}

.hero-lede {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.6vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: var(--orange);
}

.button.primary:hover {
  background: var(--orange-dark);
}

.button.secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-stats span {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(234, 222, 215, 0.96);
  border-radius: 8px;
}

.hero-stats strong {
  color: var(--ink);
}

.hero-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-media::after {
  position: absolute;
  inset: auto 22px 22px 22px;
  padding: 18px;
  color: var(--white);
  background: rgba(23, 33, 29, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  content: "Digital systems, AI workflows, and training programs for modern teams.";
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 760;
  backdrop-filter: blur(12px);
}

.hero-media img {
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.trust-band {
  padding: 20px clamp(18px, 6vw, 88px);
  color: var(--white);
  background: var(--orange);
}

.trust-band p {
  max-width: 1120px;
  margin: 0 auto;
  font-weight: 650;
  text-align: center;
}

.section {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 6vw, 88px);
}

.section-heading {
  max-width: 930px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading.narrow {
  max-width: 850px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.08rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 42px rgba(23, 33, 29, 0.06);
}

.service-card p {
  color: var(--muted);
}

.service-card ul {
  margin: auto 0 0;
  padding-left: 18px;
  color: #384741;
}

.service-card li + li {
  margin-top: 8px;
}

.icon {
  display: block;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), transparent 26%),
    var(--orange);
}

.icon.software {
  background-color: var(--orange);
}

.icon.ai {
  background-color: var(--green);
}

.icon.workshop {
  background-color: var(--gold);
}

.icon.content {
  background-color: var(--coral);
}

.icon.training {
  background-color: #496b9a;
}

.icon.maintenance {
  background-color: #6b5b95;
}

.split {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  background: var(--white);
}

.image-panel {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-panel img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.split-copy {
  max-width: 680px;
}

.split-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.steps {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.steps div {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.steps strong {
  color: var(--orange);
  font-size: 1.1rem;
}

.workshop-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background:
    linear-gradient(rgba(23, 33, 29, 0.76), rgba(233, 78, 27, 0.72)),
    url("https://images.unsplash.com/photo-1524178232363-1fb2b075b655?auto=format&fit=crop&w=1400&q=82") center/cover;
  color: var(--white);
}

.workshop-feature .eyebrow,
.workshop-feature p {
  color: rgba(255, 255, 255, 0.78);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.feature-list span {
  min-height: 72px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-weight: 760;
  backdrop-filter: blur(10px);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1050px;
  margin: 38px auto 0;
}

.values-grid article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.values-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 520px);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
  padding: clamp(64px, 9vw, 116px) clamp(18px, 6vw, 88px);
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), #0f172a);
}

.cta-section .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: #31413a;
  font-size: 0.9rem;
  font-weight: 750;
}
/* ---------------------------------------------------------- */
.contact-cards {
  display: flex;
  gap: 16px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.contact-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 24px 16px;
  flex: 1 1 160px;
  text-align: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #ffe8dd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.contact-card h3 {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 6px;
}

.contact-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

/* ============================= */
input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #f7faf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 28px;
  padding: 40px clamp(18px, 6vw, 88px);
  color: rgba(255, 255, 255, 0.76);
  background: #111111;
}

.footer-brand {
  color: var(--white);
}

.site-footer p {
  max-width: 560px;
  margin: 18px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
  color: var(--white);
  font-weight: 720;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .hero,
  .split,
  .workshop-feature,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-media,
  .hero-media img {
    min-height: 380px;
  }

  .service-grid,
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 62px;
    height: 42px;
  }

  .brand small {
    display: none;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.5rem);
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 2.7rem);
  }

  .hero-actions,
  .hero-stats {
    flex-direction: column;
  }

  .button,
  .hero-stats span {
    width: 100%;
  }

  .hero-media::after {
    right: 12px;
    bottom: 12px;
    left: 12px;
    font-size: 0.96rem;
  }

  .service-grid,
  .feature-list,
  .values-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
/* ------------------------------Contact Us--------------------------------------------------- */

/* 
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f7f7f7;
    color:#111;
} */

.container{
    width:90%;
    max-width:1200px;
    margin:0 auto;
    padding:30px 0 60px;
}

/* Heading */

.heading-box{

    background:linear-gradient(135deg, var(--orange), #0f172a);
    padding:28px 35px;
    border-radius:4px;
    margin-bottom:35px;
}

.heading-box h1{
color:#fff;
    font-size:42px;
    font-weight:800;
    margin-bottom:10px;
}

.heading-box p{

    width:60%;
    font-size:15px;
    color:#ffffff;
    line-height:1.7;
}

/* Form */

.contact-form{

    max-width:760px;
    margin:0 auto 60px;
    background:#f6cbbd;
    padding:35px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.form-group{

    margin-bottom:24px;
}

.form-group label{
    display:inline-flex;
    align-items:center;
    gap:4px;
    margin-bottom:8px;
    font-size:15px;
    font-weight:600;
}

.required{
    color:red;
    display:inline;
    font-size:16px;
    line-height:1;
}

label span{

    color:red;
}

input,
textarea{

    width:100%;
    border:none;
    outline:none;
    background:#fff;
    border-radius:6px;
    padding:16px 18px;
    font-size:14px;
}

textarea{

    height:140px;
    resize:none;
}

.btn{

    width:100%;
    height:55px;
    border:none;
    background:#072f3e;
    color:#fff;
    font-size:16px;
    font-weight:600;
    border-radius:3px;
    cursor:pointer;
    transition:.3s;
}

.btn i{

    margin-left:8px;
}

.btn:hover{

    background:#0b4155;
}

/* Title */

.contact-title{

    text-align:center;
    font-size:25px;
    font-weight:800;
    margin-bottom:35px;
}

/* Cards */

.contact-info{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.card{

    background:#fff;
    text-align:center;
    padding:40px 20px;
    box-shadow:0 8px 25px rgba(0,0,0,.10);
}

.icon{

    width:58px;
    height:58px;
    background:#fdece5;
    margin:auto;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:20px;
}

.icon i{

    color:#082d3d;
    font-size:22px;
}

.card h3{

    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
}

.card p{

    color:#555;
    font-size:15px;
}

/* Responsive */

@media(max-width:992px){

.heading-box p{

    width:100%;
}

.contact-info{

    grid-template-columns:1fr;
}

.contact-form{

    width:100%;
}

}

@media(max-width:768px){

.heading-box{

    padding:25px;
}

.heading-box h1{

    font-size:34px;
}

.contact-title{

    font-size:32px;
}

.contact-form{

    padding:25px;
}

}

@media(max-width:576px){

.container{

    width:92%;
}

.heading-box h1{

    font-size:30px;
}

.contact-title{

    font-size:28px;
}

.btn{

    height:50px;
}

}













