
/* Section Titles */
.research-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    padding-top: 10px;
}

.research-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--text-color);
    margin: 10px 0 10px;
}

.research-navigation {
    margin: 30px 0;
}

.research-navigation a {
    display: inline-block;
    padding: 12px 18px;
    margin: 10px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background: #F5A425;
    transition: all 0.3s ease-in-out;
    clip-path: polygon(10% 0%, 90% 0%, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0% 90%, 0% 10%);
}

.research-navigation a:hover {
    background:transparent;
    color: #3652A5;
    border: 2px solid #3652A5;
    transform: scale(1.05);
}

/* Research List */
.research-list,
.collaboration-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.research-list li,
.collaboration-list li {
    background: #f8f9fa;
    padding: 10px;
    margin-bottom: 8px;
    border-left: 3px solid #3498DB;
}
.few-research {
    font-size: 1.3rem;
    font-weight: 500;
    color: #2C3E50;
    position: relative;
    display: block;  /* Ensures it takes full width */
    text-transform: uppercase;
    text-align: center;
    padding-bottom: 2px;
    margin: 0 auto;  /* Centers the block element */
    width: fit-content;
    padding-top: 10px;
}

.few-research::after {
    content: '';
    width: 100%;
    height: 4px;
    background: radial-gradient(circle, #F5A425 30%, transparent 70%);
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 0.8;
}

.few-research:hover::after {
    transform: translateX(-50%) scale(1.5);
    opacity: 1;
}

.research-desc {
    font-size: 1rem;
    font-weight: 500;
    color: #444;
    margin-left: 10px;
    display: inline-block;
    padding-top: 10px;
}
.research-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px; /* Ensures spacing between rows on small screens */
}

.research-btn {
    display: inline-block;
    padding: 12px 20px;
    font-size: 17px;
    font-weight: bold;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.research-btn:hover {
    background-color: #0056b3;
}

.research-img {
    width: 100%; /* Makes it responsive */
    height: auto;
}

/* Incubation Boxes */
.intro-text {
    margin: 0 auto 30px;
    font-size: 17px;
    color: #555;
}
.incubation-card {
    padding: 15px;
}
.incubator-box{
    font-size: 1.3rem;
    color: #F5A425;
    font-weight: 700;
    transition: color 0.3s ease;
    padding-bottom: 10px;
}
.window-container {
    position: relative;
    overflow: auto;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(0, 116, 116); /* 3 */
    padding: 20px;
    flex-direction: column;
    row-gap: 20px;
    justify-content: center;
    align-items: center;
  }
  
  .window-bracket {
    position: absolute;
    height: 5px;
    width: 5px;
  }
  
  .window-bracket-top-left {
    border-top: 8px solid #F5A425; /* 4 */
    border-left: 8px solid #F5A425;
    top: 0;
    left: 0;
  }
  
  .window-bracket-top-right {
    border-top: 8px solid #F5A425;
    border-right: 8px solid #F5A425;
    top: 0;
    right: 0;
  }
  
  .window-bracket-bottom-right {
    border-bottom: 8px solid #F5A425;
    border-right: 8px solid #F5A425;
    bottom: 0;
    right: 0;
  }
  
  .window-bracket-bottom-left {
    border-bottom: 8px solid #F5A425;
    border-left: 8px solid #F5A425;
    bottom: 0;
    left: 0;
  }

.incubation-gallery {
    display: flex;
    flex-wrap: wrap;  /* Allows images to form two per row */
    justify-content: center;
    align-items: center;
    margin: 5px;
    overflow: hidden;
    gap: 0.3em; /* Space between cards */
}

.incubation-card {
    flex: 1; /* Two cards per row (48% width) */
    transition: all 1s ease-in-out;
    height: 100%; /* Adjust height */
    position: relative;
    overflow: hidden;
}


.incubation-card__head {
    color: black;
    background: #3652A5;
    padding: 0.5em;
    transform: rotate(-90deg);
    transform-origin: 0% 0%;
    transition: all 0.5s ease-in-out;
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 10px;
    white-space: nowrap;
}

.incubation-card:hover {
    flex-grow: 2; /* Increase size */
}

.incubation-card:hover img {
    filter: grayscale(0);
    transform: scale(1.2); /* Enlarges the image */
}

.incubation-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1s ease-in-out;
border-radius: 999px 999px 0px 0;
}

/* .industries-description{
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-color);

} */
@media (max-width: 768px) {
    .research-title{
        font-size: 15px;
    }
    .research-title::after {
        height: 2px;
        margin: 5px 0;
    }
    .incubation-card {
        flex:  1 1 100%;  
    }
  }

  /* logos */
/* Basic container styling */
.brand-slider-container {
    width: 100%;
    overflow: hidden; /* Hide overflow */
    padding: 2em 0em 4em 0em;
}

/* The track that holds all the slides */
.brand-slider-track {
    display: flex;
    gap: 3em; /* Space between slides */
    animation: scroll 20s linear infinite; /* Infinite scrolling animation */
}

/* Individual slide styling */
.brand-slide {
    flex: 0 0 auto; /* Prevent shrinking */
}

/* Image styling */
.brand-slide-image {
    width: 10rem; /* Adjust image size */
    height: auto;
    transition: transform 0.3s ease; /* Smooth transition for hover effect */
}

/* Infinite scrolling animation */
@keyframes scroll {
    0% {
        transform: translateX(0); /* Start position */
    }
    100% {
        transform: translateX(-100%); /* End position (scroll out of view) */
    }
}

/* Pause animation on hover */
.brand-slide:hover {
    animation-play-state: paused; /* Pause scrolling when hovering on an image */
}

/* Optional: Dim effect on hover */
.brand-slide:hover .brand-slide-image {
    opacity: 0.7;
}