body{
-webkit-user-select:none;
-moz-user-select:none;
-ms-user-select:none;
user-select:none;
}

      /* Reset & base */
      * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
          font-family: "Inter", sans-serif;
      }

      body,
      html {
          height: 100%;
          overflow-x: hidden;
          background: #0e0e0e;
          color: #e7e7e7;
      }

      /* Hero Section */
      .hero {
          position: relative;
          height: 90vh;
          width: 100%;
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          color: #fff;
          text-align: center;
          overflow: hidden;
          background: radial-gradient(circle at center, #0e0e0e, #151515, #000);
          animation: bgPulse 20s infinite alternate;
      }

      @keyframes bgPulse {
          0% {
              background-position: 0% 50%;
          }

          50% {
              background-position: 100% 50%;
          }

          100% {
              background-position: 0% 50%;
          }
      }

      /* Navbar */
      nav {
          position: fixed;
          top: 20px;
          left: 50%;
          transform: translateX(-50%);
          width: 90%;
          max-width: 1250px;
          padding: 12px 40px;
          border-radius: 50px;
          backdrop-filter: blur(20px);
          background: rgba(229, 57, 53, 0.08);
          border: 1px solid rgba(229, 57, 53, 0.4);
          box-shadow: 0 0 35px rgba(229, 57, 53, 0.25);

          display: flex;
          align-items: center;
          justify-content: space-between;
          z-index: 20;
      }

      /* Left Menu */
      .nav-left {
          display: flex;
          align-items: center;
          gap: 25px;
      }

      /* Right Menu */
      .nav-right {
          display: flex;
          align-items: center;
          gap: 25px;
      }

      /* Normal Links */
      nav a {
          color: #e7e7e7;
          text-decoration: none;
          font-weight: 600;
          position: relative;
          transition: 0.3s;
      }

      nav a:hover {
          color: #e53935;
      }

      /* Underline Hover */
      nav a::after {
          content: "";
          position: absolute;
          width: 0%;
          height: 2px;
          background: #e53935;
          left: 0;
          bottom: -4px;
          transition: 0.3s;
      }

      nav a:hover::after {
          width: 100%;
      }

      /* Dropdown Wrapper */
      .dropdown {
          position: relative;
      }

      /* Dropdown Menu */
      .dropdown-content {
          position: absolute;
          top: 35px;
          left: 0;
          min-width: 350px;
          backdrop-filter: blur(15px);
          border-radius: 12px;
          padding: 15px 20px;
          background: rgba(14, 14, 14, 0.92);
          border: 1px solid rgba(229, 57, 53, 0.35);

          /* Initially hidden */
          display: none;

          /* 2 Column Grid */
          grid-template-columns: repeat(2, 1fr);
          gap: 8px 20px;
      }

      /* Show dropdown on hover */
      .dropdown:hover .dropdown-content {
          display: grid;
      }

      /* Dropdown links */
      .dropdown-content a {
          padding: 10px 8px;
          color: #e7e7e7;
          text-decoration: none;
          border-radius: 6px;
          transition: 0.3s;
          white-space: nowrap;
          text-align: left;
          /* ⭐ FIX */
          justify-content: flex-start;
          /* ⭐ Extra fix */
      }

      .dropdown-content a:hover {
          background: rgba(229, 57, 53, 0.15);
          color: #e53935;
      }

/* ===============================
   DEFAULT: Desktop everywhere
================================ */
.desktop-logo,
.desktop-navbar {
  display: flex;
}

.mobile-navbar {
  display: none;
}

.desktop-logo {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 60;
}

.desktop-navbar {
  margin-left: 140px; /* logo se safe distance */
}


/* ===============================
   MOBILE + TABLET (below laptop)
   0px – 991px
================================ */
@media (max-width: 991px) {
  .desktop-logo,
  .desktop-navbar {
    display: none !important;
  }

  .mobile-navbar {
    display: block !important;
  }
}

/* ===============================
   LAPTOP ONLY
   992px – 1366px
================================ */
@media (min-width: 992px) and (max-width: 1366px) {
  .desktop-logo,
  .desktop-navbar {
    display: flex !important;
  }

  .mobile-navbar {
    display: none !important;
  }
}

/* ===============================
   LARGE SCREENS (2K / 4K)
   1367px+
================================ */
@media (min-width: 1367px) {
  .desktop-logo,
  .desktop-navbar {
    display: flex !important;
  }

  .mobile-navbar {
    display: none !important;
  }
}


      /* .dropdown:hover .dropdown-content {
  display: block;
} */

      /* Hero Content */
      .hero-content {
          position: relative;
          z-index: 5;
          max-width: 1000px;
          padding: 0 20px;
      }

      .hero-content h1 {
          font-size: 4rem;
          margin-bottom: 25px;
          line-height: 1.2;
          animation: fadeInUp 1s ease forwards;
          opacity: 0;
          text-shadow: 0 0 10px #e53935;
      }

      .hero-content h1 .highlight {
          background: linear-gradient(90deg, #e53935, #e7e7e7);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          animation: neonGlow 2s infinite alternate;
      }

      @keyframes neonGlow {
          0% {
              text-shadow: 0 0 10px #e53935, 0 0 20px #e53935;
          }

          50% {
              text-shadow: 0 0 20px #e53935, 0 0 40px #e53935;
          }

          100% {
              text-shadow: 0 0 15px #e53935, 0 0 30px #e53935;
          }
      }

      .hero-content p {
          font-size: 1.2rem;
          margin-bottom: 50px;
          animation: fadeInUp 1.4s ease forwards;
          opacity: 0;
          text-shadow: 0 0 8px rgba(229, 57, 53, 0.8);

          color: #e7e7e7;
          text-shadow: 0 0 5px rgba(229, 57, 53, 0.4);
      }

      /* Buttons */
      /* .hero-buttons {
        display: flex;
        gap: 25px;
        justify-content: center;
        flex-wrap: wrap;
      }
      .btn {
        padding: 18px 40px;
        border-radius: 50px;
        font-weight: 600;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
      }
      .btn-primary {
        color: #fff;
        background: linear-gradient(90deg, #e53935, #a72725);
        box-shadow: 0 0 25px rgba(229, 57, 53, 0.35);
      }
      .btn-primary:hover {
        transform: translateY(-5px);
        box-shadow: 0 0 45px rgba(229, 57, 53, 0.5);
      }
      .btn-secondary {
        background: rgba(229, 57, 53, 0.07);
        color: #e7e7e7;
        border: 1px solid rgba(229, 57, 53, 0.4);
        backdrop-filter: blur(15px);
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
      }
      .btn-secondary:hover {
        transform: translateY(-3px);
        background: rgba(229, 57, 53, 0.15);
      } */

      /* Stats */
      .stats {
          display: flex;
          justify-content: center;
          gap: 60px;
          margin-top: 60px;
          font-weight: 700;
          animation: fadeInUp 1.6s ease forwards;
          opacity: 0;
      }

      .stats div {
          text-align: center;
      }

      .stats div span {
          display: block;
          font-size: 1.6rem;
          margin-top: 8px;
          color: #e53935;
          text-shadow: 0 0 8px rgba(229, 57, 53, 0.7);
      }

      /* Floating Particles */
      .particle {
          position: absolute;
          width: 6px;
          height: 6px;
          border-radius: 50%;
          animation: float 12s linear infinite;
          z-index: 2;
          background: rgba(229, 57, 53, 0.7);
          box-shadow: 0 0 12px rgba(229, 57, 53, 0.9);
      }

      /* Animations */
      @keyframes fadeInUp {
          0% {
              opacity: 0;
              transform: translateY(30px);
          }

          100% {
              opacity: 1;
              transform: translateY(0);
          }
      }

      @keyframes float {
          0% {
              transform: translateY(0) translateX(0);
          }

          25% {
              transform: translateY(-20px) translateX(10px);
          }

          50% {
              transform: translateY(-40px) translateX(-10px);
          }

          75% {
              transform: translateY(-20px) translateX(5px);
          }

          100% {
              transform: translateY(0) translateX(0);
          }
      }

      @media (max-width: 768px) {
          .hero-content h1 {
              font-size: 2.5rem;
          }

          .stats {
              flex-direction: column;
              gap: 25px;
          }
      }

      .vertical-marquee-container {
          height: 150px;
          /* visible area */
          overflow: hidden;
          position: relative;
          width: 100%;
      }

      .vertical-marquee {
          display: inline-block;
          animation: scrollDown 6s linear infinite;
      }

      .vertical-marquee p {
          margin: 0;
          text-align: center;
          font-size: 1.2rem;
          line-height: 1.5;
          color: #fff;
          /* matches hero background */
      }

      /* Animation */
      @keyframes scrollDown {
          0% {
              transform: translateY(-100%);
          }

          100% {
              transform: translateY(100%);
          }
      }

      .page-bg {
          background: url("images/background.png") center/cover no-repeat fixed;
          width: 100%;
          min-height: 100vh;
          padding-top: 50px;
          /* optional */
      }

      .about-area {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    color: #fff;
    overflow: hidden;
}

.about-left,
.about-right {
    flex: 1 1 400px;
    max-width: 500px;
    padding: 20px;
    opacity: 0;
    transition: all 1s cubic-bezier(0.25, 1, 0.5, 1); /* smoother, stronger */
}

.about-left {
    transform: translateY(100px); /* start below */
}

.about-right {
    transform: translateY(-100px); /* start above */
}

.about-left.show {
    opacity: 1;
    transform: translateY(0);
}

.about-right.show {
    opacity: 1;
    transform: translateY(0);
}

.about-left h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-left p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-btn {
    background: #e7e7e7;
    color: #e53935;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.about-btn:hover {
    background: #fff;
    color: #d32f2f;
}

.about-right img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 900px) {
    .about-area {
        flex-direction: column;
        text-align: center;
    }
    .about-left,
    .about-right {
        max-width: 90%;
        transform: translateY(50px);
    }
    .about-left h2 {
        font-size: 28px;
    }
}

      /* Heading gradient + glow */
      .tech-heading {
          font-size: 2.5rem;
          font-weight: 800;
          display: inline-block;
          padding: 10px 20px;
          margin-bottom: 20px;

          background: linear-gradient(135deg, #ffffff, #e53935, #000000);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;

          /* Subtle glow for crisp text */
          text-shadow: 0 0 2px #fff, 0 0 4px #e53935, 0 0 8px #e53935;
      }

      /* Marquee wrapper */
      .tech-marquee-wrapper {
          width: 100%;
          overflow: hidden;
          padding: 20px 0;
          border-radius: 12px;
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
          /* background: #1a1a1a; */
      }

      /* Marquee animation */
      .tech-marquee {
          display: flex;
          gap: 30px;
          flex-wrap: nowrap;
          /* single line */
          animation: scrollTech 60s linear infinite;
          /* slow scroll */
      }

      .tech-item {
          flex: 0 0 auto;
          display: flex;
          justify-content: center;
          align-items: center;
          border-radius: 10px;
          padding: 15px;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          transition: transform 0.3s, box-shadow 0.3s;
          background: #222;
          width: 140px;
      }

      .tech-item img {
          height: 80px;
          width: 105px;
          /* bigger logos */
          object-fit: contain;
      }

      .tech-item:hover {
          transform: scale(1.15);
          box-shadow: 0 10px 25px rgba(255, 69, 0, 0.5);
      }

      @keyframes scrollTech {
          0% {
              transform: translateX(0);
          }

          100% {
              transform: translateX(-50%);
          }
      }

      /* Responsive */
      @media (max-width: 768px) {
          .tech-item img {
              height: 50px;
          }

          .tech-marquee {
              gap: 20px;
          }

          .tech-heading {
              font-size: 2rem;
          }
      }

      .services-section {
          padding: 60px 20px;
          text-align: center;
      }

      .services-section h2 {
          font-size: 2.4rem;
          font-weight: bold;
      }

      .services-section p {
          color: #666;
          max-width: 700px;
          margin: 10px auto 40px;
      }

      /* MAIN OUTER WRAPPER */
      .scroll-row-wrapper {
          width: 100%;
          overflow: hidden;
          position: relative;
          white-space: nowrap;
      }

      /* MOVING TRACK */
      .scroll-track {
          display: inline-flex;
          gap: 25px;
          animation: moveRight 20s linear infinite;
      }

      .scroll-track:hover {
          animation-play-state: paused;
      }

      /* CARD STYLE */
      .service-box {
          background: linear-gradient(120deg,
                  #0e0e0e 0%,
                  rgba(229, 57, 53, 0.75) 100%);
          box-shadow: 0 0 18px rgba(229, 57, 53, 0.9);
          color: white;
          min-width: 260px;
          padding: 25px 20px;
          border-radius: 15px;
          text-align: center;
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);

          /* IMPORTANT */
          transform-style: preserve-3d;
          transition: 0.4s ease;
      }

      .service-box:hover {
          transform: perspective(600px) rotateX(30deg) scale(1.06);
          box-shadow: 0 28px 55px rgba(0, 0, 0, 0.28);
      }

      .service-box img {
          width: 50px;
          margin-bottom: 12px;
      }

      .service-box h4 {
          font-size: 1.25rem;
          margin-bottom: 10px;
      }

      .service-box p {
          color: #666;
          font-size: 0.95rem;
      }

      /* LEFT → RIGHT ANIMATION */
      @keyframes moveRight {
          from {
              transform: translateX(-50%);
          }

          to {
              transform: translateX(0);
          }
      }

      .achievements-section {
          padding: 80px 20px;
          text-align: center;
      }

      /* HEADER */
      .section-header h2 {
          font-size: 34px;
          font-weight: 800;
          color: #e7e7e7;
      }

      .section-header p {
          max-width: 650px;
          margin: 10px auto 50px;
          color: #b5b5b5;
          font-size: 16px;
      }

      /* CARD WRAPPER */
      .cards-wrapper {
          display: flex;
          justify-content: center;
          gap: 25px;
          flex-wrap: wrap;
      }

      /* CARD */
      .card {
          width: 260px;
          padding: 35px 22px;
          border-radius: 18px;
          color: white;
          text-align: center;
          background: linear-gradient(135deg, #0e0e0e 0%, rgba(229, 57, 53, 0.75) 100%);
          box-shadow: 0 0 18px rgba(229, 57, 53, 0.9);

          opacity: 0;
          transform: translateY(0);
          transition: 0.4s ease;
      }

      .card:hover {
          transform: scale(1.07);
          box-shadow: 0 25px 45px rgba(0, 0, 0, 0.35);
      }

      /* ICON */
      .icon-box {
          width: 64px;
          height: 64px;
          margin: 0 auto 18px;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          background: rgba(229, 57, 53, 0.15);
          box-shadow: 0 0 15px rgba(229, 57, 53, 0.9);
      }

      .icon-box i {
          font-size: 26px;
          color: #e53935;
      }

      /* TEXT */
      .card h3 {
          font-size: 20px;
          margin-bottom: 8px;
      }

      .card p {
          font-size: 14px;
          opacity: 0.85;
      }

      /* ANIMATION ACTIVE */
      .card.animate {
          opacity: 1;
          animation-duration: 1.1s;
          animation-fill-mode: both;
      }

      /* ALTERNATE DIRECTION */
      .card.animate:nth-child(odd) {
          animation-name: slideDown;
      }

      .card.animate:nth-child(even) {
          animation-name: slideUp;
      }

      /* DELAYS */
      .card.animate:nth-child(1) {
          animation-delay: 0.1s;
      }

      .card.animate:nth-child(2) {
          animation-delay: 0.3s;
      }

      .card.animate:nth-child(3) {
          animation-delay: 0.5s;
      }

      .card.animate:nth-child(4) {
          animation-delay: 0.7s;
      }

      /* KEYFRAMES */
      @keyframes slideDown {
          from {
              opacity: 0;
              transform: translateY(-60px);
          }

          to {
              opacity: 1;
              transform: translateY(0);
          }
      }

      @keyframes slideUp {
          from {
              opacity: 0;
              transform: translateY(60px);
          }

          to {
              opacity: 1;
              transform: translateY(0);
          }
      }


      .client-section {
          padding: 100px 20px;
          background: #0b0b0b;
          color: #fff;
          text-align: center;
          overflow: hidden;
      }

      .client-header h2 {
          font-size: 38px;
          font-weight: 800;
          margin-bottom: 12px;
      }

      .client-header p {
          max-width: 750px;
          margin: 0 auto 70px;
          color: #bdbdbd;
      }

      /* ROW */
      .client-row {
          margin-bottom: 40px;
          overflow: hidden;
      }

      /* TRACK */
      .client-track {
          display: flex;
          gap: 30px;
          width: max-content;
          animation: scrollLeft 26s linear infinite;
      }

      .client-row.slow .client-track {
          animation-duration: 34s;
      }

      /* CARD */
      .client-card {
          min-width: 420px;
          background: #111;
          padding: 32px;
          border-radius: 18px;
          text-align: left;
          position: relative;
          box-shadow: 0 18px 45px rgba(0, 0, 0, 0.5);
      }

      /* QUOTE ICON */
      .client-card .quote {
          position: absolute;
          top: 18px;
          right: 22px;
          font-size: 64px;
          color: rgba(229, 47, 93);
          /* opacity:0.25; */
          font-family: serif;
      }

      /* TOP */
      .client-top {
          display: flex;
          align-items: center;
          gap: 16px;
          margin-bottom: 18px;
      }

      .client-top img {
          width: 64px;
          height: 64px;
          border-radius: 50%;
          border: 3px solid rgba(229, 47, 93);
          object-fit: cover;
      }

      .client-top h4 {
          margin: 0;
          font-size: 18px;
          font-weight: 700;
      }

      .client-top small {
          font-size: 14px;
          color: #aaa;
      }

      /* REVIEW */
      .review {
          font-size: 15px;
          line-height: 1.7;
          color: #ddd;
      }

      /* ANIMATION */
      @keyframes scrollLeft {
          from {
              transform: translateX(0);
          }

          to {
              transform: translateX(-50%);
          }
      }

      /* RESPONSIVE */
      @media(max-width:768px) {
          .client-card {
              min-width: 300px;
          }
      }

       /* PORTFOLIO SECTION */

/* ===== PORTFOLIO GRID ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

/* ===== COMMON CARD ===== */
.portfolio-item {
  background: #0E0E0E; 
  border-radius: 18px;
  padding: 20px;
  height: 400px;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* ===== NEON GLOW BORDER ===== */
.portfolio-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1.5px;
  background: linear-gradient(
    135deg,
    rgba(229, 57, 53, 0.9),
    rgba(229, 57, 53, 0.2),
    rgba(229, 57, 53, 0.9)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ===== HOVER GLOW ===== */
.portfolio-item:hover {
  box-shadow:
    0 0 20px rgba(229,57,53,0.6),
    0 0 40px rgba(229,57,53,0.4);
  transform: translateY(-6px);
}

/* ===== IMAGES ===== */
.portfolio-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ===== LOGO SPECIAL SIZE ===== */
.portfolio-item.logo img {
  max-height: 100%;
}

/* ===== CATEGORY OPTIONAL TWEAKS ===== */
.portfolio-item.banner img {
  max-height: 100%;
}

.portfolio-item.illustration img,
.portfolio-item.brand img,
.portfolio-item.label img {
  max-height: 100%;
}



  .portfolio-section {
      padding: 50px 6%;
      text-align: center;
  }

  .portfolio-section h2 {
      font-size: 38px;
      font-weight: 800;
      margin-bottom: 10px;
  }

  .subtitle {
      max-width: 700px;
      margin: 0 auto 30px;
      color: #bdbdbd;
  }

  /* FILTERS */
  .portfolio-filters {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-bottom: 20px;
      flex-wrap: wrap;
  }

  .filter-btn {
      padding: 10px 22px;
      border-radius: 30px;
      border: none;
      background: #1a1a1a;
      color: #E7E7E7;
      cursor: pointer;
      font-weight: 600;
      transition: 0.3s;
  }

  .filter-btn.active,
  .filter-btn:hover {
      background: #E53935;
      color: #fff;
  }

  /* our Process section  */
.working-model {
  padding: 80px 6%;
  font-family: Arial, sans-serif;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 38px;
  font-weight: 700;
  /* color: #0E0E0E; */
}

/* Steps */
.model-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.model-step {
  max-width: 260px;
  text-align: center;
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

.model-step img {
  height: 172px;
  margin-bottom: 20px;
}

.model-step h4 {
  color: #0E0E0E;
  font-weight: 600;
}

.model-step p {
  font-size: 14px;
  color: #555;
}

/* Partners */
.partners {
  margin-top: 70px;
  padding: 30px;
  border: 2px dashed #ccc;
  border-radius: 12px;
  text-align: center;
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

.partners-logos {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.partners-logos img {
  height: 70px;
  width: 112px;
}

/* ACTIVE */
.show {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile */
@media (max-width: 768px) {
  .model-container {
    flex-direction: column;
    align-items: center;
  }
}

/* SCROLLBAR STYLING - Modern & Stylish */
.portfolio-grid-wrapper {
    max-height: 600px;
    overflow-y: auto;
    padding-right: 10px;
    scroll-behavior: smooth; /* smooth scrolling */
}

/* For Webkit Browsers (Chrome, Safari) */
.portfolio-grid-wrapper::-webkit-scrollbar {
    width: 8px; /* thickness */
}

.portfolio-grid-wrapper::-webkit-scrollbar-track {
    background: #1a1a1a; /* track color */
    border-radius: 10px;
}

.portfolio-grid-wrapper::-webkit-scrollbar-thumb {
    background: #E53935; /* thumb color */
    border-radius: 10px;
    transition: background 0.3s ease;
}

.portfolio-grid-wrapper::-webkit-scrollbar-thumb:hover {
    background: #ff6659; /* hover effect */
}

/* For Firefox */
.portfolio-grid-wrapper {
    scrollbar-width: thin;
    scrollbar-color: #E53935 #1a1a1a; /* thumb track */
}

  .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 25px;
  }

  .portfolio-item {
      position: relative;
      overflow: hidden;
      border-radius: 16px;
      background: #000;
  }

  .portfolio-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: 0.4s ease;
  }

  .portfolio-item::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.55);
      opacity: 0;
      transition: 0.4s;
  }

  .portfolio-item:hover img {
      transform: scale(1.08);
  }

  .portfolio-item:hover::after {
      opacity: 1;
  }

  /* RESPONSIVE */
  @media(max-width:900px) {
      .portfolio-grid {
          grid-template-columns: repeat(2, 1fr);
      }
  }

  @media(max-width:600px) {
      .portfolio-grid {
          grid-template-columns: 1fr;
      }
  }


  /* FAQ Section */
.faq-area {
    padding: 80px 6%;
    text-align: center;
    /* background: #0E0E0E; */
    color: #E7E7E7;
}

.faq-area h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 10px;
}

.faq-subtitle {
    max-width: 700px;
    margin: 0 auto 50px;
    color: #bdbdbd;
}

/* Accordion */
.faq-card {
    background: #1a1a1a;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.faq-card.show {
    opacity: 1;
    transform: translateY(0);
}

.faq-title {
    padding: 20px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    background: #0E0E0E;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #E7E7E7;
}

.faq-title:hover {
    color: #E53935;
}

.faq-body {
    max-height: 0;
    padding: 0 20px;
    background: #1a1a1a;
    color: #E7E7E7;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-card.active .faq-body {
    max-height: 500px;
    padding: 15px 20px;
}

/* Plus/Minus Icon */
.faq-title::after {
    content: '+';
    font-size: 20px;
    color: #E53935;
    transition: transform 0.3s ease;
}

.faq-card.active .faq-title::after {
    content: '−';
    transform: rotate(180deg);
}

/* Container */
.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive */
@media(max-width:600px) {
    .faq-title {
        font-size: 16px;
    }
    .faq-body {
        font-size: 14px;
    }
}

/* blog section */
/* HERO */
.blog-hero {
  height: 260px;
  background: linear-gradient(
    rgba(229,57,53,0.85),
    rgba(229,57,53,0.85)
  ),
  url("images/blog-banner.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  text-align: center;
  color: #fff;
}

.hero-overlay h1 {
  font-size: 48px;
  font-weight: 700;
}

.hero-overlay p {
  margin-top: 10px;
  font-size: 14px;
}

/* BLOG SECTION */
.blog-section {
  padding: 80px 6%;
  background: #E7E7E7;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* CARD */
.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 25px;
}

.blog-content h3 {
  color: #E53935;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.blog-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-content .date {
  font-size: 13px;
  color: #777;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .hero-overlay h1 {
    font-size: 36px;
  }
}