@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
html{
    scroll-behavior: smooth;
}


a{
    text-decoration: none;
}
h1{
    font-weight: 400;
    letter-spacing: 1px;
}
p{
    opacity: 0.9;
    font-weight: 300;
    font-size: 0.95rem;
    letter-spacing: 0.1rem;
}
.hr_line{
    color: var(--secondary_color);
}
:root{
    --primary_color : #87C140;
    --primary_light_color : #87c140a8;
    --secondary_color : #1B75B7;
    --dark_color : rgba(0, 0, 0, 0.01);
    --gray_color :#212a31;
}


/* -------------------------------- Custom Scrollbar Style ------------------------------ */
::-webkit-scrollbar{
    width: 0.8rem;
}

::-webkit-scrollbar-track{
    background-color: #f0f0f0;
}
::-webkit-scrollbar-thumb{
    background: linear-gradient(#0a300cbb,#07151fbb,#193549bb);
    border-radius: 5px;
}







.custom_bg{
    background: var(--primary_color);
}

.custom_btn{
    padding: 8px;
    border: none;
    border-radius: 10px;
    font-weight: 300;
    cursor: pointer;
    color: #fff;
    text-transform: uppercase;
    transition: 1s;
    /* background: linear-gradient(45deg, var(--primary_color), var(--secondary_color));  */
    background: var(--primary_color);
    /* border: 1px solid var(--primary_color); */
    letter-spacing: 2px;
}
.join_btn{
    border: linear-gradient(45deg, var(--secondary_color), var(--primary_color)); 
    color: #fff;
}
.custom_btn.link_btn{
    border: 1px solid var(--secondary_color);
    color: var(--secondary_color);
}

.custom_btn:hover{
    /* background: var(--secondary_color);
    border: 1px solid var(--secondary_color); */
    /* background: linear-gradient(45deg, var(--secondary_color), var(--primary_color)); */
    background: var(--secondary_color);
    transition: all 1s;
}

.register_title{
    color: var(--primary_color);
}
.divider{
    margin-top: 15px;
}
.divider .hr{
    border: 0;
    height: 1px;
    background: #c2c2c2;
    margin: auto;
}
.divider span{
    display: block;
    width: 40px;
    margin: auto;
    text-align: center;
    font-size: 14px;
    margin-top: -12px;
}
.divider .span2{
    width: 250px;
}
.form .logo{
    position: absolute;
    top: -50%;
}
.input_field{
    display: flex;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.3);
    transition: 0.3s;
    overflow: hidden;
}
.input_field:focus-within{
   border-color: var(--primary_color);
}

.input_field i{
    font-size: 18px;
    margin: 0px 5px;
    transform: 0.3s;
    /* color: var(--primary_color); */
    color: rgb(122, 116, 116);
}
.input_field .icon_border{
    padding-right: 10px;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
}
.input_field:focus-within .icon_border{
    border-color: var(--primary_color);
}

.input_field:focus-within i{
    color: var(--primary_color);
    /* border-color: var(--primary_color); */
    /* box-shadow:inset 0px 0px 5px 0.1px var(--primary_color),
    0px 0px 10px 0.1px var(--primary_color); */
}

/* .input:has(+ .icon:active){
    color: var(--primary_color) !important;
} */

/* previous:has(+ next) */
.input_field input{
    flex: 1;
    margin-left: 5px;
    font-size: 18px;
    outline: none;
    border: none;
    background: transparent;
}
.input_field i{
    cursor: pointer;
    transition: 0.3s;
}
.input_field .eye:hover{
    color: var(--primary_color);
}
.input_field .password-show{
    display: none;
}
.check_box{
    cursor: pointer;
}
.submit_btn{
    background: var(--primary_color);
    color: #fff;
}
.submit_btn:hover{
    opacity: 0.9;
    transform: scaleY(1.1);
    /* color: var(--secondary_color); */
    border-color: var(--secondary_color);
}

