:root {
    --primary: #215a63;
    --secondary: #64748b;
    --light: #f8fafc;
    --dark: #0f172a;
}
body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
}
.navbar {
    background-color: transparent;
    transition: background-color 0.3s;
}
.navbar.scrolled {
    background-color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.navbar-brand {
    font-weight: 700;
    color: var(--primary);
}
.nav-link {
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}
.nav-link:hover, .nav-link.active {
    color: var(--primary);
}
.hero {
    /* background: linear-gradient(#63bd5f, #215a63), url('../img/hero.jpg') no-repeat center center; */

    background: linear-gradient(#215a6347, #215a631a), url(../img/hero.jpg) no-repeat center center;
    /* background: linear-gradient(rgba(30, 58, 138, 0.8), rgba(30, 58, 138, 0.9)), url('../img/hero.jpg') no-repeat center center; */
    background-size: cover;
    padding: 200px 0 150px;
    color: white;
}


.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}
.btn-primary:hover {
    background-color: #215a63b0;
    border-color: #215a63b0;
}

.bg-primary {
    --bs-bg-opacity: 1;
    background-color: #215a63 !important;
}
.text-primary {
    --bs-text-opacity: 1;
    color: #215a63 !important;
}
.service-card {
    border: none;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(30, 58, 138, 0.1);
    color: #63bd5f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.testi-sec img{
    width: 60px;
    height: 60px;

    border-radius: 50%;
}

.carousel-control-prev {
    left: -30px;
    font-size: xx-large;
}
.carousel-control-next {
    right: -30px;
    font-size: xx-large;
}


.contact-info-item {
    transition: transform 0.3s;
}
.contact-info-item:hover {
    transform: translateY(-5px);
}
.contact-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(30, 58, 138, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}



.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.8rem;
    transition: background-color 0.3s;
}
.social-icon:hover {
    background-color: var(--primary);
}
.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(30, 58, 138, 0.25);
} 

.privacy-content h3 {
    color: var(--primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.privacy-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}
.privacy-content ul {
    margin-bottom: 2rem;
}
.privacy-content li {
    margin-bottom: 0.5rem;
}
 

footer {
    background-color: var(--dark);
    color: var(--light);
}
.footer-link {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-link:hover {
    color: white;
}
 