@import "tailwindcss";
.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
  src: url("../fonts/Poppins-Thin.ttf") format("ttf");
}
.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
  src: url("../fonts/Poppins-ExtraLight.ttf") format("ttf");
}
.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
  src: url("../fonts/Poppins-Light.ttf") format("ttf");
}
.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/Poppins-Regular.ttf") format("ttf");
}
.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  src: url("../fonts/Poppins-Medium.ttf") format("ttf");
}
.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  src: url("../fonts/Poppins-SemiBold.ttf") format("ttf");
}
.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  src: url("../fonts/Poppins-Bold.ttf") format("ttf");
}
.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
  src: url("../fonts/Poppins-ExtraBold.ttf") format("ttf");
}
.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
  src: url("../fonts/Poppins-Black.ttf") format("ttf");
}

@font-face {
  font-family: "Brother Signature Regular";
  font-style: normal;
  font-weight: normal;
  src: local("Brother Signature Regular"),
    url("../fonts/BrotherSignature-7BWnK.otf") format("woff");
}

* {
  margin: 0;
  padding: 0;
}

:root {
  --reddark: #bc3908;
  --maroon: #a57246;
  --white: #ffffff;
  --accent: #ff5b2e;
  --bg1: #0ea5e9;
  --bg2: #a78bfa;
  --saffron: #fe6300;
  --green: #046a38;
  --blue: #1d4ed8;
  --darkGray: #374151;
  --gray: #555555;

  --card-aspect: 4/5;
}

body {
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;  
  background-color: #f0f2f5;
}

.h-90 {
  max-height: 100px;
  height: 100%;
}

.animated-indian-flag-line {
  width: 100%;
  height: 5px;
  background-image: linear-gradient(90deg, #ff9933, #ffffff, #138808);
  background-size: 200% 100%;
  animation: gradient-shift 4s linear infinite;
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 0%;
  }
}

.text-saffron {
  color: var(--saffron);
}
.text-green {
  color: var(--green);
}
.fill-saffron {
  fill: var(--saffron);
}
.fill-green {
  fill: var(--green);
}

.text-darkRed {
  color: var(--reddark);
}

.text-maroon {
  color: var(--maroon);
}

.rounded-18 {
  border-radius: 19px;
}

.border-bg-maroon {
  border-color: #f2dbba;
}

#button {
  display: inline-block;
  background-color: #ff9933;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  display: flex;
  justify-content: center;
}

#button svg {
  width: 15px;
}

#button:hover {
  cursor: pointer;
  background-color: #fa8c1d;
}

#button:active {
  background-color: #fa8c1d;
}

#button.show {
  opacity: 1;
  visibility: visible;
}

main {
  width: 100%;
  background: url(../images/bg.png) no-repeat;
  background-position: left center;
}
.rightbg {
  width: 100%;
  background: url(../images/bg2.png) no-repeat;
  background-position: right top;
}

.h-50 {
  max-height: 50px;
  height: 100%;
}

.footer {
  width: 100%;
  background: #10083f;
}
.copyright {
  width: 100%;
  background: rgba(5, 5, 5, 0.35);
}

.bg-blur {
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.headingUnderline {
  width: 100%;
  display: block;
  text-align: center;
  position: relative;
  margin: 0px 0 30px;
}

.headingUnderline::after {
  content: "";
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  width: 50px;
  height: 8px;
  background-color: var(--blue);
  top: calc(100% + 10px);
  left: 0;
}

.headingUnderline::before {
  content: "";
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  width: 100px;
  height: 2px;
  background-color: var(--gray);
  top: calc(100% + 13px);
  left: 0;
}
.subHeadings {
  color: var(--green);
  font-size: inherit;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  position: relative;
  padding-bottom: 5px;
  margin: 11px 0 20px;
}
.subHeadings::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 5px;
  background: var(--green);
  top: 100%;
  left: 0;
}
.subHeadings::before {
  position: absolute;
  content: "";
  width: 63px;
  height: 1px;
  background: var(--saffron);
  top: calc(100% + 2px);
  left: 40px;
}

