/* ===================================
   GLOBAL
=================================== */

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

body{
    font-family:'Inter',sans-serif;
     background:#f8fafc;
    color:#111827;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

.container{
    max-width:1320px;
}

.section-title{
    font-size:36px;
    font-weight:800;
    color:#0f172a;
}

.popular-card,
.category-card,
.tool-pill,
.quick-card,
.stats-wrapper,
.footer-card{
    box-shadow:0 10px 30px rgba(15,23,42,.06);
}

/* ===================================
   NAVBAR
=================================== */

.custom-navbar{

     height:86px;
    background:white;
    box-shadow:0 2px 20px rgba(0,0,0,.04);
    padding:
    12px 0;
}

.logo{

    height:58px;
}

.nav-link{

    color:#334155 !important;

    font-size:15px;

    font-weight:600;

    margin:
    0 10px;
}

.nav-link.active{

    color:#2563eb !important;
}

.nav-link:hover{

    color:#2563eb !important;
}

.popular-card:hover,
.category-card:hover,
.tool-pill:hover{
    transform:translateY(-5px);
    transition:.3s;
}

.start-btn{

    background:
    linear-gradient(
        135deg,
        #2563eb,
        #7c3aed
    );

    color:white !important;

    border:none;

    border-radius:14px;

    padding:
    13px 24px;

    font-weight:700;
}

/* ===================================
   HERO
=================================== */

.tools-hero{

    padding:120px 0 35px;

    background:
    linear-gradient(
        135deg,
        #eef5ff,
        #ffffff
    );
}

.hero-content{

    max-width:900px;
    margin:auto;
}

.hero-badge{

    display:inline-block;

    background:#dbeafe;

    color:#2563eb;

    padding:12px 20px;

    border-radius:999px;

    font-weight:700;

    margin-bottom:25px;
}

.tools-hero h1{

    font-size:72px;

    font-weight:800;

    line-height:1.1;

    margin-bottom:20px;
}

.tools-hero h1 span{

    color:#2563eb;
}

.tools-hero p{

    font-size:20px;

    color:#64748b;

    max-width:700px;

    margin:auto;

    line-height:1.8;
}

.hero-buttons{

    margin-top:35px;

    display:flex;

    justify-content:center;

    gap:15px;
}

.hero-btn{

    background:
    linear-gradient(
        135deg,
        #2563eb,
        #7c3aed
    );

    color:white;

    padding:16px 30px;

    border-radius:16px;

    font-weight:700;
}

.browse-btn{

    background:white;

    border:2px solid #2563eb;

    color:#2563eb;

    padding:16px 30px;

    border-radius:16px;

    font-weight:700;
}

/* ===================================
   SEARCH
=================================== */

.search-section{

    padding:20px 0;
}

.search-wrapper{

    max-width:750px;

    margin:auto;

    background:white;

    border-radius:20px;

    padding:18px 25px;

    display:flex;

    align-items:center;

    gap:15px;

    box-shadow:
    0 10px 25px rgba(0,0,0,.06);
}

.search-wrapper i{

    font-size:24px;

    color:#2563eb;
}

.search-wrapper input{

    width:100%;

    border:none;

    outline:none;

    font-size:18px;
}

/* ===================================
   FILTERS
=================================== */

.filter-section{

    padding-bottom:30px;
}

.category-filter{

    display:flex;

    justify-content:center;

    gap:15px;

    flex-wrap:wrap;
}

.filter-btn{

    border:none;

    background:white;

    padding:14px 24px;

    border-radius:14px;

    font-weight:600;

    box-shadow:
    0 5px 15px rgba(0,0,0,.05);
}

.filter-btn.active{

    background:
    linear-gradient(
        135deg,
        #2563eb,
        #7c3aed
    );

    color:white;
}

/* ===================================
   STATS
=================================== */

.stats-section{

    padding:10px 0 35px;
}

.stats-wrapper{

    background:white;

    border-radius:24px;

    padding:30px;

    display:grid;

    grid-template-columns:
    repeat(
        4,
        1fr
    );

    gap:20px;

    box-shadow:
    0 10px 25px rgba(0,0,0,.05);
}

.stat-item{

    display:flex;

    align-items:center;

    gap:16px;
}

.stat-item img{

    width:70px;

    height:70px;
}

.stat-item h3{

    margin:0;

    font-size:32px;

    font-weight:800;
}

.stat-item p{

    margin:0;

    color:#64748b;
}

/* ===================================
   POPULAR TOOLS
=================================== */

.popular-tools-header{
    padding:5px 0 10px;
}

.popular-tools-header h2{
    font-size:42px;
    font-weight:800;
    margin-bottom:10px;
}

.popular-tools-header p{
    color:#64748b;
    font-size:18px;
}

.popular-tools-section{
    padding:20px 0 80px;
}

.tool-card{

    display:flex;

    flex-direction:column;

    align-items:center;

    text-align:center;

    background:white;

    height:280px;

    padding:30px 20px;

    border-radius:24px;

    color:#111827;

    box-shadow:
    0 10px 25px rgba(0,0,0,.05);

    transition:.3s;
}

.tool-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 20px 40px rgba(0,0,0,.10);

    color:#2563eb;
}

