/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}
.header{
background:rgba(255,255,255,0.85);
backdrop-filter:blur(14px);
border-bottom:1px solid #cfd8e3;
}

body {
    font-family: 'Inter', sans-serif;
    background: #d3dce8;
    color: #0f172a;
    line-height: 1.7;
    overflow-x: hidden;
}

/* NAVBAR */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 5%;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(124, 58, 237, .1);
    transition: .3s;
}

.logo img {
    height: 42px;
    width: auto;
    display: block;
    transition: .3s;
}

.logo img:hover {
    transform: scale(1.03);
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    margin-left: 25px;
    text-decoration: none;
    color: #334155;
    font-weight: 600;
    transition: .3s;
    position: relative;
}

.nav-links a:hover {
    color: #7c3aed;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: #7c3aed;
    transition: .3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-btn {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

/* HERO */

.hero {
    padding: 10px 20px;
    text-align: center;

    background:
        radial-gradient(circle at top left,
            rgba(124, 58, 237, .10),
            transparent 35%),

        radial-gradient(circle at bottom right,
            rgba(59, 130, 246, .10),
            transparent 35%);
}

.hero h1 {
    font-size:clamp(3rem,4vw,4rem);
line-height:1.05;
letter-spacing:-2px;
    font-weight: 800;
    line-height: 1.1;
    max-width: 900px;
    margin: auto;
}

.hero p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 700px;
    margin: 20px auto;
}



.tool-card,
.stat-box,
.faq-item {

    animation: fadeUp .6s ease;

}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

.search-box {
    max-width: 700px;
    margin: auto;
    position: relative;
}

.search-box i {
    position: absolute;
    left: 18px;
    top: 18px;
    color: #94a3b8;
}

.search-box input {
    width: 100%;
    padding: 16px 16px 16px 50px;
    border-radius: 16px;
    background:#fff;
border:1px solid #bcc8d6;
    font-size: 16px;
}

.search-box input:focus{
outline:none;
border-color:#7c3aed;
box-shadow:0 0 0 4px rgba(124,58,237,.12);
}
/* CATEGORIES */

.categories {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    flex-wrap: wrap;
}

.categories button {
    padding: 10px 18px;
    border: none;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    font-weight: 600;
}

.categories .active {
    background: #7c3aed;
    color: white;
}

/* TOOLS GRID */

.tools-grid {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 15px;
    padding: 30px 0;
}

.tool-card {
   background:#ffffff;
    border:1px solid #cfd8e3;
box-shadow:0 4px 15px rgba(15,23,42,.05);
    border-radius: 16px;
    padding: 14px 8px;
    min-height: 90px;
    text-align: center;
    text-decoration: none;
    color: #1e293b;
    font-size: 15px;
    font-weight: 600;
    transition: all .25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
}

.tool-card:hover{
transform:translateY(-6px);
border-color:#7c3aed;
box-shadow:0 15px 35px rgba(124,58,237,.15);
}

.tool-card .icon {
    font-size: 22px;
}

/* INFO SECTION */

.info-section {
    max-width: 900px;
    margin: 70px auto;
    padding: 0 20px;
    text-align: center;
}

.info-section h2 {
    margin-bottom: 15px;
}

/* FAQ */

.faq {
    max-width: 900px;
    margin: auto;
    padding: 20px;
}

.faq h2 {
    text-align: center;
    margin-bottom: 30px;
}

.faq-item {
    background: #fff;
    /* padding:25px; */
    border-radius: 18px;
    margin-bottom: 15px;
    border: 1px solid #e2e8f0;
    transition: .3s;
}

.faq-item:hover {
    border-color: #7c3aed;
    box-shadow: 0 10px 25px rgba(124, 58, 237, .08);
}

/* FOOTER */

footer {
    background: #0f172a;
    color: white;
    padding: 50px 20px;
    text-align: center;
    margin-top: 30px;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: #cbd5e1;
    margin: 0 10px;
    text-decoration: none;
}

.footer-links a:hover {
    color: white;
}

/* TABLET */

@media(max-width:1024px) {

    .tools-grid {
        grid-template-columns: repeat(4, 1fr);
    }

}

/* MOBILE */

@media(max-width:768px) {

    .menu-btn {
        display: block;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px;
        border-top: 1px solid #e2e8f0;

        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: 0.3s ease;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .menu-btn {
        display: block;
        cursor: pointer;
    }

    .nav-links.show {
        display: flex;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* SMALL MOBILE */

@media(max-width:480px) {

    .hero {
        padding: 50px 15px;
    }

    .hero h1 {
        font-size: 1.7rem;
    }

    .tool-card {
        padding: 15px 8px;
        font-size: 14px;
    }

}

.hero-badge {
    display: inline-block;
    background: #ede9fe;
    color: #7c3aed;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-badge:hover {
    display: inline-block;
    background: #ede9fe;
    color: #060606;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.stat {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 18px;
    border-radius: 14px;
    min-width: 120px;
}

.stat h3 {
    color: #7c3aed;
    font-size: 24px;
}

.stat p {
    color: #64748b;
    margin-top: 4px;
}

.categories button {
    border: none;
    padding: 10px 18px;
    border-radius: 999px;
    background: #eef2ff;
    cursor: pointer;
    font-weight: 600;
    transition: .3s;
}

.categories button:hover {
    background: #ddd6fe;
}

.categories .active {
    background: #7c3aed;
    color: #fff;
}

.tool-page {
    max-width: 1000px;
    margin: auto;
    padding: 60px 20px;
}

.tool-page h1 {
    text-align: center;
    margin-bottom: 10px;
}

.tool-desc {
    text-align: center;
    color: #666;
    margin-bottom: 25px;
}

.tool-page textarea {
    width: 100%;
    height: 250px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 16px;
    resize: vertical;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin-top: 25px;
}

.stat-box {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .04);
    transition: .3s;
}

.stat-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, .12);
}

.stat-box h3 {
    color: #7c3aed;
    font-size: 28px;
    margin-bottom: 8px;
}

.actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.actions button {
    padding: 12px 18px;
    border: none;
    border-radius: 10px;
    background: #7c3aed;
    color: white;
    cursor: pointer;
}

.seo-content {
    max-width: 900px;
    margin: 80px auto;
    padding: 40px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
}

.seo-content h2 {
    font-size: 2rem;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #0f172a;
}

.seo-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #475569;
    margin-bottom: 20px;
}

