@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


* {
    box-sizing: border-box;
    outline: none;
    text-decoration: none;
}

body {
    font-family: "Fira Sans", sans-serif !important;
    margin: 0;
    background: #ffffff;
    color: #1b1f3b;
}

/* 
header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 999;
    background: #222831;
    color: #f7f7f7;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
}

.header-main .logo img{
    max-width: 200px;
    height: auto;
} */


/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #222831;
    transition: .5s ease all;
}

.header.scrolled {
    background: #222831d9;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo img {
    max-width: 180px;
    height: auto;
}

@media (max-width: 399px) {
    .logo img {
        max-width: 140px;
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
}

.nav-links.active {
    background: #222831;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: .5s ease all;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: .5s ease all;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-button {
    background: #f96d00;
    color: white !important;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: .5s ease all;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.nav-links .mobile-header::after {
    background: transparent !important;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #fff;
}


.hero {
    background: linear-gradient(135deg, #ffd369, #f96d00);
    color: #222831;
    padding: 130px 20px 100px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 2.8em;
    font-weight: 600;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto 30px;
}


.hero .cta-btn {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center; 
}

.hero .cta-btn a {
    background: rgb(34, 40, 49);
    color: #ffffff;
    padding: 14px 36px;
    font-size: 1em;
    border-radius: 30px;
    text-decoration: none;
    cursor: pointer;
    transition: .5s ease all;
}

.hero .cta-btn a:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(34, 40, 49, 0.3);
    background-color: #000;
    color: #fff;
}

/* ------------------logo-sec--------------- */

.logo-sec {
    padding: 60px 0 40px 0;
}

.logo-title h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #000;
    position: relative;
    padding-left: 24px;
    margin-bottom: 0;
}

.logo-title h2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 6px;
    background: linear-gradient(135deg, #ffd369, #f96d00);
}

.card1 {
    width: 100%;
    text-align: center;
}

.card1 img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 10px 0;
}



.features {
    background: #f5f6fa;
    padding: 70px 0;
    text-align: center;
}

.features h3 {
    font-size: 2em;
    font-weight: 600;
    margin-bottom: 40px;
}

.feat-card {
    background: #ffffff;
    padding: 20px 18px;
    border-radius: 14px;
    margin: 12px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    min-height: 140px;
    transition: .5s ease all;
}

.feat-card:hover {
    transform: translateY(-6px);
}


.feat-card .feat-text h4 {
    margin-bottom: 10px;
    font-size: 22px;
    color: #f96d00;
    text-align: center;
    font-weight: 600;
}

.feat-card .feat-text p {
    font-size: 16px;
    color: #333;
    text-align: center;
}

/* ---------------what-sec---------------- */

.what-sec {
    background-color: #fff;
    padding: 60px 0;
}

.what-img {
    text-align: center;
}