.processing-contact-us-bg {
  background: #f6fafe;
  background: #f6f2ed;
  overflow: hidden;
  background-image: url("../images/MSME.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}
.globe {
  width: 100%;
  max-height: 600px;
  height: 100%;
}
.inner-img-one {
  position: absolute;
  z-index: 1;
  bottom: 0;
  overflow: hidden;
}
.inner-img-two {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;

  bottom: 0;
}
.worldRotate {
  animation: worldRotate 20s linear infinite;
  transform-origin: center center;
}
@keyframes worldRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.contact-info-item {
  display: flex;
  margin-bottom: 30px;
}

.contact-info-icon {
  height: 70px;
  width: 70px;
  text-align: center;
  border-radius: 50%;
}

.contact-info-icon i {
  font-size: 30px;
  line-height: 70px;
}

.contact-info-content {
  margin-left: 20px;
}

.contact-info-content h4 {
  font-size: 1.4em;
  margin-bottom: 5px;
}

.contact-info-content p {
  line-height: 1.5;
}

@media (max-width: 767.98px) {
  .contact-info-icon {
    height: 50px;
    width: 50px;
    text-align: center;
    border-radius: 50%;
  }

  .contact-info-icon i {
    font-size: 22px;
    line-height: 50px;
  }
}

.saffron-white-green-bg {
  width: 100%;
  height: inherit;
  background: linear-gradient(
    to bottom,
    rgba(255, 153, 51, 0.2),
    rgba(255, 255, 255, 0.2),
    rgba(19, 136, 8, 0.2)
  );
}

.glossy-background {
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.18);
}
*/

/* If you want to add a subtle highlight effect (optional) */
 .glossy-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.2), transparent);
  border-radius: 10px 10px 0 0;
  pointer-events: none;
}

.relative button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4);
  animation: pulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* .glossyBtn{
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 20px rgb(0 0 0 / 40%);
    transition: transform 0.3s;
    border: solid 1px #ffffff;
} */

.glossyBg {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 20px rgb(0 0 0 / 40%);
  border: 1px solid transparent;
  z-index: 1;
  overflow: hidden;
}

.glossyBg::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  background: linear-gradient(270deg, #ff9933, #ffffff, #138808);
  background-size: 600% 600%;
  animation: borderAnim 6s linear infinite;
  z-index: -1;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: destination-out;
  border-radius: 16px;
}
@keyframes borderAnim {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.wave-text span {
  display: inline-block;
  font-size: 4rem;
  animation: wave 2s ease-in-out infinite;
}

.wave-text span:nth-child(1) {
  animation-delay: 0s;
}
.wave-text span:nth-child(2) {
  animation-delay: 0.2s;
}
.wave-text span:nth-child(3) {
  animation-delay: 0.4s;
}
.wave-text span:nth-child(4) {
  animation-delay: 0.6s;
}

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

.font-borther {
  font-family: "Brother Signature Regular";
}

/* https://codepen.io/alphardex/pen/WNNVJeZ   */

.social {
  position: fixed;
  top: 30%;
  right: 0;
  z-index: 9;
}

.social ul {
  list-style-type: none;
  padding: 0;
  transform: translatex(244px);
}

.social ul li {
  display: block;
  margin: 5px;
  background-color: rgba(0, 0, 0, 0.5);
  width: 300px;
  text-align: left;
  padding: 10px;
  border-radius: 30px 0 0 30px;
  transition: all 1s;
}

.social ul li:hover {
  transform: translatex(-110px);
}

.social ul li.twitter:hover {
  background: #55acee;
}

.social ul li.facebook:hover {
  background: #3b5999;
}

.social ul li.linkedin:hover {
  background: #0077b5;
}

.social ul li.google-plus:hover {
  background: #dd4b39;
}

.social ul li.instagram:hover {
  background: #e4405f;
}

.social ul li a {
  color: white;
  text-decoration: none;
}

.social ul li i {
  text-align: center;
  display: inline-table;
  margin-right: 14px;
  color: black;
  background-color: white;
  padding: 10px;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 20px;
  transform: rotate(0deg);
}

.social ul li:hover i {
  transform: rotate(360deg);
  transition: all 1s;
}

.social ul li i {
  text-align: center;
  display: inline-table;
  margin-left: 1px;
  color: black;
  background-color: white;
  padding: 10px;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 20px;
  transform: rotate(0deg);
}

.social ul li:hover i {
  transform: rotate(360deg);
  transition: all 1s;
}

.translate-container {
  position: relative;
}

/* Custom Google Translate dropdown */
.custom-translate select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 10px 20px;
  font-size: 16px;
  color: #333;
  background-color: #fff;
  border: 2px solid #ccc;
  border-radius: 5px;
  width: 200px;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Hover effect on dropdown */
.custom-translate select:hover {
  border-color: #007bff;
}

/* Focus effect on dropdown */
.custom-translate select:focus {
  border-color: #0056b3;
  box-shadow: 0 0 5px rgba(0, 91, 187, 0.5);
}

/* Custom arrow icon */
.custom-translate select::-ms-expand {
  display: none;
}

.custom-translate::after {
  content: "▼";
  position: absolute;
  top: 12px;
  right: 10px;
  color: #007bff;
  font-size: 14px;
  pointer-events: none;
}

/* Custom styles for the translation container */
#google_translate_element {
  display: inline-block;
  width: auto;
}

