@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Smooth Scroll */
html{
    font-size: 16px;
    scroll-behavior: smooth;
}

/* Utility Classes */
.text-secondary{
    color: #55BA53;
}
.text-center{
    text-align: center;
}
.bg-light{
    background: #cfcfcf;
}
.bg-secondary{
    background: #55BA53;
}

.py-0{padding: 16px 0;}
.py-1{padding: 24px 0;}
.py-2{padding: 32px 0;}
.py-3{padding: 48px 0;}

.p-0{padding: 16px;}
.p-1{padding: 24px;}
.p-2{padding: 32px;}
.p-3{padding: 48px;}
.p-4{padding: 1px;}

/* Popup Menu Styles */
.popup-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 41, 64, 0.95);
    z-index: 1000;
    overflow-y: auto;
}

.popup-menu .menu-content {
    padding: 20px;
    text-align: center;
}

.popup-menu .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

.popup-menu ul {
    list-style: none;
    padding: 0;
    margin-top: 50px;
}

.popup-menu ul li {
    margin-bottom: 20px;
}

.popup-menu ul li a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.popup-menu ul li a:hover {
    color: #55BA53;
}

.menu-toggle {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    background: none;
    border: none;
    font-size: 24px;
    color: #55BA53;
    cursor: pointer;
}


.wrapper{
    max-width: 100%;
    padding: 0 50px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.btn{
    display: inline-block;
    padding: 15px 25px;
    margin-right: 30px;
    margin-top: 10px;
    text-decoration: none;
    border-radius: 25px;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    overflow: hidden;
    transition: all 0.5s ease;
}

/* Showcase Area Styling */

.showcase{
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('./images/final-image.jpg') no-repeat center center/cover;
    width: 100%;
    height: 100vh;
}

/* Top Navbar */

.showcase .navbar-top{
    width: 100%;
    display: flex;
    padding: 0 80px;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
    background-color: #0A2940;
    top: 0;
    left: 0;
}
.showcase .left{
    display: flex;
    list-style: none;
}
.showcase .left li a{
    display: inline-block;
    font-size: 13px;
    text-decoration: none;
    color: #95A2BB;
    padding: 5px 15px;
    transition: all 0.5s ease;
}
.showcase .left li a:hover{
    color: #55BA53;
}
.showcase .left li:first-child{
    font-weight: 700;
    border-right: 1px solid #536DAF;
}
.showcase .right{
    display: flex;
    list-style: none;
}
.showcase .right li a{
    display: inline-block;
    padding: 5px 15px;
    text-decoration: none;
    color: #95A2BB;
    transition: all 0.5s ease;
}
.showcase .right li a:hover{
    color: #55BA53;
}

/* Bottom Navbar */
.showcase .navbar-bottom{
    width: 100%;
    background: #cfcfcf;
    padding: 15px 20px;
    align-items: center;
    margin:  auto;
    display: flex;
    flex-wrap: wrap;
    position: fixed; 
    justify-content: space-between;
    overflow: hidden;
}
.navbar-bottom.sticky{
    padding: 15px 95px;
    background: #fff;
    border-bottom: 1px solid #0A2940;
    color: #0A2940;
    top: 0;
    z-index: 999;
}
.showcase .navbar-bottom .brand-left{
    color: #55BA53;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.5s ease;
}
.showcase .navbar-bottom.sticky .brand-left{
    color: #0A2940;
}
.showcase .navbar-bottom .brand-left:hover{
    color: #0A2940;
}
.showcase .navbar-bottom .menu-right{
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    font-size: 14px;
    font-weight: 600;
}
.showcase .navbar-bottom.sticky .menu-right li:last-child{
    display: none;
}
.showcase .navbar-bottom .menu-right a{
    text-decoration: none;
    display: inline-block;
    padding: 0 20px;
    color: #1A1B1E;
    transition: all 0.5s ease;
}
.showcase .navbar-bottom .menu-right a:hover{
    color: #55BA53;
}

/* Navbar Bottom Search Form */
.navbar-bottom .search-form{
    position: absolute;
    top: 60%;
    right: 10%;
    background: #f4f4f4;
    width: 350px;
    height: 28px;
    display: flex;
    align-items: center;
    transform: scaleY(0);
    transform-origin: top;
    transition: all 0.5s ease;
}
.navbar-bottom .search-form.active{
    transform: scaleY(1);
}

.navbar-bottom .search-form input{
    width: 100%;
    height: 100%;
    font-size: 20px;
    border: none;
    background: #f4f4f4;
    color: #1A1B1E;
    padding: 14px;
    text-transform: none;
    outline: none;
}
.navbar-bottom .search-form label{
    cursor: pointer;
    font-size: 30px;
    border: none;
    margin-right: 12px;
}
.navbar-bottom .search-form label:hover{
    color: #55BA53;
}

/* Showcase-content Section styling */
.showcase .showcase-content{
    max-width: 100%;
    margin-top: 15%;
    padding: 0 95px;
}
.showcase .showcase-content h1{
    color: #55BA53;
    font-size: 60px;
    margin: 15px 0;
}
.showcase .showcase-content span{
    color: #fff;
    font-family: 'Verdana', sans-serif;
    font-weight: 500;
}
.showcase .showcase-content p{
    color: #ceced4;
    line-height: 1;
    margin-bottom: 20px;
    font-size: 24px;
    text-align: justify;
}
.showcase .showcase-content .btn-left{
    background: linear-gradient(to right, #0a3609 , #55BA53);
}
.showcase .showcase-content .btn-right{
    background: linear-gradient(to right,#55BA53, #0a3609);
}

/* Get Services Section Styling */
#get-services {
    padding: 100px ;
}

.apply-button-container {
    text-align: center;
    margin-top: 40px;
}
.apply-button {
    background-color: #3498db;
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.apply-button:hover {
    background-color: #2980b9;
}

#get-services .services-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

#get-services .card {
    flex: 1;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 30px;
    transition: all 0.3s ease;
}

#get-services .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

#get-services h2 {
    color: #0A2940;
    font-size: 24px;
    margin-bottom: 20px;
}

#get-services ul {
    list-style-type: none;
    padding: 0;
}

