@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap');

:root{
    --primary-color: #ff7f00;
    --primary-light-color: #ff7f00;
    --secondary-color: green;
    --alice-blue: #f8f8f8;
    --back-ground: #eff0f0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleUp {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}


/* Banner title animation */
.banner-title {
    animation: slideInLeft 1s ease-in-out forwards;
}

/* Sections animation on scroll */
#what-we-offer, #about {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Feature items (About & Offers) */
.offer-item, .feature-item {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

/* Social icons animation */
.social-links li a {
    transition: transform 0.3s ease-in-out;
}

.social-links li a:hover {
    transform: rotate(15deg) scale(1.1);
}

/* Button hover effect */
.btn {
    transition: transform 0.3s ease-in-out;
}

.btn:hover {
    transform: scale(1.05);
}


*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}
a{
    color: var(--primary-color);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}
.container{
    max-width: 1320px;
    padding: 0 16px;
    margin: 0 auto;
}
#header{
    min-height: 80vh;
    background-color: var(--alice-blue);
}
.navbar-toggler{
    display: none;
}
.navbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    height: 132px;
}
.navbar-brand{
    font-size: 29px;
    font-weight: 600;
}
.navbar-collapse{
    display: flex!important;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease-in-out;
}
.navbar-nav{
    list-style-type: none;
}
.nav-item{
    display: inline-block;
    margin-left: 30px;
}
.nav-link{
    transition: color 0.3s ease-in-out;
}
.nav-link:hover{
    color: var(--secondary-color);
}
.header-btns{
    margin-left: 110px;
}
.header-btns .btn{
    background-color: transparent;
    color: #fff;
    padding: 12px 20px;
    border-radius: 4px;
    border: 1px solid transparent;
    transition: all 0.3s ease-in-out;
}
.btn.btn-login{
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}
.btn.btn-login:hover{
    border-color: var(--secondary-color);
    background: var(--secondary-color);
    color: #fff;
}
.btn.btn-start{
    background-color: var(--primary-light-color);
}
.btn.btn-start:hover{
    background-color: var(--secondary-color);
}

