  :root {
      --primary-color: #3b3b3b;
      --overlay-color: rgba(0, 0, 0, 0.65);
      --text-light: #ffffff;
      --font-main: 'Roboto', sans-serif;
  }

  body,
  html {
      margin: 0;
      padding: 0;
      font-family: var(--font-main);
  }

  .section-padding {
      padding: 50px 0;
  }

  .hero-section {
      position: relative;
      height: 100vh;
      color: var(--text-light);
      overflow: hidden;

  }

  .hero-video {
      position: absolute;
      top: -60px;
      left: 0;
      min-width: 100%;
      min-height: 100%;
      object-fit: cover;
      z-index: 0;
  }

  #typed-h1 {
      font-size: 45px;

  }

  .overlay {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background: var(--overlay-color);
      z-index: 1;
  }

  .custom-navbar {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 9999;
      padding: 1rem 2rem;

  }


  .custom-logo {
      font-size: 1.5rem;
      font-weight: bold;
      color: var(--text-light);
  }

  .custom-logo .embroid-logo {
      width: 140px;
  }

  .nav-toggle {
      background: none;
      border: none;
      outline: none;
      display: flex;
      flex-direction: column;
      gap: 5px;
  }

  .nav-toggle span {
      width: 25px;
      height: 3px;
      background-color: white;
  }

  .mobile-nav {
      position: fixed;
      top: 0;
      left: -100%;
      width: 70%;
      height: 100%;
      background-color: #111;
      padding: 2rem 1rem;
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
      transition: left 0.3s ease;
      z-index: 9;
  }

  .mobile-nav.show {
      left: 0;
  }

  .mobile-nav a {
      color: white;
      text-decoration: none;
      font-size: 1.1rem;
  }

  .hero-content {
      position: relative;
      z-index: 2;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 0 1rem;
      padding-top: 40px;
  }

  .hero-content h4 {
      font-size: 1rem;
      letter-spacing: 2px;
      color: var(--primary-color);
      font-weight: bold;
  }

  .hero-content h1 {
      font-size: 25px;
      font-weight: 400;
      /* margin: 3rem 0; */

      font-family: var(--font-main);
  }

  .hero-content h1 span {
      font-weight: 600;
      color: #dfdbdb;

  }

  .hero-content h1 b {
      font-weight: 900;
      color: #ffffff;
  }


  .hero-content h2 {
      font-size: 24px;
      font-weight: 300;
  }

  .hero-content #typed-h2 {
      font-size: 30px;
      font-weight: 400;
      color: #ffffff;
      margin-bottom: 2rem;
  }

  @media (max-width: 768px) {
      .hero-content h1 {
          font-size: 2rem;
      }

      .hero-content h2 {
          font-size: 1.2rem;
      }
  }

  .nav-link-caps {
      font-variant: small-caps;
      font-size: 18px;
      font-weight: 600;
      transition: all 0.3s ease;
  }

  .nav-link-caps:hover {
      opacity: 0.8;
  }

  /* btn code */
  /* From Uiverse.io by gharsh11032000 */
  /* From Uiverse.io by cssbuttons-io */
  .fancy {
      background-color: transparent;
      border: 2px solid #ffffff;
      border-radius: 0;
      box-sizing: border-box;
      color: #000000;
      cursor: pointer;
      display: inline-block;
      /* float: right; */
      font-weight: 700;
      letter-spacing: 0.05em;
      margin: 0;
      outline: none;
      overflow: visible;
      padding: 1.25em 2em;
      position: relative;
      text-align: center;
      text-decoration: none;
      text-transform: none;
      transition: all 0.3s ease-in-out;
      user-select: none;
      font-size: 13px;
  }

  .fancy::before {
      content: " ";
      width: 1.5625rem;
      height: 2px;
      background: rgb(255, 255, 255);
      top: 50%;
      left: 1.5em;
      position: absolute;
      transform: translateY(-50%);
      transform-origin: center;
      transition: background 0.3s linear, width 0.3s linear;
  }

  .fancy .text {
      font-size: 13px;
      line-height: 1.33333em;
      padding-left: 2em;
      display: block;
      text-align: left;
      transition: all 0.3s ease-in-out;
      text-transform: uppercase;
      text-decoration: none;
      color: rgb(255, 255, 255);
  }

  .fancy .top-key {
      height: 2px;
      width: 1.5625rem;
      top: -2px;
      left: 0.625rem;
      position: absolute;
      background: var(--primary-color);
      transition: width 0.5s ease-out, left 0.3s ease-out;
  }

  .fancy .bottom-key-1 {
      height: 2px;
      width: 1.5625rem;
      right: 1.875rem;
      bottom: -2px;
      position: absolute;
      background: var(--primary-color);
      transition: width 0.5s ease-out, right 0.3s ease-out;
  }

  .fancy .bottom-key-2 {
      height: 2px;
      width: 0.625rem;
      right: 0.625rem;
      bottom: -2px;
      position: absolute;
      background: var(--primary-color);
      transition: width 0.5s ease-out, right 0.3s ease-out;
  }

  .fancy:hover {
      color: rgb(0, 0, 0);
      background: rgb(255, 255, 255);
  }

  .fancy:hover::before {
      width: 0.9375rem;
      background: rgb(0, 0, 0);
  }

  .fancy:hover .text {
      color: rgb(0, 0, 0);
      padding-left: 1.5em;
  }

  .fancy:hover .top-key {
      left: -2px;
      width: 0px;
  }

  .fancy:hover .bottom-key-1,
  .fancy:hover .bottom-key-2 {
      right: 0;
      width: 0;
  }


  /* all service block card */
  .all-service-sec .left-service {
      height: 360px;
  }

  .card-block {
      position: relative;
      background-size: cover;
      background-position: center;
      height: 100%;
      padding: 20px;
      height: 350px;
      transition: background-color 0.3s ease-in-out;
      overflow: hidden;
  }

  /* Sliding red background on hover */
  .card-block::before {
      content: "";
      position: absolute;
      inset: 0;
      background-color: rgba(146, 146, 146, 0.85);
      /* Red background (#e21e1e) */
      transform: translateY(100%);
      transition: transform 0.4s ease-in-out;
      z-index: 1;
  }

  .card-block:hover::before {
      transform: translateY(0);
  }

  .card-block .overlay {
      position: absolute;
      inset: 0;
      background-color: rgba(0, 0, 0, 0.4);
      /* Dark semi-transparent */
      z-index: 1;
      transition: background-color 0.3s ease-in-out;
  }



  /* Make sure content appears on top */
  .card-block i,
  .card-block h5,
  .card-block hr {
      position: relative;
      z-index: 3;
      color: white;
  }

  .card-block hr {
      border-top: 4px solid #fff;
      z-index: 2;
      position: relative;
      opacity: 1;
      width: 30%;
  }

  .card-block span {
      font-weight: 800;
      font-size: 22px;
  }



  /* Footer css */

  /*--------------------------- Footer css--------------------------- */

  .footer-area {
      padding: 40px 0px;
      /* background-color: var(--primary-color); */
      color: #fff;
      padding-bottom: 0;
      background: var(--primary-color) url('../images/footer.png') center/cover no-repeat;
  }

  .footer-area .container {
      border-bottom: 1px solid #fff;
  }

  .footer-area a {
      text-decoration: none;
  }

  .footer-area .footer-heading {
      font-size: 20px;
      color: #fff;
      font-family: var(--heading-font-family);
  }

  .footer-area .footer-underline {
      height: 1px;
      width: 70px;
      background-color: #ddd;
      margin: 10px 0px;
  }

  .copyright-area {
      padding: 14px 0px;
      background-color: var(--primary-color);
  }

  .copyright-area p {
      margin-bottom: 0px;
      color: #fff;
      font-family: var(--para-font-family);
  }

  .copyright-area .social-media {
      text-align: end;
  }

  .copyright-area .social-media a {
      margin: 0px 10px;
      color: #fff;
      width: 20px;
  }

  .footer-area a,
  .footer-area p {
      color: #fff;
      font-size: 14px;
      font-family: var(--para-font-family);
      font-weight: 500;
      transition: all 0.3s ease;
  }

  .footer-area a:hover {
      color: #000 !important;
  }


  .footer-area a i.fa-solid {
      transform: rotate(-45deg);
      transition: all 0.3s ease-in-out;
      color: #878686;
  }

  .footer-area a:hover i.fa-solid {
      color: #000;
      transform: rotate(0deg);
  }

  /* About us section homepage */
  /* Container */
  .about-section {
      padding: 60px 20px;
      background-color: #eee;
  }


  .about-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      align-items: flex-start;
  }

  /* Left Side */
  .about-left {
      /* flex: 1; */
      /* border: 2px dashed var(--primary-color); */
      /* border-radius: 16px; */
      /* padding: 20px; */
      position: relative;
  }

  .about-images {
      display: flex;
      flex-direction: column;
      gap: 20px;
      justify-content: center;
  }

  .about-img {
      width: 48%;
      height: 100%;
      border-radius: 12px;
      object-fit: cover;
  }

  /* Testimonial */
  .about-testimonial {
      position: absolute;
      width: 80%;
      bottom: -100px;
      left: 10%;
      background: #fff;
      padding: 20px;
      margin-top: 20px;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .about-profile {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 10px;
  }

  .about-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
  }

  .about-name {
      font-weight: bold;
      font-size: 16px;
      margin: 0;
  }

  .about-role {
      font-size: 14px;
      color: #777;
      margin: 0;
  }

  .about-quote {
      font-style: italic;
      color: #205075;
      font-size: 15px;
      margin-top: 10px;
  }

  /* Right Side */
  .about-right {
      flex: 1;
  }


  .about-heading {
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 20px;
  }

  .about-description {
      font-size: 15px;
      color: #555;
      margin-bottom: 30px;
  }

  /* Vision / Mission Boxes */
  .about-box-wrapper {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;

      margin-bottom: 30px;
  }

  .about-box-wrapper .about-box {
      border-left: 2px solid gray;
  }

  .about-box {
      background: white;
      flex: 1;
      min-width: 240px;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  }

  .about-box-title {
      background-color: var(--primary-color);
      color: white;
      padding: 7px;
      text-align: start;
      border-radius: 8px;
      margin-bottom: 15px;
      font-variant: petite-caps;
      font-size: 20px;
      padding-left: 15px;
  }

  .about-list {
      list-style: none;
      padding: 0;
      margin: 0;
  }

  .about-item {
      position: relative;
      padding-left: 5px;
      margin-bottom: 6px;
      font-weight: 500;
      font-size: 14px;
      color: #363636;
      display: flex;
      align-items: start;
  }

  .about-item i {
      margin-top: 5px;
  }

  /* .about-item::before {
      content: ".";
      color: var(--accent-color);
      position: absolute;
      left: 0;
      top: 0;
  } */




  /* main btn */
  /* From Uiverse.io by cssbuttons-io */






  .main-ouline-btn {
      background-color: transparent;
      border: 2px solid var(--primary-color);
      border-radius: 0;
      box-sizing: border-box;
      color: #fff;
      cursor: pointer;
      display: inline-block;

      font-weight: 700;
      letter-spacing: 0.05em;
      margin: 0;
      outline: none;
      overflow: visible;
      padding: 1.25em 2em;
      position: relative;
      text-align: center;
      text-decoration: none;
      text-transform: none;
      transition: all 0.3s ease-in-out;
      user-select: none;
      font-size: 13px;
  }

  .main-ouline-btn::before {
      content: " ";
      width: 1.5625rem;
      height: 2px;
      background: var(--primary-color);
      top: 50%;
      left: 1.5em;
      position: absolute;
      transform: translateY(-50%);
      transform-origin: center;
      transition: background 0.3s linear, width 0.3s linear;
  }

  .main-ouline-btn .text {
      font-size: 1.125em;
      line-height: 1.33333em;
      padding-left: 2em;
      display: block;
      text-align: left;
      transition: all 0.3s ease-in-out;
      text-transform: uppercase;
      text-decoration: none;
      color: var(--primary-color);
  }

  .main-ouline-btn .top-key {
      height: 2px;
      width: 1.5625rem;
      top: -2px;
      left: 0.625rem;
      position: absolute;
      background: #e8e8e8;
      transition: width 0.5s ease-out, left 0.3s ease-out;
  }

  .main-ouline-btn .bottom-key-1 {
      height: 2px;
      width: 1.5625rem;
      right: 1.875rem;
      bottom: -2px;
      position: absolute;
      background: #e8e8e8;
      transition: width 0.5s ease-out, right 0.3s ease-out;
  }

  .main-ouline-btn .bottom-key-2 {
      height: 2px;
      width: 0.625rem;
      right: 0.625rem;
      bottom: -2px;
      position: absolute;
      background: #e8e8e8;
      transition: width 0.5s ease-out, right 0.3s ease-out;
  }

  .main-ouline-btn:hover {
      color: white;
      background: var(--primary-color);
  }

  .main-ouline-btn:hover::before {
      width: 0.9375rem;
      background: white;
  }

  .main-ouline-btn:hover .text {
      color: white;
      padding-left: 1.5em;
  }

  .main-ouline-btn:hover .top-key {
      left: -2px;
      width: 0px;
  }

  .main-ouline-btn:hover .bottom-key-1,
  .main-ouline-btn:hover .bottom-key-2 {
      right: 0;
      width: 0;
  }

  .small-heading {
      color: var(--primary-color);
      position: relative;
      text-transform: uppercase;
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 4px;
      letter-spacing: 1px;
  }

  .underline-below {
      width: 50px;
      height: 3px;
      background-color: var(--primary-color);
      margin-bottom: 20px;
  }

  /* brodacm section */
  .brodcam-container {
      position: relative;
      height: 350px;
      background: url('../images/54.jpg') center/cover no-repeat;
      z-index: 1;
      overflow: hidden;
  }

  .brodcam-container::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      /* Adjust opacity as needed */
      z-index: 2;
  }

  /* Optional: If you have content inside, make sure it's above the overlay */
  .brodcam-container>* {
      position: relative;
      z-index: 3;
  }

  .inner-brodcam {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      height: 120%;
  }

  .inner-brodcam h1 {
      color: #fff;
      font-weight: 800;
  }

  .inner-brodcam a {
      text-decoration: none;
      color: #fff;

  }

  .inner-brodcam p {
      color: #fff;
      font-family: 600;
  }

  /* brand identity */

  .brand-identity-section-title {
      text-align: center;
      margin-bottom: 40px;
  }

  .brand-identity-section-title h6 {
      letter-spacing: 2px;
      color: #666;
  }

  .brand-identity-section-title h2 {
      font-weight: 700;
      color: #1a1a1a;
  }


  .brand-identity-icon {
      font-size: 40px;
      color: var(--primary-color);
      transition: transform 0.4s ease-in-out;

  }

  .brand-identity-title {
      font-weight: 700;
      font-size: 24px;
  }


  .brand-identity-center-block {
      border: 2px dashed var(--primary-color);
      border-radius: 20px;
      padding: 10px;
      text-align: center;
  }

  .brand-identity-center-block img {
      border-radius: 12px;
      max-width: 100%;
      height: 100%;
      max-height:600px;
      /* height: auto; */
      object-fit: cover;
  }



  .brand-identity-service-card li {
      text-align: start;
  }

  .outer-indetity-top {
      display: flex;
      gap: 12px;
      align-items: center;
      /* justify-content: center; */
  }

  .keyword-sec {
      display: flex;
      gap: 10px;
      /* justify-content: space-between; */
      flex-wrap: wrap;
  }

  .keyword-sec .keyword {
      background-color: #151414;
      color: #fff;
      padding: 4px 14px;
      border-radius: 12px;
      font-size: 14px;
  }

  .brand-identity-service-card {
      background-color: #f2f2f2;
      border-radius: 15px;
      padding: 30px;
      height: auto;
      margin-top: 15px;
      position: relative;
      transition: background-color 0.6s ease-in-out;
      overflow: hidden;
      z-index: 10;
  }

  .brand-identity-service-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background-color: rgba(31, 31, 31, 0.85);

      transform: translateY(100%);
      transition: transform 0.2s ease-in-out;
      z-index: -1;
      opacity: 0;
  }

  .brand-identity-service-card:hover::before {
      opacity: 1;
      transform: translateY(0);
  }

  .brand-identity-service-card:hover .outer-indetity-top,
  .brand-identity-service-card:hover li,
  .brand-identity-service-card:hover i {
      color: #fff;
  }

  /* certification */

  .certifications-section {
      text-align: center;
      /* background-color: #ffffff; */
      background: url('../images/51.jpg') center/cover no-repeat;
  }

  .certifications-section h6 {
      color: var(--primary-color);
      letter-spacing: 2px;
      font-size: 14px;
  }

  .certifications-section h2 {
      font-weight: bold;
      margin-bottom: 20px;
      color: #000000;
  }

  .certifications-section .c-logo {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 15px;
  }

  .certifications-section .c-logo .logo-box {
      width: 175px;
      height: 125px;
      padding: 20px;
      box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
      border-radius: 10px;
      background-color: #fff;
  }

  .certifications-section .c-logo .logo-box img {
      width: 100%;
      height: 100%;
      object-fit: contain;
  }

  /*------------------- product section  --------------------------*/
  .product-container {
      background: url('../images/61.jpg') center/cover no-repeat;

  }

  .product-container h2 {
      font-weight: bold;
      margin-bottom: 20px;
      color: #ffffff;
  }

  .product-container .small-heading {
      color: #fff;
  }

  .product-container .underline-below {
      background-color: #fff;
  }

  .product-container .product-card {
      background-size: cover;
      background-position: center;
      height: 300px;
      border-radius: 15px;
      position: relative;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      color: #fff;
      z-index: 1;
      transition: all 0.3s ease-in-out;
  }

  .product-container .product-card::before {
      position: absolute;
      content: '';
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #00000054;
      z-index: 1;
      transition: all 0.3s ease-in-out;
  }

  .product-container .product-card * {
      position: relative;
      z-index: 2;
      /* put content above overlay */
  }

  .product-container .product-card:hover::before {
      background-color: #00000085;
  }

  .product-card h5 {
      color: #fff;
      font-weight: 600;
      font-size: 22px;
  }

  .product-card p {
      color: #e6e5e5;
      font-weight: 500;
      font-size: 14px;
      padding: 10px 25px;
  }

  .product-card .fancy {
      padding: 11px 24px;
  }

  .product-card .fancy .text {
      font-size: 12px;
  }

  .product-card .fancy .top-key {
      background: #000;
  }

  /* Products gallery */
  .gallery-img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-radius: 10px;
      transition: transform 0.3s ease;
      overflow: hidden;
  }

  .gallery-img:hover {
      transform: scale(1.03);
  }

  /* .gallery-item {
      margin-bottom: 30px;
  } */

  .glightbox-clean .gdesc-inner {
      padding: 22px 20px;
      display: none;
  }

  /* Why choose us section */

  .top-choose-container {
      /* background-color: var(--primary-color); */
      position: relative;
      z-index: 2;
      height: 300px;
      background: url('../images/56.jpg') center/cover no-repeat;
  }

  .top-choose-container::before {
      position: absolute;
      content: '';
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #000000b0;
      z-index: 1;
  }

  .why-choose-heading-box {
      position: relative;
      z-index: 2;
      /* Above overlay */
      text-align: center;
  }

  .why-choose-heading-side {
      position: relative;
      z-index: 2;
  }

  .why-choose-heading-box h6 {
      color: #fff;
  }

  .why-choose-heading-box h2 {
      color: #fff;
      font-weight: 700;

  }

  .why-choose-heading-box .underline-below {
      background-color: #fff;
  }

  .why-choose-heading-side p {
      color: #fff;
  }

  .choose-card-container {
      margin-top: -140px;
      margin-bottom: 50px;
      z-index: 9999;
      position: relative;
  }

  .choose-card-container .choose-card {
      background-color: #fff;
      border-radius: 15px;
      padding: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
      height: 250px;
      gap: 10px;
  }

  .choose-card span {
      width: 65px;
      height: 65px;
      border-radius: 50%;
      background-color: #949494;
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .choose-card i {
      color: #fff;
  }

  .choose-card h5 {
      font-weight: 600;
  }

  .choose-card p {
      font-size: 14px;
      color: #111;
      text-align: center;
  }

  /* ----sustability promise -----------*/
  .promise-container {
      background-color: #292929;
      color: #fff;

  }


  .promis-side-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 15px;
  }

  .right-promise-box {
      padding-left: 18px;
  }

  .right-promise-box .small-heading {
      color: #fff;
  }

  .right-promise-box .underline-below {
      background-color: #fff;
  }

  .promise-card {
      display: flex;
      justify-content: center;

      flex-direction: column;
      padding: 18px;
      padding-left: 0;
  }

  .promise-card i {
      font-size: 45px;
      color: #f4f3f3;
  }

  .promise-card h5 {
      margin: 10px 0 8px 0;
      font-weight: 600;

  }

  .promise-card p {
      font-size: 16px;
      color: #ccc;

  }

  /* Excellence container
 */
  .left-excellence-sec {
      display: flex;
      justify-content: center;
      flex-direction: column;
      height: 100%;
  }

  .exc-img1 {
      border-radius: 15px;
      overflow: hidden;
  }

  .right-excellence-sec img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 15px;
      transition: all 0.3s ease-in-out;
  }

  .right-excellence-sec img:hover {
      transform: scale(1.02);
      filter: grayscale(0.9);
  }


  .right-excellence-sec {
      position: relative;
      overflow: hidden;
  }

  .exc-highlight {
      position: absolute;
      right: 0;
      top: 0;
      background-color: #ffffff;
      color: #fefefe;
      border-radius: 15px;
      width: 220px;
      padding: 12px;
      font-size: 14px;
      border: 1px solid var(--primary-color);
      border-left: 4px solid var(--primary-color);
      border-bottom: 4px solid var(--primary-color);
      font-style: italic;
      backdrop-filter: blur(7px);
      background: #00000020;
  }

  .exc-list {
      border: 1px solid var(--primary-color);
      border-radius: 10px;
      padding: 10px;
      border-left: 4px solid #000;
      background-color: #ededed;
      /* color: #fff; */
  }

  .left-excellence-sec .first-p {
      color: #696969;
  }

  .left-excellence-sec .sec-p {
      color: #5b5b5b;
  }

  /* cerify sustablity */
  .certify-sustainbility-sec {
      background: linear-gradient(rgba(160, 160, 160, 0.288), rgba(138, 137, 137, 0.615)), url('../images/59.jpg') center/cover no-repeat;
      height: auto;
      margin-bottom: 50px;
      color: #fff;
      /* text-align: center; */
  }

  .inner-sust-box {
      max-width: 700px;
      margin: auto;
      backdrop-filter: blur(7px);
      background: #00000020;
      border-radius: 15px;
      height: 100%;
      padding: 20px;
  }

  .certify-sustainbility-sec h2 {
      color: #fff;
      text-align: center;
      font-weight: 700;
  }

  .certify-sustainbility-sec p {
      color: #ece9e9;
  }

  .sust-list {
      display: flex;
      gap: 12px;
      border: 1px solid rgb(203, 203, 203);
      padding: 10px 16px;
      border-radius: 7px;
  }

  .sust-list i {
      font-size: 45px;
      color: #efefef;
  }

  .sust-list h6 {
      font-weight: 700;
  }

  .sust-list .sub-p-div {
      color: #d5d5d5;
  }

  /* CTA banner */
  .cta-section {
      background:
          linear-gradient(135deg, #000000, #333333),
          url('../images/bg1.jpg') center/cover no-repeat;
      border-top: 5px solid var(--primary-color);
      /* Gold or brand color */
  }

  .cta-title {
      font-size: 2.2rem;
      font-weight: 700;
  }

  .cta-subtitle {
      font-size: 1.1rem;
      line-height: 1.6;
      max-width: 700px;
      margin: 0 auto;
  }

  /* contact page  */
  .contact-section {
      background: linear-gradient(135deg, var(--primary-color) 0%, #495057 100%);
      padding: 80px 0;
      position: relative;
      overflow: hidden;
  }

  .contact-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
      opacity: 0.3;
  }

  .section-title {
      color: white;
      font-weight: 700;
      font-size: 2rem;
      margin-bottom: 1rem;
      text-align: center;
      position: relative;
  }

  .section-subtitle {
      color: rgba(255, 255, 255, 0.8);
      font-size: 1rem;
      text-align: center;
      margin-bottom: 4rem;
      position: relative;
  }

  .contact-card {
      background: white;
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      position: relative;
      z-index: 2;
      margin-bottom: -100px;
  }

  .contact-form {
      padding: 3rem;
      background: white;
  }

  .contact-info {
      background: var(--primary-color);
      padding: 3rem;
      color: white;
      position: relative;
      height: 100%;
  }

  .contact-info::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
  }

  .form-control {
      border: 2px solid #dee2e6;
      border-radius: 10px;
      padding: 10px 15px;
      font-size: 1rem;
      transition: all 0.3s ease;
      background-color: #fafafa;
  }

  .form-control:focus {
      border-color: var(--primary-color);
      box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.25);
      background-color: white;
  }

  .form-label {
      font-weight: 600;
      color: var(--dark-grey);
      margin-bottom: 0.8rem;
  }


  .contact-item {
      display: flex;
      align-items: center;
      margin-bottom: 2rem;
      padding: 1.5rem;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 15px;
      backdrop-filter: blur(10px);
      transition: all 0.3s ease;
      position: relative;
  }

  .contact-item:hover {
      background: rgba(255, 255, 255, 0.15);
      transform: translateX(10px);
  }

  .contact-icon {
      width: 60px;
      height: 60px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 1.5rem;
      font-size: 1.5rem;
      transition: all 0.3s ease;
  }

  .contact-item:hover .contact-icon {
      background: rgba(255, 255, 255, 0.3);
      transform: scale(1.1);
  }

  .contact-text h5 {
      margin-bottom: 0.5rem;
      font-weight: 600;
  }

  .contact-text p {
      margin: 0;
      opacity: 0.9;
      font-size: 0.95rem;
  }

  .map-container {
      height: 400px;
      border-radius: 15px;
      overflow: hidden;

      position: relative;
      background: var(--medium-grey);

  }

  .map-placeholder {
      width: 100%;
      height: 100%;
      background: linear-gradient(45deg, #e9ecef, #dee2e6);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-color);
      font-size: 1.2rem;
      font-weight: 600;
  }

  .floating-elements {
      position: absolute;
      width: 100%;
      height: 100%;
      overflow: hidden;
      pointer-events: none;
  }

  .floating-elements::before,
  .floating-elements::after {
      content: '';
      position: absolute;
      width: 200px;
      height: 200px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 50%;
      animation: float 6s ease-in-out infinite;
  }

  .floating-elements::before {
      top: 10%;
      left: 10%;
      animation-delay: 0s;
  }

  .floating-elements::after {
      bottom: 10%;
      right: 10%;
      animation-delay: 3s;
  }

  @keyframes float {

      0%,
      100% {
          transform: translateY(0px) rotate(0deg);
      }

      50% {
          transform: translateY(-20px) rotate(180deg);
      }
  }

  .success-message {
      display: none;
      background: #d4edda;
      color: #155724;
      padding: 1rem;
      border-radius: 10px;
      margin-top: 1rem;
      border: 1px solid #c3e6cb;
  }

  @media (max-width: 768px) {
      .section-title {
          font-size: 2rem;
      }

      .contact-form,
      .contact-info {
          padding: 2rem;
      }

      .contact-item {
          flex-direction: column;
          text-align: center;
      }

      .contact-icon {
          margin-right: 0;
          margin-bottom: 1rem;
      }
  }

  .contact-card .fancy {
      border: 2px solid var(--primary-color);
      float: unset;

  }

  .contact-card .fancy .text {
      color: var(--primary-color);
  }

  .contact-card .fancy .top-key,
  .contact-card .fancy .bottom-key-1,
  .contact-card .fancy .bottom-key-2 {
      background: #fff;
  }

  .contact-card .fancy::before {
      background: var(--primary-color);
  }

  .contact-card .fancy:hover {
      background: var(--primary-color);
  }

  .contact-card .fancy:hover::before {
      background: #fff;
  }

  .contact-card .fancy:hover .text {
      color: #fff;
  }

  /* Mobile Responsive */
  .custom-overflow {
      overflow: hidden;
  }

  @media screen and (max-width:576px) {
      .custom-logo .embroid-logo {
          width: 100px;
      }

      .about-grid {
          flex-direction: column-reverse;
          gap: 20px;
      }

      .about-images {
          position: relative;
          z-index: -1;
      }

      .about-testimonial {
          position: static;
          width: 100%;
          margin-top: -50px;
          z-index: 999;
      }

      .social-media {
          margin-bottom: 20px;
      }

      .cta-section .cta-title {
          font-size: 1.5rem;
      }

      .cta-section .cta-subtitle {
          font-size: 14px;
      }



      .c-logo {
          flex-wrap: wrap;
      }

      .certifications-section .c-logo .logo-box {
          width: 115px;
          height: 80px;
          padding: 10px;
      }

      .mobile-nav {
          padding: 40px;
      }

      .close-btn {
          align-self: flex-end;
          background: none;
          border: none;
          font-size: 28px;
          cursor: pointer;
          margin-bottom: 10px;
          color: #fff;
      }

      .mobile-nav a {
          padding: 10px 0;
          border-bottom: 1px solid #bcb0b045;
          font-size: 16px;
      }
  }

  .slider-container {
      position: relative;
      width: 100%;
      /* height: 100vh; */
      background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #020617 100%);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 60px 20px;
      padding-bottom: 90px;
  }

  /* Background Elements */
  .slider-container .background-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      opacity: 0.7;
      z-index: 1;
  }

  .slider-container .background-overlay .pattern-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: radial-gradient(circle at 20px 20px, rgba(255, 255, 255, 0.1) 2px, transparent 2px);
      background-size: 40px 40px;
  }

  /* Header Content */
  .slider-container .header-content {
      position: relative;
      z-index: 10;
      text-align: center;
      margin-bottom: 25px;
  }

  .slider-container .header-content .subtitle {
      color: #ffffff;
      font-size: 16px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 20px;
  }

  .slider-container .header-content .main-title {
      color: white;
      /* font-size: 4rem; */
      font-weight: bold;
      /* line-height: 1.2; */
      /* max-width: 1200px; */
  }

  /* Swiper Container */
  .slider-container .swiper-container {
      position: relative;
      z-index: 10;
      width: 100%;
      max-width: 1400px;
      height: auto;
      direction: ltr;
  }

  .slider-container .swiper-container .swiper-wrapper {
      display: flex;
      flex-direction: row;
  }

  /* Categories Grid */
  .slider-container .swiper-container .categories-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      padding: 0 20px;
  }

  /* Category Cards */
  .slider-container .swiper-container .categories-grid .category-card {
      position: relative;
      aspect-ratio: 4/3;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
      transition: transform 0.5s ease, box-shadow 0.3s ease;
      cursor: pointer;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
  }

  .slider-container .swiper-container .categories-grid .category-card:hover {
      transform: scale(1.05);
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  }

  .slider-container .swiper-container .categories-grid .category-card .card-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
  }

  /* Card Content */
  .slider-container .swiper-container .categories-grid .category-card .card-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 30px;
      color: white;
  }

  .slider-container .swiper-container .categories-grid .category-card .card-content h3 {
      font-size: 1.5rem;
      font-weight: bold;
      margin-bottom: 10px;
      line-height: 1.3;
  }

  .slider-container .swiper-container .categories-grid .category-card .card-content p {
      font-size: 0.9rem;
      margin-bottom: 15px;
      opacity: 0.9;
      line-height: 1.4;
  }

  /* Fancy Button */
  .slider-container .swiper-container .categories-grid .category-card .card-content .fancy {
      display: inline-flex;
      align-items: center;
      padding: 10px 20px;
      border: 2px solid white;
      background: transparent;
      color: white;
      font-weight: 600;
      font-size: 14px;
      letter-spacing: 1px;
      text-transform: uppercase;
      text-decoration: none;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
  }

  .slider-container .swiper-container .categories-grid .category-card .card-content .fancy:hover {
      background: white;
      color: #1e293b;
      border-color: #ef4444;
      text-decoration: none;
  }

  .slider-container .swiper-container .categories-grid .category-card .card-content .fancy .text {
      position: relative;
      z-index: 2;
  }

  .slider-container .swiper-container .categories-grid .category-card .card-content .fancy .top-key,
  .slider-container .swiper-container .categories-grid .category-card .card-content .fancy .bottom-key-1,
  .slider-container .swiper-container .categories-grid .category-card .card-content .fancy .bottom-key-2 {
      position: absolute;
      width: 100%;
      height: 2px;
      background: #ef4444;
      transition: all 0.3s ease;
  }

  .slider-container .swiper-container .categories-grid .category-card .card-content .fancy .top-key {
      top: 0;
      left: -100%;
  }

  .slider-container .swiper-container .categories-grid .category-card .card-content .fancy .bottom-key-1 {
      bottom: 0;
      right: -100%;
  }

  .slider-container .swiper-container .categories-grid .category-card .card-content .fancy .bottom-key-2 {
      bottom: 0;
      left: -100%;
  }

  .slider-container .swiper-container .categories-grid .category-card .card-content .fancy:hover .top-key {
      left: 0;
  }

  .slider-container .swiper-container .categories-grid .category-card .card-content .fancy:hover .bottom-key-1 {
      right: 0;
  }

  .slider-container .swiper-container .categories-grid .category-card .card-content .fancy:hover .bottom-key-2 {
      left: 0;
  }

  /* Navigation Controls */
  .slider-container .navigation-controls {
      position: absolute;
      bottom: 20px;
      right: 50%;
      transform: translateX(-50%);
      z-index: 20;
      display: flex;
      gap: 15px;
  }

  .slider-container .navigation-controls .nav-btn {
      width: 50px;
      height: 50px;
      background: white;
      border: none;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .slider-container .navigation-controls .nav-btn:hover {
      background: var(--primary-color);
      color: white;
      transform: scale(1.1);
      /* box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4); */
  }

  .slider-container .navigation-controls .nav-btn svg {
      width: 20px;
      height: 20px;
  }

  /* Pagination Dots */
  .slider-container .pagination-dots {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 20;
      display: flex;
      gap: 12px;
  }

  .slider-container .pagination-dots .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      cursor: pointer;
      transition: all 0.3s ease;
  }

  .slider-container .pagination-dots .dot.active {
      background: #ef4444;
      transform: scale(1.2);
  }

  /* Decorative Elements */
  .slider-container .decorative-corner {
      position: absolute;
      width: 80px;
      height: 80px;
      z-index: 5;
  }

  .slider-container .decorative-corner.top-left {
      top: 40px;
      left: 40px;
      border-left: 2px solid #ffffff;
      border-top: 2px solid #ffffff;
      opacity: 0.3;
  }

  .slider-container .decorative-corner.bottom-left {
      bottom: 40px;
      left: 40px;
      border-left: 2px solid #ffffff;
      border-bottom: 2px solid #ffffff;
      opacity: 0.3;
  }

  /* Swiper Animation */
  .slider-container .swiper-container .swiper-slide {
      opacity: 0;
      transition: opacity 0.5s ease;
  }

  .slider-container .swiper-container .swiper-slide-active {
      opacity: 1;
  }

  /* Responsive Design */
  @media (max-width: 1200px) {
      .slider-container .header-content .main-title {
          font-size: 3rem;
      }

      .slider-container .swiper-container .categories-grid {
          gap: 20px;
      }
  }

  @media (max-width: 1024px) and (min-width: 769px) {
      .slider-container .swiper-container .categories-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 25px;
      }

      .slider-container .header-content .main-title {
          font-size: 3.5rem;
      }
  }

  @media (max-width: 768px) {
      .slider-container {
          padding: 15px;
      }

      .slider-container .header-content .main-title {
          font-size: 2.5rem;
      }

      .slider-container .header-content .subtitle {
          font-size: 14px;
      }

      .slider-container .swiper-container .categories-grid {
          grid-template-columns: 1fr;
          gap: 20px;
          padding: 0 10px;
      }

      .slider-container .swiper-container .categories-grid .category-card .card-content h3 {
          font-size: 1.2rem;
      }

      .slider-container .swiper-container .categories-grid .category-card .card-content p {
          font-size: 0.8rem;
      }

      .slider-container .navigation-controls {
          bottom: 20px;
          right: 20px;
          gap: 10px;
      }

      .slider-container .navigation-controls .nav-btn {
          width: 45px;
          height: 45px;
      }

      .slider-container .pagination-dots {
          bottom: 20px;
      }

      .slider-container .decorative-corner {
          width: 60px;
          height: 60px;
      }

      .slider-container .decorative-corner.top-left,
      .slider-container .decorative-corner.bottom-left {
          top: 20px;
          left: 20px;
      }

      .slider-container .decorative-corner.bottom-left {
          top: auto;
          bottom: 20px;
      }

      .slider-container .swiper-container {
          overflow-x: hidden;
          overflow-y: hidden;
      }

      .slider-container .swiper-container .swiper-wrapper {
          align-items: center;
      }
  }

  @media (max-width: 480px) {
      .slider-container .header-content .main-title {
          font-size: 2rem;
      }

      .slider-container .header-content {
          margin-bottom: 40px;
      }

      .slider-container .swiper-container .categories-grid .category-card .card-content {
          padding: 20px;
      }

      .slider-container .swiper-container .categories-grid .category-card .card-content h3 {
          font-size: 1rem;
          margin-bottom: 8px;
      }

      .slider-container .swiper-container .categories-grid .category-card .card-content p {
          font-size: 0.75rem;
          margin-bottom: 10px;
      }

      .slider-container .swiper-container .categories-grid .category-card .card-content .fancy {
          padding: 8px 16px;
          font-size: 12px;
      }

      .slider-container .navigation-controls {
          bottom: 15px;
          right: 15px;
      }

      .slider-container .navigation-controls .nav-btn {
          width: 40px;
          height: 40px;
      }

      .slider-container .navigation-controls .nav-btn svg {
          width: 16px;
          height: 16px;
      }
  }

  .accordion-item {
      border-radius: 10px !important;
      border: 1px solid #e0e0e0;
      margin-bottom: 10px;
  }

  .accordion-button {
      border-radius: 10px !important;
      border: 1px solid #e0e0e0;
      box-shadow: none !important;
  }

  .accordion-button:not(.collapsed) {
      background-color: #f8f9fa;
      color: #000;
  }


  /* time line */
  .timeline {
      position: relative;
      padding: 20px 0;
  }

  .timeline::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 4px;
      background: linear-gradient(to bottom, #555, #999);
      transform: translateX(-50%);
  }

  .timeline-item {
      position: relative;
      margin-bottom: 50px;
  }

  .timeline-item:nth-child(odd) .timeline-content {
      margin-right: 55%;

  }

  .timeline-item:nth-child(even) .timeline-content {
      margin-left: 55%;
      text-align: left;
  }

  .timeline-marker {
      position: absolute;
      left: 50%;
      top: 20px;
      width: 20px;
      height: 20px;
      background: #555;
      border: 4px solid #fff;
      border-radius: 50%;
      transform: translateX(-50%);
      box-shadow: 0 0 0 4px #ccc;
  }

  .timeline-content {
      background: #fff;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
      border-left: 4px solid #555;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .timeline-content:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
  }

  .timeline-year {
      font-size: 1.5rem;
      font-weight: bold;
      color: #555;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 8px;
  }

  .timeline-year i {
      color: #777;
      font-size: 1.3rem;
  }

  .timeline-text {
      color: #444;
      line-height: 1.6;
  }

  @media (max-width: 768px) {
      .timeline::before {
          left: 20px;
      }

      .timeline-item:nth-child(odd) .timeline-content,
      .timeline-item:nth-child(even) .timeline-content {
          margin-left: 50px;
          margin-right: 0;
          text-align: left;
      }

      .timeline-marker {
          left: 20px;
      }
  }


  /*  */
  .feature-card {
      border-radius: 15px;
      padding: 25px;
      height: 100%;

      background: linear-gradient(135deg, #e0e0e0, #b3b3b3) !important;
      /* lighter gradient */
      color: #000 !important;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }




  .card-icon {
      font-size: 2.5rem;
      margin-bottom: 15px;
      opacity: 0.9;
  }

  .card-title {
      font-size: 1.4rem;
      font-weight: 600;
      margin-bottom: 20px;
  }

  .feature-list {
      list-style: none;
      padding: 0;
  }

  .feature-list li {
      margin-bottom: 12px;
      display: flex;
      align-items: flex-start;
      font-size: 0.95rem;
      line-height: 1.4;
  }

  .feature-list li::before {
      content: "✓";
      background: rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      width: 20px;
      height: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 12px;
      flex-shrink: 0;
      font-size: 12px;
      font-weight: bold;
  }

  .container-custom {
      max-width: 1400px;
      margin: 0 auto;
      padding: 40px 15px;
  }

  @media (max-width: 768px) {
      .feature-card {
          margin-bottom: 20px;
      }

      .card-title {
          font-size: 1.2rem;
      }

      .feature-list li {
          font-size: 0.9rem;
      }
  }


  @media (max-width: 991px) {
      .about-imh-two {
          display: none;
      }
  }



  .fancybox__container {
      z-index: 999999 !important;
  }


  /*  */


  .section-title {
      /* font-size: 2.5rem;
      font-weight: 700; */
      color: var(--text-primary);
      margin-bottom: 1rem;
  }

  .section-description {
      font-size: 1.125rem;
      color: var(--text-secondary);
      max-width: 600px;
      margin: 0 auto;
  }

  .practice-card {
      border: 1px solid var(--primary-color);
      border-radius: 12px;
      transition: all 0.3s ease;
      height: 100%;
  }

  .practice-card:hover {
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      border-color: var(--primary-color);
      transform: translateY(-2px);
  }

  .practice-icon {
      width: 60px;
      height: 60px;
      background: gray;
      color: white;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
  }

  .practice-icon i {
      font-size: 1.5rem;
      /* color: var(--primary-color); */
  }

  .practice-card:hover .practice-icon {
      background: var(--primary-color);
  }

  .practice-card:hover .practice-icon i {
      color: white;
  }

  .practice-badge {
      /* background-color: var(--card-background); */
      color: var(--text-secondary);
      font-size: 0.75rem;
      padding: 0.25rem 0.75rem;
      background-color: #f3f4f6;

      border: 1px solid gray;
  }

  .card-title {
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 1rem;
  }

  .card-text {
      color: var(--text-secondary);
      line-height: 1.6;
  }


  .about-btn {
      border: 2px solid black !important;
  }

  .about-btn::before {
      background: black;
  }



  .main-heading {
      padding: 20px;
      padding-bottom: 40px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 16px;
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
      border: 1px solid rgba(255, 255, 255, 0.3);

  }
  
  
  
  .card-sub-text{
      font-style:italic;
  }