.frost-img {
    height: 228px;
    width: 100%;
    object-fit: cover;
}
.forst-header-logo{
    width:100px;padding-left:5px;
}
.forst-card-radius{
    border-radius: 1pc;
}
.forst-team-radius{
    border-bottom-right-radius: 1pc;
    border-bottom-left-radius: 1pc;
}
.forst-card-radius-top{
    border-top-left-radius: 1pc;
    border-top-right-radius: 1pc;
}
.forst-top-left-right-radius{
    border-top-left-radius: 1pc;
    border-top-right-radius: 1pc;
}
.forst-left-radius{
    border-top-left-radius: 1pc;
    border-bottom-left-radius: 1pc;
}
.forst-rightt-radius{
    border-top-right-radius: 1pc;
    border-bottom-right-radius: 1pc;
}
.forst-box-shadow {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); /* Deeper shadow for better depth */
    border-radius: 12px; /* Smooth rounded corners */
    transition: all 0.4s ease-in-out;
    overflow: hidden; /* Ensures child elements (like images) don’t overflow */
}

.forst-box-shadow:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4); /* Stronger shadow on hover */
    transform: scale(1.01); /* Bigger zoom effect */
    background: rgba(255, 255, 255, 0.1); /* Adds a subtle glow effect */
}

.forst-box-shadow img {
    width: 100%;
    border-radius: inherit; /* Ensures the image follows the div’s border-radius */
    transition: transform 0.4s ease-in-out;
}

.forst-box-shadow:hover img {
    transform: scale(1.1); /* Slight image zoom */
}
 /* Button Styling */
 .view-more-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    background-color: #007bff;
    border: none;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.view-more-btn:hover {
    background-color: #0056b3;
}

/* Arrow Animation */
.view-more-btn .arrow {
    margin-left: 10px;
    display: inline-block;
    transition: transform 0.3s ease-in-out;
}

.view-more-btn:hover .arrow {
    transform: translateX(5px);
}

/***********************************/
 /* Notice Board Container */
 .frost-notice-board {
    width: 100%;
    max-width: 650px;
    height: 500px;
    overflow: hidden;
    position: relative;
    background: url('https://img.freepik.com/free-vector/realistic-paper-background-template_52683-78777.jpg') center/cover no-repeat;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border: 3px solid #ffcc00;
}

/* Scrolling Content */
.frost-content {
    display: flex;
    flex-direction: column;
    gap: 12px; /* Space between items */
    animation: verticalScroll 12s linear infinite;
}

/* Pause on hover */
.frost-notice-board:hover .frost-content {
    animation-play-state: paused;
}

/* Infinite Vertical Scrolling */
@keyframes verticalScroll {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); } /* Scrolls half, then loops */
}

/* Notice Item */
.frost-item {
    background: #fff;
    padding: 14px;
    font-size: 17px;
    font-weight: bold;
    color: #333;
    text-align: left;
    border-radius: 5px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    border-left: 6px solid #ff9800;
    transition: transform 0.2s ease-in-out;
}

/* Pin Effect (Red Circle) */
.frost-item::before {
    content: "";
    width: 12px;
    height: 12px;
    background: red;
    position: absolute;
    top: -8px;
    left: 50%;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Hover Effect */
.frost-item:hover {
    transform: scale(1.05);
    background: #fffbeb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .frost-notice-board {
        max-width: 100%;
        height: 300px;
    }
    .frost-item {
        font-size: 15px;
        padding: 12px;
    }
}
/***************2nd********************/
 /* Marquee Container */
 .frost-container {
    width: 100%;
    overflow: hidden;
    background: #f8f9fa;
    padding: 15px 0;
    position: relative;
    display: flex;
    align-items: center;
}

/* Marquee Wrapper */
.frost-wrapper {
    display: flex;
    width: 200%;
    animation: frostScroll 10s linear infinite;
}

/* Individual Items */
.frost-item {
    flex: 0 0 auto;
    min-width: 200px;
    padding: 10px 20px;
    font-size: 16px;
    color: #333;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
    margin: 0 10px;
    white-space: normal;
}

/* Hover Effect (Pause Animation) */
.frost-container:hover .frost-wrapper {
    animation-play-state: paused;
}

/* Animation for Scrolling */
@keyframes frostScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); } /* Moves halfway and loops */
}

/* Responsive Tweaks */
@media (max-width: 768px) {
    .frost-item {
        font-size: 14px;
        min-width: 150px;
        padding: 8px 15px;
    }
    .frost-item {
        flex: 0 0 auto;
        min-width: 200px;
        padding: 10px 20px;
        font-size: 16px;
        color: #333;
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 5px;
        text-align: center;
        margin: 0 10px;
        white-space: normal;
    }
}
.nini-team{
    height: 297px;
}
/****************************/
 /* Blinking Animation */
 @keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

/* Frost Alert Notice Styling */
.frost-alert {
    font-size: 24px;
    font-weight: bold;
    color: red;
    animation: blink 1.2s infinite;
    text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(255, 0, 0, 0.6);
}

/* Responsive for Small Devices */
@media (max-width: 768px) {
    .frost-alert {
        font-size: 20px;
    }
}

 .logo-carousel {
  background-color: #f8f9fa;
  overflow: hidden;
  padding: 30px 0;
}

.logo-track {
  display: flex;
  width: fit-content;
  animation: scroll 30s linear infinite;
}

.logo-item {
  flex: 0 0 auto;
  margin-right: 10px; /* Optional space between logos */
}

.logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 10px;
}

.logo-item img {
  height: 100px;
  width: auto;
  display: block;
  object-fit: contain;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.logo-carousel:hover .logo-track {
  animation-play-state: paused;
}