/* banner */
.banner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    font-family: 'Montserrat', sans-serif;
}
.banner-right img{
    width: 120%;
    margin-left: -70px;
}
.banner-left{
    width: 40%;
    color: var(--primary-color);
}
.banner-right{
    width: 60%;
    overflow: hidden;
}
.banner-title{
    font-size: 45px;
    text-transform: capitalize;
    line-height: 1.4;
}
.banner-title span{
    color: var(--secondary-color);
}
.banner-text{
    font-size: 18px;
    margin: 10px 0 30px 0;
    line-height: 1.6;
    max-width: 390px;
}
.header-form{
    margin-bottom: 120px;
}
.form-item{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 438px;
}
.form-control{
    height: 50px;
    width: 100%;
    border: 1px solid #ddd;
    background-color: #fff;
    font-family: inherit;
    padding: 0 16px;
    font-size: 15px;
    outline: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.submit-btn{
    width: 180px;
    height: 50px;
    border: none;
    font-family: inherit;
    background-color: var(--secondary-color);
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    transition: background-color 0.3s ease-in-out;
}
.submit-btn:hover{
    background-color: var(--primary-light-color);
}
.social-links{
    list-style-type: none;
    margin-top: -4rem;
}
.social-links li{
    display: inline-block;
}
.social-links li a{
    background-color: var(--primary-color);
    color: #fff;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-right: 13px;
    transition: background-color 0.3s ease-in-out;
}
.social-links li a:hover{
    background-color: var(--secondary-color);
}

.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-menu {
    display: none;
    position: absolute;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    list-style: none;
    padding: 8px;
    min-width: 140px;
    z-index: 1000;
}
.dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-item {
    padding: 8px 12px;
    display: block;
    color: black;
    text-decoration: none;
}
.dropdown-item:hover {
    background: #f4f4f4;
}


@media screen and (max-width: 1200px){
    .nav-item{
        margin-left: 30px;
    }
    .header-btns{
        margin-left: 40px;
    }
    .banner-left{
        width: 60%;
    }
    .banner-right{
        width: 40%;
    }
}

@media screen and (max-width: 992px){
    .navbar-toggler{
        display: block;
    }
    .brand-and-toggler{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .navbar-collapse{
        position: fixed;
        right: 0;
        top: 0;
        flex-direction: column;
        justify-content: flex-start;
        background-color: var(--secondary-color);
        height: 100%;
        width: 320px;
        transform: translateX(100%);
        z-index: 999;
    }
    .nav-item{
        display: block;
        margin: 20px 0;
        text-align: center;
    }
    .navbar-nav{
        margin-top: 80px;
    }
    .nav-link{
        color: #fff;
        transition: all 0.3s ease-in-out;
    }
    .nav-link:hover{
        color: var(--primary-color);
    }
    .brand-and-toggler{
        width: 100%;
    }
    .navbar-toggler{
        border: none;
        font-size: 26px;
        display: inline-block;
        padding: 4px 8px;
        background-color: transparent;
        color: var(--primary-color);
        border-radius: 2px;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
    }
    .navbar-toggler:hover{
        background-color: var(--secondary-color);
        color: #fff;
    }

    .header-btns{
        margin: 0;
    }
    .header-btns .btn{
        display: block;
        text-align: center;
        width: 260px;
    }
    .btn.btn-login{
        margin-bottom: 12px;
        background-color: #fff;
    }
    .btn.btn-login:hover{
        border-color: #fff!important;
        transform: translateY(-2px);
    }
    .btn.btn-start:hover{
        background-color: var(--primary-light-color)!important;
        transform: translateY(-2px);
    }
    
}

@media screen and (max-width: 768px){
    .banner-right{
        display: none;
    }
    .banner-left{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .social-links li a{
        margin: 6px;
    }
}

/* navbar related classes */
.showNavbar{
    transform: translateX(0);
}
.showNavbar-toggler{
    z-index: 1000;
    color: #fff;
}

.resize-animation-stopper *{
    animation: none!important;
    transition: none!important;
}
.holder{
    overflow-x: hidden;
}

@media screen and (max-width: 480px){
    .form-item{
        flex-direction: column;
        width: 100%;
    }
    .form-control, .submit-btn{
        width: 300px;
    }
    .submit-btn{
        margin-top: 12px;
    }
    .navbar-collapse{
        width: 100%;
    }
    .header-form{
        margin-bottom: 30px;
    }
}

#what-we-offer {
    background-color: var(--back-ground);
    padding: 80px 0;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.offer-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.offer-item:hover {
    transform: translateY(-5px);
}

.offer-item i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.offer-item h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.offer-item p {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .offer-grid {
        grid-template-columns: 1fr;
    }
}


#about {
    background-color: var(--alice-blue);
    padding: 100px 0;
    font-family: 'Montserrat', sans-serif;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
}

.about-text {
    width: 50%;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.about-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    background: #fff;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 12px;
    color: var(--secondary-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.feature-item i {
    font-size: 22px;
    margin-right: 12px;
    color: var(--primary-color);
}

.feature-item:hover {
    transform: translateY(-3px);
}

/* About Image */
.about-image {
    width: 45%;
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.about-image img:hover {
    transform: scale(1.05);
}

/* Learn More Button */
.btn-learn-more {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 24px;
    font-size: 18px;
    font-weight: 600;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-learn-more:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    .about-text {
        width: 100%;
    }
    .about-image {
        width: 100%;
        margin-top: 25px;
    }
}

@media screen and (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }
    .about-text p {
        font-size: 16px;
    }
    .feature-item {
        font-size: 16px;
        padding: 10px 12px;
    }
}

/* FAQ Section */
#faq {
    background: var(--back-ground);
    padding: 80px 0;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.faq-text {
    font-size: 18px;
    color: #444;
    margin-bottom: 40px;
}

/* FAQ List */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    margin-bottom: 15px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    padding: 15px;
    font-size: 16px;
    background: #f9f9f9;
    border-top: 1px solid #ddd;
    border-radius: 0 0 8px 8px;
}

/* FAQ Form */
.faq-form {
    margin-top: 50px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    margin: 50px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.faq-form h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    font-size: 18px;
    color: #fff;
    background-color: var(--primary-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
}

/* Responsive */
@media screen and (max-width: 768px) {
    .faq-list {
        width: 100%;
    }
}


/* Contact Section */
#contact {
    background-color: var(--alice-blue);
    padding: 80px 0;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-text {
    font-size: 18px;
    color: #444;
    margin-bottom: 40px;
}

/* Contact Content Layout */
.contact-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

/* Contact Form */
.contact-form {
    width: 48%;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    font-size: 18px;
    color: #fff;
    background-color: var(--primary-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
}

/* Contact Details */
.contact-details {
    width: 48%;
}

.contact-item {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    color: #333;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 22px;
    margin-right: 12px;
    color: var(--primary-color);
}

/* Google Map */
.map-container {
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .contact-content {
        flex-direction: column;
    }

    .contact-form, .contact-details {
        width: 100%;
    }
}


/* Mobile App Section */
#mobile-app {
    background: linear-gradient(135deg, #ff7f50, #ff4500); /* Orange Gradient */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    /* border-radius: 10px; */
}

#mobile-app .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.app-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Left Section: App Details */
.app-text {
    width: 50%;
    text-align: left;
}

.app-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #fff;
}

.app-text p {
    font-size: 18px;
    margin-bottom: 15px;
}

.app-text ul {
    list-style: none;
    padding: 0;
}

.app-text ul li {
    font-size: 16px;
    margin: 10px 0;
    display: flex;
    align-items: center;
}

.app-text ul li i {
    color: #ffd700; /* Gold color */
    margin-right: 10px;
}

/* App Download Buttons */
.app-buttons {
    margin-top: 20px;
}

.btn-app img {
    width: 180px;
    transition: transform 0.3s;
}

.btn-app img:hover {
    transform: scale(1.1);
}

/* Right Section: Mobile Mockup */
.app-image {
    width: 50%;
    text-align: center;
    position: relative;
}

/* Green Circular Background */
.green-circle {
    width: 400px;
    height: 400px;
    background: var(--secondary-color);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

/* Phone Image */
.app-image img {
    width: 100%;
    max-width: 250px;
    position: relative;
    z-index: 1;
    animation: float 3s ease-in-out infinite;
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .app-content {
        flex-direction: column;
        text-align: center;
    }

    .app-image {
        display: none;
    }

    .app-text {
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }

    .green-circle {
       display: none;
    }
}
/* Footer Styles */
footer {
    background: #ffffff; /* White background for better visibility */
    color: #333;
    padding: 50px 0;
    font-size: 16px;
    border-top: 2px solid #f0f0f0; /* Light border for subtle separation */
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.footer-logo img {
    max-width: 150px;
}

.footer-logo p {
    max-width: 280px;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.footer-links h3, .footer-contact h3, .footer-newsletter h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #222;
    font-weight: 600;
}

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

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #444;
    text-decoration: none;
    transition: 0.3s;
    font-size: 15px;
}

.footer-links ul li a:hover {
    text-decoration: underline;
    color: var(--primary-color, #ff6600);
}

.footer-contact p {
    margin-bottom: 10px;
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-color, #ff6600);
    font-size: 16px;
}

.footer-newsletter form {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-newsletter input {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    flex: 1;
    font-size: 15px;
    background: #f9f9f9;
}

.footer-newsletter button {
    background-color: var(--secondary-color, #ff4500);
    color: #fff;
    border: none;
    padding: 12px 18px;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.3s;
    font-size: 15px;
    font-weight: bold;
}

.footer-newsletter button:hover {
    background-color: #e03e00;
}

/* Footer Bottom Section */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.footer-bottom .social-icons {
    margin-bottom: 12px;
}

.footer-bottom .social-icons a {
    color: var(--primary-color, #ff6600);
    font-size: 20px;
    margin: 0 12px;
    transition: 0.3s;
}

.footer-bottom .social-icons a:hover {
    color: var(--secondary-color, #ff4500);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-newsletter form {
        flex-direction: column;
        gap: 8px;
    }

    .footer-newsletter input {
        width: 100%;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(45deg, #ff6600, #ff4500); /* Orange gradient */
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.back-to-top:hover {
    background: linear-gradient(45deg, #ff4500, #ff6600);
    transform: scale(1.1);
}

.back-to-top i {
    transition: transform 0.3s;
}

.back-to-top:hover i {
    transform: translateY(-3px);
}

/* Show button when scrolling */
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}


/*market place*/
#marketplace {
    text-align: center;
    padding: 50px 0;
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    justify-content: center;
}

.market-item {
    position: relative;
    background: #f5f5f5;
    border-radius: 8px;
    padding: 50px;
    margin-top: 2rem;
    text-align: center;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}

.market-item i {
    font-size: 40px;
    color: var(--primary-light-color);
}

.market-item:hover {
    transform: scale(1.05);
}

.market-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 25px;
    background: rgba(197, 241, 146, 0.8);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    border-radius: 8px;
}

.market-item:hover .market-overlay {
    opacity: 1;
}

.market-overlay h3 {
    margin-bottom: 5px;
    font-size: 18px;
    color: var(--secondary-color);
}

.market-overlay p {
    font-size: 14px;
    padding: 0 10px;
}

.btn-market {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 2rem;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-market:hover {
    background: var(--secondary-color);
}
