/* =====================================
Template Name: 	Landing Page.
Author Name: Dhaneshkumar Solanki
Website: http://wpthemesgrid.com/
Description: Webpage Template .
Version:	1.1
========================================*/   
/*======================================
[ CSS Table of contents ]
reset css
    all
    h1
    img
master-css
    flex
    grid
loader
    loader-background
    loader-box
header
    header-top
    header-middle
        header-middle-logo
        header-middle-menu
        header-middle-action
footer
    footer-top
    footer-middle
        footer-middle-logo
        footer-middle-menu
        footer-middle-action
    footer-bottom
banner
    banner-slider
    banner-dots
    banner-navigation

  */
@import url(style.css);
:root{

    
    --seasalt: #f8f9f8ff;
    --ash-gray: #bec7bbff;
    --dark-spring-green: #0a723bff;
    --white: #ffffffff;
    --white-smoke: #f4f2f1ff;

    --forest-green: #048333ff;
    --forest-green-2: #4D992Eff;
    --white-smoke: #F4F2F2ff;
    --gold-metallic: #E3BD47ff;

    /* --primary-color-dark: #95C623;
    --primary-color-light: #29ce3f; */
    --primary-color-dark: #0a723bff;
    --primary-color-light: #29ce3f;
    --secondary-color-accent: #f4f2f1ff;
    --secondary-color-main: #FFE492;
    --secondary-color-dark: #212529;

    --container-padding: 20px 40px;
    --flex-padding: 0 40px;
    --grid-padding: 40px ;
    --header-padding: 0 20px;
    --footer-padding:10px 20px
}
/* Reset All CSS */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box ;
    
}
ul{
    list-style: none !important;  
}
a{
    text-decoration: none !important;
}
button:hover,
a:hover{
    transform: translateY(-5%);
}
/* Strutcure Main CSS */
html
{
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: 50px;
}
body{
    font-family: 'Inter', sans-serif;
    color: var(--text-color-dark);
    scroll-behavior: smooth;
    position: relative;
}
h1, h2, h3, h4, h5, h6{
    font-weight: 600;
    line-height: 1.2 !important;
}
p{
    font-weight: 400 ; 
    line-height: 1.6 !important;
    
}
img{
    background-color: lightgrey !important;
    text-align: center;
}
input:invalid,
  textarea:invalid,
  select:invalid {
    border: 2px solid red;
    
  }

  input:valid,
  textarea:valid,
  select:valid {
    border: 2px solid green;
  }

  input:required:invalid {
    outline: none;
  }

  input:focus:invalid {
    border-color: #ff0000;
    box-shadow: 0 0 5px red;
  }
  main
  {
    
  }
/* ==================MASTER CSS FOR WEBSITE========================================================= */
.page-section
{
    
    height: 100%;
    min-height: 100px;
    max-width: 100%;
}
/* Flex for All Pages */
.page-flex-container{
    display: flex;
    flex-wrap: wrap;
    align-items: top;
    width: 100%;
    
}
.flex-1{
    width: 100%;
}
.flex-1-2{
    width: 50%;
    
}
.flex-1-3{
    width: 33.3%;
}
.flex-1-4{
    width: 25%;   
}
.flex-2-3{
    width: 30%;
}
.flex-2-7{
    width: 70%;
}
.flex-2-4{
    width: 40%;
}
.flex-2-6{
    width: 60%;
}

/* GRID for All Pages */
.page-grid-container
{
    display: grid;
    
    width: 100%;
}

.grid-item
{
    width: 100%;
    min-height: 100px;
   
}
.grid-2
{
    grid-template-columns: repeat(2,1fr) !important;
    gap: 20px;
}
.grid-3
{
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}
.grid-4
{
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}
.grid-5
{
    grid-template-columns: repeat(5,1fr);
     gap: 20px;
}
.gap-2
{
    gap: 50px;
}

/* Table for All Pages */

