/* ===== BASE ===== */
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #e6b3a8, #bfc6ff);
  padding: 20px 0 100px;
  position: relative;
  overflow: hidden;
}

/* ===== NAVBAR ===== */
.nav-wrapper {
  max-width: 1200px;
  margin: auto;
}

.custom-nav {
  background: #fff;
  border-radius: 50px;
  padding: 5px 15px;

  border: 2px solid transparent;
  background-image: linear-gradient(#fff, #fff),
                    linear-gradient(90deg, orange, blue);
  background-origin: border-box;
  background-clip: padding-box, border-box;

  display: flex;
  align-items: center;
}
.header-logo{
  width: 200px;
}
.nav-center {
flex: 1;
  display: flex;
  justify-content: end;
  gap: 40px;
  margin-right: 30px;
}

.nav-center a {
  text-decoration: none;
  color: #333;
}

/* ===== HERO TEXT ===== */
.hero-content {
  text-align: center;
  margin-top: 80px;
}

.hero h1 {
  font-size: 64px;
  font-weight: 800;
}

.hero p {
  max-width: 650px;
  margin: 20px auto;
  color: #555;
}

/* BUTTON */
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 26px;
  border-radius: 40px;
  border: 2px solid transparent;

  background-image: linear-gradient(#fff, #fff),
                    linear-gradient(90deg, #ff9900, #4a5cff, #ff9900);
  background-origin: border-box;
  background-clip: padding-box, border-box;

  background-size: 100% 100%, 200% 100%; /* important */

  font-weight: 500;
  transition: 0.3s;
}

/* 🔥 HOVER = GRADIENT MOVE */
.hero-btn:hover {
  animation: borderMove 2s linear infinite;
}

/* ANIMATION */
@keyframes borderMove {
  0% {
    background-position: 0% 0, 0% 0;
  }
  100% {
    background-position: 0% 0, 200% 0;
  }
}

/* ARROW */
.arrow-icon svg {
  display: block;
  transition: 0.3s;
}

.hero-btn:hover .arrow-icon svg {
  transform: translateX(4px);
}

/* ===== TAG BASE ===== */
.tag {
  position: absolute;
}

/* CLICKABLE AREA */
.tag a {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 10px 18px;
  border-radius: 40px;

  font-size: 14px;
  font-weight: 500;
  color: #333;

  text-decoration: none;

  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);

  transition: all 0.3s ease;
}

/* SVG ARROW */
.tag img {
  width: 18px;
  transition: transform 0.3s ease;
}

/* 🔥 HOVER EFFECT */
.tag a:hover {
  background: #000;
  color: #fff;
}

.tag a:hover img {
  transform: translateX(4px);
  filter: invert(1);
}
.vector-align{
  position: absolute;
  right: 0;
  top: 30px;
  width: 20px;
}
/* ===== POSITIONS (keep yours) ===== */
.tag1 { top: 160px; left: 120px; }
.tag2 { top: 160px; right: 120px; }
.tag3 { bottom: 200px; left: 140px; }
.tag4 { bottom: 180px; right: 140px; }

/* ===== CLIENT SHAPE (KEY PART) ===== */
.client-shape {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 140px;

  /* 🔥 GRADIENT + GREY SPLIT */
  background: linear-gradient(135deg, #e6b3a8 0%, #bfc6ff 40%, #efefef 40%);

  /* 🔥 ANGLED CUT */
  clip-path: polygon(
    0 65%,
    35% 55%,
    100% 55%,
    100% 100%,
    0 100%
  );
}

/* ===== CLIENT CONTENT ===== */
.client-content {
  background: #efefef;
  padding: 25px 40px;
}

.client-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.client-logos img {
  height: 34px;
  margin-left: 30px;
}
/* ===== WRAPPER ===== */
.bottom-wrapper {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 140px;

  display: flex;
}

/* ===== LEFT GRADIENT ===== */
.bottom-left {
  width: 42%;   /* slight increase for better match */
  background: linear-gradient(135deg, #e6b3a8, #bfc6ff);

  display: flex;
  align-items: center;
  justify-content: center;
}

/* TEXT */
.bottom-text {
  font-size: 16px;
  color: #222;
}

/* ===== WHITE CUT (KEY FIX) ===== */

/* ===== RIGHT GREY ===== */
.bottom-wrapper {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 130px;
}

/* 🔥 ONE CONTINUOUS GRADIENT */
.bottom-gradient {
  position: absolute;
  inset: 0;

  background: linear-gradient(135deg, #e6b3a8, #bfc6ff);

  display: flex;
  align-items: center;
  padding-left: 60px;

  font-size: 16px;
  color: #111;

  z-index: 1;
}

/* 🔥 GREY CUT OVERLAY (NO SEAM) */
.bottom-grey {
  position: absolute;
  inset: 0;

  background: #efefef;

  display: flex;
  align-items: center;
  justify-content: flex-end;

  padding-right: 60px;

  /* 🔥 PERFECT FIGMA ANGLE */
  clip-path: polygon(
    42% 0,
    100% 0,
    100% 100%,
    30% 100%
  );

  z-index: 2;
}

/* LOGOS */
.logos img {
  height: 38px;
  margin-left: 30px;
}
/* LOGOS */
.logos img {
  height: 36px;
  margin: 0 20px;
}
/* ===== WRAPPER ===== */
.about-wrapper {
  background: #fff;
  padding: 60px 0;
}

/* ===== MAIN BOX ===== */
.about-box {
  background: #fff;
  padding: 40px;
  border-radius: 25px;

  /* 🔥 special corner feel */
  position: relative;
}

/* ===== BADGE ===== */
.about-badge {
  display: inline-block;
  background: #dbe3e8;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 15px;
  color: #000;
}


/* ===== TITLE ===== */
.about-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* ===== TEXT ===== */
.about-text {
  color: #666;
  line-height: 1.6;
}

/* ===== IMAGE ===== */
.about-img {
  width: 100%;
  max-width: 420px;
  border-radius: 25px;
}

/* ===== AVATAR GROUP ===== */
.avatar-group {
  position: absolute;
bottom: 17px;
  right: 90px;
  display: flex;
}

.avatar-group img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid #fff;
  margin-left: -10px;
}
/* WRAPPER */
.stats-wrapper {
  margin-top: 50px;
}

/* MAIN BOX */
.stats-box {
  background: #1f5b84;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 40px 30px;

  /* 🔥 EXACT FIGMA SHAPE */
  clip-path: polygon(
    60px 0,        /* left top slant */
    100% 0,
    100% calc(100% - 70px), /* right bottom slant */
    calc(100% - 70px) 100%,
    0 100%,
    0 70px
  );

  border-radius: 25px;
}

/* STAT */
.stat {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}

.stat h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat p {
  font-size: 18px;
  opacity: 0.9;
}

/* DIVIDER */
.divider {
  width: 1px;
  height: 70px;
  background: rgba(255,255,255,0.4);
}
/* SECTION */
.services {
  background: #f5f7fa;
  padding: 100px 0;
  position: relative;
}

/* CENTER BUTTON */
.center-circle {
  width: 90px;
  height: 90px;
  background: #1f5b84;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 10px #fff;
}

/* HEADER */
.services-header .badge {
  background: #dbe3e8;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 10px;
}

.services-header h2 {
  font-size: 36px;
  margin-bottom: 50px;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.card {
  background: #e3ebf1;
  padding: 18px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
}

/* IMAGE */
.card-img {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #e3ebf1;
}

.card-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 18px;
}

/* 🔥 TOP LEFT CUT (CLEAN FIGMA STYLE) */
.cut-top-left {
  position: absolute;
top: 16px;
  left: 7px;

  width: 55px;
  height: 55px;

  background: #e3ebf1;
  border-bottom-right-radius: 20px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.cut-top-left i {
  font-size: 16px;
  color: #333;
  font-size: 20px;
}

/* 🔥 ARROW BUTTON */
.cut-bottom-right {
  position: absolute;
bottom: 7px;
  right: 20px;

  width: 42px;
  height: 42px;

  background: #1f5b84;
  color: #fff;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 16px;
  transition: 0.3s;
}

.card:hover .cut-bottom-right {
  transform: translateX(4px);
}

/* TEXT */
.card p {
  margin-top: 12px;
  font-size: 20px;
  font-weight: 500;
}

/* SECTION */
.portfolio-section {
  background: #fff;
  padding: 90px 0;
}

/* HEADER */
.pf-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

/* BADGE */
.pf-badge {
  display: inline-block;
  background: #dbe3e8;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
}

/* TITLE */
.pf-title {
  font-size: 40px;
  font-weight: 600;
  margin-top: 15px;
  line-height: 1.3;
}

/* ARROWS */
.pf-arrows {
  display: flex;
  gap: 12px;
}

.pf-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: transparent;
  font-size: 18px;
  transition: 0.3s;
}

.pf-arrow:hover {
  background: #000;
  color: #fff;
}

/* CARD */
.pf-card {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
}

/* IMAGE */
.pf-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 25px;
}

/* 🔥 TAG BAR (FIGMA STYLE CUT) */
/* 🔥 TAG BAR RIGHT SIDE (FIGMA STYLE) */
.pf-tags {
position: absolute;
  top: 0;
  right: 0;
  background: #fff;
  padding: 20px 30px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
border-top-left-radius: 1px;
  border-bottom-left-radius: 70px;
  z-index: 2;
}

/* 🔥 CUT NOTCH (RIGHT SIDE) */
.pf-tags::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;

  width: 20px;
  height: 20px;

  background: #fff;

  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

/* OVERLAY */
.pf-overlay {
  position: absolute;
  bottom: 25px;
  left: 25px;
  z-index: 2;
  color: #fff;
}

.pf-overlay h4 {
  font-size: 24px;
  font-weight: 500;
}

/* SOFT OVERLAY */
.pf-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.45), transparent);
}

