/* =====================================
   RESET
===================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Segoe UI',Tahoma,Geneva,Verdana,sans-serif;
    background:#f8fafc;
    color:#1e293b;
    line-height:1.7;
}

img{
    max-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);

}

/* ===========================
   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;
}

}
.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
}
.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;
}

.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);
}

.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;
}