 .team-modal {
      display: none;
      position: fixed;
      z-index: 9999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.7);
      overflow-y: auto;
    }

 .team-modal-content {
      background: #fff;
      margin: 60px auto;
      width: 90%;
      max-width: 1000px;
      border-radius: 10px;
      padding: 30px;
      position: relative;
      animation: fadeIn 0.3s ease;
    }

  .close-btn {
      position: absolute;
      right: 20px;
      top: 10px;
      font-size: 30px;
      cursor: pointer;
    }
  @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px);}
      to { opacity: 1; transform: translateY(0);}
    }

    .single-team-area-one-start {
      cursor: pointer;
      transition: 0.3s;
    }

    .single-team-area-one-start:hover {
      transform: translateY(-5px);
    }


/* ABOUT CORE VALUES */
.value-box {
  padding: 25px;
  border: 1px solid #eee;
  border-radius: 10px;
  /* transition: 0.3s;  */
  transition: all 0.35s ease;
  height: 100%;
  background: #fff;
}

.value-box:hover {
   background: #0e305d;
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.value-box:hover .title {
  color: #28a745; /* green */
}
.value-box:hover .disc {
  color: #ffffff;
}

.value-box .title,
.value-box .disc {
  transition: all 0.35s ease;
}

.value-box .title {
  font-weight: 600;
  margin-bottom: 10px;
}

.value-box .icon img {
  width: 50px;
  margin-bottom: 10px;
}

/* ABOUT OCTO STUDIO */

.octoville-area {
  background: #f9fbff;
  padding-top: 80px;
  padding-bottom: 80px;
}

.octoville-features .single-feature {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 8px;
  transition: 0.3s;
  background: #fff;
  border: 1px solid #eee;
}

.octoville-features .single-feature:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.octoville-features .icon img {
  width: 40px;
}

.octoville-features .title {
  margin-bottom: 5px;
  font-weight: 600;
}

/* PORTFOLIO */
.pf-wrapper {
  font-family: Arial, sans-serif;
  background: #f8f9fc;
  padding: 40px 20px;
}

.pf-container {
  max-width: 1200px;
  margin: auto;
}

/* ===== FILTER ===== */
.pf-filter-bar {
    display: flex;
  text-align: center;
  margin-bottom: 30px;
}

.pf-filter-btn {
  border: none;
  padding: 10px 18px;
  margin: 5px;
  background: #eaeaea;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.pf-filter-btn.active {
  background: #0e305d;
  color: #fff;
}

/* ===== GRID ===== */
/* .pf-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
} */

.pf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  justify-items: center; /* centers single item */
  gap: 30px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .pf-grid {
    grid-template-columns: 1fr;
  }
}
/* .pf-item {
  width: calc(33.333% - 20px);
} */

@media (max-width: 992px) {
  .pf-item { width: calc(50% - 20px); }
}

@media (max-width: 600px) {
  .pf-item { width: 100%; }
}

/* ===== CARD ===== */
.pf-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  border: 1px solid #eee;
  height: 100%;
  transition: 0.3s;
}

.pf-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ===== TOP ===== */
.pf-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pf-logo {
  width: 100%;
}

.pf-tag {
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 20px;
  background: #eef3ff;
}

/* ===== CONTENT ===== */
.pf-card-title {
  margin: 15px 0 10px;
  font-size: 18px;
  font-weight: 600;
}

.pf-card-desc {
  font-size: 14px;
  color: #555;
}

.pf-highlights {
  margin: 10px 0;
  padding-left: 18px;
  font-size: 14px;
}

/* portfolio read more */
.pf-card-desc {
  position: relative;
  font-size: 14px;
  line-height: 1.6;
}

.pf-text.collapsed {
  display: -webkit-box;
  -webkit-line-clamp: 3; /* fallback visual clamp */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pf-toggle {
  display: inline-block;
  margin-top: 8px;
  font-weight: 600;
  color: #007bff;
  cursor: pointer;
  transition: 0.3s;
}

.pf-toggle:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* ===== FOOTER ===== */
.pf-card-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.pf-status {
  font-weight: bold;
  color: green;
}

.pf-link {
  text-decoration: none;
  color: #0d6efd;
  font-size: 14px;
}



.more-text {
  display: none;
}

.read-more-btn {
  margin-top: 10px;
  border: none;
  background: none;
  color: #4f46e5;
  font-weight: 600;
  cursor: pointer;
}


/* jjjj */
.single-categories li {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  cursor: pointer;
}

.service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

/* top accent line */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #00c6ff);
}

.service-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  transition: 0.3s;
}

.service-desc {
  font-size: 15.5px;
  line-height: 1.7;
  color: #555;
}

/* hover text pop */
.service-card:hover .service-title {
  color: #007bff;
  transform: scale(1.05);
}

