/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    background-color: #f1f5f8;
}

h1, h2, h4, h5 {
    font-family: 'Oswald', sans-serif;
    margin-bottom: 10px;
    margin-top: 10px;
    color: #021b27;
    line-height: 1.2;
}


h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 5px;
    color: #021b27;
}




p {
    font-size: 0.9rem;
    line-height: 1.6;
	margin-top: 10px;
	margin-bottom: 20px;
}

.green {
    color :#7ed957;
}


a, a:visited {
    color: #777; /*#777*/
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #527E39;
}

/* Navigation Styles */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    /*background: linear-gradient(to left, #002C49, #00ADEE);*/
    background: #021b27;
    padding: 10px 20px;
    color: white;
    border-bottom: 15px solid #7ed957;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1100px;
}

.navbar .logo img {
    width: 340px;
    height: 115px;
}

.navbar nav {
    flex-grow: 1;
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-left: auto;
}

.navbar li {
    margin: 0 15px;
}

.navbar a {
    color: white;
    font-weight: bold;
    font-family: 'Roboto', sans-serif; /* Change font to Roboto */
    font-size: 1.1rem; /* Increase font size */
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
}

.navbar a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: #7ed957;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.navbar a:hover::before {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.navbar a:hover {
    color: #7ed957;
}

/* Hero Section */
.hero {
    position: relative;
    height: 60vh;
    width: 100%;
    overflow: hidden;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom: 0px solid #7ed957;
    padding: 0 20px; /* Add padding to the left and right */
    box-sizing: border-box;
}

#bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures video covers the hero section */
    transform: translate(-50%, -50%);
    z-index: -2;
    background-size: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom right, rgba(0, 44, 73, 0.7), rgba(0, 44, 73, 0.5));
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1100px; /* Constrain width */
    padding: 0 20px; /* Add padding to the left and right */
}

.hero-content h1 {
    font-size: 3.0rem;
    margin-bottom: 10px;
    animation: fadeInUp 1.5s ease-in-out;
    font-family: 'Helvetica Neue', sans-serif; /* Dynamic font */
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(to right, #ffffff, #add8e6, #ffffff); /* Subtle gradient */
    -webkit-background-clip: text;
    color: transparent;

}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 5px;
    animation: fadeInUp 2s ease-in-out;
    font-family: 'Helvetica Neue', sans-serif; /* Dynamic font */
    letter-spacing: 0.8px;
   color:#fff;
}

.hero-banner {
    width: 50%;
    height: 50%;
    margin-bottom: 40px;
    border-radius: 8px;
}



@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-button {
    display: inline-block;
    background-color:#7ed957; /*#f3650a*/
    /*background:url(../test/images/efundsolutions-banners-01.jpg) center no-repeat;*/
    color: white !important;
    padding: 10px 20px 10px 20px;
    border-radius: 10px; /*25px*/
    font-size: 1.2rem;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    margin: 0px auto;
    /*width: auto; 484px*/
    /*height: auto; 84px*/
}

.cta-button:hover {
    background-color: #527E39;
    transform: translateY(-2px);
}



    
 /*********************************** 
 
Responsive Column with Flex - Global Style 

 ***********************************/ 
 
 
/* Container for flexboxes */
.row {
  display: flex;
  flex-wrap: wrap;
}



/* Create four equal columns */
.column {
  flex: 25%;
  padding: 20px;
}



/* On screens that are 1024px wide or less, go from four columns to two columns */


@media screen and (max-width: 1024px) {
  .column {
    flex: 100%;
   /* margin: 0px;*/
  }

   .hero-content h1 {
        font-size: 2.0rem;
    }


}



/* On screens that are 801px wide or less, go from four columns to two columns */

