html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

.navbar {
    background-color: #FFFFFF /* Gray-blue color */
}

.container, .container-fluid {
    background-color: /*#607D8B */ #FFFFFF ; /* Gray-blue color */
}


/* Ensure consistent border-radius and background color */
.container, .overflow-hidden {
    border-radius: 15px;
}


.main-content {
    padding-top: 60px; /* Adjust this value based on the actual height of your navbar */
}

img.rounded-lg-3 {
    border-radius: 15px;
}

.bg-custom-blue {
    background-color: #0056b3 !important; /* Your blue */
}
.text-custom-white{
    color: white !important;
}

.text-custom-blue {
    color: #0F75BD !important;
}



.full-width-background.slantedBlueEdge {
    background-color: #0056b3; /* Or your preferred blue */
    height: 80px; /* Adjust to desired thickness */
    transform: skewY(-3deg); /* Creates the slant */
    margin: 0;
    padding: 0;
}

.hero-section {
    height: 450px;
    overflow: hidden;
    border-radius: 15px;
    position: relative;
    min-width: 100%;
}

.hero-bg-img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-overlay {
    z-index: 2;
    padding: 0 2rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Stronger dark overlay for text visibility */
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.about-impact-box {
    background: rgba(255,255,255,0.95);
    border-left: 6px solid #0d6efd;
}
.about-box {
    background: rgba(255,255,255,0.98);
    border-left: 6px solid #0d6efd;
}
.about-img {
    box-shadow: 0 0 24px rgba(0,0,0,0.12);
}

.why-choose-us-section {
    background: linear-gradient(135deg, #0d6efd 60%, #6ea8fe 100%);
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 15px;
}
.icon-circle {
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.final-cta-section {
    background: linear-gradient(135deg, #0d6efd 60%, #6ea8fe 100%);
    border-radius: 15px;
    margin-bottom: 2rem;
}

.service-icon-box img {
    filter: drop-shadow(0 2px 8px rgba(13,110,253,0.15));
}
.service-icon-box {
    background: #fff;
    transition: box-shadow 0.2s;
}
.service-icon-box:hover {
    box-shadow: 0 0 24px rgba(13,110,253,0.12);
}

.contact-form-box {
    background: rgba(255,255,255,0.98);
    border-left: 6px solid #0d6efd;
}

.hero-modern-bg {
    background: #fff; /* Use your brand color here */
    min-height: 520px;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 2px 24px rgba(0,0,0,0.04);
    padding-top: 0;
    padding-bottom: 0;
}
.hero-modern-bg h1 {
    font-size: 3.2rem;
    font-weight: 700;
}
@media (max-width: 991px) {
    .hero-modern-bg h1 {
        font-size: 2.2rem !important;
    }
}

.service-card {
    background: #fff;
    border: 1px solid #f0f4fa;
    transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover {
    box-shadow: 0 0 32px rgba(13,110,253,0.10);
    transform: translateY(-4px) scale(1.02);
}
.service-icon img {
    filter: drop-shadow(0 2px 8px rgba(13,110,253,0.15));
}

.why-card {
    background: #fff;
    border: 1px solid #f0f4fa;
    border-radius: 15px;
    box-shadow: 0 2px 16px rgba(13,110,253,0.06);
    transition: box-shadow 0.2s, transform 0.2s;
}
.why-card:hover {
    box-shadow: 0 0 32px rgba(13,110,253,0.10);
    transform: translateY(-2px) scale(1.01);
}
.why-card img {
    filter: drop-shadow(0 2px 8px rgba(13,110,253,0.12));
}