.go-top{
    position: fixed;
    right: 15px;
    bottom: 100px;
    width: 35px;
    height: 35px;
    font-size: 1.1rem;
    border-radius: 50%;
    border:3px solid var(--primary_color);
    opacity: 0.7;
    transition: 0.6s;
    cursor: pointer;
    color: var(--primary_color);

    display: none;
    justify-content: center;
    align-items: center;
}

.go-top:hover{
    opacity: 1;
    transform: scale(1.1);
}









/* loader */
.loader{
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    background:linear-gradient(45deg, var(--secondary_color), var(--primary_color));
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1500;
}

.loader img{
    width: 25%;
    min-width: 150px;
    animation: loader-image-animation 2.5s 1s linear infinite;
}

@keyframes loader-image-animation {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.2);
    }
    100% {
      transform: scale(1);
    }
}




















/* -------------------------------- navbar style ------------------------------ */
nav{
    background: var(--dark_color);
    filter: opacity(0.9);
    z-index: 1000;
}
nav .navbar-brand{
    border-radius: 10px;
}
.color-navbar{
    background-color:var(--gray_color);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
.navbar-nav li a{
    color: #e0e0e0 !important;
}
.navbar-nav .dropdown{
    color: #000 !important;
}
.navbar-nav li a.active{
    color: var(--primary_color) !important;
    font-weight: bold;
}
.search-btn i{
    color: #000;
    margin: 0px 10px;
    font-size: 18px;
    cursor: pointer;

}
.color-navbar .navbar-nav li a{
    color: #fff;
}
.navbar-toggler{
    background-color: var(--primary_color) !important;
    transform: scale(0.7);
}

nav .profile {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary_color);
}

@media screen and (max-width: 994px){
    nav{
        background-color: var(--gray_color) !important;
    }
    .hero-section{
        margin-top: 60px;
    }
}


















