/* color{
    background-color: #065F46;

    background-color: Brown;

    background-color: Beige;

} */

.navbar-brand {
    font-weight: bold;
    font-size: 1.8rem;
}

.download-btn {
    background-color: #0d6efd;
    color: white;
    font-weight: bold;
    padding: 8px 20px;
    border-radius: 5px;
}

.nav-link {
    font-weight: 500;
}

.about-section {
    padding: 50px 0;
}

.breadcrumb {
    background-color: transparent;
    padding: 0;
}

.timeline {
    position: relative;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #f2dfb5;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #f2dfb5;
    border: 3px solid white;
}

.degree {
    font-weight: 500;
    color: black;
}

.duration {
    font-style: italic;
    color: grey;
}

.institution {
    font-weight: 400;
}

.location {
    color: grey;
}

.partner-logo {
    max-width: 200px;
    width: 100%;
    height: auto;
    border-radius: 50px;
    padding: 0.5rem;
}


@media (max-width: 767.98px) {
    .g-4 {
        --bs-gutter-y: 1.5rem;
    }
}


.contact .info-wrap {
    background-color: var(--surface-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

@media (max-width: 575px) {
    .contact .info-wrap {
        padding: 20px;
    }
}

.contact .info-item {
    margin-bottom: 40px;
}

.contact .info-item i {
    font-size: 20px;
    color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
}

.contact .info-item h3 {
    padding: 0;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
}

.contact .info-item:hover i {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.contact .php-email-form {
    background-color: var(--surface-color);
    height: 100%;
    padding: 30px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
    .contact .php-email-form {
        padding: 20px;
    }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    color: var(--default-color);
    background-color: var(--surface-color);
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
    border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
    color: var(--contrast-color);
    background: #f2dfb5;
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

#map {
    height: 500px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.map-container {
    position: relative;
}

.location-info {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 15px;
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 300px;
}

.error-message {
    color: red;
    padding: 20px;
    text-align: center;
}


.experience-badge {
    font-size: 4rem;
    font-weight: 700;
    color: #0d6efd;
    line-height: 1;
}

.divider {
    height: 2px;
    background-color: #dee2e6;
    margin: 2rem 0;
}

.service-item {
    margin-bottom: 1rem;
}

.service-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.carousel-item {
    height: 500px;
}

.carousel-caption {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 20px;
}


.card-carousel .card {
    height: 100%;
    border-radius: 15px;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #0d6efd;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

.experience-item {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 8px;
    height: 100%;
    transition: all 0.3s ease;
}

.experience-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.experience-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #dfb163;
    margin-bottom: 0.5rem;
}

.experience-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.testimonial-carousel {
    padding: 3rem 0;
}

.testimonial-item {
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 4px solid #dfb163;
}

.testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #555;
}

.testimonial-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #333;
}

.testimonial-profession {
    color: #6c757d;
    font-size: 0.9rem;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    margin: 0 5px;
    border: none;
}

.carousel-indicators button.active {
    background-color: #dfb163;
}
