body {
    font-family: 'Montserrat', 'Arial', sans-serif;
}

header .logo {
    width: 150px;
}

a {
    text-decoration: none;
}

main {
    margin-top: -80px;
    border-bottom: 1px solid #eee;
}

main p {
	text-align: left;
}

.navbar {
    padding: 0;
}
.navbar-nav .nav-link {
    padding: 20px 0 !important;
    font-size: 14px;
    margin: 0 20px;
}

.navbar-nav .nav-item.active .nav-link{
    font-weight: 900;
}
.navbar-nav .nav-item:hover .nav-link, .navbar-nav .nav-item.active .nav-link{
    border-bottom: 3px solid #fff;
}

.navbar-toggler {
    color: #fff;
    border-color: #fff;
}

.navbar-nav .nav-item.login {

}

.navbar-nav .nav-item.login .nav-link {
    padding: 10px 30px !important;
    margin: 10px 0 10px 10px;
    border-radius: 30px;
    border: 1px solid #fff;
}

.navbar-nav .nav-item.login:hover .nav-link {
    border-bottom: 0;
    background: #fff;
    color: #5C7A30 !important;
}


/* Sticky Navbar */
.sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1030;
    background-color: #455F1FE3;
}

.hero-section {
    background: url('../images/green-poly-bg.png') center center no-repeat;
    background-size: cover;
}

.hero-section .container {
    padding: 130px 0 50px 0;
}

.hero-section.about .container {
    background: url('../images/key-of-life.svg') bottom right no-repeat;
}
.hero-section.about.ar .container {
    background: url('../images/key-of-life.svg') bottom left no-repeat;
}

.hero-section.contact .container {
    background: url('../images/two-dots.svg') bottom right no-repeat;
}

.hero-section.contact.ar .container {
    background: url('../images/two-dots.svg') bottom left no-repeat;
}

.hero-section.services .container {
    background: url('../images/services.svg') bottom right no-repeat;
}

.hero-section.services.ar .container {
    background: url('../images/services.svg') bottom left no-repeat;
}

.hero-section.home .container {
    background: url('../images/t-letter-white.svg') bottom right no-repeat;
}

.hero-section.home .container.ar {
    background: url('../images/t-letter-white.svg') bottom left no-repeat;
}

.hero-section.home p {
    margin-bottom: 30px;
}

.hero-section.home a.btn {
    color: #fff;
    border: 1px solid;
    border-radius: 30px;
    padding: 10px 30px;
    margin-right:20px;
    font-size: 18px;
}

.hero-section.home a.btn-white, .hero-section.home a.btn:hover {
    background: #fff;
    color: #5C7A30;
}

.text-custom {
    color: #5C7A30;
}

/* Primary Background */
.bg-primary {
    background: url('../images/green-poly-bg.png') center center no-repeat;
    background-size: cover;
}

/* Font Weights for different sections */
h1, .display-4 {
    font-weight: 700; /* Bold for main headers */
}

h2, h3 {
    font-weight: 600; /* Semi-bold for subheadings */
}

p, a, li, .lead {
    font-weight: 400; /* Regular weight for body text */
}

/* Buttons */
.btn-outline-light {
    font-weight: 600; /* Semi-bold for buttons */
}

/* Numerical facts section - Homepage */
.fact {
    text-align: center;
}

.fact .circle {
    margin-bottom: 20px;
    border: 8px solid #5C7A30;
    display: inline-block;
    padding: 50px 0;
    border-radius: 130px;
    width: 70%;
}

.fact .circle .number {
    font-size: 48px;
    font-weight: 800;
    color: #5C7A30;
}

.fact .circle .word {
    font-size: 17px;
    font-weight: 700;
}

.fact .description {
    font-size: 16px;
    line-height: 23px;
    font-weight: 400;
}

/* Services section - Homepage */
.home-services {
    background: url('../images/white-poly-bg.png') center center no-repeat;
    background-size: cover;
    padding: 50px 0;
    text-align: center;
}

.home-services .service {
    text-align: center;
}

.home-services .service .service-icon {
    margin-bottom: 20px;
}

.home-services .service .service-title {
    font-size: 16px;
    text-align: center !important;
}

.home-services .service .service-description {
    font-size: 14px;
}

.home-services a.btn {
    color: #fff;
    border: 1px solid;
    border-radius: 30px;
    padding: 10px 30px;
    margin:0 auto;
    font-size: 18px;
    background: #5C7A30;
    display: inline-block;
}

