* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body,a {
  font-family: "IBM Plex Sans", sans-serif;
  letter-spacing: .3px;
  font-weight: 500;
  
}
@font-face {
   font-family: "IBM Plex Sans", sans-serif;
  src: url("assets/fonts/IBMPlexSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
   font-family: "IBM Plex Sans Medium", sans-serif;
  src: url("assets/fonts/IBMPlexSans_Condensed-Medium.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-primary: #0f62fe;  
  --color-primary-hover: #0043ce;
  --color-secondry: #333;
  --color-white:#fff;

}
.page-bg {
  position: fixed;
  inset: 0;
  background-image: url('/assets/images/bg-tech-solutions-digit-build.webp');
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: contain;
  opacity: 0.25; /* adjust as needed */
  z-index: 1;
  pointer-events: none;
}
body {
  position: relative;
  z-index: 0;
}
.header {
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  padding-top: 10px;
  padding-bottom: 10px;
  justify-content: space-between
}

.container, .flex-container
{
  width: 100%;
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
}
.flex-container
{
  display: flex;
}

.logo {
  font-weight: 600;
  font-size: 22px;
  margin-right: 40px;
}
.logo span
{
  color: var(--color-primary);
  font-weight: 900;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
}

.nav {
  flex: 1;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-item {
  position: relative;
}

.nav-item a {
  text-decoration: none;
  color: #161616;
  font-size: 16px;
  padding: 8px 4px;
  display: flex;
  align-items: center;
  gap: 4px;
   font-family: "IBM Plex Sans Medium", sans-serif;
  font-weight: 500;
}

.nav-item:hover > a {
  color: #0f62fe;
}

.nav-item.active > a {
  border-bottom: 2px solid #0f62fe;
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100vw;
  background: #ffffff;
  padding: 32px;
  display: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.has-mega:hover .mega-menu {
  display: flex;
}

.mega-column {
  flex: 1;
  padding: 0 20px;
}

.mega-column h4 {
  margin-bottom: 12px;
  color: #161616;
}

.mega-column a {
  display: block;
  text-decoration: none;
  color: #4d4d4d;
  padding: 4px 0;
}

.mega-column a:hover {
  color: #0f62fe;
}

/* Right Icons */
.icons {
  display: flex;
  gap: 12px;
  font-size: 16px;
  cursor: pointer;
  align-items: end;
}

/* Mobile */
@media (max-width: 992px) {
  .menu-toggle {
    display: block;
    margin-left: auto;
  }
.icons {
  display: flex;
  display: none;
}
  .nav {
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: #ffffff;
    display: none;
    border-top: 1px solid #e0e0e0;
  }

  .nav.open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .mega-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    padding: 16px 0;
    display: none;
  }

  .has-mega.open .mega-menu {
    display: block;
  }
}
.section-padding
{
  padding-top:70px;
  padding-bottom: 70px;
}
.flex-container-center
{
  align-items: center;
  justify-content: space-between;
}

/* home page */
/* home banner */
/* HERO SECTION */
.hero {
  background-image: url('/assets/images/intro-banner.png');
  background-size: cover;
  background-position: center;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

/* CONTAINER */
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* CONTENT */
.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-content p {
  font-size: 16px;
  max-width: 480px;
  margin-bottom: 24px;
  color: #444;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 24px;
  text-decoration: none;
  font-size: 14px;
  border-radius: 4px;
  transition: 0.3s ease;
}

.btn-primary {
  background: #0f62fe;
  color: #fff;
}

.btn-primary:hover {
  background: #0353e9;
}

.btn-secondary {
  color: #0f62fe;
  border: 1px solid #0f62fe;
}

.btn-secondary:hover {
  background: #e7f1ff;
}

/* VIDEO */
.hero-video {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-video video {
  width: 100%;
  max-width: 680px;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero {
    min-height: auto;
    padding: 60px 0;
  }

  .hero-video video {
    max-width: 100%;
  }
}
/* about */
/* ABOUT SECTION */
.hme-abt {
  background: #fff;
  padding: 80px 20px;
}

/* MAIN CONTAINER */
.abt-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 60px;
}

/* LEFT HEADING */
.sec-hd h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.1;
}

/* RIGHT GRID */
.abt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CONTENT BLOCK */
.abt-content h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.abt-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 14px;
}

/* LINK STYLE */
.lnk-btn {
  font-size: 14px;
  color: #0f62fe;
  text-decoration: none;
  font-weight: 500;
}

.lnk-btn:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .abt-container {
    grid-template-columns: 1fr;
  }

  .abt-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .abt-grid {
    grid-template-columns: 1fr;
  }

  .sec-hd h2 {
    margin-bottom: 20px;
  }
}
.crer-ser, .outer-container {
  padding: 80px 20px;
  background: #fff;
}

.crer-container, .inner-container {
  max-width: 1200px;
  margin: 0 auto;
}

.hme-crer-serv {
  max-width: 720px;
  margin-bottom: 48px;
}

.hme-crer-serv h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  margin-bottom: 12px;
}

