@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;700&family=Dancing+Script&family=Exo&family=Inspiration&family=Nunito+Sans:wght@200;400&family=Oswald&family=Poppins&family=Quicksand&family=Recursive&family=Titillium+Web&family=Work+Sans&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;700&family=Dancing+Script&family=Exo&family=Inspiration&family=Inter&family=Nunito+Sans:wght@200;400&family=Oswald&family=Poppins&family=Quicksand&family=Recursive&family=Titillium+Web&family=Work+Sans&display=swap");

:root {
  --primary-blue: #0C2C5E;
  --teal: #2DB5AA;
  --accent-cyan: #34E0C4;
  --text-primary: #0B1A34;
  --text-secondary: #334155;
  --background: #F8FAFC;
  --gradient: linear-gradient(135deg, #0C2C5E, #2DB5AA);
}

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

body {
  background-color: var(--background);
  color: var(--text-primary);
  overflow-x: hidden;
}
/* ---------------- Global Colors ---------------- */
:root {
  --navy: #0b1026;
  --mid-blue: #132044;
  --cyan: #3ee2c4;
  --cyan-light: #54f5d6;
  --text-light: #eaf4ff;
  --gradient: linear-gradient(135deg, var(--navy), var(--mid-blue));
}

/* ---------------- Navbar ---------------- */
.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 2.5rem;
  background: var(--gradient);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  position: sticky;
  top: 0;
  z-index: 200;
  transition: background 0.3s ease, padding 0.3s ease;
}

/* ---------------- Logo ---------------- */
.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  width: 80px;
  border-radius: 12px;
  background: #fff;
  padding: 6px;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

/* ---------------- Nav Items ---------------- */
.nav-items ul {
  display: flex;
  list-style: none;
  gap: 2.2rem;
}