.seo-content ul {
    padding-left: 25px;
}

.seo-content li {
    margin-bottom: 10px;
}

.footer {
    text-align: center;
    padding: 25px;
    border-top: 1px solid #eee;
    margin-top: 40px;
}

.diff-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 25px;
}

.diff-container textarea {
    width: 100%;
    height: 250px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 16px;
    resize: vertical;
}

.diff-result {
    margin-top: 25px;
    padding: 20px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

.diff-highlight {
    background: #fef3c7;
    padding: 2px 4px;
    border-radius: 4px;
}

@media(max-width:768px) {

    .diff-container {
        grid-template-columns: 1fr;
    }

}

#results {
    margin-top: 30px;
}

#results .faq-item button {
    margin-top: 12px;
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    background: #7c3aed;
    color: #fff;
    cursor: pointer;
}

.age-form {
    max-width: 700px;
    margin: auto;
}

.age-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 25px 0;
}

.age-inputs input {
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 16px;
}

.result-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 25px;
}

.result-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
}

.result-card h3 {
    font-size: 28px;
    color: #7c3aed;
    margin-bottom: 8px;
}

@media(max-width:768px) {

    .age-inputs {
        grid-template-columns: 1fr;
    }

}

.bmi-form {
    max-width: 700px;
    margin: auto;
}

button {
    transition: .3s;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(124, 58, 237, .2);
}

.bmi-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 25px 0;
}

.bmi-inputs input {
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 16px;
    width: 100%;
}

.bmi-result {
    margin-top: 25px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 25px;
    text-align: center;
}

.bmi-result h2 {
    color: #7c3aed;
    font-size: 40px;
    margin-bottom: 10px;
}

.bmi-result p {
    font-size: 18px;
}

@media(max-width:768px) {

    .bmi-inputs {
        grid-template-columns: 1fr;
    }

}

.percent-form {
    max-width: 800px;
    margin: auto;
}

.percent-box {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 20px;
}

.percent-box h3 {
    margin-bottom: 15px;
    color: #7c3aed;
}

.percent-box input {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 12px;
    font-size: 16px;
}

.percent-result {
    margin-top: 15px;
    font-size: 20px;
    font-weight: 700;
    color: #7c3aed;
}

.gst-form {
    max-width: 800px;
    margin: auto;
}

.gst-box {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 20px;
}

.gst-box input,
.gst-box select {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 12px;
    font-size: 16px;
}

.gst-result {
    margin-top: 15px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 10px;
    line-height: 1.8;
}

.image-tool {
    max-width: 900px;
    margin: auto;
}

.image-preview {
    margin-top: 20px;
    text-align: center;
}

.image-preview img {
    max-width: 100%;
    max-height: 400px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.resize-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 20px 0;
}

.resize-inputs input {
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    width: 100%;
}

@media(max-width:768px) {

    .resize-inputs {
        grid-template-columns: 1fr;
    }

}

.compress-box {
    max-width: 900px;
    margin: auto;
}

.range-wrap {
    margin: 20px 0;
}

.range-wrap label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.range-wrap input {
    width: 100%;
}