.link {
  width: 100%;
  position: relative;
}
.link span::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  border-radius: 5px;
  height: 0.05em;
  bottom: 0;
  left: 0;
  background: currentcolor;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
.link:hover span::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* register button */

.btn {
  position: relative;
  padding: 1.15rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s ease;
  min-width: 200px;
  z-index: 1;
}

.neon-pulse {
  /* background: #000; */
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 20px rgb(0 0 0 / 40%);
  transition: transform 0.3s;
  border: 2px solid #ff671f;
  font-weight: 500;
  letter-spacing: 1px;
  box-shadow: 0 0 10px rgba(255, 103, 31, 0.3);
  overflow: visible;
}

.neon-pulse::before,
.neon-pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 2px solid #ff671f;
  border-radius: inherit;
  animation: pulseOut 2s ease-out infinite;
  opacity: 0;
}

.neon-pulse::after {
  animation-delay: 1s;
}

@keyframes pulseOut {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* register */

/* slider */

/* Swiper base */

.swiper {
  width: 100%;
  height: auto;
  margin: auto;
  position: relative;
}
.swiper-wrapper {
  align-items: stretch;
}
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: stretch;
  height: auto;
  box-sizing: border-box;
  padding: 10px;
}
.ratio-box {
  width: 100%;
  aspect-ratio: var(--card-aspect);
  position: relative;
}

.flip-card {
  position: absolute;
  inset: 0;
  background: transparent;
  width: 100%;
  height: 100%;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  inset: 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  z-index: 9;
}

.flip-card-front {
  background: #fff;
}
.image-content {
  position: relative;
  flex: 1 1 auto;
}
.card-image,
.card-img {
  width: 100%;
  height: 100%;
}
.card-img {
  display: block;
  object-fit: cover;
}
.card-content {
  padding: 14px 16px;
  text-align: center;
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
}
.name {
  margin: 0;
  font-size: 1.9rem;
  font-weight: 700;
}
.description {
  margin: 4px 0 0;
  font-size: 14px;
  opacity: 0.75;
}

/* */

.flip-card-back {
  transform: rotateY(180deg);
  background: linear-gradient(
    to bottom,
    rgba(255, 153, 51, 0.2),
    rgba(255, 255, 255, 0.2),
    rgba(19, 136, 8, 0.2)
  );
  background: #f1f1f1;
  background: #eff6ff;
  justify-content: center;
  align-items: center;
  padding: 20px 20px;
  line-height: 1.5;
  /* gap: 10px; */
  color: #0f172a;
  color: #555555;
  font-weight: 400;
  text-align: justify;
}
.flip-card-back h2 {
  margin-bottom: 10px;
}
.flip-card-back p {
  font-size: 0.9rem;
  font-weight: 400;
}
@media (max-width: 767.98px) {
  .flip-card-back p {
    font-size: 0.8rem;
  }

  .name {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
  }
}

.swiper-button-next,
.swiper-button-prev {
  color: #111827;
}
.swiper-pagination-bullet {
  background: #111827;
}
.swiper-button-next,
.swiper-button-prev {
  width: 40px !important;
  height: 40px !important;
  border: solid 2px #ffffff;
  border-radius: 50%;
  background: #0d47a1;
  box-shadow: 0 4px 12px rgba(13, 71, 161, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s, transform 0.2s;
}
.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #111;
  z-index: 10;
  margin: auto;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px !important;
  color: #fff;
  font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #0d47a1;
}
@media (max-width: 767.98px) {
  .swiper-button-prev {
    left: -5px !important;
  }
  .swiper-button-next {
    right: -5px !important;
  }
}

@media (min-width: 768px) {
  .swiper-button-prev {
    left: -50px !important;
  }
  .swiper-button-next {
    right: -50px !important;
  }
}

/* fixed heder */
.header-fixed {
  position: fixed;
  width: 100%;
  height: inherit;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.4s ease forwards;
}