.nav-items a {
  color: var(--text-light);
  font-weight: 500;
  text-decoration: none;
  padding: 0.5rem 0.9rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.nav-items a:hover {
  background: var(--cyan);
  color: #000;
  box-shadow: 0 4px 14px rgba(62, 226, 196, 0.4);
}

/* ---------------- Contact Button ---------------- */
.nav-button {
  display: block !important;
}

.nav-button button {
  background: var(--cyan);
  color: #000;
  font-weight: 600;
  padding: 0.65rem 1.6rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-button button:hover {
  background: var(--cyan-light);
  transform: translateY(-2px);
}

/* ---------------- Hamburger ---------------- */
.ham {
  display: none;
  cursor: pointer;
}

.hamburger,
.closed-hamburger {
  font-size: 1.9rem;
  color: white;
  display: none;
  transition: all 0.3s ease;
}

/* ---------------- Responsive ---------------- */
@media screen and (max-width: 900px) {
  .nav-items {
    position: fixed;
    top: 0;
    right: -260px;
    height: 100vh;
    width: 260px;
    padding: 5rem 2rem;
    flex-direction: column;
    background: var(--mid-blue);
    -webkit-backdrop-filter: blur(12px); /* Safari support */
    backdrop-filter: blur(12px);        /* Standard */
    box-shadow: -2px 0 20px rgba(0,0,0,0.4);
    transition: right 0.4s ease;
    border-left: 2px solid var(--cyan);
  }

  .nav-items.active {
    right: 0;
  }

  .nav-items ul {
    flex-direction: column;
    gap: 1.5rem;
  }

  /* Hamburger visible */
  .ham {
    display: block;
  }

  .hamburger {
    display: block;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}
/* -------------------Kollab Fusion Theme------------------- */
:root {
  --primary: #0c2c5e; /* Dark Blue */
  --accent: #2db5aa; /* Mint/Teal */
  --light-bg: #f8fafc;
  --text-dark: #0b1a34;
  --text-gray: #4a5568;
}

/* ----------Hero Section----------- */
.hero-wrapper {
  width: 90%;
  margin: 6rem auto 5rem;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.hero-text {
  width: 45%;
  min-width: 300px;
}

.hero-text h1 {
  font-family: "Inter", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 3.5rem;
  margin-bottom: 2.5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
-webkit-background-clip: text;
background-clip: text; 
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  color: var(--text-gray);
  font-size: 1.12rem;
  line-height: 1.7rem;
  font-family: "Inter", sans-serif;
  font-weight: 400;
}

.hero-text button {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-top: 2.5rem;
  cursor: pointer;
  border: none;
}

.hero-text button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(12, 44, 94, 0.25);
}

.hero-img {
  width: 45%;
  min-width: 300px;
}

.hero-img img {
  max-width: 30rem;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(12, 44, 94, 0.15);
}

/* ----------Services Section----------- */
.services {
  position: relative;
  background: #ffffff;
  padding: 6rem 5% 8rem;
  text-align: center;
}

.services h2 {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;
  margin-bottom: 4rem;
  letter-spacing: 1px;
}

.service-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.service-group {
  background: linear-gradient(180deg, #ffffff, #f9fbfc);
  border: 1px solid rgba(12, 44, 94, 0.1);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(12, 44, 94, 0.08);
  transition: all 0.3s ease;
}

.service-group:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(12, 44, 94, 0.15);
}

.service-heading {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.sub-service {
  background: #f8fafc;
  border-radius: 10px;
  padding: 1.2rem;
  transition: 0.3s;
  border: 1px solid rgba(12, 44, 94, 0.1);
}

.sub-service:hover {
  background: linear-gradient(135deg, rgba(12, 44, 94, 0.05), rgba(45, 181, 170, 0.08));
  box-shadow: 0 6px 15px rgba(12, 44, 94, 0.12);
}

.sub-service img.icon {
  width: 55px;
  height: 55px;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: drop-shadow(0 3px 6px rgba(12, 44, 94, 0.1));
}

.sub-service h4 {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.sub-service p {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.4rem;
}

/* Decorative background circles */
.back-circle {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  opacity: 0.1;
}
.back-circle1 {
  width: 200px;
  height: 200px;
  background: var(--primary);
  top: 60px;
  left: 10%;
}
.back-circle2 {
  width: 250px;
  height: 250px;
  background: var(--accent);
  bottom: 50px;
  right: 8%;
}
/* ---------- Services Section (Kollab Fusion Theme) ---------- */

:root {
  --primary: #0c2c5e; /* Dark Blue */
  --accent: #2db5aa; /* Mint Teal */
  --bg-light: #f9f9ff;
  --text-dark: #1a202c;
  --text-gray: #4a5568;
}

/* ---------- Services Section ---------- */
.services {
  width: 100%;
  background: var(--bg-light);
  padding: 3rem 1rem;
  position: relative;
  text-align: center;
}

.services h2 {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;
  margin-bottom: 2.5rem;
}

/* Wrapper for service categories */
.service-groups {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

/* Each service category (Design, Marketing, etc.) */
.service-group {
  width: 100%;
  max-width: 1100px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(12, 44, 94, 0.1);
  padding: 2rem 1.5rem;
  transition: all 0.3s ease-in-out;
}

.service-group:hover {
  box-shadow: 0 6px 18px rgba(12, 44, 94, 0.15);
}

.service-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
  text-align: left;
  border-left: 4px solid var(--accent);
  padding-left: 0.75rem;
}

/* Two-column grid for services */
.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* Individual service card */
.sub-service {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border: 1.5px solid rgba(12, 44, 94, 0.1);
  border-radius: 10px;
  background-color: #f8fafc;
  padding: 1rem 1.25rem;
  box-shadow: 0 1px 4px rgba(12, 44, 94, 0.05);
  transition: all 0.3s ease;
}

.sub-service:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  background-color: #ffffff;
}

/* Icon styling */
.icon {
  width: 2.5rem;
  height: 2.5rem;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  padding: 5px;
  object-fit: cover;
  background: #ffffff;
}

/* Service Title */
.sub-service h4 {
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  transition: all 0.3s ease;
}

.sub-service:hover h4 {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;
}

/* Service Description */
.sub-service p {
  color: var(--text-gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Decorative Circles */
.back-circle {
  height: 4rem;
  width: 4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  position: absolute;
  z-index: -2;
  opacity: 0.1;
}

.back-circle1 {
  left: 10%;
  top: -2rem;
}

.back-circle2 {
  right: 10%;
  bottom: -2rem;
}

/* ---------- Responsive Design ---------- */
@media (max-width: 1024px) {
  .service-group {
    padding: 1.5rem;
  }

  .service-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }

  .service-heading {
    text-align: center;
    font-size: 1.3rem;
    border-left: none;
    padding-left: 0;
  }

  .sub-service {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }

  .icon {
    margin-bottom: 0;
  }

  .services h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .service-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .sub-service {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .icon {
    margin-bottom: 0.5rem;
  }

  .sub-service h4 {
    font-size: 1rem;
  }

  .sub-service p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .service-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .sub-service {
    padding: 0.8rem;
  }

  .service-group {
    padding: 0.8rem;
  }

  .services h2 {
    font-size: 1.5rem;
  }
}


/* Scroll animation for sub-services */
.sub-service {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-in-out;
}

.sub-service.show {
  opacity: 1;
  transform: translateY(0);
}

/* Optional: add staggered effect using transition-delay */
.service-group:nth-child(1) .sub-service:nth-child(1) { transition-delay: 0s; }
.service-group:nth-child(1) .sub-service:nth-child(2) { transition-delay: 0.1s; }
.service-group:nth-child(1) .sub-service:nth-child(3) { transition-delay: 0.2s; }
.service-group:nth-child(1) .sub-service:nth-child(4) { transition-delay: 0.3s; }
.service-group:nth-child(1) .sub-service:nth-child(5) { transition-delay: 0.4s; }
.service-group:nth-child(1) .sub-service:nth-child(6) { transition-delay: 0.5s; }

.service-group:nth-child(2) .sub-service:nth-child(1) { transition-delay: 0s; }
.service-group:nth-child(2) .sub-service:nth-child(2) { transition-delay: 0.1s; }
.service-group:nth-child(2) .sub-service:nth-child(3) { transition-delay: 0.2s; }
.service-group:nth-child(2) .sub-service:nth-child(4) { transition-delay: 0.3s; }
.service-group:nth-child(2) .sub-service:nth-child(5) { transition-delay: 0.4s; }
.service-group:nth-child(2) .sub-service:nth-child(6) { transition-delay: 0.5s; }


/* Animate service headings */
.service-heading {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.6s ease-in-out;
}

.service-heading.show {
  opacity: 1;
  transform: translateY(0);
}

/* Animate back circles */
.back-circle {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s ease-in-out;
}

.back-circle.show {
  opacity: 0.1; /* keep subtle */
  transform: scale(1);
}

/* ------------Information Section------------- */
/* ------------Information Section------------- */
.info-main {
  padding: 80px 0;
  background: linear-gradient(135deg, #0c2c5e, #2db5aa);
  color: #ffffff;
  position: relative;
}

.info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
  gap: 40px;
}

/* ---- Left Text Column ---- */
.info-sub1 {
  flex: 1;
  min-width: 300px;
}

.info-sub1 h2 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1rem;
  color: #ffffff;
}

.info-sub1 .span-h2 {
  color: #34e0c4;
}

/* ---- Highlighted text inside paragraph ---- */
.info-sub1 .p-span {
  background: linear-gradient(90deg, #34e0c4, #2db5aa);
  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.info-sub1 p {
  font-size: 1rem;
  line-height: 1.8;
  color: #f0f4ff;
  margin-bottom: 1.5rem;
}

.line {
  width: 60px;
  height: 5px;
  background: #34e0c4;
  border-radius: 10px;
  margin-bottom: 1rem;
}

/* ---- Right Image ---- */
.info-main2 {
  flex: 1;
  text-align: center;
}

.info-main2 img {
  max-width: 520px;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease;
}

.info-main2 img:hover {
  transform: scale(1.03);
}

/* ---- Optional CTA (if you uncomment button) ---- */
.see-more {
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: linear-gradient(90deg, #34e0c4, #2db5aa);
  color: #0c2c5e;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.see-more:hover {
  background: #ffffff;
  color: #0c2c5e;
  transform: translateY(-3px);
}

.arrow {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.see-more:hover .arrow {
  transform: translateX(5px);
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
  .info {
    flex-direction: column;
    text-align: center;
  }

  .info-sub1 {
    order: 2;
  }

  .info-main2 {
    order: 1;
  }

  .info-sub1 h2 {
    font-size: 1.8rem;
  }

  .line {
    margin: 0.5rem auto;
  }
}


/* -------Logo Lists---------- */
/* 
.meet-people {
  width: 100%;
  margin-top: 6rem;
  position: relative;
}
.meet-people h2 {
  width: 90%;
  margin: 1rem 5%;
  text-align: left;
}
.meet-people .line {
  text-align: left;
  margin: 0 5%;
}
.logo-lists {
  background: #f7f7fa;
  padding: 2rem 0;
  margin: 1rem 0 4rem;
  position: relative;
}
.arrow-right,
.arrow-left {
  height: 35px;
  width: 35px;
  right: 15px;
  top: 160px;
  position: absolute;
  color: #57007b;
  border-radius: 50%;
  border: 1px solid #57007b;
  background-color: transparent;
}
.arrow-left:hover,
.arrow-right:hover {
  border: 1px solid #57007b;
  background-color: #57007b;
  color: #fff;
}
.arrow-left {
  left: auto;
  right: 4rem;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "";
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-next:after {
  content: "";
}

.logo-lists .logos .logo {
  margin: 0.5rem 1rem;
}
.back-circle3 {
  top: -2rem;
  left: 60%;
  z-index: -2;
} */
/* ---------------Customers------------------ */
.customers {
  padding: 80px 20px;
  background: #f8f8f8;
  text-align: center;
  position: relative;
}

.customers .review .line {
  width: 50px;
  height: 4px;
  background: #00d1c1; /* Mint Cyan line */
  margin: 0 auto 20px;
  border-radius: 2px;
}

.customers .review h2 {
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.customers .review h2 .span-h2 {
  color: #00d1c1;
}

.customers .review p {
  width: 90%;
  max-width: 600px;
  margin: 0 auto 3rem auto;
  color: #718096;
  line-height: 1.8;
  position: relative;
  font-style: italic;
  transition: opacity 0.5s ease;
}

.customers .review p .apostrophe1 {
  position: absolute;
  left: -40px;
  top: -10px;
  height: 35px;
  width: 35px;
}

.customers .review p .apostrophe2 {
  position: absolute;
  right: -30px;
  bottom: -10px;
  height: 35px;
  width: 35px;
}

.customers .review .right-arrow,
.customers .review .left-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid #57007b;
  border-radius: 50%;
  padding: 10px 12px;
  color: #57007b;
  cursor: pointer;
  font-size: 20px;
  transition: 0.3s;
  background: #fff;
}

.customers .review .right-arrow:hover,
.customers .review .left-arrow:hover {
  background: #57007b;
  color: #fff;
}

.customers .review .right-arrow {
  right: 10%;
}

.customers .review .left-arrow {
  left: 10%;
}

.customers .customer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}

.customers .customer .rated-person {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.customers .customer .active-rated-person {
  opacity: 1;
}

.customers .customer .img {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.customers .customer .active-rated-person .img {
  height: 100px;
  width: 100px;
}

.customers .customer .name {
  font-weight: 700;
  color: #57007b;
  margin-bottom: 5px;
}

.customers .customer .position {
  font-weight: 400;
  font-size: 14px;
  color: #718096;
}

/* Responsive CSS */
@media (max-width: 992px) {
  .customers .review p {
    font-size: 16px;
    line-height: 1.6;
  }

  .customers .review .right-arrow,
  .customers .review .left-arrow {
    font-size: 18px;
    padding: 8px 10px;
  }

  .customers .customer .img {
    height: 70px;
    width: 70px;
  }

  .customers .customer .active-rated-person .img {
    height: 90px;
    width: 90px;
  }
}

@media (max-width: 768px) {
  .customers .review p {
    width: 95%;
  }

  .customers .review .left-arrow {
    left: 5%;
  }

  .customers .review .right-arrow {
    right: 5%;
  }

  .customers .customer {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .customers .review h2 {
    font-size: 1.5rem;
  }

  .customers .review p {
    font-size: 14px;
    line-height: 1.4;
  }

  .customers .review .right-arrow,
  .customers .review .left-arrow {
    font-size: 16px;
    padding: 6px 8px;
  }

  .customers .customer .img {
    height: 60px;
    width: 60px;
  }

  .customers .customer .active-rated-person .img {
    height: 80px;
    width: 80px;
  }
}

/* ----------------case study----------------- */
/* -------------------Software Building----------------- */
.software-building {
  width: 90%;
  margin: auto;
  padding: 4rem 0;
}

.software-building .line {
  width: 50px;
  height: 4px;
  background: #00d1c1; /* Mint Cyan */
  margin: 0 auto 20px;
  border-radius: 2px;
}

.software-building h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #1a1a1a;
}

.software-building h2 .span-h2 {
  color: #00d1c1;
}

.software-building .software {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 5rem 0;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-in-out;
}

.software-building .software.show {
  opacity: 1;
  transform: translateY(0);
}

.software-building .software .software-text {
  width: 45%;
}

.software-building .software .software-text h3 {
  font-size: 1.8rem;
  color: #57007b; /* Deep purple for headings */
  margin-bottom: 1rem;
}

.software-building .software .software-text p {
  color: #2d3748;
  margin: 1rem 0;
  font-weight: 400;
  line-height: 1.6;
}

.p2 .p-span, .software-text .p-span {
  background: linear-gradient(135deg, #00d1c1, #57007b); /* Mint cyan → deep purple gradient */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.software-building .software .software-img {
  width: 45%;
  position: relative;
}

.software-building .software .software-img .image {
  max-width: 550px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.image1,
.image3 {
  float: right;
}

/* Circles with new color gradients */
.circle1 {
  top: -1rem;
  left: -5%;
  background: linear-gradient(225deg, #00d1c1 0%, #57007b 100%);
  z-index: -2;
}
.circle2 { bottom: -1rem; left: 45%; background: linear-gradient(225deg, #f76680, #ffef5e); z-index: -2; }
.circle3 { top: -1rem; right: -2%; background: linear-gradient(225deg, #00d1c1, #57007b); z-index: -2; }
.circle4 { bottom: -2rem; left: 20%; background: linear-gradient(225deg, #f76680, #ffef5e); z-index: -2; }
.circle5 { top: -1rem; left: 55%; background: linear-gradient(225deg, #00d1c1, #57007b); z-index: -2; }
.circle6 { bottom: -1rem; left: -2%; background: linear-gradient(225deg, #f76680, #ffef5e); z-index: -2; }

/* ---------- Responsive Design ---------- */
@media (max-width: 992px) {
  .software-building .software .software-text,
  .software-building .software .software-img { width: 48%; }
  .software-building .software .software-text h3 { font-size: 1.5rem; }
}

@media (max-width: 768px) {
  .software-building .software { flex-wrap: wrap; gap: 2rem; }
  .software-building .software2 { flex-direction: row-reverse; }
  .software-building .software3 { flex-direction: row; }
  .software-building .software .software-text,
  .software-building .software .software-img { width: 100%; text-align: center; }
  .software-building .software-img .image { max-width: 300px; margin: 0 auto; }
}

@media (max-width: 480px) {
  .software-building h2 { font-size: 1.5rem; }
  .software-building .software .software-text h3 { font-size: 1.2rem; }
  .software-building .software .software-text p { font-size: 0.85rem; }
  .software-building .software-img .image { max-width: 260px; }
  .circle { height: 1.2rem; width: 1.2rem; }
}


.software-building .software .software-img .image {
  max-width: 550px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* Hover effect */
.software-building .software .software-img .image:hover {
  transform: scale(1.05); /* Slight zoom */
  box-shadow: 0 25px 40px rgba(0,0,0,0.2); /* Slightly deeper shadow */
}

.software-building .software .back-circle.circle {
  transition: transform 0.6s ease, opacity 0.6s ease;
}

/* Float effect on hover of image container */
.software-building .software .software-img:hover .back-circle.circle {
  transform: translateY(-5px) scale(1.1);
  opacity: 0.9;
}


/* ---------- Designs & Development Section ---------- */
.designs-development {
  padding: 60px 20px;
  background-color: #F8FAFC;
  text-align: center;
}

.designs-development h2 {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #0C2C5E, #2DB5AA);
  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;
  margin-bottom: 2.5rem;
}

.scroll-fade-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

/* Left fade */
.scroll-fade-wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 60px;
  background: linear-gradient(to right, #F8FAFC, rgba(248,250,252,0));
  z-index: 2;
}

/* Right fade */
.scroll-fade-wrapper::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 60px;
  background: linear-gradient(to left, #F8FAFC, rgba(248,250,252,0));
  z-index: 2;
}

.scroll-container {
  overflow: visible;
  position: relative;
}

.cards-wrapper {
  display: flex;
  width: max-content;
}

.cards {
  display: flex;
}

/* Card styling */
.design-card {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  padding: 25px 20px;
  text-align: center;
  margin-right: 20px;
  min-width: 250px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}

.design-card.show {
  opacity: 1;
  transform: translateY(0);
}

.design-card img {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
  transition: transform 0.4s ease;
}

.design-card:hover img {
  transform: scale(1.1);
}

.design-card h4 {
  font-size: 1.2rem;
  color: #0C2C5E;
  font-weight: 600;
  margin-bottom: 10px;
}

.design-card:hover h4 {
  color: #34E0C4;
}

.design_p {
  font-size: 1rem;
  color: #0B1A34;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .scroll-fade-wrapper { max-width: 95%; }
  .design-card { min-width: 220px; padding: 20px 15px; }
  .design-card img { width: 60px; height: 60px; }
  .design-card h4 { font-size: 1.1rem; }
  .design_p { font-size: 0.95rem; }
}

@media (max-width: 480px) {
  .design-card { min-width: 180px; padding: 15px 10px; }
  .design-card img { width: 50px; height: 50px; }
  .design-card h4 { font-size: 1rem; }
  .design_p { font-size: 0.9rem; }
}

/* Tablets (max-width: 1024px) */
@media (max-width: 1024px) {
  .scroll-fade-wrapper {
    max-width: 95%;
  }

  .design-card {
    min-width: 220px;
    padding: 20px 15px;
  }

  .design-card img {
    width: 60px;
    height: 60px;
  }

  .design-card h4 {
    font-size: 1.1rem;
  }

  .design_p {
    font-size: 0.95rem;
  }
}

/* Small devices / mobiles (max-width: 768px) */
@media (max-width: 768px) {
  .scroll-fade-wrapper {
    max-width: 100%;
  }

  .cards-wrapper {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .cards {
    display: flex;
    gap: 15px;
  }

  .design-card {
    min-width: 200px;
    flex: 0 0 auto;
    scroll-snap-align: start;
    padding: 18px 12px;
  }

  .design-card img {
    width: 55px;
    height: 55px;
  }

  .design-card h4 {
    font-size: 1rem;
  }

  .design_p {
    font-size: 0.9rem;
  }
}

/* Extra small devices / phones (max-width: 480px) */
@media (max-width: 480px) {
  .cards-wrapper {
    gap: 10px;
  }

  .design-card {
    min-width: 160px;
    padding: 15px 10px;
  }

  .design-card img {
    width: 50px;
    height: 50px;
  }

  .design-card h4 {
    font-size: 0.95rem;
  }

  .design_p {
    font-size: 0.85rem;
  }
}

/* --------------Tech-Stack Section------------------ */
.tech-stack {
  padding: 80px 20px;
  text-align: center;
  background-color: #F8FAFC; /* Light Background */
}

.tech-stack .line {
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #0C2C5E, #2DB5AA); /* Gradient */
  margin: 0 auto 20px;
  border-radius: 2px;
}

.tech-stack h2 {
  font-size: 2rem;
  color: #0B1A34; /* Text color */
  margin-bottom: 40px;
  font-weight: 700;
}

.fields {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.tech-btn {
  padding: 10px 22px;
  font-size: 1rem;
  color: #0C2C5E; /* Primary Blue */
  border: 2px solid #2DB5AA; /* Mint Teal border */
  border-radius: 30px;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tech-btn:hover,
.tech-btn.active {
  color: #ffffff;
  background: linear-gradient(135deg, #0C2C5E, #2DB5AA); /* Gradient hover */
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(45, 181, 170, 0.25); /* subtle Mint Teal shadow */
}

.tech-logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.tech-row {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  animation: fadeIn 0.5s ease-in-out;
}

.tech-row.active {
  display: flex;
}

.tech-row img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  border-radius: 20px;
  padding: 20px;
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(45, 181, 170, 0.15); /* Mint Teal shadow */
  transition: transform 0.3s ease, filter 0.3s ease;
}

.tech-row img:hover {
  transform: scale(1.15);
  filter: drop-shadow(0 6px 15px rgba(45, 181, 170, 0.3));
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 992px) {
  .tech-row img {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 600px) {
  .tech-stack h2 {
    font-size: 1.6rem;
  }
  .fields {
    gap: 10px;
  }
  .tech-btn {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
  .tech-row img {
    width: 100px;
    height: 100px;
    padding: 10px;
  }
}
/* -----------Footer Professional Style-------------- */
.footer {
  background: #0C2C5E;
  color: #F8FAFC;
  font-family: 'Inter', sans-serif;
  padding: 60px 20px 30px;
  position: relative;
}

/* Highlight Section */
.footer .highlight {
  text-align: center;
  margin-bottom: 50px;
  padding: 40px 30px;
  background: #2DB5AA;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.footer .highlight:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}
.footer .highlight h2 {
  font-size: 28px;
  font-weight: 700;
  color: #F8FAFC;
  margin-bottom: 12px;
}
.footer .highlight-sub {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: #F8FAFC;
  font-weight: 500;
}
.footer .highlight-sub img {
  width: 32px;
}

/* Footer Main */
.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 30px;
  gap: 30px;
}

/* Footer Sections */
.footer-section {
  flex: 1 1 280px;
  background: #0B1A34;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.footer-section:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* Logo */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}
.footer-logo img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit:cover;
  border: 2px solid #2DB5AA;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.footer-logo img:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(45,181,170,0.3);
}
.footer-logo span {
  font-size: 20px;
  font-weight: 700;
  color: #2DB5AA;
}

/* Links & Contact */
.footer-section h5 {
  font-size: 18px;
  font-weight: 600;
  color: #34E0C4;
  margin-bottom: 12px;
}
.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-section ul li {
  margin-bottom: 10px;
}
.footer-section ul li a {
  color: #F8FAFC;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.footer-section ul li a:hover {
  color: #2DB5AA;
  transform: translateX(3px);
}

/* Social Links */
.contact-link a {
  display: inline-block;
  width: 45px;
  height: 45px;
  background: #2DB5AA;
  color: #0C2C5E;
  border-radius: 50%;
  text-align: center;
  line-height: 45px;
  font-size: 18px;
  margin-right: 8px;
  transition: all 0.3s ease;
}
.contact-link a:hover {
  background: #34E0C4;
  transform: translateY(-3px) scale(1.1);
}

/* Copyright */
.copyright {
  text-align: center;
  font-size: 14px;
  color: #B0C4FF;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 15px;
  margin-top: 30px;
}
.copyright a {
  color: #34E0C4;
}
.copyright a:hover {
  color: #F8FAFC;
}

/* Back-to-top button style */
.back-to-top {
  opacity: 0; /* hidden initially */
  pointer-events: none; /* prevent click when hidden */
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0C2C5E, #2DB5AA); /* Kollab Fusion gradient */
  color: #F8FAFC;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  z-index: 9999;
}

/* Show the button */
.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

/* Hover animation */
.back-to-top:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 6px 20px rgba(45,181,170,0.4);
  transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    gap: 20px;
  }
  .highlight-sub {
    flex-direction: column;
    gap: 8px;
  }
}