.image-info {
    margin-top: 20px;
    padding: 15px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

.image-info p {
    margin: 8px 0;
}

.converter-box {
    max-width: 900px;
    margin: auto;
}

.converter-preview {
    margin-top: 25px;
    text-align: center;
}

.converter-preview img {
    max-width: 100%;
    max-height: 400px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.file-info {
    margin-top: 20px;
    padding: 15px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

.converter-box {
    max-width: 900px;
    margin: auto;
}

.converter-preview {
    margin-top: 25px;
    text-align: center;
}

.converter-preview img {
    max-width: 100%;
    max-height: 400px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.file-info {
    margin-top: 20px;
    padding: 15px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

.crop-box {
    max-width: 900px;
    margin: auto;
}

.crop-preview {
    text-align: center;
    margin: 25px 0;
}

.crop-preview img {
    max-width: 100%;
    max-height: 450px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

.crop-inputs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 20px 0;
}

.crop-inputs input {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 10px;
    width: 100%;
}

@media(max-width:768px) {

    .crop-inputs {
        grid-template-columns: 1fr 1fr;
    }

}

.pdf-upload-box {
    max-width: 900px;
    margin: auto;
}

.image-list {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.image-list img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.pdf-box {
    max-width: 900px;
    margin: auto;
}

.pdf-list {
    margin-top: 20px;
    padding: 15px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

.pdf-list ul {
    padding-left: 20px;
}

.pdf-list li {
    margin-bottom: 8px;
}

.split-box {
    max-width: 900px;
    margin: auto;
}

.split-options {
    margin: 20px 0;
}

.split-options input {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    margin-top: 10px;
}

.pdf-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.pdf-images canvas {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #fff;
}

.download-btn {
    margin-top: 10px;
    width: 100%;
}

.calculator {
    max-width: 400px;
    margin: auto;
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
}

.calculator-display {
    width: 100%;
    height: 70px;
    font-size: 28px;
    text-align: right;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 12px;
    margin-bottom: 15px;
}

.calculator-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.calculator-grid button {
    height: 60px;
    border: none;
    border-radius: 12px;
    font-size: 20px;
    cursor: pointer;
    background: #f8fafc;
    transition: .2s;
}

.calculator-grid button:hover {
    background: #e2e8f0;
}

.equal-btn {
    background: #7c3aed !important;
    color: #fff;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #7c3aed;
    border-radius: 20px;
}

.related-tools {
    margin-top: 60px;
    text-align: center;
}

.related-tools h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #0f172a;
}

.related-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.related-grid a {
    background: #fff;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    color: #334155;
    border: 1px solid #e2e8f0;
    transition: .3s;
    font-weight: 600;
}

.related-grid a:hover {
    transform: translateY(-3px);
    border-color: #7c3aed;
    box-shadow: 0 10px 20px rgba(124, 58, 237, .1);
}

.icon {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    margin-bottom: 15px;
    color: #7c3aed;
    transition: .3s;
}

.tool-card:hover .icon {
    transform: scale(1.15);
}

/* FAQ SECTION */

.faq-section {
    padding: 20px;
    max-width: 1000px;
    margin: auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.faq-header p {
    color: #64748b;
    font-size: 1.1rem;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    overflow: hidden;
    transition: .3s;
}

.faq-item:hover {
    border-color: #7c3aed;
    box-shadow: 0 10px 30px rgba(124, 58, 237, .08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 25px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;
}

.faq-question i {
    color: #7c3aed;
    transition: .3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.faq-answer p {
    padding: 0 25px 25px;
    color: #64748b;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

@media(max-width:768px) {

    .faq-header h2 {
        font-size: 2rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 18px;
    }

}

/* WHY CHOOSE US */

.why-us {
    padding: 90px 20px;
    max-width: 1200px;
    margin: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #0f172a;
}

.section-title p {
    font-size: 1.1rem;
    color: #64748b;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.why-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: .35s;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, .12);
    border-color: #7c3aed;
}

.why-icon {
    font-size: 38px;
    color: #7c3aed;
    margin-bottom: 20px;
}

.why-card h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
    color: #0f172a;
}

.why-card p {
    color: #64748b;
    line-height: 1.7;
}

@media(max-width:900px) {

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

}

@media(max-width:600px) {

    .why-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 2rem;
    }

}

/* POPULAR CATEGORIES */

.popular-categories {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

.popular-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.popular-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: .35s;
    cursor: pointer;
}

.popular-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, .12);
    border-color: #7c3aed;
}

.popular-card i {
    font-size: 40px;
    color: #7c3aed;
    margin-bottom: 20px;
}

.popular-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #0f172a;
}

.popular-card p {
    color: #64748b;
    line-height: 1.7;
}

@media(max-width:900px) {

    .popular-grid {
        grid-template-columns: 1fr 1fr;
    }

}

@media(max-width:600px) {

    .popular-grid {
        grid-template-columns: 1fr;
    }

}
/* Blog Features Section */

.why-choose{
max-width:1200px;
margin:80px auto;
padding:0 20px;
text-align:center;
}

.why-choose h2{
font-size:48px;
margin-bottom:15px;
color:#0b1736;
}

.why-choose > p{
font-size:20px;
color:#5b6b86;
max-width:700px;
margin:0 auto 50px;
}

.features{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.feature-card{
background:#fff;
padding:30px;
border-radius:20px;
box-shadow:0 5px 15px rgba(0,0,0,.08);
transition:.3s;
}

.feature-card:hover{
transform:translateY(-5px);
}

.feature-card h3{
font-size:24px;
margin-bottom:15px;
color:#0b1736;
}

.feature-card p{
font-size:17px;
line-height:1.7;
color:#5b6b86;
}