@media (max-width: 801px) {
    .navbar {
        flex-direction: column;
        align-items: center;
    }

    .navbar .logo {
        margin-bottom: 10px;
        text-align: center;
    }

    .navbar ul {
        flex-direction: column;
        align-items: center;
    }

    .navbar li {
        margin: 5px 0;
    }

    .hero-content h1 {
        font-size: 2.0rem;
    }

    .hero-content p {
        font-size: 1.5rem;
    }
  

    
.how-it-works p {
    font-size: 0.7rem;
    line-height: 1.2;
	margin-top: 10px;
	margin-bottom: 20px;
}

.cta-img-salesperson {
width: 50%;

}

}

/* On screens that are 640px wide or less, make the columns stack on top of each other instead of next to each other */

@media screen and (max-width: 640px) {
  .row {
    flex-direction: column;
  
  }
  
  .hero-content h1 {
        font-size: 1.8rem;
    }
    
      .hero-content p {
        font-size: 1.0rem;
        line-height: 1.2;
        margin-bottom: 0px;
    }

.hero-banner {
    width: 100%;
    margin-bottom: 20px;
  
}



  
} 

/* On screens that are 390px wide or less, go from four columns to two columns */

@media screen and (max-width: 390px) {
  .row {
    flex-direction: column;
  
  }
  
  .hero-content h1 {
        font-size: 1.2rem;
    }
    
 
 .get-prequalified-banner-01 {
    width: 100%;
    margin: 20px auto;
    border-radius: 8px;
  
}   
    
.navbar .logo img {
   width: 80%;
   height: auto;
  
}
.panel {
  padding: 0 18px;
	height: Auto; 
	
}
    
}


  



 
  /*********************************** 
 
FOUNDATION BLOCKS AND SECTIONS - Global Style 

 ***********************************/ 
 
.block {
    padding: 10px auto;
    margin: 10px auto;
    max-width: 1100px;
}

.block h2 {
    
    margin: 10px auto;
    line-height: 1.2;
    font-size: 2rem;
}



.column1 {
    padding: 20px;
    background: #f1f5f8;
    margin: 10px auto;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
 
}




section {
    padding: 20px 20px;
    background: white;
    margin: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    max-width: 1100px;
    margin: 30px auto;
}

section h2 {
    margin: 30px auto;
    line-height: 1.2;
    font-size: 2rem;
}


section h4 {
    margin: 30px auto;
    line-height: 1.2;
    font-size: 1.5rem;
    text-align: left;
    font-size: 1.5rem;
}



section ul {
    margin-left: 20px;
    margin-top: 20px;
    margin-bottom: 20px;

}


section ul li {
    padding-top: 10px;
    list-style-image: url('../test/images/bullet-square-green.png');
    list-style-position: outside;
    font-size: 0.9rem;

}



  /*********************************** 
 
Images/Buttons CSS - Global Style 

 ***********************************/ 

.img-icon {
  margin: auto;
  width: 30%;
    
}

/* How it works section */

.img-bg-01 {
 
  padding: 120px 10px 100px 50px;
 
  background: url(../test/images/img-how-it-works-bg.png);
  width: 100%;
  height: 95%;
  background-repeat: no-repeat;
 
}

.how-it-works p {
    font-size: 0.9rem;
    line-height: 1.5;
	margin-top: 0px;
	margin-bottom: 10px;
}

.cta-button-02 {
    
    display: inline-block;
    background-color:#7ed957; /*#f3650a*/
    /*background:url(../test/images/efundsolutions-banners-01.jpg) center no-repeat;*/
    color: white !important;
    padding: 10px 20px 10px 20px;
    border-radius: 10px; /*25px*/
    font-size: 1.2rem;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    margin: 5px;
    width: 100%; /*484px*/
    /*height: auto; 84px*/
}

.cta-button-02:hover {
    background-color: #527E39;
    transform: translateY(-2px);
}

 /**********************************************************************/ 

/* partnership Sections*/



.partnership-text-box {
    
    float: left; 
    width: 62%;

}