#get-services li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

#get-services li i {
    color: #55BA53;
    margin-right: 10px;
    font-size: 20px;
}

#get-services li span {
    color: #1A1B1E;
    font-size: 16px;
    line-height: 1.4;
}

#get-services button {
    background: #55BA53;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 20px;
}

#get-services button:hover {
    background: #4a9e48;
}
/* Services Section Styling */
#services .items{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

#services .items .item{
    /*flex: 1; */
    text-align: center;
    padding: 30px;
    margin: 0px;
    background: #0A2940;
    border-radius: 5px;
    box-shadow: 5px 5px 20px rgba(0,0,0,0.3), -5px -5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 300px;
}

#services .items .item h3{
    color: #55BA53;
    font-size: 18px;
    margin: 0 0 15px 0;
    width: 100%;
}
#services .items .item p{
    color: #95A2BB;
    line-height: 1.6;
    
}
#services .items .item i{
    color: #95A2BB;
    font-size: 40px;
    margin-bottom: 15px;
}
#services .items .item:hover i{
    color: #55BA53;
}
#services .items .item:hover{
    background:#0A2940;
    transform: scale(1.05);
}
#services .items .item:hover h3{
    color: #f4f4f4;
}

/* Services Section Bottom */
#goal{
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding-top: 50px;
}
#goal div{
    flex: 1 1 300px;
}
#goal .goal-img{
    display: inline-block;
    position: relative;
    width: 100%;
    height: auto;
    object-fit: cover;
}
#goal .goal-img img{
    width: 100%;
    height: auto;
    object-fit: cover;
}
#goal .goal-text {
    margin: 0 20px;
    max-width: 100%;
}

#goal .goal-text a {
    color: #f4f4f4;
    background: #55BA53;
    text-decoration: none;
    font-size: 12px;
    border: 1px solid #55BA53;
    border-radius: 25px;
    padding: 3px 10px;
    transition: 0.5s;
    display: inline-block;
    margin-bottom: 10px;
}

