/*-----------------------------------------------------------------------------------

    [Master Stylesheet]

    Project:    Websole
    
    Version:    1.0

-----------------------------------------------------------------------------------

    [Table of contents]
    
        01. header
        02. navbar
        03. btn
        04. hero-section
        05. get-a-quote
        06. heading
        07. shaps-img
        08. loading
        09. marquee
        10. presenting
        11. how-it-works
        12. video
        13. team-section
        14. accordion
        15. pricing-plans
        16. clients-section
        17. blog
        18. tag
        19. count-style
        20. footer
        21. widget-title
        22. all-rights
        23. scroll-percentage
        24. hero-section.for
        25. hero-section.two
        26. hero-section.three
        27. subscribe-text
        28. transition 

-----------------------------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&amp;display=swap');

:root {
    --bgcolor: #006400; /* Dark Green Background */
    --main-color: #54fa80; /* Lighter Green */
    --accent-color: #4CAF50; /* Accent Green */
}

body,html {
    font-family: "Inter";
    overflow-x: hidden;
    background-color: #121212; /* Dark background for the whole page */
    color: #fff; /* White text for contrast */
}

p {
    font-size: 16px;
    line-height: 28px;
    color: #444;
    margin: 0;
    font-weight: 400; 
}

* {
    margin: 0;
    padding: 0;
}

a,h2,h3,h4,h5,h6 {
    color: #000;
    margin: 0;
}

a {
    text-decoration: none;
    cursor: pointer;
}

h1 {
    font-size: 60px;
}

h2 {
    font-size: 60px;
}

h3 {
    font-size: 26px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

img {
    max-width: 100%;
}

.gap {
    padding: 120px 0;
}

.no-top {
    padding-top: 0;
}

.no-bottom {
    padding-bottom: 0;
}

ul {
    padding: 0;
    margin: 0;
}

li {
    display: block;
}

figure {
    overflow: hidden;
}

hr {
    margin: 0;
}

input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

/* 01. header */
.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #003300; /* Darker green for top-bar */
    padding: 32px 70px;
    border-radius: 32px;
}

.top-bar a {
    color: #fff;
    font-size: 18px;
}

/* 02. navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background-color: #003300; /* Dark Green Navbar */
}

.navbar-links li a {
    display: block;
    text-decoration: none;
    color: #b0b0b0; /* Light grey text */
    padding-bottom: 10px;
    padding-top: 10px;
}

.navbar-links li > a {
    border-bottom: 5px solid transparent;
    color: #fff;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 500;
}

/* 03. btn */
.btn {
    background-color: #003300; /* Dark Green Button */
    color: #fff;
    padding: 18px 65px;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
}

.button {
    background: #003300;
    border: none;
    padding: 1.5rem 3rem;
    font-size: inherit;
    display: inline-block;
    color: white;
}

/* 04. hero-section */
.hero-section {
    position: relative;
    padding-top: 187px;
    overflow: hidden;
    background-color: #006400; /* Dark Green background for hero section */
    background-repeat: no-repeat;
    padding-bottom: 70px;
}

.hero-text h2 {
    color: #fff; /* White color for the title */
    padding-bottom: 26px;
    line-height: 90px;
    font-weight: bold;
    font-size: 85px;
}

/* 05. get-a-quote */
.get-a-quote {
    z-index: 11;
    background-color: #003300; /* Dark Green background for quote section */
    padding: 40px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0px 30px 50px 0px rgb(0 0 0 / 55%);
    width: 94%;
    margin-left: auto;
}

.get-a-quote input[type="text"], .get-a-quote input[type="email"], .get-a-quote input[type="number"] {
    width: 100%;
    height: 60px;
    border: 0;
    outline: 0;
    margin-bottom: 20px;
    color: #fff; /* White text inside inputs */
    font-size: 16px;
    background-color: #003300; /* Dark Green background for inputs */
    border: 1px solid #006400; /* Dark Green border for inputs */
    border-radius: 18px;
    padding-left: 20px;
}

.get-a-quote input:focus {
    border-color: #4CAF50; /* Lighter green for focused inputs */
}

.get-a-quote .btn {
    width: 100%;
}

/* 06. heading */
.heading {
    text-align: center;
    width: 72%;
    margin: auto;
    margin-bottom: 40px;
}

.heading h2 {
    font-size: 70px;
    padding-top: 20px;
    font-weight: bold;
}

.heading span {
    font-weight: 500; 
    font-size: 18px;
    background-color: var(--main-color);
    padding: 5px 20px;
    display: inline-block;
    border-radius: 50px;
    color: #FFF;
}