.tool-icon{

    width:64px;

    height:64px;

    object-fit:contain;

    margin-bottom:20px;
}

.tool-card h4{

    font-size:22px;

    font-weight:700;

    margin-bottom:5px;

    min-height:54px;
}

.tool-card p{

    color:#64748b;

   

    flex-grow:1;
}

.tool-card span{

    color:#2563eb;

    font-weight:700;
}

/* ===================================
   REQUEST TOOL
=================================== */

.request-tool-section{

    padding:0 0 80px;
}

.request-card{

    background:
    linear-gradient(
        135deg,
        #2563eb,
        #7c3aed
    );

    color:white;

    border-radius:28px;

    padding:50px;
}

.request-card h2{

    font-size:38px;

    font-weight:800;

    margin-bottom:15px;
}

.request-card p{

    font-size:18px;

    opacity:.9;
}

.request-btn{

    background:white;

    color:#2563eb;

    padding:18px 30px;

    border-radius:16px;

    font-weight:700;
}

/* ===================================
   FEATURES
=================================== */

.features-section{

    padding:0 0 80px;
}

.section-subtitle{

    color:#64748b;

    font-size:18px;
}

.feature-card{

    background:white;

    border-radius:24px;

    text-align:center;

    padding:35px 25px;

    min-height:250px;

    box-shadow:
    0 10px 25px rgba(0,0,0,.05);

    transition:.3s;
}

.feature-card:hover{

    transform:translateY(-6px);
}

.feature-icon{

    width:70px;

    height:70px;

    margin-bottom:20px;
}

.feature-card h4{

    font-size:22px;

    font-weight:700;

    margin-bottom:12px;
}

.feature-card p{

    color:#64748b;

    line-height:1.7;
}

/* ===================================
   NEWSLETTER
=================================== */

.newsletter-section{

    padding:0 0 80px;
}

.newsletter-card{

    background:white;

    border-radius:28px;

    padding:60px 40px;

    box-shadow:
    0 10px 25px rgba(0,0,0,.05);
}

.newsletter-card h2{

    font-size:40px;

    font-weight:800;

    margin-bottom:12px;
}

.newsletter-card p{

    color:#64748b;

    margin-bottom:30px;
}

.newsletter-form{

    max-width:650px;

    margin:auto;

    display:flex;

    gap:15px;
}

.newsletter-form input{

    flex:1;

    height:58px;

    border:1px solid #e5e7eb;

    border-radius:14px;

    padding:0 20px;
}

.newsletter-form button{

    height:58px;

    border:none;

    border-radius:14px;

    padding:0 30px;

    background:
    linear-gradient(
        135deg,
        #2563eb,
        #7c3aed
    );

    color:white;

    font-weight:700;
}

/* ===================================
   FOOTER
=================================== */

.footer-section{

    padding: 15px 0 0 0;
}

.footer-card{

    background:white;


    padding: 40px 40px 30px 40px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);
}

.footer-logo{

    height:60px;

    margin-bottom:20px;
}

.footer-desc{

    color:#64748b;

    line-height:1.8;
}

.footer-social{

    display:flex;

    gap:12px;

    margin-top:20px;
}

.footer-social img{

    width:42px;
    height:42px;
}

.footer-section h5{

    font-weight:700;

    margin-bottom:20px;
}

.footer-section ul{

    list-style:none;

    padding:0;
}

.footer-section ul li{

    margin-bottom:12px;
}

.footer-section ul li a{

    color:#334155;
}

.footer-input{

    height:50px;

    border-radius:12px;
}

.footer-btn{

    margin-top:12px;

    width:100%;

    height:50px;

    border-radius:12px;

    background:
    linear-gradient(
        135deg,
        #2563eb,
        #7c3aed
    );

    border:none;

    color:white;

    font-weight:700;
}

.footer-bottom{

    margin-top:0px;

    background:
    linear-gradient(
        135deg,
        #2563eb,
        #4f46e5
    );

    color:white;

    padding: 16px 30px 16px 30px;


    display:flex;

    justify-content:space-between;

    align-items:center;
}


/* ===================================
MOBILE + TABLET RESPONSIVE
=================================== */

/* ===================================
MOBILE (320px - 767px)
=================================== */