#goal .goal-text a:hover {
    color: #55BA53;
    background: #0A2940;
}

#goal .goal-text h2 {
    margin: 20px 0;
    color: #0A2940;
    font-size: 28px;
    line-height: 1.2;
}

#goal .goal-text .contents {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

#goal .goal-text .contents .content.icon {
    flex: 0 0 40px;
    padding: 5px 0;
}

#goal .goal-text .contents .content.text {
    flex: 1;
    padding: 0 0 0 10px;
}

#goal .goal-text .contents .content h3 {
    font-size: 18px;
    color: #55BA53;
    margin: 0 0 5px 0;
}

#goal .goal-text .contents .content p {
    color: #1A1B1E;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

#goal .goal-text .contents .content i {
    color: #55BA53;
    padding: 8px;
    background: #0A2940;
    border-radius: 50%;
    font-size: 20px;
}
/* Portfolio Section Styling  */
#portfolio{
    background: #0A2940;
}
.portfolio h3{
    color: #95A2BB;
    font-size: 14px;
    padding-bottom: 20px;
    text-transform: uppercase;
}
.portfolio h2{
    font-size: 40px;
    font-weight: 600;
    color: #95A2BB;
    margin-bottom: 20px;
}
.portfolio h2 span{
    font-weight: 500;
}
.portfolio p{
    color: #95A2BB;
    line-height: 1.6;
    margin-bottom: 100px;
}
.owl-carousel .item img{
    display: block;
    width: 700px;
    height: 300px;
    border: 2px solid #95A2BB;
    object-fit: cover;
}
.owl-dots{
    text-align: center;
    margin-top: 20px;
}
.owl-dot{
    height: 13px;
    width: 13px;
    margin: 0 5px;
    outline: none !important;
    border-radius: 50%;
    border: 2px solid #55BA53 !important;
}
.owl-dot.active{
    width: 35px;
    border-radius: 14px;
}
.owl-dot.active,
.owl-dot:hover{
    background: #55BA53 !important;
}

/* Teams Section Styling */
#teams h3{
    color: #0A2940;
    font-size: 14px;
    padding-bottom: 20px;
    text-transform: uppercase;
}
#teams h2{
    font-size: 40px;
    font-weight: 600;
    color: #0A2940;
    margin-bottom: 20px;
}
#teams h2 span{
    font-weight: 500;
}
#teams p{
    color: #0A2940;
    line-height: 1.6;
    margin-bottom: 100px;
}
#teams .wrapper .card-items{
    display: flex;
    margin-top: -50px;
    justify-content: space-evenly;
    overflow: hidden;
}
#teams .wrapper .card{
    margin: 20px;
    display: flex;
    flex-direction: column;
    background-color: #f6f6f6;
    border-radius: 5px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
    overflow: hidden;
    width: 280px;
    z-index: 1;
    transition: all 0.5s ease;
}
#teams .wrapper .card:hover{
    background: #0A2940;
    transform: scale(1.05);
    cursor: pointer;
}
#teams .wrapper .card .card-header{
    display: inline-block;
    width: 180px;
    height: 180px;
    overflow: hidden;
    border-radius: 50%;
    margin: 30px auto;
    transform: translateY(40px);
}
#teams .wrapper .card .card-header img{
    width: 100%;
    height: auto;
}
#teams .wrapper .card-body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    min-height: 200px;
}
#teams .wrapper .card h3{
    font-size: 16px;
    color: #95A2BB;
    padding-top: 30px;
}
#teams .wrapper .card .card-body h4{
    font-size: 14px;
    font-weight: 600;
    color: #55BA53;
    margin-top: 0px;
}
#teams .wrapper .card .card-body ul{
    display: flex;
    list-style: none;
    padding-top: 50px;
}
#teams .wrapper .card .card-body ul li i{
    padding: 5px;
    margin: 0 7px;
    border: 1px solid #95A2BB;
    border-radius: 50%;
    background: #0A2940;
    color: #55BA53;
    transition: all 0.3s ease;
}
#teams .wrapper .card .card-body ul li i:hover{
    background: #55BA53;
    color: #0A2940;
}

