:root {
    --green: #006633;
    --dark-green: #004d26;
    --light-green: #e6f2e6;
    --orange: #ff6600;
    --gray: #333;
    --light-gray: #f8f8f8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Header */
header {
    background: #fff;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 100;
}

.top-bar {
    background: var(--green);
    color: white;
    padding: 8px 20px;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
}

.logo-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--green);
}

.logo span {
    color: var(--orange);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 10px;
}

nav a {
    color: var(--gray);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--green);
}

/* Hero Banner */
.hero {
    position: relative;
    height: 500px;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                url('../../assets/img/photo2.png') center/cover no-repeat;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    max-width: 700px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.hero-about {
    position: relative;
    min-height: 300px;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                url('../../assets/img/about-inner-banner.jpg') center/cover no-repeat;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn {
    background: var(--orange);
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn:hover {
    background: #e65c00;
}

/* Loan Cards */
.loan-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 60px 30px;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--light-gray);
}

.card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    padding: 30px 20px;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

.card-icon {
    font-size: 3.5rem;
    color: var(--green);
    margin-bottom: 20px;
}

.card h3 {
    font-size: 20px;
    font-weight: 800;
    color: #4d4d4f;
    margin-bottom: 30px;
}

.card ul {
    list-style: none;
    text-align: left;
    margin: 20px 0;
}

.card ul li {
    margin: 10px 0;
    font-size: 0.95rem;
}

.card ul li i {
    color: var(--green);
    margin-right: 10px;
}

/* How We Work */
.how-we-work {
    background: var(--green);
    color: white;
    padding: 80px 30px;
    text-align: center;
}

.how-we-work h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.step {
    max-width: 220px;
    text-align: center;
}

.step-circle {
    width: 90px;
    height: 90px;
    background: white;
    color: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 20px;
    font-weight: bold;
}

.step h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Calculator Section */
.calculator {
    background: #fff;
    padding: 60px 30px;
    text-align: center;
}

.calc-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.calc-left {
    text-align: left;
}

.calc-left h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--green);
}

/* Tabs */
.calc-tabs {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--light-green);
}

.tab-btn {
    flex: 1;
    padding: 14px 20px;
    background: var(--light-gray);
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--gray);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--green);
    color: white;
}

.tab-btn:first-child {
    border-radius: 8px 0 0 0;
}

.tab-btn:last-child {
    border-radius: 0 8px 0 0;
}

/* Content */
.calc-content {
    display: none;
}

.calc-content.active {
    display: block;
}

.slider-container {
    margin: 30px 0;
}

input[type="range"] {
    width: 100%;
    height: 10px;
    background: var(--light-green);
    border-radius: 5px;
    appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 25px;
    height: 25px;
    background: var(--green);
    border-radius: 50%;
    cursor: pointer;
}

.result-box {
    background: var(--light-green);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.result-box h4 {
    margin-bottom: 10px;
    color: var(--green);
}

.result-value {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--green);
}

.result-box p {
    margin: 10px 0;
    font-size: 1rem;
    color: #333;
}

/* Articles */
.articles {
    padding: 80px 30px;
    background: var(--light-gray);
    text-align: center;
}

.articles h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--green);
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.article-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.article-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.article-content {
    padding: 25px;
}

.article-date {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 10px;
}

.article-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.read-more {
    color: var(--orange);
    font-weight: bold;
    text-decoration: none;
}

/* Footer */
footer {
    color: white;
    /*padding: 60px 30px 20px;*/
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto 40px;
}

.footer-col h4 {
    color: var(--orange);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin: 10px 0;
}

.footer-col a:hover {
    color: white;
}

.bottom-bar {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    font-size: 0.9rem;
}
/* Exact Match to Your Image */
.emi-exact-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.emi-exact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.left-column, .right-column {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Sliders */
.slider-item {
    text-align: center;
}

.item-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.item-value {
    font-size: 2rem;
    font-weight: bold;
    color: var(--green);
    margin-bottom: 25px;
}

.slider-bar {
    margin-bottom: 15px;
}

.exact-slider {
    width: 100%;
    height: 10px;
    background: #ffe0cc; /* Light orange background */
    border-radius: 5px;
    outline: none;
    appearance: none;
}

.exact-slider::-webkit-slider-thumb {
    appearance: none;
    width: 30px;
    height: 30px;
    background: var(--green);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,102,51,0.3);
}

.item-limits {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    color: #888;
}

/* Results */
.left-load-slider {
    display: flex;
    justify-content: space-around;
    padding: 0;
}

.result-item {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 5px 25px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
}

.result-text {
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 15px;
    color: var(--green);
}

.sub-text {
    display: block;
    font-size: 1.1rem;
    color: #999;
}

.result-number {
    font-size: 2.4rem;
    font-weight: bold;
    color: var(--black);
    
}

/* Responsive - Stack on Mobile */
@media (max-width: 992px) {
    .emi-exact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .left-column, .right-column {
        gap: 50px;
    }
}

:root {
    --green: #0a8854;
    --orange: #ff6600;
    --white: #ffffff;
}
header{background: var(--green)}

header ul.navbar-nav li a:hover{
    color:var(--orange);
}

.top-bar { background: #3d3d3d; color: white; }
.top-bar a { color: white; text-decoration: none; margin: 0.5rem; font-size: 15px;}

.logo { color: var(--white); font-size: 1.8rem; font-weight: bold;}
.logo span { color: var(--white); }
.hero::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); }
.hero-content { position: relative; z-index: 1; }
.hero h1 { font-size: 3.5rem; }
.btn-apply { background: var(--orange); border: none; }
.card-icon i { font-size: 3rem; color: var(--green); }
.calc-header { background: var(--green); color: white; padding: 0.5rem 1rem; border-radius: 0.5rem 0.5rem 0 0; }
.slider-container { background: white; padding: 2rem; border-radius: 0.5rem; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.result-box { background: #f8f9fa; padding: 1.5rem; border-radius: 0.5rem; text-align: center; }
.result-box h3 { font-size: 2rem; color: var(--green); }

footer a { color: #aaa; }
footer h5 {
    font-weight: 600;
    color: #fff;
    line-height: 23px;
    font-size: 16px;
}
.nav-link{color: #ffffff; font-weight: normal;}

footer ul li a{
    text-decoration: none;
    font-size: 13px;
    font-family: sans-serif;
}
.ftr-botm-ul ul li::marker {
    color: #f58229;
    display: inline-block;
    width: 1em;
    margin-left: 0;
}

ul li a:hover, .top-bar a:hover{
    color: #f58229 !important;
}

footer{
position: relative;
    height: auto;
    background-color: #434343;
    color: #8e9092;
}

.ftr-top {
    background-color: #5b5b5b;
    height: auto;
    position: relative;
}
.ftr-top ul li a {
    font-size: 16px;
}
footer .add-ftr p {
    font-size: 13px;
    font-weight: 300;
    color: #c7c7c7;
}

.add-ftr h5 {
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    margin: 0;
    font-weight: 600;
    color: #fff;
}
.ftr-copyright {
    position: relative;
    background-color: #c7c7c7;
    color: #4a4a4a;
    font-size: 14px;
}

.ftr-copyright a {
    color: #4a4a4a;
    font-weight: 400;
}
.ftr-copyright a:hover {
    color: #f58229;
}

footer .financial-tool a{
    font-size: 14px;
}
.financial-tool span {
    font-size: 14px;
}

.personal-benefits{
    box-shadow: 0 0 20px #d2d2d2;
    height: auto;
    position: relative;
    background-color: #fff;
    padding: 40px;
    color: #000;
    line-height: 23px;
}