.header-fixed .logo {
  height: 3.9rem;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* fixed heder */

.bounce {
  animation-name: bounce;
  animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@keyframes bounce {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-5px);
  }
}
 .tricolor-text {
  font-size: 120px;
  font-weight: 900;
  text-transform: uppercase;
  background: linear-gradient(
    135deg,       
    #ff9933 0%,  
    #ffffff 50%,  
    #138808 100% 
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
 
}
.text-shadw-connect {  
  font-size: 6.5rem;  
  text-shadow: 2px 2px #ff0000;
  left: -10px;
}
.border-image::after {
  content: url("../images/side-border.svg");
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

@media (max-width: 767.98px) {
  .border-bottom-image::before {
    content: url("../images/bottom_border.svg");
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    line-height: 0;
  }
     .tricolor-text {
    font-size: 80px;
}
  
}
.textAnimation svg {
  width: 100%;
  max-height: 150px;
  height: auto;
}

.text-seme {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 135px; 
  /* animation: stroke 5s infinite alternate; */
  animation: stroke 5s forwards;
  -webkit-text-stroke: 2px white;
  -webkit-font-smoothing: antialiased;
  fill: transparent;
  stroke: white;
  stroke-width: 2; 
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}
@media (min-width: 768px) and (max-width: 1535px) { 
    .text-shadw-connect {
      font-size: 4.95rem;
    }
}
@media (min-width: 576px) and (max-width: 767.98px) { 
     .text-shadw-connect {
      font-size: 4rem;
      }
    .text-seme {
      font-size: 7rem;
      -webkit-text-stroke: 1.5px white;
      stroke-width: 1.5;
    }
 }


@media (max-width: 575.98px) { 
  .text-seme {
    font-size: 6rem; 
    top:20px;
    -webkit-text-stroke: 1px white;
    stroke-width: 1;
  }
   .text-shadw-connect {
      font-size: 3rem;      
    }
}


@keyframes stroke {
  0% {
    fill: rgba(72, 138, 20, 0);
    stroke: rgba(255, 255, 255, 1);
    stroke-dashoffset: 25%;
    stroke-dasharray: 0 50%;
    stroke-width: 2;
  }
  70% {
    fill: rgba(72, 138, 20, 0);
    stroke: rgba(255, 255, 255, 1);
  }
  80% {
    fill: rgba(72, 138, 20, 0);
    stroke: rgba(255, 255, 255, 1);
    stroke-width: 3;
  }
  100% {
    fill: rgba(255, 255, 255, 1);
    stroke: rgba(54, 95, 160, 0);
    stroke-dashoffset: -25%;
    stroke-dasharray: 50% 0;
    stroke-width: 0;
  }
}
/* Safari-specific fixes */
_::-webkit-full-page-media,
_:future,
:root .text-seme {
  -webkit-text-stroke-color: white;
  paint-order: stroke fill;
}

/* Fallback for older browsers */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .text-seme {
    -webkit-text-stroke: 2px white;
  }
}

.read-more-btn {
  transition: all 0.3s;
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: white;
  border-radius: 12px;
  max-width: 800px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 30px;
  position: relative;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #fff;
  width: 25px;
  height: 26px;
  background: #e7000b;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.close-modal:hover {
  background: #cd010b;
  box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24),
    0 17px 50px 0 rgba(0, 0, 0, 0.19);
}
.modal-body p:nth-child(2) {
  text-indent: 50px;
}

.modal-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #193cb8;
  position: relative;
}
.modal-title::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 5px;
  background-color: #193cb8;
  top: 100%;
  left: 0;
}

.modal-body {
  line-height: 1.6;
  color: #555;
}

.modal-body p {
  font-size: 0.9rem;
  margin-bottom: 7px;
  text-align: justify;
}

.line-clamp {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}




 


  /* .tricolor-text {
      font-size: 100px;
      font-weight: 900;
      text-transform: uppercase;
      background: linear-gradient(
        to right,
        #ff9933 0%,   
        #ffffff 50%,  
        #138808 100%  
      );
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
    } */





.websiteLink {
  position: fixed;
  top: 30%;
  z-index: 9;
}
.websiteLink ul {
  list-style-type: none;
  padding: 0;
  transform: translatex(-250px);
}
.websiteLink ul li {
  display: block;
  margin: 5px;
  background-color: rgba(193,0,7, 0.5);
  width: 300px;
  text-align: right;
  padding: 10px;
  border-radius: 0 30px 30px 0;
  transition: all 1s;
}
.websiteLink ul li:hover {
  transform: translatex(180px);
  background: #c10007;
}
.websiteLink ul li a {
  color: white;
  text-decoration: none;
}
.websiteLink ul li i {
  text-align: center;
  margin-left: 14px;
  color: black;
  background-color: white;
  padding: 6px 4px;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  font-size: 24px;
  transform: rotate(0deg);
}

.websiteLink ul li:hover i {
  transform: rotate(360deg);
  transition: all 1s;
}