@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,700;1,9..40,700&display=swap");
@import url(https://fonts.googleapis.com/css?family=Lato:100);

*{
  margin: 0;
  padding: 0;
}

.img-fluid {
  max-width: 66px;
  max-height: 66px;
}
.container_b {
  width: 100vw;
  /* height: 100vh; */
  display: flex;
  /* background-image: linear-gradient(to top, #58087F, #001A3D); */
  /* background-image: url(/img/test.png); */
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: "Raleway", sans-serif;
}


.wrap {
  width: 400px;
  border-radius: 20px;
  margin: auto;
  margin-top: 135px;
  padding: 30px;
  text-align: center;
}

.split {
  height: 100%;
  width: 70%;
  position: fixed;
  z-index: 1;
  top: 0;
  overflow-y: hidden;
  overflow-x: hidden;
}

/* -----------Left Section--------- */

.left {
  left: 0;
  width: 30%;
  box-shadow: 2px 2px 10px #665145;
  background-color: #af9587;
}
.left-logo {
  position: absolute;
  display: flex;
  top: 15px;
  gap: 5px;
  left: 5%;
  font-family: "DM Sans", sans-serif;
  color: #ffffff;
}
.left-logo a{
  text-decoration: none;
  color: #ffffff;
}
/* info card  */

.left-part {
  align-items: center;
  align-content: center;
  display: flex;
  justify-content: center;
}

.inner-card {
  min-width: 350px;
  border-radius: 10px;
  padding: 10px;
  background: transparent;
  color: #ffffff;
  position: relative;
  top: 170px;
}
.col-item{
  display: flex;
  gap: 15px;
  margin-bottom: 5px;
  margin-top: 7px;
}
.text{
  line-height: 10px;
  font-size: 14px;
  margin-bottom: 10px;
}

/* -----Right Section------- */

.right {
  right: 0;
  background-color: #f3e5de;
}
.app_tiles_container {
  width: fit-content;
  display: flex;
  flex-direction: row;
  /* justify-content: space-evenly; */
  justify-content: center;
  margin-left: -20%;
}
.logo-container {
  width: 350px;
  text-align: center;
  color: #000000;
  margin: 30px;
}
.logo-container h3{
  font-weight: 700;
}
.app_box {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  transition: all 0.5s;
  margin: 15px;
  text-decoration: none;
}
.app_box .box {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.app_box img {
  width: 66px !important;
}
.app_box .card-title {
  font-size: 0.7rem;
  text-decoration: none !important;
}
.app_box:hover {
  box-shadow: 0 0 10px 3px black;
}
.me-3{
  margin:  0px 30px 0px 75px !important;
}
.copyright p {
  color: white;
}
.copyright.mt-5 {
  position: fixed;
  top: 85vh;
  padding: 10px;
  margin: 5px;
  display: flex;
  justify-content: center;
}
.copyright a {
  text-decoration: none;
  color: #ffffff;
}
#closeButton{
  display: none;
}



/* Abhishek */

.image-text {
  margin-top: 10px;
  font-size: 15px;
  font-weight: bold;
  color: #333;
}

/* test */



.image-text-wrapper {
  position: absolute; /* Absolute positioning to stay within app_box */
  top: 107px;
  width: 100%;        /* Full width of parent */
  height: 20px;       /* Height of the text container */
  overflow: hidden;   /* Hide overflowing content */
  box-sizing: border-box;
}

.image-texts {
  display: inline-block; /* Inline-block to enable horizontal scrolling */
  white-space: nowrap;   /* Prevent text from wrapping */
  font-size: 15px;
  font-weight: bold;
  color: #333;
  position: relative; /* For animation positioning */
  animation: scroll-text 10s linear infinite; /* Animation to scroll text */
}

@keyframes scroll-text {
  0% {
      transform: translateX(100%); /* Start off-screen to the right */
  }
  100% {
      transform: translateX(-100%); /* End off-screen to the left */
  }
}
.underline-container {
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center;     /* Center vertically (optional) */
  height: 100px;           /* Set a height if needed */
}

.underline {
  position: relative;
  top: 38px;
  display: block;
  width: 50px; /* Adjust width as needed */
  border-bottom: 3px solid #639AEF;
}




/* test */
.app_box, .image-text:hover{
  color: #03004B;
}
.image-text::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: #639AEF;
  margin: 3px auto 0;
}
.app_box, .image-text-wrapper, .image-texts:hover{
  color: #03004B;
}

/* Divider css */


/* Define CSS variables */

.divider{
  width: 115%;
}

:root {
  --bg: #03004B;
  --barsize: 10px;
}

/* Styles for .hr */
.hr {
  width: 136%;
  height: 1px;
  display: flex;
  position: relative;
  margin-bottom: 0;
  padding: 2em 0;
  margin-left: -20%;
}

.hr::after,
.hr::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 7px;
  bottom: 50%;
  left: 0;
}

.hr::before {
  background: linear-gradient(90deg, var(--bg) 0%, var(--bg) 50%, transparent 50%, transparent 100%);
  background-size: var(--barsize);
  background-position: center;
  z-index: 1;
}

.hr::after {
  transition: opacity 0.3s ease, background-position 0.3s ease;
  background: linear-gradient(
    to right,
    #62efab 5%,
    #F2EA7D 15%,
    #F2EA7D 25%,
    #FF8797 35%,
    #FF8797 45%,
    #e1a4f4 55%,
    #e1a4f4 65%,
    #82fff4 75%,
    #82fff4 85%,
    #62efab 95%
  );
  background-size: 200%;
  background-position: 0%;
  animation: bar 15s linear infinite;
}

@keyframes bar {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 200%;
  }
}

/* Additional styles for .hr.anim */
.hr.anim::before {
  background: linear-gradient(
    90deg,
    var(--bg) 0%, var(--bg) 5%,
    transparent 5%, transparent 10%,
    var(--bg) 10%, var(--bg) 15%,
    transparent 15%, transparent 20%,
    var(--bg) 20%, var(--bg) 25%,
    transparent 25%, transparent 30%,
    var(--bg) 30%, var(--bg) 35%,
    transparent 35%, transparent 40%,
    var(--bg) 40%, var(--bg) 45%,
    transparent 45%, transparent 50%,
    var(--bg) 50%, var(--bg) 55%,
    transparent 55%, transparent 60%,
    var(--bg) 60%, var(--bg) 65%,
    transparent 65%, transparent 70%,
    var(--bg) 70%, var(--bg) 75%,
    transparent 75%, transparent 80%,
    var(--bg) 80%, var(--bg) 85%,
    transparent 85%, transparent 90%,
    var(--bg) 90%, var(--bg) 95%,
    transparent 95%, transparent 100%
  );
  background-size: calc(var(--barsize) * 10);
  background-position: center;
  z-index: 1;
  animation: bar 20s linear infinite;
}

.hr.anim:hover::before {
  animation-duration: 120s;
}

.hr.anim:hover::after {
  animation-duration: 2s;
}