.page-table-container
{
    display: table;
    width: 100%;
    
}
.page-table-container h2{
    font-size: 1.8rem;
    padding: 0 4px;
    margin-bottom: 5px;
}
.page-table-container p{
     font-size: 0.95rem;
     font-weight: 400;
     margin-bottom: 10px;
     padding: 0 4px;
}

.page-table-container table
{
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--ash-gray);
}
.page-table-container table thead
{
   
}
.page-table-container table tbody
{
    
}
.page-table-container table tbody tr
{
    
    border-bottom: 1px solid var(--primary-color-dark);
}
.page-table-container table tbody tr:nth-of-type(even)
{
    background-color: var(--white-smoke);
}
.page-table-container table tbody tr th,
.page-table-container table thead tr th
{
    padding: 6px 12px;
    font-size: 1rem;
    color: white;
    font-weight: 400;
    border: 1px solid var(--seasalt);
     background-color: var(--primary-color-dark);
     
}

.page-table-container table tbody tr td
{
    padding: 8px 12px;
    font-weight: 300;
    font-size: 0.95rem;
    border: 1px solid var(--ash-gray);
    
    
    
    
}
/* FROM for All Pages */
.page-form-container
{
    width: 100%;
    background-color: var(--secondary-color-accent);
    padding: 10px;
}
.page-form h2
{
    font-size: 1.8rem;
    padding: 0 4px;
    margin-bottom: 5px;
}
.page-form p
{
     font-size: 0.95rem;
     font-weight: 400;
     margin-bottom: 10px;
     padding: 0 4px;
}
.page-form span
{
     font-size: 0.9rem;
     font-weight: 400;
     padding: 0 4px;
    line-height: 1.8;
}

.page-form
{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
    padding: 8px 8px;
}
.page-form .form-row
{
    display: flex;
    
}
.form-column-radiobox-flex,
.form-column-buttons,
.form-column-checkbox
{
    display: flex;
    gap: 10px;
    align-items:center;
    padding: 8px;
    
}
.form-column-radiobox input,
.form-column-checkbox input
{
    height: 20px;
    width: 20px;
}
.form-column-buttons button
{
    padding: 12px 16px;
    min-width: 180px;
    border: none;
    background-color: var(--primary-color-dark);
    color: white;
    font-size: 1rem;
    border-radius: 6px;
}
.form-column
{
    display: block;
}
.page-form .form-row .form-row-box
{
   
    width: 50%;
    
}
.page-form .form-column .form-column-box
{
    
    width: 100%;
     
   
}

input[type="file"]
{
    background-color: white;
    padding: 8px !important;
    height: 40px !important;
}

.form-column-radiobox,
.page-form .form-row .form-row-box,
.page-form .form-column .form-column-box
{
    padding: 4px 8px;
    gap: 4px;
    display: flex;
    flex-direction: column;
    
}

.form-column-radiobox label,
.form-column-checkbox label,
.form-column-radiobox-item span,
.page-form .form-row .form-row-box label,
.page-form .form-column .form-column-box label{
    font-weight: 400;
    font-size: 0.9rem;
}
.page-form .form-row .form-row-box textarea,
.page-form .form-column .form-column-box textarea
{
    width: 100%;
    border-radius: 4px;
    border: 1px solid var(--primary-color-dark);
    padding: 6px 8px;
    font-size: 0.95rem;
    font-weight: 400;
}
.page-form .form-row .form-row-box input,
.page-form .form-column .form-column-box input
{
    padding: 6px 8px;
    border-radius: 4px;
    border: 1px solid var(--primary-color-dark);
    font-size: 0.95rem;
    font-weight: 400;
}
.page-form .form-column .form-column-box select,
.page-form .form-row .form-row-box select
{
    padding: 6px 8px;
    border-radius: 4px;
    border: 1px solid var(--primary-color-dark);
    font-size: 0.95rem;
    font-weight: 400;
}