/* Blog Section Styling  */
#blog{
    background: #0A2940;
}
#blog .wrapper .header{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
#blog .wrapper .header span{
    height: 1px;
    width: 4%;
    background: #95A2BB;
}
#blog .wrapper .header h4{
    color: #95A2BB;
    padding-left: 15px;
    text-transform: uppercase;
}
#blog .wrapper .blog-info{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
#blog .wrapper .blog-info h2{
    font-size: 40px;
    color: #95A2BB;
    font-weight: 600;
}
#blog .wrapper .blog-info h2 span{
    font-weight: 500;
}
#blog .wrapper .blog-info a{
    text-decoration: none;
    padding: 10px 20px;
    background: #55BA53;
    color: #0A2940;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid #55BA53;
    border-radius: 5px;
    transition: 0.5s;
}
#blog .wrapper .blog-info a:hover{
    background: none;
    color: #95A2BB;
}
#blog .wrapper .blog-card{
    display: flex;
    margin-top: -50px;
    justify-content: space-between;
    flex-wrap: wrap;
}
#blog .wrapper .card{
    margin: 70px 5px;
    background-color: #cfcfcf;
    border-radius: 5px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
    width: 370px;
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s ease;
}
#blog .wrapper .card:hover{
    transform: scale(1.05);
}
#blog .wrapper .card .card-header img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    margin-bottom: 10px;
}
#blog .wrapper .card .card-body .tag{
    background: #ccc;
    border-radius: 50px;
    font-size: 12px;
    margin: 30px;
    color: #fff;
    padding: 5px 10px;
    text-transform: uppercase;
    cursor: pointer;
}
#blog .wrapper .card .card-body .tag-yellow{
    background-color: yellow;
}
#blog .wrapper .card .card-body .tag-purple{
    background-color: #5C76BF;
}
#blog .wrapper .card .card-body .tag-pink{
    background-color: #CD5B9F;
}
#blog .wrapper .card .card-body h4{
    margin: 10px 30px;
    font-weight: 600;
    font-size: 24px;
    letter-spacing: 1px;
    line-height: 1.4;
    color: #0A2940;
}
#blog .wrapper .card .card-body .footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 50px 10px 2px 30px;
    border-top: 1px solid #536DAF;
    padding: 5px 0;
}
#blog .wrapper .card .card-body .footer small{
    color: #1A1B1E;
    font-weight: 600;
}
#blog .wrapper .card .card-body .footer a{
    padding: 5px 10px;
    background: #55BA53;
    border-radius: 4px;
    color: #0A2940;
}

/* Section styles */
#contact-us {
    background-color: #ccc;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    margin-top: 1rem;
    margin-bottom: 1rem;
}

#contact-us h2 {
    font-size: 2.25rem;
    font-weight: 600;
    color: #2a2323;
    margin-bottom: 0.5rem;
}

#contact-us p {
    color: #2a2323;
    line-height: 1.625;
    margin-bottom: 3rem;
}

#contact-us form {
    display: grid;
    /*grid-template-columns: repeat(2, 1fr);
    gap: 1rem;*/
    max-width: 38rem;
    margin: 0 auto;
}

#contact-us form .col-span-2 {
    grid-column: span 2;
}

#contact-us form label {
    display: block;
    font-size: 0.875rem;
    color: #2a2323;
    margin-bottom: 0.25rem;
}

#contact-us form input,
#contact-us form textarea {
    width: 100%;
    min-height: 44px;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid #ffffff;
    background-color: transparent;
    color: #ffffff;
}

#contact-us form input:focus,
#contact-us form textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
}

#contact-us form input::placeholder,
#contact-us form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

#contact-us form button:hover {
    background-color: #2a2323;
    color: #fff;
    cursor: pointer;
}
#contact-us form button {
    grid-column: span 2;
    background-color: #0A2940;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* #contact-us form button:hover {
    background-color: rgba(255, 255, 255, 0.8);
} */
/* Responsive textarea */
#contact-us .wrapper form textarea {
    min-height: 6rem;
}

