body {
    font-family: Rubik, sans-serif;
    font-size: 16px;
}

h1 {
    font-family: Spectral, serif;
    font-size: 40px;
}

.p {
    font-family: 'Average Sans';
    font-size: 18px;
}


/***************************font end****************************************************/

.carousel-caption {
    bottom: 50%;
    transform: translateY(50%);
}

.carousel-caption h1 {
    display: inline-block;
    padding: 10px 20px;
    /* font-weight: bold; */
}

.carousel-caption {
    top: 60%;
    transform: translateY(-50%);
    bottom: auto;
    text-align: center;
}

.carousel-caption h1,
.carousel-caption p {
    margin-bottom: 0;
    margin-top: 0;
}


/*********************end***********************/

.experience-section {
    color: #1b1b1b;
    text-align: center;
    padding: 50px 20px;
}

.experience-section i {
    font-size: 40px;
    margin-bottom: 20px;
}

.highlight-text {
    color: #d7a657;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
}

.icon-box i {
    font-size: 24px;
    margin-bottom: 10px;
    color: #d7a657;
}

.icon-box {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.icon-box i {
    flex-shrink: 0;
}

.title-main {
    font-weight: 700;
    font-size: 2rem;
}

.card:hover {
    transform: translateY(-5px);
    transition: 0.3s ease-in-out;
}

.fixed-img {
    height: 200px;
    object-fit: cover;
}

.fixed-img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
}

.accordion-button {
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.accordion-button:hover {
    background-color: #AC0B0B;
    transform: scale(1.02);
}


/* Smooth fade + slide animation for accordion content */

.fade-slide {
    transition: all 0.4s ease;
}

.accordion-collapse.collapse.show {
    animation: fadeSlideDown 0.4s ease forwards;
}

@keyframes fadeSlideDown {
    0% {
        opacity: 0;
        transform: translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}