.form-column-radiobox-item
{
    
    display: flex;
    align-items: center;
    justify-content: center;
}
/* ================================================================================================= */
/* Preloader for All Page */
.loading-overlay
{
   position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color:var(--primary-color-dark);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;

}
.loader
{
    color: white;
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
   
}
.loader h1
{
    color: white;
    font-size: 2.5rem;
    
    line-height: 0.9;
     text-align: center;
     letter-spacing: 0.09em;
     font-weight: 700;
     margin-bottom: 8px;
    text-transform: uppercase;
     padding: 0;
}
.loader h6{
    font-size: 1.2rem ;
    letter-spacing: 0.13em;
    font-weight: 500;
     text-align: center;
     text-transform: uppercase;
    
      
      
}
.loader .loader-dots
{
    position: relative;
    width: 100%;
   
    display: flex;
    gap: 50px;
    justify-content: center;
    padding: 0 8px;
   
}
 .loader .loader-dots span
 {
    height: 30px;
    width: 30px;
    background-color: white;
    border-radius: 50%;
    animation: slideInOut 2s ease-in-out infinite;
    opacity: 0;
    transform: translateX(-130px);
    position: relative;
 }

 .loader-dots span:nth-child(1) {
  animation-delay: 0s;
}

.loader-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.loader-dots span:nth-child(3) {
  animation-delay: 0.4s;
}
.loader-dots span:nth-child(4) {
  animation-delay: 0.6s;
}




@keyframes slideInOut {
  0% {
    opacity: 0;
    transform: translateX(-150px);
  }
  25% {
    opacity: 1;
    transform: translateX(0);
  }
  75% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(150px);
  }
}

/* Header */
/* Header  */
header
{
    background-color: white;
    height: auto;
}
/* Header Top */
.header-top
{
    background-color: var(--primary-color-dark);  
    display: flex;
    align-items: center; 
    padding: 0 15px;
    color: white !important;
    justify-content: space-between;
}
.header-top-left
{
    width: 85%;
    height: 100%;
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 6px;
}
.header-top-left a 
{
    display: flex;
    gap: 10px;
   color: inherit;
    align-items: center;
    font-weight: 300;
    justify-content: center;
    
}
.header-top-left a::after
{
    content: '';
    width: 1px;
    height: 20px;
    background-color: white;
    margin-left: 10px;
}
.header-top-left a i
{
    font-size: 1.2rem;
     display: flex;
     align-items: center;
     justify-content: center;
}
.header-top-left a span
{
    font-size: 0.85rem;
    font-weight: 400;
    color: inherit;
}
.header-top-right
{
    display: flex;
    justify-content: end;
    align-items: center;
    width: 15%;
    height: 100%;
    gap: 30px;
    padding: 6px;
    
}
.header-top-right a
{
   
    font-size: 1.1rem;
    color: inherit;
}



/* Header middle */
.header-middle
{
    width: 100%;
    display: flex;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: start;
    padding: 0 15px;
    height: auto;
    gap: 10px;
}
.header-middle-left
{
    width: 20%;
    display: flex;
    position: relative;
    
}
.header-middle-right
{
    
    width: 15%;
    display: flex;
    position: relative;
    
}
.header-middle-left-logo
{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}
.header-middle-left-logo img
{
    height: 60px;
    object-fit: contain;
    width: 100%;
    background-color: transparent !important;
}