.heading h5 {
    padding-top: 20px;
    font-weight: bold;
    font-size: 35px;
}

/* 07. shaps-img */
ul.shaps-img li {
    position: absolute;
}

ul.shaps-img li:nth-child(1) {
    top: 20%;
    left: 11%;
    animation: 8s rotate infinite;
}

ul.shaps-img li:nth-child(2) {
    top: 52%;
    left: 8%;
    animation: 10s toptop infinite;
}

ul.shaps-img li:nth-child(3) {
    bottom: 23%;
    left: 4%;
    animation: 10s toptop infinite;
}

ul.shaps-img li:nth-child(4) {
    bottom: 16%;
    left: 50%;
    animation: 10s rotate infinite;
}

ul.shaps-img li:nth-child(5) {
    bottom: 3%;
    right: 4%;
    animation: 10s leftleft infinite;
}

/* 08. loading */
.loading-text {
    font-size: 5vw;
    line-height: 64px;
    letter-spacing: 10px;
    margin-bottom: 32px;
    display: flex;
    justify-content: space-evenly;
}

.loading-text span {
    -webkit-animation: moveLetters 2.4s infinite ease-in-out;
            animation: moveLetters 2.4s infinite ease-in-out;
    transform: translatex(0);
    position: relative;
    display: inline-block;
    opacity: 0;
    color: #000;
    text-shadow: 0px 2px 10px rgba(46, 74, 81, 0.3);
}

/* 09. marquee */
.marquee-icon,
.marquee-box-one {
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}  

/* 10. presenting */
.presenting {
    display: flex;
    margin-top: 40px;
    width: 97%;
} 

.presenting i {
    width: 124px;
    height: 124px;
    background-color: var(--bgcolor);
    border-radius: 50%;
    margin-right: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 74px;
    border: 1px solid #7e8f83;
    outline: 8px solid var(--bgcolor);
    position: relative;
    z-index: 111;
} 

.presenting:hover i:before {
    z-index: 11;
    color: #fff;
}

/* 11. how-it-works */
.how-it-works {
    background-color: #f4f4f7;
    background-size: cover;
}

.heading.two {
    width: 100%;
    text-align: left;
    margin-bottom: 24px;
} 

.heading.two p {
    width: 78%;
    padding-top: 18px;
}

ul.chek li {
    padding-bottom: 12px;
    align-items: center;
    display: flex;
    font-size: 18px;
}

ul.chek li img {
    margin-right: 12px;
    width: auto;
    flex-shrink: 0;
    line-height: 1.4;
    height: auto;
    vertical-align: middle;
}

/* 12. video */
.video {
    position: relative;
    right: 0;
    text-align: center;
}

.video i {
    position: absolute;
    animation: shadow-pulse 1s infinite;
    width: 94px;
    height: 94px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: #fff 1px solid;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    color: #fff;
    font-size: 20px;
}

@keyframes shadow-pulse {
    0% {
        box-shadow: 0 0 0 0px rgb(255 255 255);
    }
    100% {
        box-shadow: 0 0 0 35px rgba(0, 0, 0, 0);
    }
}

/* 13. team-section */
.team-section {
    background-color: var(--main-color);
    position: relative;
}

.team-section .heading h2, .team-section .heading span, .team-section .heading p {
    color: #fff;
}

.team-section .heading span {
    border: 1px solid #fff;
}

.team img {
    border-radius: 50%;
    border: 9px solid #fff;
} 

.team {
    position: relative;
    padding-bottom: 20px;
    text-align: center;
}

.team:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 74%;
    background-color: #855ff1;
    right: 0;
    bottom: 0;
    border-radius: 30px;
} 

.team:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0%;
    background-color: #fff;
    right: 0;
    bottom: 0;
    border-radius: 30px;
} 

.team:hover:after {
    height: 74%;
}

.team figure {
    position: relative;
    margin-bottom: 30px;
    z-index: 22;
} 

.team span {
    position: relative;
    color: #fff;
    font-size: 18px;
    z-index: 22;
}

.team h4 {
    color: #fff;
    position: relative;
    font-size: 28px;
    padding-top: 8px;
    font-weight: bold;
    z-index: 10;
}

.team > a {
    position: relative;
    color: #fff;
    font-size: 18px;
    border: 1px solid #fff;
    display: flex;
    padding: 16px;
    width: 90%;
    margin: auto;
    border-radius: 20px;
    margin-top: 28px;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.team:hover span, .team:hover a, .team:hover h4 {
    color: #000;
}

.team:hover a {
    border: 1px solid #bfbfbf; 
}

.how-do-stap i {
    display: block;
}

.how-do-stap:hover i {
    animation: top-bottom 1s infinite;
}