.descrpshn {
  font-size: 15px;
  color: #444;
}

/* GRID */
.crer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #e0e0e0;
  border-left: 1px solid #e0e0e0;
}
/* CARD */
.crer-box {
  padding: 28px 24px;
  border-right: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  text-decoration: none;
  color: inherit;
  min-height: 190px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  transition: background 0.3s ease;
}

/* ICON */
.crer-box i {
  font-size: 22px;
  color: #0f62fe;
  margin-bottom: 14px;
}

/* TEXT */
.crer-box h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-primary);
}

.crer-box p {
  font-size: 14px;
  line-height: 1.5;
  color: #444;
  flex-grow: 1;
}

/* ARROW */
.crer-box .arrow {
  align-self: flex-end;
  font-size: 18px;
  color: #0f62fe;
  transition: transform 0.3s ease;
}

/* HOVER EFFECT (NOW WORKS) */
.crer-box:hover {
  background: #f4f7fb;
}

.crer-box:hover .arrow {
  transform: translateX(6px);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .crer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .crer-grid {
    grid-template-columns: 1fr;
  }
}
/* technolog section */
.tech-serv {
  padding: 90px 20px;
}

.tech-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2.8fr;
  gap: 60px;
  align-items: start;
}

/* LEFT */
.tech-left h2 {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 400;
  margin-bottom: 16px;
}

.tech-left p {
  font-size: 15px;
  color: #444;
  margin-bottom: 24px;
  max-width: 420px;
}

.tech-btn {
  font-size: 14px;
  color: #0f62fe;
  text-decoration: none;
  font-weight: 500;
}

.tech-btn:hover {
  text-decoration: underline;
}

/* GRID */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #e0e0e0;
  border-left: 1px solid #e0e0e0;
}

/* BOX */
.tech-box {
  position: relative;
  padding: 28px 24px;
  min-height: 180px;
  border-right: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  text-decoration: none;
  color: #000;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  overflow: hidden;
  transition: color 0.3s ease;
}

/* ICON */
.tech-box i {
  font-size: 22px;
  color: #0f62fe;
  margin-bottom: 14px;
}

/* TITLE */
.tech-box h4 {
  font-size: 15px;
  font-weight: 600;
  z-index: 2;
}

/* HOVER DESCRIPTION */
.tech-box .hover-text {
  position: absolute;
  inset: 0;
  padding: 28px 24px;
  font-size: 14px;
  line-height: 1.5;
  color: #fff;

  background: linear-gradient(
    135deg,
    #0f62fe 0%,
    #002d9c 100%
  );

  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;

  display: flex;
  align-items: flex-end;
}

/* HOVER EFFECT (IBM STYLE) */
.tech-box:hover .hover-text {
  opacity: 1;
  transform: translateY(0);
}

.tech-box:hover {
  color: #fff;
}

.tech-box:hover i,
.tech-box:hover h4 {
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .tech-container {
    grid-template-columns: 1fr;
  }

  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .tech-grid {
    grid-template-columns: 1fr;
  }
}
/* why choose us */
.why-choose {
  padding: 80px 5%;
}