/* Services list - Services */

ul.service-list {
    list-style: none;
    margin-top: 30px;
    color: #fff;
}

ul.service-list li.service-item {
    margin-bottom: 30px;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 120px;
    background-size: cover;
}

ul.service-list li.service-item.teal { background: url('../images/backgrounds/teal.png') center center no-repeat; background-size: cover; }
ul.service-list li.service-item.olive { background: url('../images/backgrounds/olive.png') center center no-repeat; background-size: cover;}
ul.service-list li.service-item.bronze { background: url('../images/backgrounds/bronze.png') center center no-repeat; background-size: cover;}
ul.service-list li.service-item.crimson { background: url('../images/backgrounds/crimson.png') center center no-repeat; background-size: cover;}
ul.service-list li.service-item.violet { background: url('../images/backgrounds/violet.png') center center no-repeat; background-size: cover;}
ul.service-list li.service-item.magenta { background: url('../images/backgrounds/magenta.png') center center no-repeat; background-size: cover;}

ul.service-list li.service-item .service-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 175px;  /* Adjust width and height as needed */
    height: 175px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Optional shadow */
}
ul.service-list li.service-item .service-icon img {
    width: 75px;
    height: 75px;
}

ul.service-list li.service-item h3 {
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 20px;
    padding-top: 25px;
}

ul.service-list li.service-item p {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 0;
}

/* Footer Styles */
footer {
    background-color: #fff;
}

.footer-logo {
    width: 150px;
}

footer .social-icons i {
    color: #e5e5e5;
    margin: 0 10px;
    transition: color 0.3s ease;
    font-size: 20px;
}

footer .social-icons i:hover {
    color: #5C7A30;
}

footer p {
    color: #e5e5e5;
    font-weight: 400;
    margin-bottom: 0;
}

/* Form Styling */
.form-control {
    border-radius: 20px; /* Rounded input boxes */
    padding: 15px;
    border: 1px solid #ddd;
}

.btn-primary {
    background-color: #5C7A30;
    border-color: #5C7A30;
    padding: 10px 30px;
    font-size: 16px;
    border-radius: 25px;
}

.btn-primary:hover {
    background-color: #3E5521;
    border-color: #3E5521;
}

/* Contact Info Styling */
.contact-info h4 {
    margin-top: 30px;
    color: #5C7A30;
    font-weight: 600;
    font-size:20px;
}

.contact-info a {
    color: #5C7A30;
}

.contact-info p {
    color: #000;
    margin-bottom: 0;
}

.contact-info .contact-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}
.contact-info .contact-item:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Media Queries for Mobile View */
@media (max-width: 767.98px) {
    .hero-section .container {
        padding: 100px 20px; /* Adjust padding for mobile view */
    }

    .navbar-nav .nav-link {
        padding: 10px 0 !important;
        font-size: 12px;
        margin: 0 10px;
    }

    .navbar-nav .nav-item.login .nav-link {
        padding: 5px 15px !important;
        margin: 5px 0 5px 5px;
    }

    .fact {
        margin-bottom: 30px;
    }

    .fact .circle {
        width: 100%;
        padding: 30px 0;
    }
    
    ul.service-list {
    	padding-left:0;
    }

    ul.service-list li.service-item {
        text-align: center;
        border-radius: 50px;
    }

    ul.service-list li.service-item h3 {
        font-size: 24px;
        padding-top: 10px;
    }

    ul.service-list li.service-item p {
        font-size: 16px;
        line-height: 22px;
        text-align: center;
    }

    footer .container {
        flex-direction: column;
        text-align: center;
    }

    footer .social-icons {
        margin-bottom: 20px;
    }

    .contact-info h4 {
        font-size: 18px;
        margin-top: 20px;
    }

    .contact-info p {
        font-size: 14px;
    }

    .hero-section.home .container p {
        margin-bottom: 20px;
    }

    .hero-section.home a.btn {
        padding: 8px 20px;
        font-size: 14px;
    }

    /* Service Icons for Mobile */
    ul.service-list li.service-item .service-icon {
        width: 125px; /* Reduce icon size */
        height: 125px;
        margin: 0 auto;
    }

    ul.service-list li.service-item .service-icon img {
        width: 50px;
        height: 50px;
    }

    .hero-section.about .container,
    .hero-section.contact .container,
    .hero-section.services .container,
    .hero-section.home .container {
        background: none;
        padding-bottom: 50px;
    }
}


