/* General Styling */
body {
    background-color: #F0EDE4; /* White Dove */
    color: #0A1931; /* Dark Blue */
    font-family: "Avenir Next", sans-serif;
}

/* Navbar */
.navbar {
    background: #F0EDE4;
    padding: 15px 0;
}

/* Logo Styling */
.logo {
    height: 50px;
    width: auto;
}

/* Align Navbar Items to the Right */
.navbar-nav {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

/* Pill Menu Styling */
.menu-pill {
    display: inline-block;
    padding: 8px 20px;
    border: 0.5px solid #0A1931; /* Thin Dark Blue Border */
    border-radius: 50px;
    color: #0A1931;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    position: relative;
}

/* Hover Effect: Shrinks to a Circle */
.menu-pill:hover {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #0A1931; /* Dark Blue */
    color: white;
    text-indent: -9999px;
    transition: all 0.3s ease-in-out;
}

/* Ensuring Equal Spacing for Menu Items */
.navbar-nav .nav-item {
    flex-grow: 1;
    text-align: center;
}

/* Content Styling */
.content-area {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding-top: 80px;
}

.content-card {
    background: white;
    padding: 30px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    max-width: 800px;
    width: 100%;
}

.custom-separator {
    border: 1px solid rgb(183, 182, 182);  /* Light-grey color */
    margin: 30px auto;               /* Margin to give space around the separator */
    width: 80%;
    opacity: 1;
}

/* Footer */
.footer {
    background: #F0EDE4;
    color: #0A1931;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
    padding-top: 50px;
}

/* Profile Image with Shadow */
.profile-img {
    width: 80%;
    max-width: 300px;
    border-radius: 15px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}


/* Card Title Styling */
.animated-card .card-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

/* Card Text Styling */
.animated-card .card-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .animated-card {
        margin: 10px 0;
    }
}

.card-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.card-title {
    font-size: 1.5rem;
    font-weight: bold;
}

.card-content {
    border-left: 3px solid #333;
    padding-left: 20px;
}

/* Contact Info & CTA */
.contact-info {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.contact-info p {
    font-size: 1.1rem;
    color: #555;
}

.cta-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-top: 10px;
}

.cta-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.cta-box .btn-cta {
    background: #333;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.cta-box .btn-cta:hover {
    background: #333;
    transform: translateY(-3px);
}

/* Styling for Tab Container with Floating Card */
.custom-tab-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    margin-top: 20px;
}

/* Active Tab Dark Theme */
.custom-nav-pills .nav-link.active {
    background-color: #333; /* Dark background for active tab */
    color: white; /* White text color for active tab */
    border-radius: 25px; /* Pill shape for active tab */
    margin-right: 15px; /* Added space between pills */
}

/* Inactive Tabs - Pill Shape */
.custom-nav-pills .nav-link {
    background-color: #f8f9fa; /* Light background for inactive tabs */
    color: #333; /* Dark text for inactive tabs */
    border-radius: 25px; /* Pill shape for inactive tabs */
    padding: 10px 20px; /* Equal padding for the pills */
    margin-right: 15px; /* Added space between pills */
}

/* Hover Effect for Inactive Tabs */
.custom-nav-pills .nav-link:hover {
    background-color: #3e4551; /* Light grey background on hover */
    color: white;
}

/* Make the tabs horizontally aligned */
.custom-nav-pills {
    display: flex;
    justify-content: flex-start; /* Align pills to the left */
    margin-right: 15px; 
    padding-left: 0;
}

/* Tab Content (Ensuring white background) */
.tab-pane {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .custom-tab-content {
        padding: 15px;
    }
    .custom-nav-pills .nav-link {
        font-size: 14px;
    }
}