/* -------------------------------- search style ------------------------------ */
.search{
    z-index: 10000;
    position: fixed;
    top: -100vh;
    left: 0px;
    right: 0px;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    transition: 0.1s;
}
.search .search-box{
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
    border-radius: 5px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.search .search-box input{
    flex-grow: 1;
    font-size: 25px;
    border: none;
    outline: none;
    background: transparent;
}
.search .search-box i{
    font-size: 25px;
    font-weight: bold;
    cursor: pointer;
    opacity: 0.7;
}
.search .search-box i:hover{
    opacity: 1;
    transition: 0.3s;
}
.search .search-box i.fa-xmark{
    border-right: 1px solid rgba(0, 0, 0, 0.3);
    padding-right: 10px;
}
























/* -------------------------------- hero section style ------------------------------ */

.hero-section{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.hero-section{
    height: 75vh;
}
.hero-section h1{
    font-weight: 500;
    text-transform: uppercase;
    color: var(--primary_color);
}
.hero-section h1 span{
    color: var(--secondary_color);
    text-shadow: 1px 1px 2px var(--primary_color);
}
.hero-section p{
    text-align: justify;
    letter-spacing: 0.2rem;
}



.home-hero-section.swiper-container {
    width: 100%; /* Ensure it takes the full width */ 
    margin: auto;
    height: 95vh; /* Set height as needed */
    overflow: hidden; /* Prevent overflow */
    position: relative; /* Ensure proper layering */
}

.home-hero-section .swiper-wrapper {
    display: flex; /* Required for Swiper to work */
    width: 100%; /* Full width for the wrapper */
    padding-left: 0;
    /* background: black; */
}


.home-hero-section .static-content {
    position: absolute; 
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    color: white;
}

.home-hero-section .swiper-slide {
    flex-shrink: 0; /* Prevent slides from shrinking */
    width: 100%; /* Each slide takes the full width of the container */
    height: 95vh; /* Match the height of the container */
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover; 
    background-position: center;
}

.swiper-slide img {
    width: 100%; /* Adjust width */
    height: auto; /* Maintain aspect ratio */
}

.home-hero-section .placeholder-slide {
    width: 100%; /* Ensure placeholder is properly sized */
    min-height: 95vh; /* Match height of the Swiper slides */
    max-height: 100vh; /* Match height of the Swiper slides */
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.home-hero-section .static-content h1 {
    font-size: 1.5rem; /* Adjust size as needed */
    font-weight: 800;
    letter-spacing: 0.1;
    margin-bottom: 1rem;
}

.home-hero-section .static-content p {
    margin-bottom: 1rem;
    text-align: justify;
    hyphens: auto; /* Break words to fit lines */
    overflow-wrap: break-word; /* Prevent overflow issues */
    font-weight: bolder;
}

.home-hero-section .static-content .btn {
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
}












/* -------------------------------- 404 page style ------------------------------ */
.oops{
    font-size: 80px;
    font-weight: 900;
    color: var(--primary_color);
}













/* -------------------------------- front end sponser section ------------------------------ */

section {
    margin: 50px 0px;
    /* transform: scale(0.9); */
}
section .heading{
    position: relative;
    display: flex;
    justify-content: center;
    margin: 35px 0;
}
section .heading h1{
    position: relative;
    color: var(--secondary_color);
    text-transform: uppercase;
    font-size: 1.4rem;
    letter-spacing: 0.2rem;
}
section .heading h1::before{
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -12px;
    margin: auto;
    width: 70%;
    height: 2px;
    border-radius: 5px;
    background: linear-gradient(45deg, var(--primary_color), var(--secondary_color)); 
    box-shadow: 1px 3px 10px var(--primary_color);
}
section p{
    text-align: justify;
    letter-spacing: 1px;
}

.sponsers{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}
.slider .slide{
    transform: scale(0.6);
}







/* -------------------------------- front end event page ------------------------------ */
.events .select-option{
    cursor: pointer;
}
.loading-modal h1{
    filter: opacity(0.6);
}









.scroll-slider {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    overflow-y: none;
    padding-bottom: 15px;
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: #ddd transparent;
}

.scroll-slider::-webkit-scrollbar {
    height: 10px; /* Adjust scrollbar height */
}

.scroll-slider::-webkit-scrollbar-thumb {
    background-color: #bbb;
    border-radius: 5px;
}

/* Add some custom styling for the Swiper slider */
.slider .swiper-container {
    width: 100%;
}

.slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    max-width: 450px;
}

.slider .card {
    width: 100%;
    border: none;
    border-radius: 10px;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background-color: #fff;
    margin: 0px 10px;
   
}

.slider .card-img-top {
    height: 200px;
}

.slider .card-body {
    padding: 20px;
    text-align: center;
    
}

.slider .inner-card-event {
    min-height: 210px;
}

@media screen and (max-width:500px) {
    .slider .inner-card-event {
        min-height: 300px;
    }
}

.slider .inner-card {
    min-height: 300px;
}
.slider .card-title {
    font-size: 1.25rem;
    font-weight: bold;
}

.slider .card-text {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.slider .btn-block {
    width: 100%;
}

/* Make it responsive */
@media (max-width: 768px) {
    .slider .swiper-slide {
        margin-right: 10px;
    }
}

@media (max-width: 576px) {
    .slider .swiper-slide {
        margin-right: 0;
    }
}





/* -------------------------------- front end fyp page ------------------------------ */
.member-info {
    position: relative;
    max-width: 100%;
}

.member-info .badge {
    position: relative;
    margin-top: 5px; /* Space between badges */
    font-size: 0.85rem;
}

.member-info .badge .img-fluid {
    width: 25px; /* Adjust size of the image */
    height: 25px;
    object-fit: cover;
    image-rendering: auto;
    margin-right: 5px; /* Space between image and text */
}
/* Styling for the badges */
.member-info .badge.bg-primary {
    background-color: #007bff !important;
    color: white;
}

.member-info .badge:hover {
    cursor: pointer;
    opacity: 0.8;
}








/* Swiper Container */
.single-fyp-information .swiper-container {
    width: 100%; /* Full-width container */
    max-width: 100%; /* Prevent overflow horizontally */
    position: relative; /* Needed for navigation buttons positioning */
    overflow: hidden; /* Ensure no overflow issues */
}

/* Swiper Slide */
.single-fyp-information .swiper-slide {
    display: flex; /* Center content within the slide */
    justify-content: center;
    align-items: center;
}

/* Images within slides */
.single-fyp-information .swiper-slide img {
    max-width: 100%; /* Prevent horizontal overflow */
    max-height: 400px; /* Adjust as needed to control image height */
    object-fit: cover; /* Maintain aspect ratio and fill the container */
    border-radius: 8px; /* Optional: Rounded corners */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Optional: Shadow effect */
}

/* Navigation Buttons */
.single-fyp-information .swiper-button-next,
.single-fyp-information .swiper-button-prev {
    position: absolute;
    top: 50%; /* Vertically center */
    transform: translateY(-50%);
    z-index: 10; /* Ensure they appear above slides */
    width: 40px; /* Adjust width */
    height: 40px; /* Adjust height */
    opacity: 0.3;
    color: #fff; /* Arrow color */
    border-radius: 50%; /* Make them circular */
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.4s;
}
.single-fyp-information .swiper-button-next:hover,
.single-fyp-information .swiper-button-prev:hover{
    opacity: 1;
}

/* Next Button */
.single-fyp-information .swiper-button-next {
    right: 10px; /* Position to the right */
}

/* Previous Button */
.single-fyp-information .swiper-button-prev {
    left: 10px; /* Position to the left */
}

/* Pagination */
.single-fyp-information .swiper-pagination {
    bottom: 10px; /* Adjust distance from the bottom */
    text-align: center;
    color: #000;
}

.single-fyp-information .team-member-card {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.single-fyp-information .team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.single-fyp-information .team-member-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: top;
    border-radius: 10px;
}

.single-fyp-information .team-member-info {
    padding: 15px;
}

.single-fyp-information .team-member-info h5 {
    font-size: 1.25rem;
    color: #333;
}

.single-fyp-information .team-member-info p {
    color: #555;
    font-size: 1rem;
}

.single-fyp-information .badge-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.single-fyp-information .badge {
    background-color: #007bff;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.875rem;
}

.single-fyp-information .links-section a {
    color: #007bff;
    text-decoration: none;
}

.single-fyp-information .links-section a:hover {
    text-decoration: underline;
}

.single-fyp-information .fyp p {
    text-align: justify;
    font-size: 16px; /* Adjust font size */
    line-height: 1.6; /* Adjust line height for better readability */
    color: #333; /* Text color */
    margin-bottom: 15px; /* Space below the paragraph */
}












/* -------------------------------- front end cabinet page ------------------------------ */
.cabinet_memeber_card{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0px 0px 32px -4px var(--secondary_color);
}
.cabinet_memeber_card h5{
    font-weight: 500;
    /* text-transform: capitalize; */
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: -12px;
}
.cabinet_memeber_card img{
    width: 120px;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: top;
}
.cabinet_memeber_card p{
    font-size: 0.7rem;
}
.single_cabinet_design_card{
    position: relative;
}
.single_cabinet_design_card .download_btn{
    background-color: var(--primary_color) !important;
    position: absolute;
    right: 10px;
    top: 10px;
    outline: none;
    border: none;
    /* padding: 5px 10px; */
    border-radius: 5px;
    color: #fff;
    transform: scale(0.8);
    opacity: 0.9;
    transition: 0.3s;
    cursor: pointer;
}
.single_cabinet_memeber_card{
    background: linear-gradient(var(--secondary_color) 10%, var(--primary_color) 90%);
    color: #fff;
}
.single_cabinet_memeber_card .leader{
    width: 25%;
    min-width: 200px;
    max-width: 400px;
    aspect-ratio: 1;
    border-radius: 50%; 
    object-fit: cover;
    object-position: top;
    border: 1px solid var(--secondary_color);
    box-shadow: 0px 0px 38px -6px var(--secondary_color);
}
.single_cabinet_memeber_card h3{
    position: relative;
    color: var(--primary_color);
    font-weight: 600;
    letter-spacing: 0.3rem;
    text-align: center;
}
.single_cabinet_memeber_card h3::before{
    position: absolute;
    content: '';
    bottom: -10px;
    left: 50%;
    transform: translate(-50%,0%);
    width: 75%;
    height: 3px;
    background-color: var(--primary_color);
    border-radius: 5px;
    box-shadow: 0px 0px 38px 1px var(--secondary_color);
}
.single_cabinet_memeber_card .cabinet_memeber_card{
    background: var(--secondary_color);
    display: flex;
    justify-content: center;
    box-shadow: 0px 0px 38px -6px var(--secondary_color);
}
.single_cabinet_memeber_card .cabinet_memeber_card img{
    width: 10%;
    min-width: 120px;
    max-width: 300px;
    aspect-ratio: 1;
    border-radius: 50%; 
    object-fit: cover;
    object-position: top;
    border: 1px solid var(--primary_color);
    box-shadow: 0px 0px 38px -8px var(--primary_color);
}
.single_cabinet_memeber_card p{
    font-size: 0.9rem;
    padding: 0px 10px;
}
.single_cabinet_design_card .download_btn:hover{
    opacity: 1;
    transform: scale(0.9);
}
@media (max-width: 1000px) {
    .single_cabinet_design_card .download_btn{
        display: none;
    }
}


/* Ensure no horizontal scrolling */
body {
    overflow-x: hidden;
}







/* -------------------------------- front end cabinet page ------------------------------ */
.contact-message i{
    color: var(--primary_color);
}











/* -------------------------------- front end profile page ------------------------------ */
.formImage{
    position: relative;
    width: 180px;
    height: 180px;
    border-radius: 50%;
}
.formImage img{
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 3px solid var(--primary_color);
    transition: all 0.8s;
}
.formImage i{
    position: absolute;
    bottom: 15px;
    right: 15px; 
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    color: #fff;
    cursor: pointer;
    border-radius: 50%;
    background: var(--primary_color);
}
.formImage i:hover{
    transform: scale(1.2);
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.6);
}
.formImage input{
    display: none;
}
.input-group label{
    width: 200px;
}
.input-group label i{
    margin-right: 10px;
}
























/* -------------------------------- front end footer------------------------------ */

footer{
    background: var(--dark_color);
}

footer .social-links .social-link{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    font-size: 18px;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 1px 5px #fff;     
}

footer .social-links .social-link a{
    color: var(--gray_color);
    transition: 0.3s;
}
footer .social-links .social-link:hover{
    box-shadow: 0px 0px 10px var(--gray_color);
}
footer .social-links .social-link:hover{
    transform: translateY(-2px);
    transition: 0.3s ease-in-out;
}
footer .social-links .facebook:hover a{
    color: #3b5998;
}
footer .social-links .x-twitter:hover a{
    color: #000;
}
footer .social-links .instagram:hover a{
    color:  #d64e13;

}


footer .clickable a{
    color: gray;
}

footer .clickable li:hover a{
    color: #fff;
}

footer .clickable li:hover{
    transform: translateX(2px);
    transition: 0.3s ease-in-out;

}

footer .clickable li:hover a{
    color: var(--primary_color);
    text-shadow: 0px 0px 5px 15px var(--primary_color);
}

footer .contacts i{
    color: var(--primary_color);
}
h1.profile{
    color: var(--primary_color);
    font-weight: 500;
}