.partnership-button {
    display: inline-block;
    background-color:#fff; 
    color: #021b27 !important;
    padding: 5px 10px 5px 10px;
    border-radius: 20px; /*25px*/
    font-size: 0.8rem;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    /*width: auto; 484px*/
    /*height: auto; 84px*/
}

.partnership-button:hover {
    background-color: #527E39;
    transform: translateY(-2px);
}

/* About Sections */

.about {
    text-align: center;
}


/* Approach Sections */

.panel {
  padding: 0 18px;
	height: 600px;
  /*display: none;*/
  background-color: white;
  overflow: hidden;
}

.panel-header {
    
  background-color: #021b27;
  padding: 20px 20px 10px 20px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  border-radius: 0px; 
}
	
.panel-header h3 {
      color: #fff;
	}

.img-truck {

margin: 10px auto; 
float: right; 
width: 100%;
}



.get-prequalified-banner-01 {
    width: 80%;
    margin: 20px auto;
    /*border-radius: 8px;*/
  
}

.get-prequalified-banner-01:hover {
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    transform: translateY(-2px);
}


.get-prequalified-banner-02 {
    width: 100%;
    margin: 20px auto;
    /*border-radius: 8px;*/
  
}

.get-prequalified-banner-02:hover {
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    transform: translateY(-2px);
}





/* purchase-now Sections */





/* Testimonials Section */

.testimonials {
    background: #fff;
    padding: 50px 20px;
}

.testimonial-item {
    background: #f1f5f8;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}


.testimonial-name {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #021b27;
    font-style: italic;
}




/* Call-to-Action Section */


.cta-section {
    background: #021b27;
    color: white;

}


.cta-section h2 {
    color: #fff;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8);
    font-size: 2.25rem;
    margin-bottom: 20px;
}

.get-prequalified-banner-03 {
    
    width:100%;
    margin 0px 0px 30px 0px;
    /*border-radius: 8px;*/
}

.get-prequalified-banner-03:hover {
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    transform: translateY(-2px);
}



.get-prequalified-banner-04 {
    
    width:100%;
    margin 0px 0px 30px 0px;
    /*border-radius: 8px;*/
}

.get-prequalified-banner-04:hover {
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    transform: translateY(-2px);
}

.cta-img-salesperson {
width: 90%;
}


/* Services Grid */


.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-item {
    background: linear-gradient(to bottom right, #f9f9f9, #e6e6e6);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #002C49;
}

.service-item h3 {
    margin-bottom: 15px;
}







/* Footer Styles */
footer {
    background-color: #021b27; /*#002C49*/
    color: white;
    text-align: center;
    padding: 20px 0;
}

footer ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

footer li {
    display: inline;
    margin: 0 15px;
}

/* Additional CSS for Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    justify-items: center;
    text-align: center;
}

.team-member img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
}

.service-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.service-item {
    background: linear-gradient(to bottom right, #f9f9f9, #e6e6e6);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Additional CSS for Contact Form */

.contact-info, .contact-form {
    padding: 50px 20px;
    background: white;
    margin: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
	margin: 10px auto;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.detail-item {
    text-align: center;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form label {
    font-weight: bold;
}

.contact-form input, .contact-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    align-self: flex-start;
}

/* Additional CSS for Privacy Policy */

.privacy-policy h2 {
   font-size: 2.5rem;
}

.privacy-policy h3 {
   font-size: 1.2rem;
   font-weight: 700;
   margin-top: 30px;
}


.privacy-policy h4 {
   font-size: 1.7rem;
}


.privacy-policy h5 {
   font-size: 1.5rem;
   margin-top: 30px;
}

.privacy-policy p {
	margin-top: 10px;
	margin-bottom: 10px;
}


.privacy-policy section ul {
    margin-top: 0px;
    margin-bottom: 0px;

}

.privacy-policy section ul li {
    padding-top: 0px;
     margin-top: 0px;


}