/* Contact Section Styling */
#contact h2{
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}
#contact p{
    color: #fff;
    line-height: 1.6;
    margin-bottom: 50px;
}
#contact .wrapper form{
    display: flex;
    flex-direction: column;
    max-width: 550px;
    margin: 0 auto;
}
#contact .wrapper form input{
    margin-bottom: 1rem;
    min-height: 44px;
}
#contact .wrapper form .button{
    padding: 8px;
    margin-bottom: 1rem;
    min-height: 44px;
    background: #0A2940;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}
#contact .wrapper form .button:hover{
    background: #1A1B1E;
    color: #fff;
    cursor: pointer;
}

/* Footer Section Styling  */
.footer-bottom{
    background: #1A1B1E;
    color: #536DAF;
}
.footer-bottom p{
    font-size: 14px;
    font-weight: 600;
}

/* Scroll up Styling */
.scroll-up-btn{
    position: fixed;
    height: 45px;
    width: 42px;
    border: 1px solid #fff;
    background: #0A2940;
    right: 30px;
    bottom: 10px;
    text-align: center;
    line-height: 45px;
    color: #fff;
    z-index: 9999;
    font-size: 30px;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}
.scroll-up-btn.show{
    opacity: 1;
    pointer-events: auto;
    bottom: 30px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 800px;
    height: 80%;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Added */
/* Adjust modal for smaller screens */
@media screen and (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    /* Get Services Section Styling */
#get-services {
    padding: 50px 0;
}

#get-services .services-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}

#get-services .card {
    flex: 1;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 30px;
    transition: all 0.3s ease;
}

#get-services .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

#get-services h2 {
    color: #0A2940;
    font-size: 24px;
    margin-bottom: 20px;
}

#get-services ul {
    list-style-type: none;
    padding: 0;
}

#get-services li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

#get-services li i {
    color: #55BA53;
    margin-right: 10px;
    font-size: 20px;
}

#get-services li span {
    color: #1A1B1E;
    font-size: 16px;
    line-height: 1.4;
}

#get-services button {
    background: #55BA53;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 20px;
}