/* Title */
.single-categories a {
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Description (hidden by default) */
.cat-desc {
  font-size: 13px;
  color: #aaa;
  line-height: 1.5;
  margin: 0;

  opacity: 0;
  transform: translateY(10px);
  max-height: 0;
  overflow: hidden;

  transition: all 0.4s ease;
}

/* 🔥 HOVER EFFECT */
.single-categories li:hover .cat-desc {
  opacity: 1;
  transform: translateY(0);
  max-height: 100px;
  margin-top: 5px;
}

/* Optional: title animation */
.single-categories li:hover a {
  color: #0d6efd; /* change to your theme color */
  transform: translateX(5px);
}

/* MAIN MENU LINKS */
.header-one .main-header .nav-area ul li a {
  color: #ffffff !important;
  transition: all 0.3s ease;
}

/* HOVER EFFECT 🔥 */
.header-one .main-header .nav-area ul li a:hover {
  color: #0d6efd !important; /* or #fff if you want pure white hover */
}

/* ACTIVE MENU ITEM */
.header-one .main-header .nav-area ul li.active a {
  color: #ffffff !important;
  font-weight: 600;
}

/* OPTIONAL: UNDERLINE ANIMATION */
.header-one .main-header .nav-area ul li a {
  position: relative;
}

.header-one .main-header .nav-area ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: #ffffff;
  transition: width 0.3s ease;
}

.header-one .main-header .nav-area ul li a:hover::after {
  width: 100%;
}


.about-inner-content-two {
  position: relative;
  background: #ffffff;
  padding: 40px 45px;
  border-radius: 30px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: all 0.5s ease;
  cursor: pointer;
}

.about-inner-content-two::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #0e305d, #ff7e5f);
  border-radius: 50%;
  opacity: 0.15;
  transition: all 0.5s ease;
  filter: blur(40px);
}

.about-inner-content-two:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.about-inner-content-two:hover::before {
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  opacity: 0.25;
}

.about-inner-content-two .title-style-two .pre {
  display: block;
  font-weight: 700;
  color: #0e305d;
  margin-bottom: 12px;
  font-size: 24px;
  letter-spacing: 1.2px;
}

.about-inner-content-two .title-style-two .title {
  font-size: 24px; /* bigger text */
  font-weight: 800;
  color: #0e305d;
  margin-bottom: 20px;
}

.about-inner-content-two .disc {
  font-size: 20px; /* bigger paragraph */
  color: #555555;
  line-height: 1.8;
}

/* FOCUS SECTOR */
/* Grid spacing */
.rts-service-area .row > div {
  margin-bottom: 25px;
}

/* Card base */
.single-service-signle- {
  background: #e0dcdc;
  padding: 30px 25px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  height: 100%;
  cursor: pointer;

  /* smoother + slower */
  transition: transform 0.6s ease, box-shadow 0.6s ease, padding 0.6s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);

  animation: fadeUp 0.8s ease forwards;
}

/* Gradient border */
.single-service-signle-::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, #0e305d, #ff7e5f);
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
                 linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  opacity: 0;
  transition: opacity 0.6s ease;
}

/* Blob effect */
.single-service-signle-::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #0e305d, #ff7e5f);
  border-radius: 50%;
  top: -50px;
  right: -50px;
  opacity: 0.08;
  filter: blur(40px);

  transition: all 0.7s ease;
}

/* TEXT */
.single-service-signle- h5 {
  font-size: 22px;
  font-weight: 700;
  color: #0e305d;
  margin-bottom: 12px;

  transition: transform 0.6s ease, color 0.6s ease;
}

.single-service-signle- p {
  font-size: 1.8rem;
  color: #555;
  line-height: 1.7;

  transition: transform 0.6s ease, color 0.6s ease;
}

/* ========================= */
/* 🔥 HOVER (SLOW + SMOOTH) */
/* ========================= */

.single-service-signle-:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
  padding-top: 36px;
  padding-bottom: 36px;
  background-color: #0e305d;
}

.single-service-signle-:hover::before {
  opacity: 1;
}

.single-service-signle-:hover::after {
  top: -25px;
  right: -25px;
  opacity: 0.18;
}

/* Smooth text scale (no jump) */
.single-service-signle-:hover h5 {
  transform: translateY(-6px) scale(1.12);
  color: #4fa16a;
}

.single-service-signle-:hover p {
  transform: translateY(-4px) scale(1.06);
  color: #fff;
}

/* Entrance animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stagger */
.col-lg-3:nth-child(1) .single-service-signle- { animation-delay: 0.1s; }
.col-lg-3:nth-child(2) .single-service-signle- { animation-delay: 0.2s; }
.col-lg-3:nth-child(3) .single-service-signle- { animation-delay: 0.3s; }
.col-lg-3:nth-child(4) .single-service-signle- { animation-delay: 0.4s; }