/* General Styles */
body {
    font-family: 'Nunito', sans-serif;
    color: #333;
    background-color: #f2f2f2;
}

/* Navbar Styles */
.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 800;
    color: #333;
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: #333;
    margin-right: 1rem;
}

.navbar-nav .nav-link.active {
    color: #556ee6;
}

.btn-primary {
    background-color: #556ee6;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #4455cc;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background-color: #ffffff;
    padding: 3rem 0;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: auto;
    transform: rotate(180deg);
}

.hero-shape svg {
    width: 100%;
    height: auto;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.text-container {
    margin-top: 9rem;
    text-align: left;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.2rem;
    font-weight: 300;
    color: #666;
    margin-bottom: 2rem;
}

.hero-buttons a {
    margin-right: 1rem;
    padding: 0.75rem 1.5rem;
}

/* Tab-like Buttons for Hero Section */
.hero-buttons .btn-tab {
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 25px;
    margin: 0 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.hero-buttons .btn-tab.active {
    background-color: #556ee6;
    color: #fff;
}

.hero-buttons .btn-tab:hover {
    background-color: #4455cc;
    color: #fff;
}

/* Tab Content */
.tab-content {
    margin-top: 2rem;
    position: relative;
}

/* Add transition effect to the tab content */
.tab-pane {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    position: absolute;
}

.tab-pane.show.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Hero Image Styling */
.hero img {
    max-width: 100%;
    height: auto;
    margin-top: 1rem;
}