@media (max-width:767px){


/* Hide Stats */
.stats-section{
    display:none;
}

/* Hero */
.tools-hero{
    padding:90px 0 20px;
    text-align:center;
}

.tools-hero h1{
    font-size:34px;
    line-height:1.2;
}

.tools-hero p{
    font-size:15px;
    line-height:1.6;
}

.hero-buttons{
    flex-direction:column;
    gap:12px;
}

/* Search */
.search-wrapper{
    padding:12px 16px;
    border-radius:16px;
}

.search-wrapper input{
    font-size:15px;
}

/* Tool Cards */
.tool-card{
    height:150px;
    padding:15px;
    border-radius:18px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.tool-icon{
    width:42px;
    height:42px;
    margin-bottom:10px;
}

.tool-card h4{
    font-size:15px;
    margin:0;
    min-height:auto;
}

.tool-card p,
.tool-card span{
    display:none;
}

/* 2 Cards Per Row */
.popular-tools-section .col-lg-3,
.popular-tools-section .col-md-4,
.popular-tools-section .col-sm-6,
.popular-tools-section .col-6{
    width:50%;
    margin-bottom:15px;
}

/* Filter */
.category-filter{
    gap:8px;
    overflow-x:auto;
    white-space:nowrap;
    padding-bottom:5px;
}

.filter-btn{
    padding:10px 14px;
    font-size:13px;
}

/* Why Choose Us */
.feature-card{
    min-height:110px;
    padding:15px 10px;
    border-radius:16px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.feature-icon{
    width:40px;
    height:40px;
    margin-bottom:8px;
}

.feature-card h4{
    font-size:15px;
    margin:0;
    line-height:1.3;
}

.feature-card p{
    display:none;
}

.features-section .col-lg-4,
.features-section .col-md-6,
.features-section .col-6{
    width:50%;
    margin-bottom:15px;
}

/* Newsletter */
.newsletter-form{
    flex-direction:column;
    gap:12px;
}

.newsletter-card{
    padding:25px 20px;
}

.newsletter-card h2{
    font-size:24px;
}

/* Footer */
.footer-card{
    padding:20px;
}

.footer-bottom{
    flex-direction:column;
    gap:8px;
    text-align:center;
    font-size:14px;
    padding:15px;
}

/* ==========================
   TABLET NAVBAR
========================== */

.custom-navbar{

    height:auto;

}

.navbar-collapse{

    background:#ffffff;

    margin-top:12px;

    padding:20px;

    border-radius:16px;

    box-shadow:0 10px 30px rgba(0,0,0,.12);

}

.navbar-nav{

    text-align:center;

}

.navbar-nav .nav-item{

    margin:8px 0;

}

.start-btn{

    display:block;

    width:100%;

    margin-top:15px;

}

}

/* ===================================
SMALL MOBILE (320px - 480px)
=================================== */

@media (max-width:480px){


.tools-hero h1{
    font-size:28px;
}

.tools-hero p{
    font-size:14px;
}

.tool-card{
    height:135px;
    padding:12px;
}

.tool-icon{
    width:38px;
    height:38px;
}

.tool-card h4{
    font-size:14px;
}

.feature-card{
    min-height:95px;
    padding:12px 8px;
}

.feature-icon{
    width:36px;
    height:36px;
}

.feature-card h4{
    font-size:14px;
}

.filter-btn{
    font-size:12px;
    padding:8px 12px;
}


.custom-navbar{

    height:auto;

    padding:10px 0;

}

.navbar-collapse{

    background:#ffffff;

    margin-top:12px;

    padding:20px;

    border-radius:16px;

    box-shadow:0 10px 30px rgba(0,0,0,.12);

}

.navbar-nav{

    text-align:center;

}

.navbar-nav .nav-item{

    margin:8px 0;

}

.start-btn{

    display:block;

    width:100%;

    margin-top:15px;

}


}

/* ===================================
TABLET (768px - 1024px)
=================================== */

@media (min-width:768px) and (max-width:1024px){


.tools-hero h1{
    font-size:52px;
}

.tools-hero p{
    font-size:18px;
}

.stats-wrapper{
    grid-template-columns:repeat(2,1fr);
}

.tool-card{
    height:220px;
    padding:22px;
}

.tool-icon{
    width:56px;
    height:56px;
}

.tool-card h4{
    font-size:18px;
}

.tool-card p{
    display:none;
}

.tool-card span{
    display:none;
}

.feature-card{
    min-height:140px;
    padding:20px;
    text-align:center;
}

.feature-icon{
    width:55px;
    height:55px;
    margin-bottom:10px;
}

.feature-card h4{
    font-size:18px;
}

.feature-card p{
    display:none;
}

.newsletter-form{
    flex-direction:row;
}

/* ==========================
   TABLET NAVBAR
========================== */

.custom-navbar{

    height:auto;

}

.navbar-collapse{

    background:#ffffff;

    margin-top:12px;

    padding:20px;

    border-radius:16px;

    box-shadow:0 10px 30px rgba(0,0,0,.12);

}

.navbar-nav{

    text-align:center;

}

.navbar-nav .nav-item{

    margin:8px 0;

}

.start-btn{

    display:block;

    width:100%;

    margin-top:15px;

}

}
