
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:'Segoe UI',Tahoma,Geneva,Verdana,sans-serif;
    background:#f8fafc;
    color:#1f2937;
    line-height:1.7;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ===========================
   TOPBAR
=========================== */

.topbar{

    background:#0f172a;
    color:#fff;

    display:flex;
    justify-content:space-between;
    align-items:center;

    flex-wrap:wrap;

    padding:10px 6%;

    font-size:14px;

}

.top-left{

    display:flex;
    gap:25px;
    flex-wrap:wrap;

}

.top-left a,
.top-left span{

    color:#e5e7eb;
    transition:.3s;

}

.top-left a:hover{

    color:#f59e0b;

}

.top-left i{

    color:#f59e0b;
    margin-right:6px;

}

.trust{

    color:#fbbf24;
    font-weight:600;

}

.trust i{

    margin-right:6px;

}

/* ===========================
   NAVBAR
=========================== */

nav{

    background:#fff;

    position:sticky;

    top:0;

    z-index:1000;

    box-shadow:0 3px 18px rgba(0,0,0,.08);

}

.nav-wrapper{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:15px 0;

}

.logo{

    display:flex;

    align-items:center;

    gap:14px;

}

.logo img{

    width:70px;

}

.logo-text h2{

    font-size:26px;

    color:#1e293b;

    line-height:1;

    font-weight:900;

}

.logo-text span{

    color:#d97706;

    letter-spacing:2px;

    font-size:13px;

    font-weight:700;

}

.nav-links{

    display:flex;

    list-style:none;

    gap:35px;

}

.nav-links a{

    color:#1f2937;

    font-weight:600;

    transition:.3s;

}

.nav-links a:hover,
.nav-links .active{

    color:#d97706;

}

.quote-btn{

    background:#d97706;

    color:#fff;

    padding:13px 24px;

    border-radius:8px;

    font-weight:600;

    transition:.35s;

}

.quote-btn:hover{

    background:#b45309;

    transform:translateY(-2px);

}

.hero {
    min-height: 650px;
    background: url("images/lalit-kumar-HpPmiduLDC0-unsplash.jpg") center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 24px;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.7);
    z-index: 1;
    pointer-events: none;
}

.content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.badge {
    display: inline-block;
    border: 1px solid rgba(245, 158, 11, .4);
    padding: 8px 16px;
    border-radius: 50px;
    color: #fbbf24
}

.hero h1 {
    font-size: 60px;
    font-weight: 900;
    margin: 20px 0
}

.hero h1 span {
    color: #f59e0b
}

.hero p {
    color: #d1d5db
}

.actions {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap
}

.wbtn {
    background: #16a34a;
    color: #fff;
    padding: 14px 22px;
    border-radius: 10px;
    text-decoration: none
}

.stats {
    background: #d97706;
    color: #fff;
    padding: 32px 0
}

.grid4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center
}

.sec {
    padding: 70px 24px
}

.sec h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 30px
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 3px 8px rgba(0, 0, 0, .08)
}

.card img {
    width: 100%;
    height: 210px;
    object-fit: cover
}

.card h3 {
    padding: 24px
}

.footer {
    background: #0f172a;
    color: #fff;
    text-align: center;
    padding: 50px 20px;
    p{
        padding:10px
    }
}

@media(max-width:768px) {
    .links {
        display: none
    }

    .grid4,
    .cards {
        grid-template-columns: 1fr 1fr
    }

    .hero h1 {
        font-size: 42px
    }
}

@media(max-width:600px) {

    .grid4,
    .cards {
        grid-template-columns: 1fr
    }
}

.custom-card{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:40px 30px;
    min-height:210px;
    transition:.35s ease;
    background:#fff;
}

.custom-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,.15);
}

