.nav-bar-desc {
    color: grey;
    font-size: 0.7rem;
}

.nav-bar-desc-div {
    padding: 0 1.5rem;
}

.grey-button {
    color: black;
    background-color: #f0f0f0;
    border: 2px solid #f0f0f0;
    padding: 6px 10px;
    text-decoration: none;
    display: inline-block;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    color: black
}

.grey-button:hover {
    background-color: #e0e0e0;
    border-color: #888888;
}

.orange-button {
    color: black;
    background-color: #FF5200;
    border: 2px solid #FF5200;
    padding: 6px 10px;
    text-decoration: none;
    display: inline-block;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    color: white
}

.grey-button:hover {
    background-color: #e0e0e0;
    border-color: #888888;
}

.language-selector {
    position: relative;
    display: inline-block;
}

.lang-button {
    background-color: transparent;
    border: none;
    color: #a0a2a5;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s;
}

.lang-button:hover {
    color: #555;
}

.lang-button:focus+.dropdown-content {
    display: block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 4px;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.language-selector:hover .dropdown-content {
    display: block;
}

.social-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.chakra-link {
    display: flex;
    align-items: center; /* Vertically centers the text with the icon */
    text-decoration: none; /* Optional: Remove underline from link */
}
.chakra-link img {
    width: 24px; /* Adjust this value to make the icon smaller or larger */
    height: auto; /* Maintain aspect ratio */
    margin-right: 8px; /* Space between the icon and the text */
}

.get_started_container {
    margin:2rem 0px !important;
    background-color: black;
    color:white;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 8rem;
}
.get_started_content {
    max-width: 500px;
}
.content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: bold;
}
.content p {
    font-size: 18px;
    margin-bottom: 20px;
}
.content .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff6600;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
}
.ratings {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.rating-item {
    text-align: center;
    margin-bottom: 20px;
}
.rating-item img {
    width: 4rem;
    height: 4rem;
    margin-bottom: 10px;
}
.rating-item .stars {
    color: #ff6600;
    font-size: 24px;
    margin-bottom: 5px;
}
.rating-item span {
    font-size: 16px;
    color: #ccc;
}

.get_started_content h1{
    color:white !important
}

.subtitle {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
}

.pillars {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.pillar {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    flex: 1;
    max-width: 300px;
    text-align: center;
}

.pillar img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.pillar h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #333;
    font-family:bold;
}

.pillar p {
    font-size: 1em;
    color: #666;
}

.about-us-section{
    text-align:center;
    margin-top:3rem;
}