.what-img img {
    width: 90%;
    height: auto;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

.what-content h2 {
    font-size: 36px;
    color: #000;
    font-weight: 600;
    margin-bottom: 20px;
}

.what-content P {
    font-size: 16px;
    color: #333;
}

.what-cta {
    margin-top: 40px;
}

.what-cta a {
    background-color: #f96d00;
    color: white;
    padding: 12px 26px;
    text-decoration: none;
    font-size: 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: .5s ease all;
}

.what-cta a:hover {
    background-color: #ffd369;
    color: #000;
}

.steps {
    padding: 70px 0;
    background: #393e46;
    text-align: center;
}


.steps h3 {
    font-size: 2.2em;
    color: #fff;
    font-weight: 600;
    margin-bottom: 30px;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.step {
    padding: 10px 30px 10px 20px;
    background-color: #fff;
    display: flex;
    align-items: center;
    border-radius: 8px;
    border: 1px solid #fff;
    position: relative;
    margin: 12px 0;
    transition: .5s ease all;
}
.step:hover {
    transform: translateY(-6px);
    box-shadow: rgba(249, 109, 0, 0.25) 0px 13px 27px -5px, rgba(249, 109, 0, 0.3) 0px 8px 16px -8px;
    border: 1px solid #f96d00;
}


.step .step-icon {
    background: linear-gradient(135deg, #ffd369, #f96d00);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    margin: 12px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(249, 109, 0, 0.25) 0px 13px 27px -5px, rgba(249, 109, 0, 0.3) 0px 8px 16px -8px;
}

.step .step-icon i {
    font-size: 24px;
    color: #000;
}

.step h4 {
    margin-bottom: 10px;
    color: #333;
    font-weight: 700;
    font-size: 40px;
    position: absolute;
    bottom: 0;
    margin-bottom: 0;
    opacity: .1;
    right: 10px;
    transition: .5s ease all;
}

.step:hover h4{
    opacity: 1;
  background: linear-gradient(180deg, #ffd369, #f96d00);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.step .step-text {
    flex: 1;
    margin-left: 18px;
}

.step .step-text p {
    text-align: left;
    font-size: 18px;
    color: #000;
    font-weight: 500;
    margin-bottom: 0;
}

/* ------------------Review-sec---------------- */
.review-section {
    background-color: #fff;
    padding: 60px 0 80px 0;
}

.review-head h2 {
    font-size: 36px;
    color: #000;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.review-main {
    margin-top: 30px;
}


.testimonial-card {
    background: #f6f6f6;
    padding: 20px 20px 30px 20px;
    border-radius: 16px;
    margin: 5px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card .review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.review-top .quote {
    position: absolute;
    right: 10px;
    top: 0;
}

.review-top .quote i {
    color: #0000000f;
    font-size: 50px;
}

.testimonial-card .pr-text {
    margin-left: 10px;
}

.testimonial-card .testi-top p {
    font-size: 15px;
    color: #000;
    font-weight: 400;
}

.star-main {
    display: flex;
    align-items: center;
    gap: 2px;
}

.star-main i {
    font-size: 16px;
    color: #f8c145;
}

.testimonial-card .review-pr {
    display: flex;
    align-items: center;
}

.review-pr .pr-img {
    width: 50px;
    height: 50px;
}

.review-pr .pr-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border: 1px solid #f96d00;
    background-color: #393e46;
    border-radius: 50%;
}

.testimonial-card .pr-text h4 {
    font-size: 17px;
    color: #000;
    font-weight: 500;
    margin-top: 5px;
    margin-bottom: 2px;
}

.testimonial-card .pr-text p {
    font-size: 14px;
    color: #000;
    font-weight: 400;
    margin-bottom: 0;
}

.owl-carousel .owl-nav {
    display: flex !important;
    justify-content: space-between !important;
    width: 100%;
    margin-top: 0 !important;
}

.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 40%;
    left: -15px;
    transform: translate(0, -50%);
}

.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 40%;
    right: -15px;
    transform: translate(0, -50%);
}

/* Style the nav buttons as black squares with white icons */
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    background-color: #f96d00 !important;
    color: #fff !important;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 40px;
    opacity: .5;
    transition: all 0.3s ease;
}
.owl-carousel .owl-nav button.owl-prev i,
.owl-carousel .owl-nav button.owl-next i {
    font-size: 22px;
} 


/* Optional: hover effect */
.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    opacity: 1;
}


.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background-color: #f96d00 !important;
}

.owl-theme .owl-dots {
    margin-top: 20px;
}


/* Footer */
.footer {
    background: rgba(34, 40, 49, 0.95);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 22px;
    margin-bottom: 1rem;
    color: #f96d00;
}

.footer-section ul {
    list-style: none;
    padding-left: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #f96d00;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #ccc;
}

.contact-info i {
    color: #f8c145;
    margin-right: 10px;
}

.footer-logo {
    text-align: left;
    margin-right: 20px;
}

.footer-logo img {
    max-width: 220px;
    text-align: center;
}
.footer-logo p{
    font-size: 15px;
    color: #ccc;
    margin-top: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #555;
    color: #ccc;
}
.footer-bottom p{
    margin-bottom: 0;
}



@media (min-width: 992px) and (max-width: 1199px) {
    .testimonial-card {
        min-height: 212px;
    }
}
@media (max-width: 1199px) {
    .what-img img {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .hero {
        padding: 120px 20px 60px 20px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-xl);
        border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

}

@media (max-width: 767px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-logo {
        text-align: left;
    }
    .footer-logo img {
        width: 220px;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .owl-carousel .owl-nav button.owl-prev {
        left: -8px;
    }

    .owl-carousel .owl-nav button.owl-next {
        right: -8px;
    }
    .card1 img {
        max-width: 180px;
    }

}

@media (max-width: 475px) {
    .header-main .logo img {
        max-width: 160px;
    }

    .header-main {
        padding: 14px 10px;
    }
}