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

body {
    background-color: #FFFFFF;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --main-color: #1565C0;
    --text-color: black;
    --hover-color: #1565C0;
}
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;

}
.logo {
    display: flex;
    align-items: center;
}
.logo h3 {
    position: relative;
    font-size: 30px;
    left: -10px;
}
.logo img {
    height: 80px;
}
.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: black;
    text-decoration: none;
    font-weight: 600;
}

.nav-links a:hover {
    color: var(--hover-color);
    border-bottom: 2px solid var(--hover-color);
}

.menu-btn {
    display: none;
    font-size: 26px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 40;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.side-menu {
    position: fixed;
    top: 0;
    right: -260px;
    width: 200px;
    height: 100vh;
    background: white;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: 0.3s ease;
    z-index: 50;
}

.butt {
    width: 35px;
}

.side-menu.active {
    right: 0;
}

.side-menu a {
    color: black;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    font-size: large;
}

.close-btn {
    align-self: flex-end;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}
.hero
{
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    
    justify-content: center;
    padding: 0px 50px;
    gap:50px;
}
.hero h1
{
    font-size: 6rem;
    color: var(--main-color);
}
.hero p
{
    font-weight: 500;
}

.catagory {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* Heading */
.cat-h1 h2 {
    margin-top: 50px;
    font-size: 3rem;
    color: var(--text-color);
    text-align: center;
}

/* Category Grid */
.cat1 {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.cat1 a {
    text-decoration: none;
}

/* Category Card */
.cat {
    background-color: #fff;
    padding: 20px;
    width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cat:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Category Icon */
.cat img {
    width: 80px;
}

/* Category Title */
.cat h3 {
    font-size: 35px;
    color: var(--text-color);
}

/* Category Description */
.cat p {
    font-size: 16px;
    color: var(--text-color);
    font-weight: 500;
}
/* ===============================
   WHY CHOOSE US / OFFERS SECTION
================================ */

.offer-head {
    margin-top: 20px;
    text-align: center;
    font-size: 46px;
    padding: 0 20px;
    color: var(--text-color);
}

.Offers {
    padding: 0 20px;
    margin-top: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

/* Single Offer Card */
.offer {
    width: 400px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

/* Icon */
.offer img {
    width: 80px;
}

/* Title */
.offer h2 {
    font-size: 30px;
    color: var(--text-color);
}

/* Description */
.offer p {
    font-size: 16px;
    line-height: 1.5;
    padding: 0 20px;
    font-weight: 500;
    color: var(--text-color);
}
/* ===============================
   HOW OUR TOOLS WORKS (STEPS)
================================ */

.step {
    margin-top: 120px;
    padding: 0 20px;
}

/* Heading */
.step-2 h2 {
    text-align: center;
    font-size: 46px;
    color: var(--text-color);
}

/* Steps Container */
.step-box {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}

/* Single Step Card */
.step-box1,
.step-box2,
.step-box3,
.step-box4 {
    width: 250px;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.step-box1:hover,
.step-box2:hover,
.step-box3:hover,
.step-box4:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* Step Icon */
.step img {
    width: 80px;
}

/* Step Number */
.step span {
    font-size: 15px;
    font-weight: 600;
    color: var(--main-color);
}

/* Step Title */
.step h3 {
    font-size: 22px;
    color: var(--text-color);
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background-color: #f9fafb; /* Light background */
    color: var(--text-color);
}

.faq-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.faq-left h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--main-color);
}

.faq-left p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.faq-left a {
    color: var(--hover-color);
    text-decoration: none;
}

.faq-left a:hover {
    text-decoration: underline;
}

.faq-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* FAQ Item */
.faq-item {
    border-bottom: 1px solid #ddd;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
    border-radius: 8px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 20px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(21, 101, 192, 0.1);
}

.faq-question span {
    font-size: 22px;
    transition: transform 0.3s ease;
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-color);
    transition: max-height 0.4s ease, padding 0.4s ease;
}

/* Active FAQ */
.faq-item.active .faq-answer {
    max-height: 200px; /* Adjust based on content */
    padding: 15px 20px 20px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

/* CTA Section */
.cta-section {
    padding: 60px 20px;
    background-color: #f9fafb;
    text-align: center;
}

.cta-container h2 {
    font-size: 3rem;
    color: var(--main-color);
    margin-bottom: 15px;
}

.cta-container p {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.cta-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--main-color);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background-color: #1d4ed8; /* Slightly darker hover */
    transform: scale(1.05);
}
/* Responsive */

.footer {
    width: 100%;
    background-color: #fff;
    margin-top: 100px;
    padding: 60px 100px 20px;
    display: flex;
    flex-direction: column;
    gap: 50px;

}

.foot1 {
    display: flex;
    justify-content: space-around;
}

.intro {
    max-width: 400px;
}

.intro-1 {
    display: flex;
    align-items: center;
}

.intro-1 img {
    width: 100px;
}

.intro p {
    margin-top: 15px;
    color: #333;
    line-height: 1.6;
}

.social {
    display: flex;
    justify-self: center;
    gap: 20px;
    margin-top: 30px;
}

.social img {
    width: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.social img:hover {
    transform: scale(1.1);
    padding: 4px;
    border: 2px solid #000;
    border-radius: 50%;
}

.list-33 {
    display: flex;
    gap: 100px;
}

.list-33 div {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.list-33 section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.list-33 section a {
    text-decoration: none;
    color: #151515;
    font-weight: 500;
}

.list-33 section a:hover {
    border-bottom: 2px solid #000;
}

.right {
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.right div {
    display: flex;
    gap: 50px;
}

.right div a {
    color: #282727;
    text-decoration: none;
}




/* Responsive Footer */
@media (max-width: 1000px) {

    .foot1,
    .right {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .list-33 {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 560px) {
    .footer {
        padding: 40px 20px;
    }
    .cta h2 {
        font-size: 30px;
    }
}



/* Responsive */
@media (max-width: 768px) {
    .cta-container h2 {
        font-size: 2rem;
    }

    .cta-container p {
        font-size: 14px;
    }

    .cta-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 900px) {
    .faq-container {
        grid-template-columns: 1fr;
    }

    .faq-left h2 {
        font-size: 34px;
    }

    .faq-question {
        font-size: 16px;
    }

    .faq-answer {
        font-size: 14px;
    }
}

@media (max-width: 560px) {
    .faq-section {
        padding: 40px 15px;
    }

    .faq-item {
        border-radius: 5px;
    }
}


@media (max-width: 768px) {
    .step-2 h2 {
        font-size: 34px;
    }

    .step-box {
        gap: 30px;
    }

    .step-box1,
    .step-box2,
    .step-box3,
    .step-box4 {
        width: 100%;
        max-width: 300px;
    }
}




/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1100px) {
    .Offers {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .offer-head {
        font-size: 35px;
    }

    .offer {
        width: 300px;
    }
}

@media (max-width: 620px) {
    .Offers {
        padding: 0 20px;
    }

    .offer {
        width: 100%;
        max-width: 300px;
    }
}




/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
    .cat {
        width: 100%;
        max-width: 320px;
    }

    .cat-h1 h2 {
        font-size: 2.2rem;
    }

    .cat h3 {
        font-size: 26px;
    }
    .hero
    {
        padding: 0 20px;
        gap: 10px;
    }
    .hero h1
    {
        font-size: 1.5rem;
    }

}









@media (max-width: 768px) {
    .desktop {
        display: none;
    }

    .menu-btn {
        display: block;
    }
}