.why-container {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.why-left, .why-right {
  width: 50%;
}

/* INTRO */
.why-intro h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.why-intro p {
  color: #555;
  margin-bottom: 30px;
}

/* ACCORDION */
.why-item {
  border-top: 1px solid #ddd;
  padding: 18px 0;
  cursor: pointer;
}

.why-title {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.why-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: #444;
  font-size: 14px;
  margin-top: 10px;
}

.why-item.active .why-content {
  max-height: 120px;
}

/* RIGHT IMAGES */
.why-right {
  position: relative;
}

.why-img {
  display: none;
  width: 100%;
  border-radius: 10px;
}

.why-img.active {
  display: block;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .why-container {
    flex-direction: column;
  }
  .why-left, .why-right {
    width: 100%;
  }
}
/* counter with happy cleints */
.counter-sec {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0b1c3f, #0a2a6b);
  color: #fff;
}

.counter-wrap {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.counter-box {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.counter-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.counter-box i {
  font-size: 42px;
  margin-bottom: 15px;
  color: var(--color-primary);
}

.counter-box h3 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 8px;
}

.counter-box p {
  font-size: 16px;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 991px) {
  .counter-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .counter-wrap {
    grid-template-columns: 1fr;
  }
}

/* testimonials */
.testimonial-sec {
  padding: 90px 20px;
  background: #eaf5ef;
}

.testimonial-head {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px;
}

.testimonial-head h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.testimonial-head p {
  color: #555;
}

.testimonial-carousel {
  overflow: hidden;
  max-width: 1100px;
  margin: auto;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s ease;
}

.testimonial-card {
  min-width: calc(50% - 15px);
  background: #fff;
  padding: 50px 40px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 18px;
}

.testimonial-card h4 {
  color: var(--color-primary);
  font-weight: 600;
}

.quote {
  position: absolute;
  font-size: 70px;
  color: #638cdd5e;
  font-weight: bold;
}

.quote-top {
  top: 15px;
  left: 20px;
}

.quote-bottom {
  bottom: 15px;
  right: 20px;
}

/* Mobile */
@media (max-width: 768px) {
  .testimonial-card {
    min-width: 100%;
  }
}
/* cta */
/* ================= CTA SECTION ================= */

.cta-sec {
  padding: 70px 20px;
}

.cta-wrap {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 14px;
  color: var(--color-secondry);
}

.cta-content p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 26px;
  color: var(--color-secondry);
}

.cta-btn {
  background: var(--color-primary);
  padding: 13px 30px;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

.cta-btn:hover {
  background: var(--color-primary-hover);
}

.cta-subscribe {
  background: var(--color-primary-hover);
  padding: 30px;
  border-radius: 14px;
}

.cta-subscribe h4 {
  font-size: 20px;
  margin-bottom: 6px;
  color: var(--color-white);
}

.cta-subscribe p {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 18px;
  color: var(--color-white);
}

.cta-form {
  display: flex;
  gap: 10px;
}

.cta-form input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 30px;
  border: none;
  outline: none;
  font-size: 14px;
}

.cta-form button {
  background: var(--color-primary);
  border: none;
  padding: 12px 22px;
  border-radius: 30px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.cta-form button:hover {
  background: var(--color-primary-hover);
}

/* ================= FOOTER ================= */

.site-footer {
  background: var(--color-primary-hover);
  color: var(--color-white);
  padding: 70px 20px 20px;
}

.footer-wrap {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
}

.footer-logo {
  color: #fff;
  font-size: 22px;
  margin-bottom: 12px;
}

.footer-col h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 14px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.85;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #cfd8e3;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--color-primary-hover);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 13px;
  opacity: 0.7;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .cta-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-form {
    flex-direction: column;
  }

  .footer-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* career page */
.scrl-img {
    width: 400px;           /* Adjust as needed */
    height: 400px;
    overflow: hidden;
    margin: 0 auto;
    border:1px solid #f4f4f4;
    border-radius:5px;
    box-shadow:2px 0px 5px rgba(0, 0, 0, 0.1);
    padding: 2px;
}

.scrl-img img {
    width: 100%;
    animation: floatUpDown 2s ease-in-out infinite alternate;
}

@keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-40px);
    }
}
.career-bnr
{
  background: linear-gradient(to left, #e3e9edc0 10%, #F8F9FA 100%);
}
.career-hero
{
  align-items:center;
}
.overview-content
{
  width: 100%;
  max-width: 65%;
  text-align:center;
  margin:auto;
}
.cta-career
{
  background-color: #F8F9FA;
}
.overview-content p
{
  padding:20px 0 30px;
}

/* tabs */
.tech-tabs-section {
  padding: 80px 0;
}

.tech-tabs {
  display: flex;
  gap: 50px;
  margin-top: 40px;
}

/* LEFT MENU */
.tabs-menu {
  display: flex;
  flex-direction: column;
  min-width: 240px;
  border-right: 1px solid #e2e8f0;
}

.tab-btn {
  padding: 16px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 15px;
  transition: 0.3s ease;
  border-left: 3px solid transparent;
  color: #475569;
}

.tab-btn:hover {
  background: #f1f5f9;
}

.tab-btn.active {
  border-left: 3px solid #2563eb;
  color: #2563eb;
  font-weight: 600;
  background: #f8fafc;
}

/* RIGHT CONTENT */
.tabs-content {
  flex: 1;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-inner {
  display: flex;
  gap: 40px;
  align-items: center;
}

.tab-text h3 {
  margin-bottom: 15px;
}

.tab-text p {
  color: #64748b;
  margin-bottom: 15px;
}

.tab-text ul {
  margin-bottom: 20px;
  padding-left: 18px;
}

.tab-text ul li {
  margin-bottom: 6px;
  color: #475569;
}

.tech-btn {
  padding: 10px 22px;
  background: #2563eb;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
}

.tech-btn:hover {
  background: #1e40af;
}
.tech-img img
{
  border: 1px solid #f4f4f4;
  border-radius: 5px;
}
/* IMAGE */
.tab-image img {
  width: 380px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(37,99,235,0.1);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .tech-tabs {
    flex-direction: column;
  }

  .tabs-menu {
    flex-direction: row;
    overflow-x: auto;
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
  }

  .tab-btn {
    min-width: 160px;
    border-left: none;
    border-bottom: 3px solid transparent;
  }

  .tab-btn.active {
    border-bottom: 3px solid #2563eb;
  }

  .tab-inner {
    flex-direction: column;
  }

  .tab-image img {
    width: 100%;
  }
}
