.hero-img{
    width: 300px;
    height: 400px;
}
.hero {
    background-size: cover;
    background-position: center center;
    color: #fff;
    padding: 100px 0;
}

.hero h1 {
    font-size: 3rem;
}

.hero p {
    font-size: 1.5rem;
}

.hero-image {
    width: 100%;
    max-width: 500px; /* Adjust the size as needed */
}

@keyframes moveGradient {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

body{
    overflow-x: hidden;
}

.moving-gradient-button {
    width: max-content;
    background: linear-gradient(45deg, #FF8C00, #FF6347); /* Gold gradient */
    background-size: 200% 100%;
    color: #fff; /* Text color */
    border: none;
    padding: 10px 120px; /* Adjust padding as needed */
    border-radius: 5px; /* Rounded corners */
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 10px 2px;
    cursor: pointer;
    animation: moveGradient 4s linear infinite; /* Animation for moving gradient */
    transition: box-shadow 0.3s, color 0.3s;
}



.moving-gradient-button:hover {
    box-shadow: 0 0 10px rgba(255, 165, 0, 0.6); /* Add a subtle shadow on hover */
    color: #fff; /* Text color on hover */
    animation: none; /* Stop the animation on hover */
}

.moving-gradient-button:active {
    background: linear-gradient(45deg, #FF8C00, #FF6347); /* Darker gold gradient on click */
}


.hexagon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hexagon-row {
    display: flex;
}

.hexagon {
    width: 100px;
    padding: 150px;
    margin: 10px;
    position: relative;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.hexagon-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
}

.hexagon-content h2 {
    margin: 10px 0;
}

.hexagon:hover .hexagon-content{
    background: rgba(256, 256, 256, 0.7);
    color: black;
    cursor: pointer;
    font-size: 20px;
    transition: all 1s;
}

.gradient-text {
    font-size: 48px;
    background: linear-gradient(45deg, #FF3366, #33FF66);
    -webkit-background-clip: text;
    color: transparent;
  }

  .moving-gradient-text {
    width: fit-content;
    font-size: 48px;
    background: linear-gradient(45deg, #FF3366, #33FF66);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: moveGradient 5s linear infinite;
    /* color: #FFFFFF; */
    font-weight: 600;
    /* font-size: 48px; */
  }
  
  @keyframes moveGradient {
    0% {
      background-position: 0% 50%;
    }
    100% {
      background-position: 100% 50%;
    }
  }
  
.separator{
    height: 3px;
    background-color: #FFFFFF !important;
}

.class-img{
    object-fit: cover;
    width: 100% !important;
    height: 270px !important;
    border-radius: 5px !important;
}

.swiper-slide .card{
    background: rgba(192,192,192,0.19);
    color: #FFFFFF;
}

.swiper-slide .card .img-fluid{
    height: 200px;
}
.swiper-slide {
    width: fit-content !important;
}

@media screen and (max-width: 767px) {
    .swiper-slide .card .img-fluid{
        width: 100% !important;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.zoom-element {
    animation: zoomIn 2s ease-in-out;
}

.overlay {
    /* opacity: 0.5; */
}

.main-content{
    opacity: 1 !important;
    z-index: 1 !important;
    position: absolute;
    top: 30%;
    left: 50%;
}

.carousel-item{
    z-index: 0 !important;
    height: 100%;
}

.main-img{
    width: 350px;
    height: 350x;
}

#carouselMaterialStyle {
    position: relative;
}

.main-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: #fff; /* Text color for the main content */
}

.main-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px; /* Optional: Add border-radius to the image */
}

.carousel-item {
    position: relative;
    overflow: hidden;
}

.carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
    z-index: 1;
}

.carousel-item img {
    width: 100%;
    max-height: 90% !important;
    height: auto;
}

.toggle-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

