
  /* ===== GLOBAL ANIMATION ===== */


            * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: "Manrope", sans-serif;
                scroll-behavior: smooth;
      }


      section {
        scroll-margin-top: 100px; /* sticky header space */
        overflow-x: hidden;
      }
      .anim {
        opacity: 0;
        transition: all 0.8s ease;
      }

      /* Directions */
      .anim-left {
        transform: translateX(-80px);
      }
      .anim-right {
        transform: translateX(80px);
      }
      .anim-top {
        transform: translateY(-80px);
      }
      .anim-bottom {
        transform: translateY(80px);
      }
      .anim-zoom {
        transform: scale(0.8);
      }

      /* ACTIVE */
      .anim.show {
        opacity: 1;
        transform: translate(0, 0) scale(1);
        color: #350000;
      }

      /* Delay (optional) */
      .delay-1 {
        transition-delay: 0.2s;
      }
      .delay-2 {
        transition-delay: 0.4s;
      }
      .delay-3 {
        transition-delay: 0.6s;
      }







      /* ================= HERO ================= */
      .hero {
        height: 600px;
        position: relative;
        overflow: visible; /* ✅ */
        background: url("./assets/images/slider.png") no-repeat center/cover;
      }

      /* LIGHT OVERLAY */
      .hero::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
      }

      /* MAIN WRAP */
      .hero-wrapper {
        position: relative;
        z-index: 2;
        width: 90%;
        max-width: 1200px;
        margin: auto;
        height: 100%;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding-top: 65px;
      }

      /* LEFT CONTENT */
      .hero-left {
        max-width: 550px;
      }

      /* TITLE */
      .hero-left h1 {
        font-size: 52px;
        font-family: Impact, sans-serif;
        color: #350000;
        text-transform: uppercase;
        line-height: 1.2;
      }

      /* BOX */
      .hero-box {
        margin-top: 40px;
        background: #9ea0a3;
        padding: 18px 20px;
        position: relative;
        color: #fff;
        max-width: 400px;
      }

      .hero-box::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 6px;
        height: 100%;
        background: #992728;
      }

      .hero-box p {
        margin-left: 15px;
        font-size: 20px;
        line-height: 1.5;
      }

      /* BUTTONS */
      .hero-btns {
        margin-top: 40px;
        display: flex;
        gap: 15px;
      }

      .btn1-outline {
        padding: 12px 25px;
        border: 2px solid #992728;
        border-radius: 12px;
        color: #992728;
        text-decoration: none;
        font-weight: 600;
      }

      .btn1-outline:hover {
        background: #992728;
        color: #fff;
      }

      .btn1-fill {
        padding: 12px 25px;
        background: #992728;
        border-radius: 12px;
        color: #fff;
        text-decoration: none;
        font-weight: 600;
      }

      .btn1-fill:hover {
        background: #7a1f20;
      }

      /* RIGHT TEXT */
      .hero-right {
        color: #fff;
        font-size: 22px;
        font-weight: 500;
        text-align: right;
        line-height: 1.5;
        margin-top: 10px;
      }

      /* ================= RESPONSIVE ================= */
      @media (max-width: 768px) {
        .hero {
          height: auto;
          padding: 60px 0;
        }

        .hero-wrapper {
          flex-direction: column;
          gap: 30px;
        }

        .hero-left h1 {
          font-size: 34px;
        }

        .hero-btns {
          flex-direction: column;
        }

        .hero-right {
          text-align: left;
          color: #350000;
        }
        .hero-wrapper {
          position: relative;
          z-index: 2;
          width: 90%;
          max-width: 1200px;
          margin: auto;
          height: 100%;
          display: flex;
          justify-content: space-between;
          align-items: flex-start;
          padding-top: 0px;
        }
      }





      /* ================= ABOUT SECTION ================= */
      .about-box {
        background: #e3e3e3;
        padding: 40px 0;
      }

      .about-wrapper {
        display: flex;
        justify-content: space-between;
        gap: 40px;
        flex-wrap: wrap;
      }

      /* ITEM */
      .about-item {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        max-width: 350px;
      }

      /* ICON */
      .icon-box {
        width: 80px;
        height: 80px;
        border: 1px solid #350000;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .icon-box i {
        font-size: 26px;
        color: #350000;
      }

      /* TEXT */
      .content h3 {
        font-family: Impact, sans-serif;
        font-size: 24px;
        color: #350000;
        text-transform: uppercase;
        margin-bottom: 8px;
      }

      .content p {
        font-size: 14px;
        color: #666;
        line-height: 1.6;
      }

      /* ================= RESPONSIVE ================= */
      @media (max-width: 768px) {
        .about-wrapper {
          flex-direction: column;
          gap: 30px;
        }
        .about-section {
          background: #fcfcfc;
          padding: 32px 0 !important;
        }
        .testimonial-section {
          background: #f3f3f3;
          padding: 32px 0px !important;
        }
        .partners-section {
          background: #f9f9f9;
          padding: 27px 0px !important;
        }
        .team-section {
          background: #f9f9f9;
          padding: 27px 0px !important;
        }
      }




      /* ================= ABOUT ================= */

      .about-section {
        background: #fcfcfc;
        padding: 100px 0;
      }

      .about-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 40px;
      }

      /* LEFT */
      .about-left {
        max-width: 480px;
      }

      .tag {
        color: #9ea0a3;
        font-weight: 700;
      }

      .about-left h2 {
        font-family: Impact;
        font-size: 52px;
        color: #350000;
        text-transform: uppercase;
        margin: 15px 0;
        line-height: 1.2;
      }

      .desc {
        color: #992728;
        line-height: 1.6;
      }

      /* BUTTON */
      .about-btn {
        display: inline-block;
        margin-top: 25px;
        background: #9ea0a3;
        padding: 12px 25px;
        border-radius: 10px;
        color: #fff;
        text-decoration: none;
      }

      /* STATS */
      .stats {
        margin-top: 50px;
        display: flex;
        gap: 40px;
      }

      .stat-item {
        text-align: left;
      }

      .stat-item .num {
        background: #992728;
        color: #fff;
        padding: 5px 10px;
        border-radius: 50px;
        font-size: 12px;
      }

      .stat-item h3 {
        font-size: 40px;
        color: #9ea0a3;
        margin: 10px 0;
      }

      .stat-item p {
        font-size: 14px;
      }

      /* RIGHT */
      .about-right {
        position: relative;
        width: 600px;
      }

      .main-img {
        width: 100%;
      }


      .small-img {
        position: absolute;
        width: 250px;
        bottom: -40px;
        left: 0; /* FIX */
        transform: translateX(-30px); /* optional */
      }

      /* TEXT RIGHT */
      .about-text {
        position: absolute;
        right: 0;
        bottom: -120px;
        text-align: right;
        max-width: 350px;
      }

      .about-text h4 {
        font-size: 20px;
        color: #350000;
      }

      .about-text p {
        color: #9ea0a3;
        margin-top: 10px;
      }

      /* ================= RESPONSIVE ================= */
      /* ================= RESPONSIVE FIX ================= */
      @media (max-width: 768px) {
        .about-wrapper {
          flex-direction: column;
          align-items: center; /* center full layout */
          text-align: center;
        }

        .about-left {
          max-width: 100%;
        }

        .about-left h2 {
          font-size: 34px;
        }

        .desc {
          margin: auto;
        }

        .about-btn {
          margin-left: auto;
          margin-right: auto;
        }

        /* ===== STATS CENTER FIX ===== */
        .stats {
          flex-direction: column;
          align-items: center;
          gap: 25px;
          text-align: center;
        }

        .stat-item {
          text-align: center;
        }

        .stat-item h3 {
          font-size: 32px;
        }

        /* ===== RIGHT SIDE ===== */
        .about-right {
          width: 100%;
          margin-top: 30px;
        }

        .main-img {
          width: 100%;
        }

        .small-img {
          position: static;
          width: 180px;
          margin: 20px auto 0; /* center image */
          display: block;
        }

        .about-text {
          position: static;
          text-align: center;
          margin-top: 20px;
        }
      }




      /* ================= NOTICE ================= */
      .notice-section {
        padding: 0; /* remove gap */
        background: #f9f9f9;
      }

      /* FULL WIDTH */
      .notice-wrapper {
        position: relative;
        width: 100%;
        margin: 0;
        /* overflow:hidden; */
      }

      /* IMAGE */
      .notice-wrapper img {
        width: 100%;
        /* height:400px; */
        object-fit: cover;
        display: block;
      }

      /* DARK OVERLAY */
      .notice-wrapper::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        top: 0;
        left: 0;
        z-index: 1;
      }

      /* TEXT */
      .notice-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: #fff;
        z-index: 2;
        width: 90%;
      }

      /* TITLE (BIGGER) */
      .notice-content h2 {
        font-size: 48px;
        font-family: Impact;
        margin-bottom: 15px;
      }

      /* TEXT (BIGGER) */
      .notice-content p {
        font-size: 20px;
        line-height: 1.7;
      }

      /* ================= RESPONSIVE ================= */

      /* Tablet */
      @media (max-width: 768px) {
        .notice-wrapper img {
          height: 300px;
        }

        .notice-content h2 {
          font-size: 30px;
        }

        .notice-content p {
          font-size: 16px;
        }
      }

      /* Mobile */
      @media (max-width: 480px) {
        .notice-wrapper img {
          height: 250px;
        }

        .notice-content h2 {
          font-size: 22px;
        }

        .notice-content p {
          font-size: 14px;
        }
      }





      /* ================= SERVICES ================= */
      .services {
        background: #f9f9f9;
        padding: 40px 0;
      }

      /* TOP */
      .services-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 60px;
        flex-wrap: wrap;
        gap: 20px;
      }

      .services-top h2 {
        font-family: Impact;
        font-size: 36px;
        color: #350000;
        text-transform: uppercase;
        max-width: 600px;
      }

      .service-btn {
        background: #992728;
        color: #fff;
        padding: 12px 25px;
        border-radius: 12px;
        text-decoration: none;
        font-weight: 600;
      }

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

      /* CARD */
      .service-card {
        background: #350000;
        color: #fff;
        height: 500px;
        position: relative;
        /* overflow:hidden; */
        transition: 0.4s;
      }

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

      /* CONTENT */
      .card-content {
        padding: 40px;
        background-color: #350000;
      }

      .card-content h3 {
        font-size: 22px;
        margin-bottom: 15px;
        color: #fff;
      }

      .card-content p {
        color: #9ea0a3;
        line-height: 1.6;
      }

      /* IMAGE */
      .card-img {
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 55%;
      }

      .card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      /* ICON */
      .icon {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 60px;
        height: 60px;
        background: #992728;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .icon i {
        color: #fff;
      }

      /* ================= RESPONSIVE ================= */
      @media (max-width: 992px) {
        .services-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      @media (max-width: 768px) {
        .services-grid {
          grid-template-columns: 1fr;
        }

        .services-top {
          flex-direction: column;
          align-items: flex-start;
        }

        .services-top h2 {
          font-size: 32px;
        }
      }






      /* ================= INDUSTRIES ================= */
      .industries {
        background: #f9f9f9;
        padding: 60px 0;
        text-align: center;
      }

      /* TITLE */
      .section-title {
        font-family: Impact, sans-serif;
        font-size: 44px;
        color: #350000;
        text-transform: uppercase;
        margin-bottom: 60px;
      }

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

      .industry-card:nth-child(1) { grid-column: 1 / 3; }
      .industry-card:nth-child(2) { grid-column: 3 / 5; }
      .industry-card:nth-child(3) { grid-column: 5 / 7; }

      .industry-card:nth-child(4) { grid-column: 1 / 3; }
      .industry-card:nth-child(5) { grid-column: 3 / 5; }
      .industry-card:nth-child(6) { grid-column: 5 / 7; }
      /* CARD */
      .industry-card {
        background: rgba(255, 255, 255, 0.95);
        padding: 40px 25px;
        border-radius: 10px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
        transition: 0.4s;
        cursor: pointer;
        height: 100%; /* FIX uneven height */
      }

      /* ICON */
      .industry-card i {
        font-size: 40px;
        color: #350000;
        margin-bottom: 20px;
      }

      /* TITLE */
      .industry-card h3 {
        font-family: Impact, sans-serif;
        font-size: 22px;
        color: #992728;
        text-transform: uppercase;
        margin-bottom: 15px;
      }

      /* TEXT */
      .industry-card p {
        font-size: 14px;
        color: #9ea0a3;
        line-height: 1.6;
      }

      /* HOVER */
      .industry-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
      }

      .industry-card:hover i {
        color: #992728;
      }

      /* ================= RESPONSIVE ================= */

      /* Tablet */
      @media (max-width: 992px) {
        .industries-grid {
          grid-template-columns: repeat(2, 1fr);
        }

        .industry-card {
          grid-column: auto !important; /* RESET */
        }

        .section-title {
          font-size: 34px;
        }
      }

      /* Mobile */
      @media (max-width: 576px) {
        .industries-grid {
          grid-template-columns: 1fr;
        }

        .section-title {
          font-size: 28px;
        }

        .industry-card {
          padding: 30px 20px;
        }
      }








      /* ===== SECTION ===== */
      .request {
        position: relative;
        padding: 80px 20px;
        overflow: hidden;
      }

      /* BG IMAGE */
      .bg-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("./assets/images/slider.png") center/cover no-repeat;
        z-index: 0;
      }
     .form-group select {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 6px;
        font-size: 16px;
      }
      /* overlay for readability */
      .request::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(158, 160, 163, 0.85);
        top: 0;
        left: 0;
        z-index: 1;
      }

      /* CONTAINER */
      .request-container {
        max-width: 1200px;
        margin: auto;
        display: flex;
        align-items: center;
        gap: 60px;
        position: relative;
        z-index: 2;
      }

      /* ===== LEFT ===== */
      .request-left {
        width: 55%;
        position: relative;
      }

      /* RED BLOCK */
      .red-box {
        position: absolute;
        width: 90%;
        height: 100%;
        background: #350000;
        top: -27px;
        left: -27px;
        z-index: 1;
      }

      /* IMAGE */
      .request-left img {
        width: 90%;
        position: relative;
        z-index: 2;
        border: 4px solid #9ea0a3;
      }

      /* ===== RIGHT ===== */
      .request-right {
        width: 45%;
        background: #d9d9d9;
        padding: 40px;
        z-index: 2;
      }

      /* TITLE */
      .request-right h2 {
        font-family: Impact, sans-serif;
        font-size: 36px;
        color: #992728;
        text-transform: uppercase;
        margin-bottom: 10px;
      }

      /* DESC */
      .request-right p {
        font-size: 14px;
        color: #350000;
        margin-bottom: 30px;
        line-height: 1.6;
      }

      /* FORM */
      .request-form {
        display: flex;
        flex-direction: column;
        gap: 18px;
      }

      .form-group {
        display: flex;
        flex-direction: column;
      }

      .form-group label {
        font-size: 13px;
        color: #666;
        margin-bottom: 5px;
      }

      .form-group input {
        height: 45px;
        background: #f2f2f2;
        border: 1px solid #ddd;
        padding: 0 10px;
        outline: none;
      }

      /* BUTTON */
      .submit-btn {
        width: 200px;
        height: 45px;
        background: #992728;
        color: #fff;
        border: none;
        cursor: pointer;
        transition: 0.3s;
      }

      .submit-btn:hover {
        background: #7a1f20;
      }

      /* ===== RESPONSIVE ===== */
      @media (max-width: 992px) {
        .request-container {
          flex-direction: column;
        }

        .request-left,
        .request-right {
          width: 100%;
        }

        .red-box {
          width: 100%;
          height: 90%;
          top: 30px;
        }

        .request-left img {
          width: 100%;
        }
      }

      @media (max-width: 600px) {
        .request-right {
          padding: 25px;
        }

        .request-right h2 {
          font-size: 26px;
        }

        .submit-btn {
          width: 100%;
        }
      }






      .why-section {
        padding: 80px 20px;
        background: #fff;
        overflow: hidden;
      }

      .container {
        max-width: 1200px;
        margin: auto;
      }

      /* TITLE */
      .why-title {
        font-size: 48px;
        font-weight: 700;
        color: #350000;
        text-transform: uppercase;
        margin-bottom: 50px;
      }

      /* GRID (MAIN FIX 🔥) */
      .why-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
      }

      /* ITEM */
      .why-item {
        display: flex;
        gap: 20px;
      }

      /* ICON */
      .icon-box {
        width: 54px;
        height: 54px;
        background: #992728;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        border-radius: 8px;
      }

      .icon-box i {
        color: #fff;
        font-size: 20px;
      }

      /* CONTENT */
      .why-content h5 {
        color: #992728;
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 10px;
      }

      .why-content p {
        color: #9ea0a3;
        font-size: 15px;
        line-height: 1.6;
        margin: 0;
      }

      /* LINE */
      .border-line {
        border-top: 1px solid #e5e5e5;
        margin: 40px 0;
      }

      /* RESPONSIVE */
      @media (max-width: 992px) {
        .why-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      @media (max-width: 600px) {
        .why-grid {
          grid-template-columns: 1fr;
        }

        .why-title {
          font-size: 32px;
        }
      }







      /* ===== SECTION ===== */
      .partners-section {
        background: #f9f9f9;
        padding: 80px 20px;
      }
      .logo-item {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
      }

      .logo-item img {
        max-width: 100%;
        height: 50px; /* adjust as needed */
        object-fit: contain;
      }
      /* ===== WRAPPER (RED BG SAME) ===== */
      .partners-wrapper {
        max-width: 1200px;
        margin: auto;
        background: #350000;
        display: flex;
        gap: 50px;
        padding: 40px;
        align-items: center;
        position: relative;
        overflow: hidden;
      }

      /* subtle glow */
      .partners-wrapper::before {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        background: radial-gradient(
          circle,
          rgba(255, 255, 255, 0.08),
          transparent
        );
        top: -100px;
        left: -100px;
      }

      /* ===== LEFT IMAGE ===== */
      .partners-left {
        width: 50%;
        position: relative;
        /* overflow:hidden; */
      }

      .partners-left img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.4s;
      }

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

      /* ===== PLAY BUTTON ===== */
      .play-btn {
        position: absolute;
        bottom: 20px;
        right: 20px;
        width: 65px;
        height: 65px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(8px);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: 0.3s;
      }

      .play-btn i {
        color: #fff;
        font-size: 18px;
      }

      .play-btn:hover {
        transform: scale(1.15);
        background: #ff4d4d;
      }

      /* ===== RIGHT ===== */
      .partners-right {
        width: 50%;
        color: #fff;
      }

      .tag {
        color: #ffb3b3;
        font-weight: 600;
        font-size: 14px;
      }

      .partners-right h2 {
        font-size: 42px;
        margin: 10px 0;
        font-weight: 800;
        line-height: 1.2;
      }

      .desc {
        color: #d1d1d1;
        line-height: 1.7;
        max-width: 500px;
      }

      /* ===== LOGOS ===== */
      .partner-logos {
        margin-top: 35px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
      }

      .logo-item {
        height: 70px;
        /* background:rgba(255,255,255,0.05);
      border:1px solid rgba(255,255,255,0.1); */
        /* border-radius:12px; */
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 14px;
        transition: 0.3s;
      }

      /* HOVER */
      .logo-item:hover {
        transform: translateY(-6px);
        background: #ff4d4d;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
      }

      /* ===== ANIMATION ===== */
      .partners-left,
      .partners-right {
        opacity: 0;
        transform: translateY(40px);
        animation: fadeUp 1s ease forwards;
      }

      .partners-right {
        animation-delay: 0.3s;
      }

      @keyframes fadeUp {
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* ===== RESPONSIVE ===== */
      @media (max-width: 992px) {
        .partners-wrapper {
          flex-direction: column;
          padding: 25px;
        }

        .partners-left,
        .partners-right {
          width: 100%;
        }

        .partners-right {
          text-align: center;
        }

        .desc {
          margin: auto;
        }
      }

      @media (max-width: 600px) {
        .partners-right h2 {
          font-size: 28px;
        }

        .partner-logos {
          grid-template-columns: repeat(2, 1fr);
        }
      }





      /* ===== SECTION ===== */
      .testimonial-section {
        background: #f3f3f3;
        padding: 30px 20px;
      }

      .container {
        max-width: 1200px;
        margin: auto;
      }

      /* ===== LAYOUT ===== */
      .testimonial-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 60px;
      }

      /* ===== LEFT ===== */
      .testimonial-left {
        max-width: 550px;
      }

      .subtitle {
        color: #9ea0a3;
        font-weight: 600;
        margin-bottom: 10px;
      }

      .title {
        font-size: 56px;
        font-family: Impact, sans-serif;
        color: #350000;
        text-transform: uppercase;
        line-height: 1.2;
      }

      /* .divider {
     height: 1px;
      background: #ddd;
      margin: 25px 0;
     } */

      .testimonial-text {
        font-size: 18px;
        color: #350000;
        line-height: 1.8;
      }

      /* CLIENT + READ */
      .client-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 20px;
      }

      .client {
        display: flex;
        align-items: center;
        gap: 12px;
      }

      .client img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
      }

      .client-name {
        font-size: 16px;
        color: #350000;
      }

      .client-role {
        font-size: 12px;
        color: #7b7b7b;
      }

      .read {
        font-size: 12px;
        border-bottom: 1px solid #000;
        cursor: pointer;
      }

      /* BUTTON */
      .btn1 {
        margin-top: 40px;
        display: inline-block;
        background: #992728;
        color: #fff;
        padding: 14px 28px;
        border-radius: 12px;
        text-decoration: none;
        font-weight: 600;
      }

      /* ===== RIGHT ===== */
      .testimonial-right {
        text-align: center;
      }

      .testimonial-right img {
        width: 100%;
        max-width: 450px;
      }

      /* IMAGE BOTTOM AREA */
      .image-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 25px;
      }

      /* STATS */
      .stats {
        display: flex;
        gap: 30px;
      }

      .stat {
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .stat h3 {
        font-size: 32px;
        margin: 0;
      }

      .stat p {
        font-size: 13px;
        color: #7b7b7b;
        margin: 0;
      }

      /* ===== RESPONSIVE ===== */
      @media (max-width: 992px) {
        .testimonial-wrapper {
          flex-direction: column;
          text-align: center;
        }

        .client-row {
          flex-direction: column;
          gap: 10px;
        }

        .image-bottom {
          flex-direction: column;
          gap: 20px;
        }

        .stats {
          justify-content: center;
        }
      }

      @media (max-width: 768px) {
        .title {
          font-size: 32px;
        }
      }




      /* ================= TEAM ================= */
      .team-section {
        background: #f9f9f9;
        padding: 30px 20px;
      }

      .container {
        max-width: 1140px;
        margin: auto;
      }

      /* HEADER */
      .team-header {
        text-align: center;
        max-width: 700px;
        margin: 0 auto 60px;
      }

      .tag {
        color: #9ea0a3;
        font-weight: 700;
      }

      .team-header h2 {
        font-family: Impact;
        font-size: 56px;
        color: #350000;
        text-transform: uppercase;
        margin: 15px 0;
      }

      .team-header p {
        color: #7b7b7b;
        line-height: 1.6;
      }

      /* GRID */
      .team-grid {
        display: flex;
        justify-content: center;
        gap: 60px;
        flex-wrap: wrap;
      }

      /* CARD */
      .team-card {
        text-align: center;
        max-width: 300px;
        transition: 0.3s;
      }

      /* IMAGE */
      .team-card img {
        width: 300px;
        height: 300px;
        border-radius: 50%;
        object-fit: cover;
        transition: 0.3s;
      }

      /* NAME */
      .team-card h3 {
        margin-top: 25px;
        font-size: 22px;
        color: #350000;
      }

      /* LINE */
      .team-card .line {
        width: 100%;
        height: 1px;
        background: #e5e5e5;
        margin: 10px 0;
      }

      /* ROLE */
      .team-card span {
        color: #7b7b7b;
        font-size: 16px;
      }

      /* HOVER EFFECT */
      .team-card:hover {
        transform: translateY(-10px);
      }

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

      /* ================= ANIMATION ================= */
      .team-card {
        opacity: 0;
        transform: translateY(40px);
        animation: fadeUp 1s ease forwards;
      }

      .team-card:nth-child(2) {
        animation-delay: 0.2s;
      }

      .team-card:nth-child(3) {
        animation-delay: 0.4s;
      }

      @keyframes fadeUp {
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* ================= RESPONSIVE ================= */
      @media (max-width: 768px) {
        .team-header h2 {
          font-size: 34px;
        }

        .team-grid {
          gap: 40px;
        }

        .team-card img {
          width: 220px;
          height: 220px;
        }
      }








      /* ================= BANK SECURITY SERVICE PAGE ================= */

      /* ===== BANK HERO SECTION ===== */
      .bank-hero {
        position: relative;
        height: 650px;
        background: linear-gradient(135deg, #350000 0%, #992728 100%);
        display: flex;
        align-items: center;
        overflow: hidden;
      }

      .bank-hero::before {
        content: "";
        position: absolute;
        top: 0;
        right: -100px;
        width: 600px;
        height: 600px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 50%;
        z-index: 1;
      }

      .bank-hero::after {
        content: "";
        position: absolute;
        bottom: -150px;
        left: -150px;
        width: 500px;
        height: 500px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 50%;
        z-index: 1;
      }

      .bank-hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("./assets/images/slider.png") center/cover;
        opacity: 0.1;
        z-index: 0;
      }

      .bank-hero-content {
        position: relative;
        z-index: 2;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 60px;
      }

      .bank-hero-left {
        max-width: 550px;
        color: #fff;
      }

      .bank-hero-tag {
        display: inline-block;
        background: rgba(255, 255, 255, 0.2);
        color: #fff;
        padding: 8px 20px;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 20px;
        border: 1px solid rgba(255, 255, 255, 0.3);
      }

      .bank-hero-left h1 {
        font-size: 56px;
        font-family: Impact, sans-serif;
        font-weight: 900;
        line-height: 1.2;
        margin-bottom: 15px;
        text-transform: uppercase;
      }

      .bank-hero-left p {
        font-size: 20px;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 40px;
        line-height: 1.6;
      }

      .bank-hero-btns {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
      }

      .btn-primary,
      .btn-secondary {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 30px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        font-size: 15px;
      }

      .btn-primary {
        background: #fff;
        color: #992728;
      }

      .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        background: #f0f0f0;
      }

      .btn-secondary {
        background: transparent;
        color: #fff;
        border: 2px solid #fff;
      }

      .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-3px);
      }

      .bank-hero-right {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .bank-hero-icon {
        font-size: 200px;
        color: rgba(255, 255, 255, 0.15);
        animation: float 3s ease-in-out infinite;
      }

      @keyframes float {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-20px); }
      }

      /* ===== BANK OVERVIEW SECTION ===== */
      .bank-overview {
        padding: 80px 20px;
        background: #fcfcfc;
      }

      .section-header {
        text-align: center;
        margin-bottom: 60px;
      }

      .section-header .tag {
        display: inline-block;
        color: #9ea0a3;
        font-weight: 700;
        font-size: 14px;
      }

      .section-header h2 {
        font-family: Impact, sans-serif;
        font-size: 48px;
        color: #350000;
        text-transform: uppercase;
        margin: 15px 0;
        line-height: 1.2;
      }

      .section-header p {
        color: #9ea0a3;
        font-size: 16px;
        max-width: 600px;
        margin: 0 auto;
      }

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

      .overview-card {
        background: #fff;
        padding: 40px 30px;
        border-radius: 12px;
        text-align: center;
        transition: all 0.4s ease;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        border-top: 3px solid transparent;
      }

      .overview-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        border-top-color: #992728;
      }

      .card-icon {
        font-size: 48px;
        color: #992728;
        margin-bottom: 20px;
      }

      .overview-card h3 {
        font-size: 22px;
        color: #350000;
        margin-bottom: 15px;
        font-weight: 600;
      }

      .overview-card p {
        color: #9ea0a3;
        line-height: 1.7;
        font-size: 14px;
      }

      /* ===== BANK SERVICES SECTION ===== */
      .bank-services {
        padding: 80px 20px;
        background: #f9f9f9;
      }

      .services-showcase {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
      }

      .service-item {
        background: #fff;
        padding: 40px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.4s ease;
        border-left: 5px solid #992728;
        position: relative;
      }

      .service-item:hover {
        transform: translateX(10px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      }

      .service-number {
        position: absolute;
        top: 20px;
        right: 30px;
        font-size: 48px;
        font-weight: 900;
        color: rgba(153, 39, 40, 0.1);
        font-family: Impact, sans-serif;
      }

      .service-content h3 {
        font-size: 24px;
        color: #350000;
        margin-bottom: 15px;
        font-weight: 700;
      }

      .service-content p {
        color: #9ea0a3;
        line-height: 1.7;
        margin-bottom: 25px;
        font-size: 14px;
      }

      .service-features {
        list-style: none;
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
      }

      .service-features li {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #350000;
        font-size: 13px;
        font-weight: 600;
      }

      .service-features i {
        color: #992728;
        font-size: 14px;
      }

      /* ===== BANK FEATURES SECTION ===== */
      .bank-features {
        padding: 80px 20px;
        background: #fff;
      }

      .features-wrapper {
        display: flex;
        gap: 60px;
        align-items: center;
      }

      .features-left {
        flex: 1;
        max-width: 550px;
      }

      .features-left h2 {
        font-family: Impact, sans-serif;
        font-size: 48px;
        color: #350000;
        text-transform: uppercase;
        margin: 15px 0 25px;
        line-height: 1.2;
      }

      .features-left p {
        color: #9ea0a3;
        line-height: 1.7;
        margin-bottom: 40px;
      }

      .features-list {
        display: flex;
        flex-direction: column;
        gap: 25px;
      }

      .feature-item {
        display: flex;
        gap: 20px;
      }

      .feature-icon {
        flex-shrink: 0;
        width: 50px;
        height: 50px;
        background: rgba(153, 39, 40, 0.1);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #992728;
        font-size: 22px;
      }

      .feature-text h4 {
        color: #350000;
        font-size: 16px;
        margin-bottom: 5px;
        font-weight: 600;
      }

      .feature-text p {
        color: #9ea0a3;
        font-size: 14px;
        margin: 0;
      }

      .features-right {
        flex: 1;
      }

      .features-image {
        background: linear-gradient(135deg, #992728, #350000);
        border-radius: 12px;
        padding: 80px 40px;
        text-align: center;
        margin-bottom: 30px;
        min-height: 300px;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .image-placeholder {
        text-align: center;
        color: rgba(255, 255, 255, 0.8);
      }

      .image-placeholder i {
        font-size: 80px;
        color: rgba(255, 255, 255, 0.6);
        margin-bottom: 20px;
        display: block;
      }

      .image-placeholder p {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.9);
        margin: 0;
      }

      .features-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
      }

      .stat-box {
        background: #f9f9f9;
        padding: 25px 15px;
        border-radius: 10px;
        text-align: center;
        border-bottom: 3px solid #992728;
      }

      .stat-box h3 {
        font-size: 32px;
        color: #992728;
        margin-bottom: 5px;
        font-weight: 700;
      }

      .stat-box p {
        color: #9ea0a3;
        font-size: 13px;
        margin: 0;
      }

      /* ===== BANK WHY SECTION ===== */
      .bank-why {
        padding: 80px 20px;
        background: #fcfcfc;
      }

      .why-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
      }

      .why-card {
        text-align: center;
        padding: 40px 30px;
      }

      .why-icon {
        width: 80px;
        height: 80px;
        background: rgba(153, 39, 40, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 36px;
        color: #992728;
        margin: 0 auto 25px;
        transition: all 0.3s ease;
      }

      .why-card:hover .why-icon {
        background: #992728;
        color: #fff;
        transform: scale(1.1);
      }

      .why-card h3 {
        font-size: 20px;
        color: #350000;
        margin-bottom: 15px;
        font-weight: 600;
      }

      .why-card p {
        color: #9ea0a3;
        line-height: 1.7;
        font-size: 14px;
      }

      /* ===== BANK CTA SECTION ===== */
      .bank-cta {
        position: relative;
        padding: 80px 20px;
        overflow: hidden;
      }

      .bank-cta::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, #350000, #992728);
        z-index: 0;
      }

      .bank-cta-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("./assets/images/slider.png") center/cover;
        opacity: 0.15;
        z-index: 1;
      }

      .bank-cta-content {
        position: relative;
        z-index: 2;
        text-align: center;
        color: #fff;
      }

      .bank-cta-content h2 {
        font-family: Impact, sans-serif;
        font-size: 52px;
        text-transform: uppercase;
        margin-bottom: 15px;
        line-height: 1.2;
      }

      .bank-cta-content p {
        font-size: 18px;
        margin-bottom: 40px;
        color: rgba(255, 255, 255, 0.9);
      }

      .cta-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
      }

      .cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 16px 35px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        font-size: 15px;
      }

      .cta-primary {
        background: #fff;
        color: #350000;
      }

      .cta-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        background: #f0f0f0;
      }

      .cta-secondary {
        background: rgba(255, 255, 255, 0.2);
        color: #fff;
        border: 2px solid #fff;
      }

      .cta-secondary:hover {
        background: #fff;
        color: #350000;
        transform: translateY(-3px);
      }

      /* ===== BANK STATS SECTION ===== */
      .bank-stats {
        padding: 80px 20px;
        background: #f9f9f9;
      }

      .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
      }

      .stat-item {
        text-align: center;
      }

      .stat-item .stat-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #992728, #350000);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 36px;
        color: #fff;
        margin: 0 auto 20px;
      }

      .stat-item h3 {
        font-size: 48px;
        font-family: Impact, sans-serif;
        color: #350000;
        margin-bottom: 10px;
        font-weight: 900;
      }

      .stat-item p {
        color: #9ea0a3;
        font-size: 16px;
        margin: 0;
      }

      /* ================= RESPONSIVE DESIGN ================= */

      /* Tablets */
      @media (max-width: 992px) {
        .bank-hero-content {
          flex-direction: column;
          text-align: center;
          gap: 40px;
        }

        .bank-hero-left h1 {
          font-size: 42px;
        }

        .bank-hero-right {
          display: none;
        }

        .overview-grid {
          grid-template-columns: repeat(2, 1fr);
        }

        .services-showcase {
          grid-template-columns: 1fr;
        }

        .features-wrapper {
          flex-direction: column;
          gap: 40px;
        }

        .why-grid {
          grid-template-columns: repeat(2, 1fr);
        }

        .stats-grid {
          grid-template-columns: repeat(2, 1fr);
        }

        .section-header h2 {
          font-size: 36px;
        }

        .bank-cta-content h2 {
          font-size: 40px;
        }
      }

      /* Mobile */
      @media (max-width: 768px) {
        .bank-hero {
          height: auto;
          padding: 60px 20px;
        }

        .bank-hero-left h1 {
          font-size: 36px;
        }

        .bank-hero-left p {
          font-size: 16px;
        }

        .bank-hero-btns {
          flex-direction: column;
        }

        .btn-primary,
        .btn-secondary {
          width: 100%;
          justify-content: center;
        }

        .bank-overview {
          padding: 60px 20px;
        }

        .overview-grid {
          grid-template-columns: 1fr;
          gap: 20px;
        }

        .overview-card {
          padding: 30px 20px;
        }

        .bank-services {
          padding: 60px 20px;
        }

        .services-showcase {
          gap: 20px;
        }

        .service-item {
          padding: 30px 20px;
        }

        .bank-features {
          padding: 60px 20px;
        }

        .features-left h2 {
          font-size: 32px;
        }

        .features-stats {
          grid-template-columns: 1fr;
          gap: 15px;
        }

        .bank-why {
          padding: 60px 20px;
        }

        .why-grid {
          grid-template-columns: 1fr;
          gap: 25px;
        }

        .bank-cta {
          padding: 60px 20px;
        }

        .bank-cta-content h2 {
          font-size: 32px;
        }

        .bank-cta-content p {
          font-size: 16px;
        }

        .cta-buttons {
          flex-direction: column;
        }

        .cta-btn {
          width: 100%;
          justify-content: center;
        }

        .bank-stats {
          padding: 60px 20px;
        }

        .stats-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 25px;
        }

        .stat-item h3 {
          font-size: 32px;
        }

        .section-header h2 {
          font-size: 28px;
        }
      }

      /* Small Mobile */
      @media (max-width: 480px) {
        .bank-hero-left h1 {
          font-size: 28px;
        }

        .bank-hero-left p {
          font-size: 14px;
        }

        .overview-card h3 {
          font-size: 18px;
        }

        .overview-card p {
          font-size: 13px;
        }

        .service-content h3 {
          font-size: 20px;
        }

        .service-features {
          gap: 10px;
        }

        .why-card h3 {
          font-size: 18px;
        }

        /* .stats-grid {
          grid-template-columns: 1fr;
        } */

        .stat-item h3 {
          font-size: 28px;
        }

        .stat-item p {
          font-size: 14px;
        }

        .feature-item {
          gap: 15px;
        }

        .feature-text h4 {
          font-size: 15px;
        }
      }