/* DOTS */
.owl-dots {
  margin-top: 25px;
  text-align: center;
}

.owl-dot span {
  width: 8px;
  height: 8px;
  background: #ccc;
  display: block;
  border-radius: 50%;
  margin: 0 4px;
}

.owl-dot.active span {
  background: #1f5b84;
}
.testimonial-section {
  background: #f5f7fa;
  padding: 80px 0;
}

/* quote */
.quote {
  font-size: 60px;
  color: #ddd;
}

/* text */
.testi-text {
  font-size: 18px;
  margin: 20px 0;
  color: #333;
}

/* arrows */
.circle-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: #fff;
  margin-right: 8px;
}

/* image box */
.testi-img {
  border-radius: 25px;
  overflow: hidden;
  position: relative;
}

/* angled cut */
.testi-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  background: #f5f7fa;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 2;
}

.testi-img img {
  width: 100%;
  border-radius: 25px;
}
.contact-section {
  padding: 80px 0;
  background: #fff;
}

/* badge */
.badge {
display: inline-block;
  background: #dbe3e8;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 15px;
  color: #000;
}

/* title */
.contact-title {
  font-size: 32px;
  margin: 15px 0;
}

/* text */
.contact-text {
  color: #666;
}

/* info */
.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.icon {
  width: 35px;
  height: 35px;
  background: #1f5b84;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

/* form */
.contact-form {
  background: #dbe3e8;
  padding: 25px;
  border-radius: 20px;
}

/* inputs */
.form-control {
  border-radius: 10px;
  border: none;
  padding: 10px;
}

/* button */
.submit-btn {
  width: 100%;
  padding: 12px;
  background: #1f5b84;
  color: #fff;
  border: none;
  border-radius: 10px;
}
/* FOOTER */
.footer {
  background: #f5f7fa;
  padding: 60px 0 20px;
}

/* LOGO */
.footer-logo {
  width: 180px;
}

/* ADDRESS */
.footer-address {
  color: #444;
  line-height: 1.6;
}

/* TITLE */
.footer-title {
  font-size: 18px;
  margin-bottom: 15px;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
  color: #444;
  cursor: pointer;
}

/* SOCIAL */
.social-icons a {
  width: 40px;
  height: 40px;
  background: #1f5b84;
  color: #fff;

  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-right: 10px;
  text-decoration: none;
}

/* BOTTOM */
.footer-bottom {
  margin-top: 40px;
  font-size: 14px;
  color: #777;
  text-align: center;
}

/*Animations*/
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-down {
  opacity: 0;
  transform: translateY(-40px);
  transition: all 0.8s ease;
}

.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s ease;
}

.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s ease;
}

/* ACTIVE STATE */
.show {
  opacity: 1;
  transform: translate(0);
}
.footer-links li a{
  color: #444;
  text-decoration: none;
}
.bottom-grey {
  background: #efefef;
  padding: 20px 0;
  overflow: hidden;
}

/* SLIDER */
.logo-slider {
  overflow: hidden;
  position: relative;
}

/* TRACK (MOVES) */
.logo-track {
  display: flex;
  width: calc(200px * 4); /* adjust based on logos */
  animation: scroll 15s linear infinite;
}

/* LOGOS */
.logo-track img {
  height: 40px;
  margin: 0 40px;
  opacity: 0.8;
  transition: 0.3s;
}

.logo-track img:hover {
  opacity: 1;
}

/* ANIMATION */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}







