.btn-primary {
    background-color: #1a5ce0 !important;
    /* Custom blue color */
    border-color: #1a5ce0 !important;
    /* Custom blue border */
}

.bg-light {
    --bs-bg-opacity: 1;
    background-color: #fff !important;
}

.hero {
    background-color: #141f3f;
    color: white;
    padding: 20px;
    background-image: url('img/hero-bg.png') ;
    background-size: cover;
    background-position: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-btn {
    font-weight: 600;
    padding-left: 50px;
    padding-right: 50px;
    transition: 0.3s ease;
    background-color: #0067FF !important;
    border-color: #0067FF !important;
}

.cta-btn:hover {
    background-color: #FF3131;
    color: white;
}

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    /* WhatsApp green */
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    /* Slight zoom effect on hover */
}

.whatsapp-btn img {
    display: block;
}

section {
    min-height: calc(100vh - 70px);
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-bg {
    background: linear-gradient(90deg, #002247, #003f82);
    color: white;
}

body {
    font-family: 'Inter', sans-serif;
}

footer {
    padding-top: 25px;
    text-align: center;
}

.navbar {
    padding: 0.5rem 1rem;
}

.navbar-brand {
    font-size: 1.5rem;
}

.navbar-nav {
    flex-grow: 1;
    justify-content: center;
}

.nav-link {
    font-weight: 500 !important;
    margin: 0 10px;
    font-size: 18px !important;
    color: #343a40 !important;
    border-bottom: 2px solid transparent;
    position: relative;
    transition: color 0.3s ease;
}


.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #1a5ce0;
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-link:hover {
    color: #1a5ce0 !important;
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

.why-box, .service-box, .testimonial-box {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    padding: 20px;
}

.why-box:hover, .service-box:hover, .testimonial-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.why-box i {
    color: #28a745;
}

.why-box h5, .service-box h5 {
    font-weight: 600;
    font-size: 1.2rem;
    margin: 10px 0 5px;
}

.why-box p {
    font-size: 0.95rem;
    color: #555;
}

.testimonial-box{
    background-color: #f8f9fa;
}

.testimonial-box p {
    font-style: italic;
    color: #555;
    font-size: 1rem;
}

.testimonial-box h5 {
    font-weight: 600;
    margin-top: 15px;
    font-size: 1rem;
    color: #555;
}

.partner-box {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.partner-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.partner-box img {
    max-height: 50px;
    object-fit: contain;
}

.section-heading{
    border-bottom: 2px solid #1a5ce0;
    display: inline-block;
}

.service-box i {
    color: #1a5ce0;
    font-size: 2rem;
}

.service-box {
    color: #000;
}

.map-container {
    overflow: hidden;
}