/* =========================================================
   SOFT LIGHT HOME PAGE REDESIGN
   based on new reference
========================================================= */

/* Home Hero */
.hero {
    background: transparent;
    padding: 105px 0 0;
}

.hero-slider {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(33, 33, 33, 0.08);
}

.hero-slide {
    min-height: 480px;
    background: #f1f5f9;
}

.hero-slide img {
    width: 100%;
    height: 480px;
    object-fit: cover; animation: heroFloat 20s ease-in-out infinite alternate;
}

.hero-overlay {
    background: linear-gradient(
        90deg,
        rgba(0, 75, 141, 0.94) 0%,
        rgba(0, 50, 94, 0.72) 33%,
        rgba(255, 255, 255, 0.00) 65%
    );
}

.hero-content {
    width: 92%;
    max-width: 1200px;
}

.hero-content h1 {
    max-width: 600px;
    font-size: 56px;
    line-height: 1.1;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-content p {
    max-width: 480px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.slider-dots {
    bottom: 26px;
}

.dot {
    width: 11px;
    height: 11px;
    background: rgba(255, 255, 255, 0.40);
}

.dot.active {
    background: #ffffff;
}

/* =========================
   ABOUT SECTION
========================= */
.about-section {
    background: #ffffff;
    padding: 60px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.section-top-text {
    color: var(--accent);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.about-left h2 {
    color: #111827;
    font-size: 48px;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -1px;
}

.about-right {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 36px;
    border-radius: 32px;
    box-shadow: 0 10px 28px rgba(33, 33, 33, 0.06);
}

.about-right p {
    color: #606670;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 18px;
}

/* =========================
   SERVICES SECTION
========================= */
.services-section {
    background: #ffffff;
    padding: 60px 0;
}

.services-intro {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 42px;
}

.services-heading h2 {
    color: #0f172a;
    font-size: 44px;
    line-height: 1.12;
    font-weight: 600;
}

.services-text p {
    color: #475569 !important;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.service-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 32px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(0, 75, 141, 0.08);
}

.service-image {
    height: 280px;
    overflow: hidden;
    border-radius: 24px;
    margin: 12px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s ease;
}

.service-content {
    padding: 24px 22px 26px;
}

.service-content h3 {
    color: #0f172a;
    font-size: 23px;
    line-height: 1.22;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-content p {
    color: #475569 !important;
    font-size: 15px;
    line-height: 1.7;
}

/* =========================
   STATS SECTION
========================= */
.stats-section {
    padding: 60px 0;
    background: #f1f5f9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
}

/* 📞 Contact CTA Section - Handled Globally by style.css */

.home-highlights {
    background: #ffffff !important;
    padding: 90px 0 80px !important;
}

.home-highlights .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.highlight-header span {
    display: block !important;
    color: #16a34a !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    letter-spacing: 10px !important;
    text-transform: uppercase !important;
    margin-bottom: 35px !important;
}

.highlight-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 70px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    color: #181824 !important;
    margin: 0 0 95px !important;
}

.highlight-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 70px !important;
}

.highlight-card {
    border-bottom: 2px solid #e6e6e6 !important;
    padding-bottom: 55px !important;
}

.highlight-card h5 {
    color: #a7a7ad !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: 2.5px !important;
    text-transform: uppercase !important;
    margin-bottom: 25px !important;
}

.highlight-card h3 {
    color: #181824 !important;
    font-size: 68px !important;
    font-weight: 500 !important;
    line-height: 1 !important;
    margin-bottom: 30px !important;
}

.highlight-card p {
    color: #009b73 !important;
    font-size: 20px !important;
    font-weight: 700 !important;
}

/* Reduce Financial Highlights heading size */
.highlight-header h2 {
    font-size: 48px !important;
    line-height: 1.1 !important;
    margin-bottom: 45px !important;
}

/* Reduce Financial Highlights heading size */
.highlight-header h2 {
    font-size: 48px !important;
    line-height: 1.1 !important;
    margin-bottom: 45px !important;
}

/* Remove gap above Financial Highlights */
.about-section {
    padding-bottom: 0 !important;
}

.home-highlights {
    padding-top: 25px !important;
    margin-top: 0 !important;
}