body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(180deg, #f8fcff 0%, #e6f4ff 100%);
    color: #2c3e50;
    line-height: 1.7;
}

.hero {
    background: linear-gradient(135deg, #4fc3f7 0%, #0288d1 100%);
    color: white;
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.hero .lead {
    font-size: 1.4rem;
    font-weight: 400;
    max-width: 720px;
    margin: 0 auto;
    opacity: 0.95;
}

.section {
    padding: 100px 0;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s ease-out;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.bg-light {
    background-color: #f8fcff !important;
}

h2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #01579b;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #0277bd;
    margin-bottom: 1.2rem;
}

h4 {
    font-weight: 600;
    color: #01579b;
}

.image-hover-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
}

.image-hover-wrapper img {
    transition: all 0.5s ease;
    width: 100%;
    height: auto;
    display: block;
}

.image-hover-wrapper:hover img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.shadow {
    box-shadow: 0 15px 35px rgba(2, 136, 209, 0.18) !important;
}

.stats-section {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #01579b;
}

.stats-section h2 {
    color: #01579b;
}

.stat-item {
    padding: 2rem 1rem;
    transition: transform 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-12px);
}

.counter {
    font-size: 3.8rem;
    font-weight: 700;
    color: #0277bd;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.3rem;
    font-weight: 500;
    color: #424242;
}

.feature img {
    width: 80px;
    height: 80px;
    transition: transform 0.4s;
}

.feature:hover img {
    transform: scale(1.15) rotate(5deg);
}

/* Responsive tweaks */
@media (max-width: 992px) {
    .hero h1 { font-size: 3rem; }
    .section { padding: 70px 0; }
    .counter { font-size: 3rem; }
}
/* Previous styles remain, only adding/changing these */

.hero {
    padding: 100px 0 80px;          /* slightly less tall header */
}

.section {
    padding: 80px 0;                /* reduced vertical padding */
}

.image-hover-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 1.25rem;
}

.img-smaller {
    max-height: 380px;              /* ← main change: smaller images */
    object-fit: cover;
    width: 100%;
    transition: all 0.5s ease;
}

.image-hover-wrapper:hover .img-smaller {
    transform: scale(1.09);
    filter: brightness(1.04);
}

/* Shorter stats section */
.stats-section {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #01579b;
    padding: 60px 0 !important;     /* much shorter height */
}

.stats-section h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.stat-item {
    padding: 1.4rem 1rem;
    transition: transform 0.35s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.counter {
    font-size: 3.2rem;              /* slightly smaller numbers */
    font-weight: 700;
    color: #0277bd;
    margin-bottom: 0.4rem;
    line-height: 1.1;
}

.stat-label {
    font-size: 1.15rem;
    font-weight: 500;
    color: #424242;
    margin: 0;
}

/* Better mobile stacking */
@media (max-width: 576px) {
    .counter {
        font-size: 2.6rem;
    }
    .stat-item {
        padding: 1.2rem 0.8rem;
    }
    .stats-section {
        padding: 50px 0 !important;
    }
    .img-smaller {
        max-height: 320px;
    }
}

@media (max-width: 992px) {
    .section {
        padding: 60px 0;
    }
}
.img-why {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature:hover .img-why {
    transform: scale(1.12);
    box-shadow: 0 12px 30px rgba(2, 136, 209, 0.2);
}

.feature i {
  transition: transform 0.3s ease, color 0.3s ease;
}

.feature:hover i {
  transform: scale(1.15) rotate(5deg);
  color: #01579b; /* darker shade on hover */
}