.header-middle-right-action{
    width: 10%;
    display: flex;
    justify-content: start;
    padding: 0 0;
    gap: 10px;
    
}
.header-middle-right-action>a
{
    width: 100%;
    padding: 8px 16px;
    background-color: var(--primary-color-dark);
    font-size: 0.9rem;
    color: white;
    border-radius: 4px;
    text-align: center;
}
.header-middle-menu
{
    width: 75%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    
}
.middle-menu-item
{
    
    padding: 6px 8px;
    color: var(--text-color-dark, #333);
    border-radius: 4px;
    position: relative;
    
}
.middle-menu-item a {
    color: inherit;
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    display: flex;
    justify-content: space-between;
    text-transform: capitalize;
    
}
.middle-menu-item:hover,
.header-middle-menu .menu-active
{
     background-color: var(--white-smoke);
    color: var(--dark-spring-green) !important;
    font-weight: 600;
     box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
     
}

.has-dropdown>a::after
{
    position: relative;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 16px;
    left:  4px;
    vertical-align: middle;
    top: 2px;
    margin-right: 5px;
    
}

.has-subdropdown>a::after
{
    
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 16px;
    right: -15px;
    vertical-align: middle;
    margin-right: 10px;
    
}


.dropdown-content {
    
    position: absolute;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 999;
    flex-direction: column;
    top: 90%;
    left: 0;
    flex-direction: column;
     background-color: var(--white);

}
.subdropdown-content{

    position: absolute;
    min-width: 220px;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 999;
    flex-direction: column;
    left: 100%;
    top: 0;
     background-color: var(--white);
}


.subdropdown-content a,
.dropdown-content a {
    padding: 10px 12px;
    display: block;
    font-size: 0.85rem;
    color: var(--text-color-dark, #333);
    text-decoration: none;
    border: none;
    width: 100%;
    text-wrap: nowrap;
    display: flex;
    justify-content: space-between;
    
}
.dropdown-content a:hover
{
    background-color: var(--ash-gray);
}

.has-dropdown .dropdown-content
{
     display: none; 
}
.has-subdropdown .subdropdown-content
{
     display: none; 
}
.has-dropdown:hover>.dropdown-content
{
    display: flex;
}
.has-subdropdown:hover>.subdropdown-content
{
    display: flex;
}
.subdropdown-content a,
.dropdown-content .dropdown-item
{
    position: relative;
    border-bottom: 1px solid var(--ash-gray);
}

.subdropdown-content a:last-child,
.dropdown-content .dropdown-item:last-child
{
    border: none;
}
/* ========================================================================= */
/* Footer Style */
footer
{
    margin-top: 100px;
    padding-top: 120px;
    background-color: var(--secondary-color-dark);
    position: relative;
}
.footer-back-to-top
{
    position: absolute;
    height: 50px;
    width: 50px;
    top: -23px;
    right: 5%;
    z-index: 3;
    background-color: var(--primary-color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transform: rotate(45deg);
}
.footer-back-to-top i
{
    transform: rotate(315deg);
}

.footer-top
{
    position: absolute;
    top: -10%;
    left: 3%;
    
    background-color: var(--primary-color-dark);
    width: 80%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    border-radius: 10px;
    color: white;
    padding: 40px 20px;
}
.footer-top h2
{
    color: white;
    font-size: 2rem;
    margin-bottom: 10px;
}
.footer-top p
{
    color: white;
    font-size: 1rem !important;
}
.footer-top a
{
    padding: 10px;
    border: 2px solid white;
    border-radius: 8px;
    background-color: var(--secondary-color-light);
    text-decoration: none;
    color: white;
    font-weight: 400;
    width: 30%;
    text-align: center;
}
.footer-top-info
{
    width: 70%;
}
/* ============================================ */
.footer-middle
{
    display: flex;
    padding: 25px;
    
}

.footer-middle-left
{
    display: inline-block;
    width: 30%;
    height: 100%;
    min-height: inherit;
    padding: 12px 40px 0 8px;
}
.footer-middle-left-logo
{
    height: 120px;
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    padding: 8px;
    background-color: white;
}
.footer-middle-left-logo img
{
    height: 100%;
    width: 100%;
    object-fit: fill;
    
}
.footer-middle-left p
{
    color: white;
    text-align: left;
    margin-bottom: 8px;
    font-weight: 300 !important;
    font-size: 0.9rem;
}
.footer-middle-left h2
{
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    text-align: left;
    letter-spacing: 0.25em;
    text-justify: distribute-all-lines;
    line-height: 1.3;
    
}
.footer-middle-left-social
{
   
    width: 100%;
    padding: 8px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}
.footer-middle-left-social a
{
    color: white;
    font-size: 1.5rem;
    padding: 0 10px;
}


.footer-middle-center{
    display: inline-flex;
    width: 50%;
    height: 100%;
    min-height: inherit;
    padding: 15px 5px;
    color: white;
    justify-content: space-between;
   

}
.footer-middle-center-links
{  
    padding: 0 15px 0 0;
    width: auto;
    
    
}
.footer-middle-center-links:nth-child(3)
{
}
.footer-middle-center h2
{
    color: white;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 15px;
    text-transform: capitalize;
    text-decoration: underline;
    text-underline-offset: 10px;
    
}
.footer-middle-center-links ul
{
    display: flex;
    flex-direction: column;
    gap: 8px;
  
  
  margin-bottom: 25px;
}
.footer-middle-center-links ul li
{
    
    font-size: 0.9rem;
    font-weight: 300;
    padding: 6px 0;
    
    position: relative;
    

}
.footer-middle-center-links ul li a
{
     color: white;
    font-weight: 300 !important;
    font-size: 0.85rem;
    
    position: relative;
    
    white-space: nowrap;
    
}
.footer-middle-center-links ul li a::before
{
    position: relative;
    content: '\f054';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: inline-block;
    margin-right: 10px;
    color: var(--secondary-color-light);
    font-size: 0.7rem;
}





.footer-middle-right
{
    display: inline-block;
    width: 30%;
    height: 100%;
    color: white;
    padding: 12px 14px;
    
}
.footer-middle-right h3
{
     color: white;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 5px;
    text-transform: capitalize;
}
.footer-middle-right p
{
    margin-bottom: 10px;
     color: white;
    font-size: 0.9rem;
    font-weight: 300;
}

.footer-middle-right ul
{
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 10px;
     
}
.footer-middle-right ul li
{
    display: flex;
    color: white;
    font-size: 0.95rem;
    font-weight: 300;
    text-align: center;
    align-items: center;
    gap: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--secondary-color-accent);
}
.footer-middle-right ul li:last-child{
    border: none;
}
.footer-middle-right ul li i
{
    font-size: 1.2rem;
    color: var(--secondary-color-light);
    width: 10%;
    
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-contact-info
{
   
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    margin-left: 8px;
}
.footer-contact-info label
{
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
    letter-spacing: 0.05em;
    font-size: 0.95rem;
    

}
.footer-contact-info span
{
     color: white;
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: 5px;
    font-style: normal;
   
    line-height: 1.4;

}

/* ============================================ */
.footer-bottom
{
    min-height: 50px;
    padding: var(--padding-footer);
    border-top: 1px solid var(--secondary-color-accent);
    display: flex;
    background-color: var(--primary-color-dark);
}

.footer-bottom-left,
.footer-bottom-right
{
    width: 40%;
    height: 100%;
    min-height: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    font-weight: 200;
}
.footer-bottom-count
{
    width: 20%;
    
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
     color: white;
    font-size: 1rem;
    font-weight: 200;
}
/* ================================================ */
section
{
     
    padding: 40px 40px 60px 40px;
    background-color: var(--secondary-color-light);
    display: flex;
    flex-wrap: wrap;
    
}
.section-info-half
{
    
    width: 50%;
   
}
.section-info
{
    position: relative;
    display: block;
    
    width: 100%;
   
}
.section-info span
{
    color: var(--primary-color-dark);
    font-size: 1.1rem;
    font-weight: 600;
    
    position: relative;
    padding-left: 40px; /* space for the line */
}
.section-info span::before
{
    content: '';
    position: absolute;
    top: 50%;
    left: -8%;
    width: 50px;
    height: 5px;
    background-color: var(--primary-color-dark);
    transform: translateY(-50%);
   
}


.section-info h1
{
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
    margin-top: 8px;
    color: var(--primary-color-dark);
    width: fit-content;
    padding: 0 25px 5px 0;
    line-height: 1.2;
    border-bottom: 5px solid var(--primary-color-dark);
    font-family: Georgia, 'Times New Roman', Times, serif;
}
.section-info p
{
    font-size: 0.95rem ;
    line-height: 1.5 ;
    color: var(--text-color-dark);
    margin-bottom: 15px;
}



/* Hero Banner Style */
.banner-container {
  max-width: 100%;
  overflow: hidden;
  position: relative;
  margin: auto;
  
}

.banner-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  position: relative;
}

.banner-slide {
  min-width: 100%;
  height: 90vh; /* Adjust height based on header */
  scroll-snap-align: start;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.banner-slide:nth-child(1) {
    background-color: red;
}

.banner-slide:nth-child(2) {
    background-color: blue;
}
.banner-slide:nth-child(3) {
    background-color: green;
}

.banner-slide::after
{
    content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6); /* black with 60% opacity */
  z-index: 1;
}
.banner-slide:nth-child(2)::after
{
    display: none;
  
}

/* Arrows */
.carousel-btn {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 5px 10px;
  cursor: pointer;
  z-index: 10;
}

#prevBtn { left: 10px; }
#nextBtn { right: 10px; }

/* Indicators */
.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
}
.carousel-indicators button {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  border: none;
  cursor: pointer;
}

.carousel-indicators button.active {
  background: rgba(255,255,255,1);
}

.banner-block
{
    position: absolute;
    top: 40%;
    padding: 20px 60px;
    z-index: 2;
}
.banner-flex
{
    position: absolute;
    top: 20%;
    padding: 20px 60px;
    z-index: 2;
    display: flex;
}
.banner-img
{
    position: relative;
    width: 50%;
    gap: 20px;
}
.banner-img .main-banner-image{
    height: 300px;
    border: 10px solid white;
    width: 100%;
}
.banner-img .float-banner-image
{
    position: absolute;
    height: 150px;
    border: 10px solid white;
    width: 250px;
    top: 70%;
    right: 10%;
}
.banner-text
{
    color: white;
}

.banner-text h1
{
    font-size: 3rem;
    color: white;
    margin-bottom: 5px;
    font-weight: 800;
}
.banner-text h1 span{
    font-size: 2.9rem;
    font-weight: 800;
}
.banner-text h2
{
    font-size: 2.5rem;
    color: white;
    margin-bottom: 5px;
    font-weight: 800;
}
.banner-text h2 span{
    font-size: 2.5rem;
    font-weight: 800;
}
.banner-text p
{
    font-size: 1rem !important;
    margin-bottom: 20px;
    font-weight: 500 !important;
    padding: 0 20px 0 0;
}
.banner-buttons
{
  
   display: flex;
   gap: 30px;
    
}
.banner-buttons a
{
    width: 200px !important;
    padding: 10px 18px !important;
    color: white;
    font-size: 1.2rem !important;
     border: 1px solid white !important;
     border-radius: 8px;
     text-align: center;
}
.banner-buttons a:nth-child(1)
{
    background-color: var(--secondary-color-accent);
    color: black;
}

/* ============================================ */
/* Banner Features */

.section-banner-features
{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 20px;
    padding: 60px 40px;
   background-color: var(--secondary-color-light);
}
.banner-feature
{
    
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%; 
    border-radius: 8px;
    box-shadow: 6px 8px 6px rgba(0, 0, 0, 0.3);
    height: fit-content;
}
.banner-feature img
{
    width: 100%;
    height: 130px;
    border-radius: 8px 8px 0 0;
    padding: 8px;
    object-fit: contain;
    background-color: transparent !important;
}
.banner-feature p
{   width: 100%;
    padding: 8px;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    text-transform: uppercase;
    color: var(--secondary-color-dark);
    background-color: var(--white-smoke);
}


/* Banner Section */








