
body {
    font-family: 'Readex Pro', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    scroll-behavior: smooth;
}

header {
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header nav {
    position: fixed !important;
    top: 0;
    width: 100%;
    left: 0;
    background:rgba(0,0,0,0.8);
    color: #fff;
    
    text-align: center;
    z-index: 1000;
}
.navbar-brand{
    color: #ffcc00;
}
nav a.nav-link {
    color: #fff !important;
    text-decoration: none;
    margin: 0 20px;
    padding: 1em 1rem;
    font-size: 18px;
    transition: all 0.3s;
}

nav a:hover {
    color: #ffcc00 !important;
}
nav ul li {
    position: relative; /* Ensures proper positioning for the pseudo-element */
}

nav ul li a::after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 3px;
    background: #ffcc00;
    position: absolute;
    left: 0;
    bottom: 0;
    visibility: hidden;
    transition: all 0.3s; /* Optional smooth effect */
}

nav ul li a:hover::after {
    visibility: visible;
    width: 100%;
}
section {
    min-height: 100vh;
    padding: 80px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.navbar.sticky ul li a{
    color: #333 !important;
    padding:0.75rem 1rem;
}
.navbar-toggler-icon svg{
    fill: #ffffff;
}
header .navbar.sticky{
    background: #ffffff;
}
.hero {
    background: url('../images/banner-img.jpg') no-repeat center center/cover;
    color: white;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 60px;
    margin: 0 0 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.hero p {
    font-size: 26px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.btn {
    padding: 12px 25px;
    background: #ffcc00;
    color: #333;
    font-weight: bold;
    border: none;
    cursor: pointer;
    margin: 10px;
    border-radius: 5px;
    transition: background 0.3s, transform 0.2s;
}

.btn:hover {
    background: #ffdd33;
    transform: translateY(-3px);
}
section#about{
    padding: 100px 0 !important;
    display: block;
    min-height: auto;
    background: #ffffff;
}
#about .about-section-img img{
    width: 100%;
}
.feature{
    padding:25px;
    margin:0 !important;
}
section#features, section#how-it-works {
    display: block !important;
    min-height: auto !important;
}
.feature{
    background: #fff;
    margin: 15px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.feature i{
    font-size: 60px;
    color: #ffcc00;
}
.feature:hover{
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.feature h3, .step h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 22px;
}
#how-it-works,
#counter-section{
    padding-top:100px !important;
    padding-bottom: 100px;
    background:#ffcc00c9;
    text-align: left;
}
#counter-section{
    background: #ffffff;
    min-height: auto !important;
}
.step i{
    font-size: 90px;
}
.stats .step{
    padding: 10px;
    min-height: 40px;
    border: 3px solid #ffcc00;
    background:#f7f7f7;
}
.stats .step h3{
    font-size: 30px;
    font-weight: 600;
}
/* General Section Styles */
#counter-section {
    background: #f9f9f9;
    padding: 50px 20px;
}

#counter-section h2 {
    font-size: 2em;
    color: #333;
    margin-bottom: 30px;
}

.counter {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #ffcc00;
    transition: transform 0.3s ease-in-out;
}

.counter h3 {
    font-size: 3em;
    color: #ffcc00;
    margin: 0;
    font-weight: bold;
}

.counter p {
    font-size: 1.2em;
    color: #333;
    margin-top: 10px;
    text-transform: uppercase;
}

.counter:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
/* Full-width contact section */
.contact-section {
    background: #ffffff;
    
}

.contact-section h2 {
    font-size: 2.5em;
    font-weight: bold;
    color: #333;
}

.contact-section p {
    font-size: 1.2em;
    color: #555;
}

/* Form styling */
form label {
    font-weight: bold;
    color: #555;
    text-align: left !important;
    display: block;
}

form input, form textarea {
    border: 1px solid #ddd;
    border-radius: 50px; /* Rounded borders */
    padding: 12px 15px;
    height: 50px;
    width: 100%;
    box-sizing: border-box;
    font-size: 1em;
    background: #fff;
    transition: box-shadow 0.3s ease;
}
form textarea{
    height: auto;
}
form input:focus, form textarea:focus {
    box-shadow: 0 0 10px #ffcc0070;
    border-color: #ffcc00;
    outline: none;
}

form button {
    background: #ffcc00;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 30px; /* Rounded button */
    cursor: pointer;
    font-size: 1.1em;
    transition: background 0.3s ease;
}

form button:hover {
    background: #ffcc00;
}

/* Map styling */
iframe {
    border: none;
    height: 100%;
}
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 25px 0;
    font-size: 14px;
}

footer a {
    color: #ffcc00;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

@media(min-width:768px) and (max-width:992px){
    .features .col-sm-3{
        max-width: 50%;
        flex: 0 0 50%;
    }
    .features .feature{
        margin:0 0 25px 0 !important;
    }
    #how-it-works{
        padding-left: 5%;
        padding-right: 5%;
    }
    .step i{
        font-size: 50px;
    }
    #counter-section .col-sm-3{
        max-width: 50%;
        flex: 0 0 50%;
    }
    .counter{
        margin:0 0 25px 0;
    }
}
@media (max-width: 768px) {
    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 18px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 16px;
    }
    .navbar.navbar-expand-lg{
        padding: 10px 0 !important;
    }
    header .navbar.sticky svg{
        fill: #ffcc00;
    }
    .features .col-sm-3,#about .col-sm-5,
    #about .col-sm-6,
    .how-it-works .col-sm-3,
    .how-it-works .col-sm-4,
    .how-it-works .col-sm-9{
        max-width: 100%;
        flex: 0 0 100%;
    }
    .how-it-works .col-sm-3,
    .how-it-works .col-sm-4,
    .how-it-works .col-sm-9{
        text-align: center;
    }
    #about .col-sm-6{
        margin-left: 0;
    }
    .features .feature{
        margin:0 0 25px 0 !important;
    }
    #how-it-works{
        padding-left: 5%;
        padding-right: 5%;
    }
    .step i{
        font-size: 50px;
    }
    #counter-section .col-sm-3{
        max-width: 100%;
        flex: 0 0 100%;
    }
    .counter{
        margin:0 0 25px 0;
    }
}