
/* Full screen loader */
#loader {
    position: fixed;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(20px);
    background: rgba(152, 138, 138, 0.5); /* Semi-transparent */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.8s ease;
}

/* Fade out when hidden */
#loader.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Background */
.pop-robotic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(37, 19, 85, 0.7);
    z-index: -1; /* Stay behind the loading content */
}

#particles {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* Logo + progress container */
.loader-container {
    position: relative;
    width: 270px;
    height: 270px;
}

/* Logo */
#loader img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    z-index: 1;
}

/* Progress circle */
.progress-ring {
    position: absolute;
    top: 40%;
    left: 40%;
    width: 270px;
    height: 270px;
    transform: translate(-50%, -50%) rotate(-90deg);
}

.progress-ring circle {
    fill: none;
    stroke: #4facfe;
    stroke-width: 12;
    stroke-linecap: round;
    stroke-dasharray: 850; /* circumference for r=135 */
    stroke-dashoffset: 850;
    animation: progress 5s linear forwards, colorChange 5s linear infinite;
    filter: drop-shadow(0 0 5px #2499ff);
}

/* Progress fill */
@keyframes progress {
    to {
        stroke-dashoffset: 0;
    }
}

/* Multi-color progress */
@keyframes colorChange {
    0% { stroke: #0588fa; }
    25% { stroke: #ff6347; }
    50% { stroke: #06f606; }
    75% { stroke: #f00b50; }
    100% { stroke: #0788f9; }
}

/* Loader text */
.loader-text {
    font-size: 28px;
    font-weight: bold;
    animation: textColorChange 5s linear infinite;
    text-transform: uppercase;
    margin-top: 40px;
    text-align: center;
}

.loader-tex {
    font-size: 14px;
    font-weight: 600;
    color: #0b0b0b;
    text-transform: uppercase;
    margin-top: 10px;
    text-align: center;
}

/* Multi-color text */
@keyframes textColorChange {
    0% { color: #048aff; }
    25% { color: #ff6347; }
    50% { color: #06f606; }
    75% { color: #f00b50; }
    100% { color: #0788f9; }
}

/* Hide main site initially */
#mainContent {
    display: none;
}














/* General Styles */

.circle-logo {
    width: 100px;
    /* Set desired size */
    height: 100px;
    /* Keep aspect ratio */
    border-radius: 50%;
    /* Makes it circular */
    overflow: hidden;
    /* Ensures edges are clipped */
}
/* Logo and text side-by-side */
.logo-with-text {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: auto;
}
.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: #333;
    font-family: 'Manrope', sans-serif;
    white-space: nowrap;
}
body.dark-mode .logo-text {
    color: #ffffff; /* Light mode override */
}
@media (min-width: 1201px) {
    nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: 1200px;
        margin: 0 30px; /* Center nav content within a max width */
        padding: 0 30px;
    }

}

body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    background: #0d1117;
    color: #c9d1d9;
    line-height: 1.6;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

a {
    text-decoration: none;
    color: #c9d1d9;
    transition: color 0.3s ease;
}

/* Header */
header {
    background: #f7f8f9;
    padding: 10px 20px;
    border-bottom: 1px solid #000000;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* Ensures logo on the left and links on the right */
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 100px;
    /* 40px */
    background: linear-gradient(160deg, #1b066e, #000000);
    backdrop-filter: blur(10px);
    /* Smooth glass effect */
}

#logo {
    height: 100px;   /* logo 60 px */
    border-radius: 50%;
    margin-right: 10px;
    position: absolute;
    left: 30px;   /* logo 20 px */
    top: 10px;   /* logo 25 px */
}

/* Navbar Links */
.links {
    display: flex;
    align-items: center;
}

.links a {
    margin: 0 15px;
    font-weight: 500;
    color: #c9d1d9;
}

.links a:hover {
    color: #58a6ff;
    text-decoration: underline;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    font-size: 26px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    position: absolute;
    /* Position the hamburger button */
    top: 20px;
    /* Adjust vertical positioning */
    right: 20px;
    /* Adjust horizontal positioning */
    z-index: 1001;
    /* Ensure it's above other elements */
}

.hamburger-line {
    display: block;
    width: 30px;
    height: 4px;
    margin: 6px auto;
    background-color: white;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* When the menu is open, change the hamburger button to a cross */
.hamburger.open .hamburger-line:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.hamburger.open .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.open .hamburger-line:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}






/* Robotics Club Text Pop */
.pop-robotics {
    position: relative;
    height: 250PX;
    /* 100 vh  / 250px*/
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #002486, #0066ff);
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* Behind the content */
    background: linear-gradient(135deg, #25043f, #030113);
}

#hover-text {
    font-size: 40px;
    font-weight: bold;
    z-index: 1;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: transform 0.6s ease, color 0.3s ease;
}
.line1 {
    
    font-size: 40px;
    color: #ff6600;
}

.line2 {
    display: block;
    font-size: 22px;
    color: #00ccff;
}

#hover-text:hover {
    transform: scale(1.1);
    color: #ffd700;
}

#hover-text .line1:hover {
    transform: scale(1.1);
    color: #ffd700;
}


/* images slider scroll css  */
.container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 1200px;
}

.slider-container {
    position: relative;
    width: calc(40% + 20px);
    /* Add 20px to width */
    max-width: 700px;
    height: calc(10% + 20px);
    /* Add 20px to height */
    overflow: hidden;
    border: 2px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 20px;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider img {
    width: 100%;
    flex-shrink: 0;
}

.scrollimage button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    z-index: 10;
}

.scrollimage button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.text-container {
    flex: 1;
    max-width: 500px;
    margin: 20px;
    text-align: center;
}

.text-container h1 {
    font-size: 2rem;
    color: #fcfcfc;
    margin-bottom: 20px;
}

.text-container p {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.5;
    justify-items: left;
}

.text-container .btn {
    display: inline-block;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.text-container .btn:hover {
    background-color: #0056b3;
}



















.event-section {
    max-width: 1200px;
    margin: auto;
    padding: 30px;
    background: #cfd2f2;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
  }

  .event-heading {
    text-align: center;
    font-size: 2em;
    margin-bottom: 30px;
    color: #333;
    font-weight: 600;
    text-decoration: underline;
  }

  .event-card {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: center;
    overflow: hidden;
    display: flex;
    
  }

  .event-card img {
    width: 220px;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
  }

  .event-details {
    padding: 15px;
  }

  .event-details h3 {
    margin: 0 0 10px;
    color: #222;
    font-size: 30px;
  }

  .event-details p {
    margin: 0;
    color: #555;
  }

  .event-date {
    font-weight: bold;
    color: #0066cc;
  }
  .read-more-container {
    text-align: right;
    margin-top: 10px;
  }

  .read-more-btn {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .read-more-btn:hover {
    background-color: #0056b3;
  }

  .hidden {
    display: none;
  }




  .table-heading {
    text-align: center;
    font-size: 1.5em;
    margin: 30px 0 20px;
    color: #000000;
    text-decoration: underline;
    
  }
  table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
    background-color: #e7e7e7; /* Main dark background */
    color: #000000; /* Light gray text */
    font-family: 'Segoe UI', sans-serif;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
  }

  th, td {
    border: 1px solid #333;
    padding: 12px 20px;
    text-align: left;
    
    
  }

  th {
  background-color: #313030; /* Slightly lighter header */
  color: #ffffff; /* Gold for headers */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  }

  tr:nth-child(even) {
    background-color: #dcdbdb;
  }
  tr:hover {
    background-color: #e6e4e4; /* Row hover effect */
  }
  .details-link {
  color: #4fc3f7;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  }
  
  .details-link:hover {
    text-decoration: underline;
    color: #81d4fa;
  }
  



  .blog-section {
    width: 80%;
    max-width: 1200px; /* Prevents excessive width on large screens */
    text-align: center;
    flex-wrap: wrap;
    margin: auto;
}
.blog-section h1{
font-size: 1.8rem;
text-decoration: underline;
color: #000000;
margin-bottom: 30px;

}
.body.darkmode,.blog-section h1{
    color: #ffffff;
}
.blog-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}


.blog-card {
    width: 45%;
    background: #525f8a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-5px);
}
.blog-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}
@media screen and (min-width: 992px) {
    .blog-card {
      width: calc(33.33% - 20px); /* 3 per row with gap */
    }
  }
@media (max-width: 768px) {
    .blog-card {
        width: 90%;
    }
}
.blog-content {
    padding: 10px;
}
.blog-date {
    font-size: 14px;
    color: #1e1d1d;
}
.blog-title {
    font-size: 20px;
    font-weight: bold;
    margin: 5px 0;
}
.read-more {
    display: inline-block;
    margin-top: 10px;
    padding: 5px 10px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
}
.read-more:hover {
    background-color: #0056b3;
}






























/* Cards */
.main-cards {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    padding: 20px;
    gap: 20px;
    flex-wrap: wrap;
}

.future-projects-card,
.information-card {
    background: rgba(41, 41, 61, 0.5);
    border: 2px solid #c9d1d9;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    padding: 20px;
    flex: 1;
    max-width: 400px;
    min-width: 300px;
}

.future-projects-card .title,
.information-card .title {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    padding-bottom: 5px;
    margin-bottom: 20px;
    color: #c9d1d9;
    border-bottom: 1px solid #c9d1d9;
    padding-bottom: 5px;
}

.future-projects-card ol {
    margin: 0;
    padding: 0 20px;
    list-style: decimal;
}

.future-projects-card li {
    margin-bottom: 8px;
}



.marquee-vertical {
    height: 100px; /* Adjust based on how many items you want visible */
    overflow: hidden;
    position: relative;
  }
  
  .marquee-vertical ol {
    display: inline-block;
    animation: scroll-up 8s linear infinite;
    margin: 0;
    padding: 0;
    list-style-position: inside;
  }
  
  .marquee-vertical li {
    height: 25px; /* Adjust to match the visible height properly */
    font-size: 1rem;
    padding-left: 10px;
  }
  
  .marquee-vertical li .in-progress {
    font-size: 1rem;
    color: #ffff46; /* Yellow color to indicate progress */
    font-weight: normal;
    margin-left: 10px;
  }
  
  .marquee-vertical li:hover {
    color: #007BFF; /* Highlight color on hover */
  }
  
  /* Animation Keyframes */
  @keyframes scroll-up {
    0% {
      transform: translateY(100%);
    }
    100% {
      transform: translateY(-100%);
    }
  }




  /* Animation Keyframes */
  @keyframes scroll-up {
    0% {
      transform: translateY(100%);
    }
    100% {
      transform: translateY(-100%);
    }
  }
  














.join-us-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    /* Space between button and text */
    margin-top: 10px;
    margin-bottom: 20px;
}



.text-title {
    text-align: center;
   margin-top: 40px;
}

.text-title h2{
    font-size: 2rem;
    font-weight: bold;
    display: inline-block;
    position: relative;
}
.text-title h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background-color: #007bff; /* Or any color you like */
    margin: 8px auto 0;
    border-radius: 2px;
}
















/* Container for the section */
.info-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.scroll-container {
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px 0;
}

/* Ensures dark mode consistency */
body.dark-mode .info-section {
    background-color: rgba(0, 0, 0, 0.8); /* Dark mode color */
}
.row {
    display: flex;
    
    flex-wrap: nowrap;
    gap: 20px;

}

.info-box {
    flex: 0 0 auto;
    width: 250px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    background: #545580;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}


.info-box img {
    width: 100%;
    height: 150px;
    border-radius: 10px;
    margin-bottom: 10px;
    object-fit: cover;
}

.info-box h2 {
    font-size: 1.5em;
    margin-top: 10px;
}

.info-box p {
    font-size: 1em;
    margin-bottom: 20px;
}

.learn-more {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 25px;
    cursor: pointer;
    text-transform: uppercase;
    
}

.learn-more:hover {
    background-color: #0056b3;
}


















/*-----------------------------------*\
    #PROJECT
  \*-----------------------------------*/












.join-us-button {
    background-color: #116bff;
    /* Button background color */
    color: black;
    /* Button text color */
    font-weight: bold;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
}

.join-us-button:hover {
    background-color: #0e5edf;
    /* Hover effect */
    color: black;
}

.join-us-button:active {
    background-color: #0d50bd;
    color: black;
}

.join-us-content p {
    margin: 0;
    font-size: 1rem;
    color: #c9d1d9;
}

/* Footer Styles */
footer {
    background-color: #1e1e2f;
    color: #e4e4e4;
    font-family: Arial, sans-serif;
    padding: 10px 20px 10px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 10px;
    border-bottom: 2px solid #00b4d8;
    display: inline-block;
}

.footer-column p,
.footer-column a {
    font-size: 14px;
    margin: 5px 0;
    color: #b0b0b0;
    text-decoration: none;
}

.footer-column a:hover {
    color: #00b4d8;
    text-decoration: underline;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 8px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    display: inline-block;
    width: 35px;
    height: 35px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.social-icon.facebook {
    background-image: url('icons/facebook.svg');
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-position: center;
}

.social-icon.instagram {
    background-image: url('icons/instagram.svg');
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-position: center;
}

.social-icon.youtube {
    background-image: url('icons/youtube.svg');
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-position: center;
}

.social-icon.linkedin {
    background-image: url('icons/linkedin.svg');
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-position: center;
}

.social-icon.facebook:hover {
    background-color: #116bff;
}

.social-icon.instagram:hover {
    background-color: rgb(223, 61, 61);
}

.social-icon.youtube:hover {
    background-image: url("icons/youtube-color.svg");
}

.social-icon.linkedin:hover {
    background-color: #0b79b5;
}


/* Chatbot Button */
.chatbot-button {
    position: fixed;
    bottom: 15px;
    right: 15px;
    background-color: #007bff;
    color: white;
    padding: 7px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.chatbot-button span {
    font-weight: bold;
}

/* Chatbot Window */
.chatbot-window {
    position: fixed;
    bottom: 70px;
    right: 20px;
    width: 300px;
    height: 400px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    z-index: 999;
}

.chatbot-header {
    background-color: #007bff;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px 8px 0 0;
}

.chatbot-content {
    padding: 20px;
    flex: 1;
    overflow-y: auto;
}

.chatbot-content p {
    margin-bottom: 10px;
}

#user-input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.send-btn {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.send-btn:hover {
    background-color: #0056b3;
}

.close-chatbot {
    background-color: transparent;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

/* Chatbot button hover effect */
.chatbot-button:hover {
    background-color: #2a3379;
    /* Darker green when hovered */
}



























.footer-bottom {
    text-align: center;
    margin-top: 10px;
    border-top: 1px solid #c9d1d9;
    padding-top: 10px;
    font-size: 12px;
    color: #888;
}

.footer-bottom a {
    color: #f2f0ea;
    text-decoration: underline;

}

#theme-toggle {
    background-color: #150a4b;
    padding: 7px;
    color: rgba(255, 255, 255, 0.77);
    border-radius: 50px;
}

/* Light Mode */
body.light-mode {
    background: linear-gradient(160deg, white, rgb(69, 59, 205));
    color: #0d1117;
}

body.light-mode header {
    background: linear-gradient(160deg, #ffffff, #2b29a4);
    border-bottom: 2px solid #ddd;
}

body.light-mode .links a {
    color: #0d1117;
}

header.light-mode .theme-toggle {
    background: #e0e0e0;
    color: #333;
}

header.dark-mode .theme-toggle {
    background: #161b22;
    color: #c9d1d9;
}

body.light-mode #particles-js {
    background: linear-gradient(135deg, #25043f, #030113);
}

body.light-mode .future-projects-card ol {
    color: #000000;
}

body.light-mode .title h2 {
    color: #030113;
}

body.light-mode .title h2 {
    color: #000000;
}

body.light-mode .information-card p {
    color: #000000;
}


body.light-mode,
.footer-bottom p {
    color: #f4f1ec;
}

.theme-toggle {
    padding: 5px 10px;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {

    /* Stack the content vertically on smaller screens */
    header {
        flex-direction: column;
        /* Stack the logo and links */
        text-align: center;
        height: auto;
    }

    /* Adjust the logo's position */
    #logo {
        margin-bottom: 15px;
        /* Add some space between the logo and links */
        position: static;
    }

    /* Navbar links adjustment */
    .links {
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
        display: none;
        /* Hide links by default */
    }

    .links a {
        margin: 10px 0;
        /* Add vertical spacing between links */
        display: flex;
    }

    /* Ensure navbar items are centered */
    .links a {
        text-align: center;
    }

    .hamburger {
        display: block;
    }

    .slider-container {
        width: 90%;
        /* Make it wider on smaller screens */
    }

    button {
        padding: 8px;
        /* Smaller buttons for smaller screens */
    }

    .container {
        flex-direction: column;
    }

    .slider-container,
    .text-container {
        width: 100%;
        max-width: none;
    }

    .row {
        flex-wrap: nowrap;
        /*flex-direction: column;*/
        overflow-x: auto;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        padding: 10px;
    }

    .info-box {
        flex: 0 0 auto;
        width: 50%;
        /* Makes the boxes narrower on small screens */
    }
}

@media (max-width: 480px) {

    /* Further adjustments for very small screens */
    header {
        padding: 15px;
        height: auto;
    }

    #logo {
        height: 50px;
        /* Slightly smaller logo */
    }

    .links a {
        font-size: 14px;
        /* Smaller font size for smaller screens */
    }

    #particles-js {
        height: 50vh;
    }

    .pop-robotics {
        text-align: center;
    }

    #hover-text {
        font-size: 17px;
    }

    .title h2 {
        font-size: 23px;
    }

    .hamburger {
        top: 15px;
        right: 15px;
    }
    .row {
        flex-wrap: nowrap;
        /*flex-direction: column;*/
        overflow-x: auto;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        padding: 10px;
    }

    .info-box {
        flex: 0 0 auto;
        width: 50%;
    }
}