#get-services button:hover {
    background: #4a9e48;
}
        /* Showcase-content Section styling */
    .showcase .showcase-content{
        max-width: 100%;
        margin-top: 20%;
        padding: 0 95px;
    }
    .showcase .showcase-content h1{
        color: #55BA53;
        font-size: 30px;
        margin: 5px 0;
    }
    .showcase .showcase-content span{
        color: #fff;
        font-family: 'Verdana', sans-serif;
        font-weight: 500;
    }
    .showcase .showcase-content p{
        color: #ceced4;
        line-height: 1.8;
        margin-bottom: 20px;
        text-align: justify;
        font-size: 20px;
    }
    .showcase .showcase-content .btn-left{
        background: linear-gradient(to right, #0a3609 , #55BA53);
    }
    .showcase .showcase-content .btn-right{
        background: linear-gradient(to right,#55BA53, #0a3609);
    }
    /* Top Navbar */

.showcase .navbar-top{
    width: 100%;
    display: flex;
    padding: 0 30px;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
    background-color: #0A2940;
    top: 0;
    left: 0;
    position: fixed;
    z-index: 1000;
}
.showcase .left{
    display: flex;
    list-style: none;
}
.showcase .left li a{
    display: inline-block;
    font-size: 13px;
    text-decoration: none;
    color: #95A2BB;
    padding: 5px 15px;
    transition: all 0.5s ease;
}
.showcase .left li a:hover{
    color: #55BA53;
}
.showcase .left li:first-child{
    font-weight: 700;
    border-right: 1px solid #536DAF;
}
.showcase .right{
    display: flex;
    list-style: none;
}
.showcase .right li a{
    display: inline-block;
    padding: 5px 15px;
    text-decoration: none;
    color: #95A2BB;
    transition: all 0.5s ease;
}
.showcase .right li a:hover{
    color: #55BA53;
}

    /* Bottom Navbar */
.showcase .navbar-bottom{
    width: 100%;
    background: #cfcfcf;
    padding: 15px 20px;
    align-items: center;
    margin:  auto;
    display: flex;
    flex-wrap: wrap;
    position: fixed; 
    justify-content: space-between;
    overflow: hidden;
}
.navbar-bottom.sticky{
    padding: 15px 95px;
    background: #fff;
    border-bottom: 1px solid #0A2940;
    color: #0A2940;
    top: 0;
    z-index: 999;
}
.showcase .navbar-bottom .brand-left{
    color: #55BA53;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.5s ease;
}
.showcase .navbar-bottom.sticky .brand-left{
    color: #0A2940;
}
.showcase .navbar-bottom .brand-left:hover{
    color: #0A2940;
}
.showcase .navbar-bottom .menu-right{
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    font-size: 14px;
    font-weight: 600;
}
.showcase .navbar-bottom.sticky .menu-right li:last-child{
    display: none;
}
.showcase .navbar-bottom .menu-right a{
    text-decoration: none;
    display: inline-block;
    padding: 0 20px;
    color: #1A1B1E;
    transition: all 0.5s ease;
}
.showcase .navbar-bottom .menu-right a:hover{
    color: #55BA53;
}

/* Navbar Bottom Search Form */
.navbar-bottom .search-form{
    position: absolute;
    top: 60%;
    right: 10%;
    background: #f4f4f4;
    width: 350px;
    height: 28px;
    display: flex;
    align-items: center;
    transform: scaleY(0);
    transform-origin: top;
    transition: all 0.5s ease;
}
.navbar-bottom .search-form.active{
    transform: scaleY(1);
}

.navbar-bottom .search-form input{
    width: 100%;
    height: 100%;
    font-size: 20px;
    border: none;
    background: #f4f4f4;
    color: #1A1B1E;
    padding: 14px;
    text-transform: none;
    outline: none;
}
.navbar-bottom .search-form label{
    cursor: pointer;
    font-size: 30px;
    border: none;
    margin-right: 12px;
}
.navbar-bottom .search-form label:hover{
    color: #55BA53;
}

}

/* Adjust modal for smaller screens */
@media screen and (max-width: 390px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
        /* Showcase-content Section styling */
    .showcase .showcase-content{
        max-width: 100%;
        margin-top: 50%;
        padding: 0 95px;
    }
    .showcase .showcase-content h1{
        color: #55BA53;
        font-size: 25px;
        margin: 5px 0;
    }
    .showcase .showcase-content span{
        color: #fff;
        font-family: 'Verdana', sans-serif;
        font-weight: 500;
    }
    .showcase .showcase-content p{
        color: #ceced4;
        line-height: 1.8;
        margin-bottom: 20px;
        text-align: justify;
        font-size: 12px;
    }
    .showcase .showcase-content .btn-left{
        background: linear-gradient(to right, #0a3609 , #55BA53);
    }
    .showcase .showcase-content .btn-right{
        background: linear-gradient(to right,#55BA53, #0a3609);
    }
        /* Top Navbar */

    .showcase .navbar-top{
        width: 100%;
        display: flex;
        padding: 0 1px;
        margin: 0 auto;
        justify-content: center;
        align-items: center;
        background-color: #0A2940;
        top: 0;
        left: 0;
    }
    .showcase .left{
        display: flex;
        list-style: none;
    }
    .showcase .left li a{
        display: inline-block;
        font-size: 9px;
        text-decoration: none;
        color: #95A2BB;
        padding: 5px 15px;
        transition: all 0.5s ease;
    }
    .showcase .left li a:hover{
        color: #55BA53;
    }
    .showcase .left li:first-child{
        font-weight: 700;
        border-right: 1px solid #536DAF;
    }
    .showcase .right{
        display: flex;
        flex-direction: column;
        list-style: none;
    }
    .showcase .right li a{
        display: inline-block;
        padding: 5px 15px;
        text-decoration: none;
        color: #95A2BB;
        transition: all 0.5s ease;
    }
    .showcase .right li a:hover{
        color: #55BA53;
    }
    /* Bottom Navbar */
.showcase .navbar-bottom{
    width: 100%;
    background: #cfcfcf;
    padding: 15px 20px;
    align-items: center;
    margin:  auto;
    display: flex;
    flex-wrap: wrap;
    position: fixed; 
    justify-content: space-between;
    overflow: hidden;
}
.navbar-bottom.sticky{
    padding: 15px 95px;
    background: #fff;
    border-bottom: 1px solid #0A2940;
    color: #0A2940;
    top: 0;
    z-index: 999;
}
.showcase .navbar-bottom .brand-left{
    color: #55BA53;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.5s ease;
}
.showcase .navbar-bottom.sticky .brand-left{
    color: #0A2940;
}
.showcase .navbar-bottom .brand-left:hover{
    color: #0A2940;
}
.showcase .navbar-bottom .menu-right{
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    font-size: 14px;
    font-weight: 600;
}
.showcase .navbar-bottom.sticky .menu-right li:last-child{
    display: none;
}
.showcase .navbar-bottom .menu-right a{
    text-decoration: none;
    display: inline-block;
    padding: 0 20px;
    color: #1A1B1E;
    transition: all 0.5s ease;
}
.showcase .navbar-bottom .menu-right a:hover{
    color: #55BA53;
}

/* Navbar Bottom Search Form */
.navbar-bottom .search-form{
    position: absolute;
    top: 60%;
    right: 10%;
    background: #f4f4f4;
    width: 350px;
    height: 28px;
    display: flex;
    align-items: center;
    transform: scaleY(0);
    transform-origin: top;
    transition: all 0.5s ease;
}
.navbar-bottom .search-form.active{
    transform: scaleY(1);
}

.navbar-bottom .search-form input{
    width: 100%;
    height: 100%;
    font-size: 20px;
    border: none;
    background: #f4f4f4;
    color: #1A1B1E;
    padding: 14px;
    text-transform: none;
    outline: none;
}
.navbar-bottom .search-form label{
    cursor: pointer;
    font-size: 30px;
    border: none;
    margin-right: 12px;
}
.navbar-bottom .search-form label:hover{
    color: #55BA53;
}
/* Get Services Section Styling */
#get-services {
    padding: 50px 0;
}

#get-services .services-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}

#get-services .card {
    flex: 1;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 30px;
    transition: all 0.3s ease;
}

#get-services .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

#get-services h2 {
    color: #0A2940;
    font-size: 24px;
    margin-bottom: 20px;
}

#get-services ul {
    list-style-type: none;
    padding: 0;
}

