:root {
    --primary-color: #f97316;
    --secondary-color: #ea580c;
    --light-bg: #fff7ed;
    --dark-orange: #c2410c;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    max-width: 100%;
    min-height: 100vh;
}
  
 
@media screen and (min-width: 768px) { 
    section{
        width: 90%;
        margin-left: 80px;
        /* zoo */
    }
 
}

/* mobile version  */
@media screen and (max-width: 768px) { 
    #hero{
         /* margin-right: -10px !important; */

        
    }

    nav{
      min-width: 105% !important;
       margin-left: -10px !important;
      border-radius: 5px !important;
     }

    section .btn-start{
        width: 50% !important;
        min-height: 20% !important;
         font-size: 15px !important;
         text-align: center;
        padding: 0; 
    }
 
    #hero h1 {
        font-size: 1.5rem  !important;
         margin-bottom: 1.5rem;
        text-align: center;
    }
    #hero p {
        font-size: 1rem  !important;
         margin-bottom: 1.5rem;
        /* text-align: center; */
        padding-left: 10px;
    }

    #hero img {
        /* font-size: 1rem  !important;  */
        margin-bottom: 2.3rem;
    }

    #hero .container { 
    height: 30vh; 
    
    }
}
 /* end mobile version  */









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


    #hero h1 {
        font-size: 2rem  !important;
         margin-bottom: 1.5rem;
        text-align: center;
    }
    #hero p {
        font-size: 1rem  !important;
         margin-bottom: 1.5rem;
        text-align: center;
    }
 }
nav{
    color: #e5e7eb !important;
    margin: 20px;
    background: linear-gradient(to right, #f97316, #ea580c);
    border-radius: 10px !important;
}
.navbar {
    padding: 1rem 0;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    color: #e5e7eb !important;

}

.navbar-brand img {
    height: 40px;
}

.nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 0.5rem;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
}

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

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* #hero {
    background: linear-gradient(135deg, var(--dark-orange) 0%, var(--primary-color) 100%);
    color: white;
    padding: 6rem 0;
} */



#hero {
    font-family: 'Inter', sans-serif;
    margin-top: 20px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
    background: linear-gradient(to right, #f97316, #ea580c);    
    /* background: #fff;    */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    color: #e5e7eb;


}
#hero .container .row .f-text { 
    min-height: 50vh;
    border-radius: 10px;
    color: #e5e7eb;

}
#hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

#hero h1 {
    font-size: 3.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.feature-card {
    padding: 2rem;
    border-radius: 1rem;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

#testimonials {
    background-color: var(--light-bg);
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonial-card i {
    color: var(--primary-color);
}

#cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-orange) 100%);
    color: white;
    padding: 5rem 0;
}

footer {
    background-color: #1f2937;
    color: white;
    padding: 3rem 0;
    margin-top: 30px;
    max-width: 100% !important; 
}

footer a {
    color: #e5e7eb;
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-color);
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}