.custom-icon{
    width:80px;
    height:80px;
    background:linear-gradient(135deg,#f59e0b,#d97706);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:20px;
    color:#fff;
    font-size:32px;
    box-shadow:0 10px 25px rgba(217,119,6,.35);
}

.custom-card h3{
    font-size:24px;
    font-weight:700;
    color:#1e293b;
    margin-bottom:15px;
}

.custom-card p{
    color:#64748b;
    line-height:1.7;
    margin-bottom:25px;
    font-size:15px;
}

.custom-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    padding:12px 24px;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.custom-btn:hover{
    background:#1ea952;
}

.features-section{

    padding:90px 30px;

    background:
    linear-gradient(rgba(5,18,40,.82),rgba(5,18,40,.82)),
    url("images/lalit-kumar-HpPmiduLDC0-unsplash.jpg");

    background-size:cover;
    background-position:center;
}

.features-grid{

    max-width:1250px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:30px;
}

.feature-card{

    padding:45px 35px;

    border-radius:10px;

    text-align:center;

    transition:.35s;

    border:1px solid rgba(255,255,255,.15);

    min-height:315px;

    display:flex;
    flex-direction:column;
    justify-content:center;
}

.feature-card.dark{

    background:#071c3d;
    color:white;
}

.feature-card.light{

    background:white;
    color:#111827;
}

.feature-icon{

    font-size:48px;

    color:#f26d2f;

    margin-bottom:28px;
}

.feature-card h3{

    font-size:34px;

    font-weight:700;

    line-height:1.2;

    margin-bottom:22px;
}

.feature-card p{

    font-size:19px;

    line-height:1.8;

    color:inherit;

    opacity:.88;
}

.feature-card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 40px rgba(0,0,0,.25);
}

@media(max-width:992px){

.features-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.features-grid{

grid-template-columns:1fr;

}

.feature-card{

min-height:auto;

}

.feature-card h3{

font-size:28px;

}

.feature-card p{

font-size:17px;

}

}

.card{

    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.35s;
    border:1px solid #e5e7eb;
}

.card:hover{

    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,.15);

}

.card img{

    width:100%;
    height:230px;
    object-fit:cover;

}

.card-content{

    padding:25px;

}

.card h3{

    font-size:24px;
    color:#1f2937;
    margin-bottom:12px;

}

.card p{

    color:#6b7280;
    line-height:1.7;
    margin-bottom:22px;

}

.card-buttons{

    display:flex;
    gap:12px;
    justify-content:space-between;
    flex-wrap:wrap;

}

.read-btn{

    flex:1;
    text-align:center;
    background:#d97706;
    color:#fff;
    text-decoration:none;
    padding:12px 18px;
    border-radius:8px;
    font-weight:600;
    transition:.3s;

}

.read-btn:hover{

    background:#b45309;

}

.whatsapp-btn{

    flex:1;
    text-align:center;
    background:#16a34a;
    color:#fff;
    text-decoration:none;
    padding:12px 18px;
    border-radius:8px;
    font-weight:600;
    transition:.3s;

}

.whatsapp-btn:hover{

    background:#15803d;

}

.read-btn i,
.whatsapp-btn i{

    margin-left:6px;

}

.card-content{
    padding:25px;
}

.card-buttons{
    display:flex;
    gap:10px;
    margin-top:20px;
}

.card-buttons a{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    text-decoration:none;
    padding:12px 10px;
    border-radius:8px;
    font-size:15px;
    font-weight:600;
    transition:.3s;
}

.read-btn{
    background:#d97706;
    color:#fff;
}

.read-btn:hover{
    background:#b45309;
}

.whatsapp-btn{
    background:#25D366;
    color:#fff;
}

.whatsapp-btn:hover{
    background:#1ea952;
}

@media(max-width:768px){

    .card-buttons{
        flex-direction:column;
    }

}

.about-section{

    padding:90px 20px;
    background:#f8fafc;

}

.about-container{

    max-width:1200px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;

}

.about-tag{

    display:inline-block;
    background:#fff3e0;
    color:#d97706;

    padding:8px 18px;
    border-radius:30px;

    font-size:13px;
    font-weight:700;
    letter-spacing:1px;

    margin-bottom:18px;

}

