:root,
[data-bs-theme=light] {
    --bs-body-bg: #ffffff;
    --bs-body-color: #494B5B;
    --bs-primary: #215C5C;
    --bs-primary-rgb: 33, 92, 92;
    --bs-primary-hover: #144B4B;
    --bs-primary-hover-rgb: 20, 75, 75;
    --bs-secondary: #CCE8C9;
    --bs-secondary-rgb: 204, 232, 201;
    --bs-heading-color: #16181B;
    --inverse-color: #494B5B;
    --inverse-color-rgb: 73, 75, 91;
    --bs-link-color: var(--bs-primary);
    --nav-bg: #ffffff;
    --nav-color: #fff;
    --nav-hover-color: #1f6bff;
    --dropdown-bg: #ffffff;
    --dropdown-color: #1f6bff;
    --dropdown-hover-bg: #f7f7f7;
    --nav-inverse: #000000;
    --nav-inverse-alt: #ffffff;
}
body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
}

.navbar-brand {
    font-weight: 700;
    color: #007bff !important;
    /* Primary color for brand */
    display: flex;
    /* Use flexbox for alignment of logo and text */
    align-items: center;
    /* Vertically align items */
}

.navbar-brand .logo {
    height: 40px;
    /* Adjust logo height as needed */
    margin-right: 10px;
    /* Space between logo and text */
    border-radius: 5px;
    /* Slightly rounded corners for the logo */
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../assets/17-23-54-364_512.gif') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 100px 0;
    text-align: center;
    border-radius: 0 0 15px 15px;
    /* Rounded bottom corners */
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color:white;
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #343a40;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #007bff;
    border-radius: 2px;
}

.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    /* Ensures rounded corners apply to image */
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-img-top {
    border-radius: 15px 15px 0 0;
    /* Rounded top corners for image */
    height: 200px;
    /* Fixed height for consistency */
    object-fit: cover;
    /* Ensures image covers area without distortion */
}

.card-body {
    padding: 25px;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    border-radius: 50px;
    /* Pill-shaped button */
    padding: 12px 30px;
    font-weight: 600;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.footer {
    background-color: #343a40;
    color: white;
    padding: 40px 0;
    border-radius: 15px 15px 0 0;
    /* Rounded top corners */
}

.footer a {
    color: #007bff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-form .form-control {
    border-radius: 10px;
    padding: 12px;
    border: 1px solid #ced4da;
}

.contact-form .form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
    border-color: #80bdff;
}

.bg-light-blue {
    background-color: #e9f5ff;
    /* A very light blue for section background */
    padding: 60px 0;
    border-radius: 15px;
    margin-bottom: 40px;
}

.about__v4 .subtitle {
    background-color: rgba(var(--bs-secondary-rgb), 0.2);
    color: var(--bs-primary);
    display: inline-block;
    padding: 5px 12px;
    border-radius: 7px;
    font-weight: 600;
    font-size: 0.75rem;
    margin-bottom: 10px;
}

.about__v4 .features li .icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    background-color: var(--bs-primary);
    color: var(--bs-white);
}

.about__v4 .mission-statement {
    background-color: var(--bs-primary);
    position: relative;
    bottom: -20px;
    width: 100%;
}

.about__v4 .mission-statement h3 {
    font-size: 10px;
    color: var(--bs-secondary);
}

.about__v4 .mission-statement p {
    color: var(--bs-white);
}

.about__v4 .mission-icon {
    width: 50px;
    height: 50px;
    -webkit-box-flex: 0;
    flex: 0 0 50px;
    line-height: 50px;
    display: inline-block;
    background-color: rgba(var(--bs-secondary-rgb), 0.1);
}

.about__v4 .mission-icon i {
    color: var(--bs-secondary);
}

.features__v2 .icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: #CCE8C9;
    color: #215C5C;
}

.features__v2 .content {
    background-color: rgba(204, 232, 201, 0.2);
}

.features__v2 .btn-play i {
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    background-color: #fff;
    color: #215C5C;
}

.services__v3 .subtitle {
    background-color: rgba(var(--bs-secondary-rgb), 0.2);
    color: var(--bs-primary);
    display: inline-block;
    padding: 5px 12px;
    border-radius: 7px;
    font-weight: 600;
    font-size: 0.75rem;
    margin-bottom: 10px;
}

.services__v3 .icon {
    display: inline-block;
    position: relative;
    color: var(--bs-primary) !important;
}

.services__v3 .icon svg {
    width: 50px;
}

.services__v3 .service-card {
    border: 1px solid rgba(var(--inverse-color-rgb), 0.2);
}

.special-link .icons {
    display: inline-block;
    width: 38px;
    height: 38px;
    line-height: 38px;
    border-radius: 50%;
    text-align: center;
    position: relative;
    border: 1px solid rgba(var(--inverse-color-rgb), 0.2);
}

.special-link .icons i {
    font-size: 25px;
    position: relative;
    display: inline-block;
    position: absolute;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.special-link .icons i.icon-1 {
    opacity: 1;
    visibility: visible;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}

.special-link .icons i.icon-2 {
    opacity: 0;
    visibility: hidden;
    top: 80%;
    left: 20%;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}

.special-link:hover .icons .icon-1 {
    opacity: 0;
    visibility: hidden;
    top: 20%;
    left: 80%;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}

.special-link:hover .icons .icon-2 {
    opacity: 1;
    visibility: visible;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}