* {}

body {
    background-color: initial;
    color: #333;
    margin: 0;
    padding: 0;
}

p {
    /* margin-bottom: 40px; */
    font-size: 1.1rem;
}


/* Navbar */
.navbar {
    height: 68px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgb(0 0 0 / 33%);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(13.1px);
    z-index: 1000;
}

.navbar-brand img {
    height: 40px;
}

.navbar-nav .nav-link {
    color: white !important;
    font-size: 1rem;
    padding-left: 20px;
    padding-right: 20px;
}

.navbar-nav .nav-link:hover {
    color: #f8f9fa !important;
}

.navbar-nav .btn-event {
    background-color: white;
    color: #333;
    font-size: 1rem;
}

.navbar-nav .btn-event:hover {
    background-color: #f8f9fa;
    color: #000;
}

/* Hero Section */
#hero {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%), url("../images/home.jpg") no-repeat center center;
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: end;
    color: white;
    padding-top: 5rem;
}

.left-home {
    /* padding-bottom: 4rem; */
    /* padding-left: 4rem; */
}

.helper-text {
    font-size: 1rem;
    font-weight: lighter;
    letter-spacing: .2rem;
}

.left-home h1 {
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.1rem;
}

.left-home h1 span {
    background: -webkit-linear-gradient(#78FF7D, #FCFF67);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.right-home {}

.right-home p {
    font-size: 1rem;
    font-weight: normal;
    /* margin-bottom: 8rem; */
    /* margin-left: 4rem; */

    max-width: 80%;
    line-height: 1.5;
}

#hero a.btn {
    background: white;
    padding: 10px 20px;
    border-radius: 0;
    color: #333;
    transition: all 0.3s ease;
}

#hero a.btn:hover {
    background-color: #f8f9fa;
    color: #000;
}

/* Event Section */
#event {
    padding: 3rem 0;
    text-align: center;
    background-color: #f8f9fa;
    color: #333;
}

.event-box {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    width: 100%;
    height: 400px;
    max-width: 700px;
}

.event-box img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-box__overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.56) 100%);
}

#event h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

/* Services Section */

.card {
    border: none;
    background-color: #eaeaea;
    border-radius: 10px;
    margin-bottom: 30px;
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
    border: 1px solid #ddd;
    /* Add border */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Add shadow */
    height: 300px;
    /* Adjust the height as needed */
}

.card-mentoring {
    background-image: url('https://plus.unsplash.com/premium_photo-1663045272347-d62d89c5b0b1?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mjl8fHJvYm90aWNzJTIwbWVudG9yaW5nfGVufDB8fDB8fHww');
    background-size: cover;
}

.card-components {
    background-image: url('https://plus.unsplash.com/premium_photo-1681426666763-ed28d7310edf?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MjQ1fHxwcm92aXNpb24lMjBvZiUyMHRlY2glMjBjb21wb25lbnRzfGVufDB8fDB8fHww');
}

.card-partner {
    background-image: url('https://images.unsplash.com/photo-1516321497487-e288fb19713f?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTB8fHRlYW18ZW58MHx8MHx8fDA%3D');
}

.card:hover {
    transform: translateY(-25px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-body {
    padding: 30px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
}

.card-body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(8, 8, 8, 0.63), #00cbf36b);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.card .card-body:hover::before {
    opacity: 1;
}
.card-title {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
    opacity: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.card-text {
    font-size: 1.1rem;
    color: #dcdcdc;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    position: relative;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.card:hover .card-text {
    opacity: 1;
    transform: translateY(0);
}

.btn-link {
    color: white;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
    margin-top: auto;
}

.btn-link:hover {
    color: #ccc;
    transform: translateX(5px);
    text-decoration: none;
    background: linear-gradient(white, aqua);
    -webkit-background-clip: text;
    color: transparent;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    z-index: 0;
    transition: opacity 0.5s ease-in-out;
}

.card:hover::before {
    opacity: 0.9;
}

/* gallery */

.gallery-container {
    position: relative;
}

.show-more-btn {
    cursor: pointer;
    color: #fff;
    text-decoration: none;
    display: block;
    margin: 20px auto;
    font-size: 16px;
    padding: 10px 20px;
    background: linear-gradient(45deg, #eee5e8, #ff004f);
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.show-more-btn:hover {
    background: linear-gradient(45deg, #af7e8e, #86002a);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.show-more-btn:active {
    background: linear-gradient(45deg, #cfafb9, #9d0032);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
}


/* About Section */
#about img {
    height: 60vh;
    width: 100%;
    object-fit: cover;
}

#about p {
    max-width: 600px;
}