.about-text h2{

    font-size:42px;
    color:#1e293b;
    margin-bottom:20px;
    line-height:1.25;

}

.about-text p{

    color:#64748b;
    line-height:1.9;
    font-size:17px;
    margin-bottom:30px;

}

.about-features{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-bottom:35px;

}

.feature{

    display:flex;
    align-items:center;
    gap:12px;

    font-weight:600;
    color:#334155;

}

.feature i{

    color:#16a34a;
    font-size:20px;

}

.about-btn{

    display:inline-block;
    background:#d97706;
    color:#fff;

    text-decoration:none;
    padding:14px 32px;

    border-radius:8px;

    font-weight:600;

    transition:.3s;

}

.about-btn:hover{

    background:#b45309;
    transform:translateY(-3px);

}

.about-image img{

    width:100%;
    border-radius:18px;
    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

@media(max-width:900px){

.about-container{

grid-template-columns:1fr;

}

.about-text{

text-align:center;

}

.about-features{

grid-template-columns:1fr;

}

}

/* ===========================
   FOOTER
=========================== */

footer{
    background:#020617;
    color:#cbd5e1;
    padding-top:80px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1.5fr;
    gap:50px;
    padding-bottom:60px;
}

.footer-grid h3{
    color:#ffffff;
    font-size:24px;
    margin-bottom:20px;
    position:relative;
}

.footer-grid h3::after{
    content:"";
    width:50px;
    height:3px;
    background:#d97706;
    display:block;
    margin-top:10px;
    border-radius:10px;
}

.footer-grid a{
    display:block;
    color:#cbd5e1;
    margin-bottom:14px;
    text-decoration:none;
    transition:0.3s ease;
}

.footer-grid a:hover{
    color:#f59e0b;
    transform:translateX(6px);
}

.footer-grid p{
    margin-bottom:15px;
    line-height:1.8;
}

.footer-grid i{
    color:#f59e0b;
    margin-right:10px;
    width:18px;
}

.copyright{
    border-top:1px solid rgba(255,255,255,.08);
    padding:22px;
    text-align:center;
    font-size:14px;
    color:#94a3b8;
}

/* Mobile */

@media(max-width:768px){

.footer-grid{
    grid-template-columns:1fr;
    gap:40px;
    text-align:center;
}

.footer-grid h3::after{
    margin:10px auto 0;
}

.footer-grid a:hover{
    transform:none;
}

}
.nav-links a:hover,
.nav-links .active{
    color:#d97706;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#d97706;
    color:#fff;
    padding:14px 28px;
    border-radius:10px;
    font-size:16px;
    font-weight:600;
    text-decoration:none;
    transition:.3s ease;
    border:2px solid #d97706;
}

.btn:hover{
    background:#b45309;
    border-color:#b45309;
    transform:translateY(-2px);
    color:#fff;
}

.wbtn{
    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    background:#16a34a;
    color:#fff;
    padding:14px 24px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    overflow:hidden;
    transition:all .35s ease;
    box-shadow:0 8px 20px rgba(22,163,74,.25);
}

.wbtn i{
    transition:transform .35s ease;
}

.wbtn:hover{
    background:#15803d;
    transform:translateY(-4px) scale(1.03);
    box-shadow:0 16px 35px rgba(22,163,74,.45);
}

.wbtn:hover i{
    transform:rotate(12deg) scale(1.25);
}

/* Shine Effect */
.wbtn::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:60%;
    height:100%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
    );
    transition:left .6s ease;
}

.wbtn:hover::before{
    left:140%;
}

.custom-card .card-buttons a {
    width: 150px;
    padding: 10px
}

.custom-card {
    display: flex;
    flex-direction: column;
}

.custom-card .card-buttons {
    display: flex;
    gap: 10px;
    margin-top: auto; /* Pushes buttons to the bottom */
}

.custom-card .card-buttons a {
    flex: 1; /* Both buttons get equal width */
    padding: 10px;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}