/* ==========================================================================
   SECTION: HOME_P1 (Blue CTA Banner)
   ========================================================================== */

.home-section-p1 {
    padding: 40px 0;
    background-color: #536b78;
    color: #fff;
}

/* Primary Button with Hover Lift */
.btn-hover-effect {
    transition: all 0.3s ease !important;
}

.btn-hover-effect:hover {
    background-color: #f1f1f1 !important; 
    color: #536b78 !important;            
    transform: translateY(-3px); /* Slightly more lift for better feel */
    box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}

/* Standard Secondary Button */
.btn-transparent {
    transition: all 0.3s ease;
}

.btn-transparent:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}


/* 1. First Button (The Solid one) */
.btn-hover-effect {
    background-color: #ffffff !important;
    color: #536b78 !important;
    border: 2px solid transparent !important;
    transition: all 0.3s ease !important;
}

.btn-hover-effect:hover {
    background-color: transparent !important; /* Become transparent */
    color: #ffffff !important;               /* Text turns white */
    border: 2px solid #ffffff !important;    /* Show white border */
    transform: translateY(-2px);
}

/* 2. Second Button (The Transparent one) */
.btn-transparent {
    background-color: transparent !important;
    color: #ffffff !important;
    border: 2px solid #ffffff !important;
    transition: all 0.3s ease !important;
}

.btn-transparent:hover {
    background-color: #ffffff !important;    /* Become solid white */
    color: #536b78 !important;               /* Text turns blue */
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
/* Clean Website Model for Home_P2 */
.home-about-clean {
    overflow: hidden;
}

.home-about-clean h2 {
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
}

.home-about-clean p {
    font-family: 'Open Sans', sans-serif;
}

/* Responsive adjustment for mobile */
@media (max-width: 767px) {
    .home-about-clean { padding: 40px 0; }
    .about-image-box { padding-left: 0; margin-top: 30px; }
    .home-about-clean h2 { font-size: 26px; }
}

/* ==========================================================================
   SECTION: SERVICES (Modern Box Model)
   ========================================================================== */

.mb-60 { margin-bottom: 60px; }
.mb-40 { margin-bottom: 40px; }

.service-box {
    background: #ffffff;
    height: 100%; /* Ensures all boxes in a row are equal height */
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* This creates the "Box" depth */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #edf2f7;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.box-top-border {
    height: 6px;
    width: 100%;
}

.box-content {
    padding: 35px 30px;
}

.box-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #1a202c;
    margin-bottom: 15px;
    line-height: 1.4;
    min-height: 56px; /* Keeps titles aligned if one wraps to two lines */
}

.box-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 0;
}

/* Flexbox fix for equal height columns */
.d-flex.flex-wrap {
    display: flex;
    flex-wrap: wrap;
}

/* ==========================================================================
   SECTION: IMPACT HIGHLIGHTS (Clean Institutional Model)
   ========================================================================== */



/* ==========================================================================
   SECTION: IMPACT HIGHLIGHTS (Minimalist - Fixed Spacing)
   ========================================================================== */

.minimalist-box {
    padding: 20px;
    text-align: left;
    border-top: 1px solid #eee;
    transition: all 0.4s ease;
}

.minimalist-box:hover {
    border-top: 1px solid #43A047;
    background: #f9fdf9;
}

.min-number {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 35px;
    font-weight: 200; /* Keeping your light font weight */
    color: #2E7D32;
    margin: 15px 0 5px 0;
    letter-spacing: -2px;
}

.min-title {
    font-family: 'Segoe UI', sans-serif;
    font-size: 15px !important; /* Forces the change */
    font-weight: 700 !important;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.min-desc {
    font-family: 'Segoe UI', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #777;
    font-weight: 400;
    /* Added Justify as requested */
    text-align: justify; 
    margin: 0;
}

/* Row Spacing */
.mb-40 { margin-bottom: 40px; }

/* ==========================================================================
   SECTION: CALL TO ACTION (CTA)
   ========================================================================== */

.btn-premium {
    display: inline-block;
    padding: 15px 35px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px; /* Rounded pill style for a modern look */
    transition: all 0.3s ease;
    text-decoration: none !important;
    margin: 10px;
}

/* Solid Green Button */
.btn-green {
    background-color: #43A047;
    color: #fff;
    border: 2px solid #43A047;
}

.btn-green:hover {
    background-color: #2E7D32;
    border-color: #2E7D32;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Outline White Button */
.btn-outline {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline:hover {
    background-color: #fff;
    color: #1E88E5; /* Changes to your brand Blue */
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Mobile responsive padding */
@media (max-width: 768px) {
    .cta-parallax-section h2 { font-size: 32px; }
    .btn-premium { width: 100%; margin: 10px 0; }
}
.cta-parallax-section {
    min-height: auto !important; /* Prevents the section from stretching */
}

.cta-parallax-section h2 {
    margin-top: 0 !important; /* Removes extra top space from heading */
}

.btn-premium {
    margin: 5px !important; /* Tighter spacing between buttons */
}