/* Define CSS variables for colors */
:root {
    --navbar-bg-color: #00106a; /* Navbar background color */
    --tab-active-bg: #2952b8;   /* Active tab color */
    --tab-hover-bg: #5a79c7;    /* Hover tab color */
    --tab-text-color: #ecf0f1;  /* Tab text color */
    --tab-inactive-bg: transparent; /* Inactive tab background */
    --tab-inactive-text-color: #ecf0f1; /* Inactive tab text color */
    --bg-color: #deeaff;
    --logo-bg-color: #fff;
    --title-color: #2a3d66;

    /* --btn-color: #7a2048; */
    /* --btn-hover-color: #7a2048; */
    --btn-color: #2952b8;
    --btn-hover-color: #6a86cd;
}

/* .btn {
    background-color: var(--button-color);
} */

.btn {
    font-size: 20px;
    background-color: var(--btn-color);
    border-color: var(--btn-color);
}

.btn:hover {
    background-color: var(--btn-hover-color);
    border-color: var(--btn-hover-color);
}

body {
    background-color: var(--bg-color);
    font-family: 'EB Garamond', Georgia, 'Times New Roman', Times, serif;
}

.logo-container {
    background-color: var(--logo-bg-color);
}

.logo-container:hover {
    cursor: pointer;
}

.main-logo {
    max-height: 200px;
}

h5 {
    font-style: italic;
}

.home-img {
    width: 180px;
    margin: 0 0 0.5rem 1rem;
}

.accepted-img {
    width: 120px;
    margin: 0 0 0.5rem 1rem;
}

.vertical-img {
    width: 200px;
    margin: 0 0 0.5rem 1rem;
}

.no-margin-top {
    margin-top: 0.3rem !important;
}

.tab-pane {
    background-color: rgba(255, 255, 255, 0.8);
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 30px;
}

footer {
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    min-height: 1100px;
}

@media (max-width: 768px) {
    .contact-form {
        min-height: 1200px;
    }
}

footer p {
    margin: 0;
}

.nav-tabs {
    background-color: var(--navbar-bg-color); /* Apply navbar background color */
    border: none; /* Remove borders */
    margin: 0;
}

.nav-tabs .nav-link {
    color: var(--tab-inactive-text-color); /* Set text color */
    background-color: var(--tab-inactive-bg); /* Transparent background for inactive tabs */
    border: none; /* No border for tabs */
    border-radius: 0; /* Remove border-radius to make tabs rectangular */
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition for hover and active states */
    margin-bottom: 0;
    font-size: 1.4rem;
}

.nav-tabs .nav-link:hover {
    background-color: var(--tab-hover-bg);
    color: var(--tab-text-color);
}

.nav-tabs .nav-link.active {
    background-color: var(--tab-active-bg);
    color: var(--tab-text-color);
}

.tab-content {
    padding: 20px;
    border: none; 
}

h2 {
    color: var(--title-color);
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 1.35rem;
    color: var(--title-color);
    margin: 1rem 0;
    border-bottom: 2px solid var(--title-color);
    padding-bottom: 0.1rem;
    font-weight: 600;
}
.highlight-text {
    color: #f28a1c;
    font-weight: bold;
}
.section-subtitle {
    font-size: 1.15rem;
    color: #4c4f5c;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.content-text {
    font-size: 1rem;
    margin-bottom: 1rem;
}
.content-text-no-bottom {
    margin-bottom: 0.5rem;
}

.list-item {
    margin-bottom: 1rem;
}
.list-item li {
    margin-left: 0.5rem;
}


.college-list {
    font-size: 1rem;
    color: #36508a;
    line-height: 1.8;
}
.college-list span {
    font-weight: normal;
}
.college-list .colleges {
    display: block;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.college-list .colleges span {
    display: inline-block;
    margin-right: 0.5rem;
}

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

.carousel-item {
    padding: 2rem 1rem;
    text-align: center;
}

#testimonialCarousel {
    padding-top: 1.2rem;
    background-color: white;
}

.carousel-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
}

.carousel-item {
    margin-bottom: 1rem;
    padding: 0 3rem;
}

.testimonial-date {
    font-size: 1rem;
    color: #777;
    margin: 0;
}

.carousel-item p {
    margin-bottom: 0.3rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(100%);
}

.carousel-control {
    max-width: 3rem;
}

a {
    color: var(--btn-color);
}

a:hover {
    color: var(--btn-hover-color);
}