#get-services li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

#get-services li i {
    color: #55BA53;
    margin-right: 10px;
    font-size: 20px;
}

#get-services li span {
    color: #1A1B1E;
    font-size: 16px;
    line-height: 1.4;
}

#get-services button {
    background: #55BA53;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 20px;
}

#get-services button:hover {
    background: #4a9e48;
}

/* Hide the bottom navbar */
/* .showcase .navbar-bottom {
    display: none;
} */

.showcase .navbar-bottom .menu-right {
    display: none;
}

    /* Ensure the menu toggle is visible and properly positioned */
.menu-toggle {
    display: flex;
    /* position: fixed; */
    top: 100px;
    right: 10px;
    z-index: 1001;
    background: #0A2940;
    border: none;
    font-size: 24px;
    color: #55BA53;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 5px;
}

/* Adjust showcase content for smaller screens */
.showcase .showcase-content {
    margin-top: 30%;
    padding: 0 15px;
}

.showcase .showcase-content h1 {
    font-size: 22px;
}

.showcase .showcase-content p {
    font-size: 14px;
}

/* Adjust button styles for smaller screens */
.btn {
    padding: 10px 15px;
    font-size: 12px;
}

/* Get Services Section adjustments */
#get-services h2 {
    font-size: 20px;
}

#get-services li span {
    font-size: 14px;
}

#get-services button {
    font-size: 14px;
    padding: 10px 20px;
}

}