.img-width{
    width: 250px;
}
.navbar {
    padding: 7px 0;
}
header.main-header{
    background: #fff;
}
.main-menu ul li a{
    color:#000;
}
header.main-header{
    position: relative;
}
.hero-info-box {
    margin-top: -50px;
}

/************************************/
/***  Services Slider Cards css   ***/
/************************************/

.services-slider-wrapper {
    position: relative;
    padding: 0 50px;
}

.services-slider .swiper-slide {
    height: auto;
}

.service-card-silver {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 380px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    transition: transform 0.5s ease;
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.85) 100%);
    transition: all 0.5s ease;
}

.service-card-silver:hover .service-card-overlay {
    background: linear-gradient(180deg, rgba(199, 154, 59, 0.2) 0%, rgba(0,0,0,0.95) 100%);
}

.service-card-content {
    position: relative;
    z-index: 2;
    padding: 35px 30px;
    width: 100%;
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.service-card-silver:hover .service-card-content {
    transform: translateY(0);
}

.service-card-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    margin-bottom: 18px;
    transition: all 0.4s ease;
}

.service-card-silver:hover .service-card-icon {
    background: #08881d;
}

.service-card-icon img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

.service-card-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 10px;
    font-family: var(--accent-font);
}

.service-card-content p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    margin-bottom: 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
    opacity: 0;
}

.service-card-silver:hover .service-card-content p {
    max-height: 100px;
    opacity: 1;
}

.service-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #08881d;
    text-decoration: none;
    padding: 10px 22px;
    border: 2px solid #08881d;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.service-card-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.service-card-btn:hover {
    background: #08881d;
    color: #FFFFFF;
}

.service-card-btn:hover i {
    transform: translateX(5px);
}

/* Navigation Arrows */
.services-slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.services-button-prev,
.services-button-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #FFFFFF;
    color: #08881d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.services-button-prev:hover,
.services-button-next:hover {
    background: #08881d;
    color: #FFFFFF;
    transform: scale(1.15);
    box-shadow: 0 6px 25px rgba(199, 154, 59, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .services-slider-wrapper {
        padding: 0 40px;
    }
    .service-card-silver {
        min-height: 320px;
    }
    .service-card-content {
        padding: 25px 20px;
    }
}

@media (max-width: 576px) {
    .services-slider-wrapper {
        padding: 0 35px;
    }
    .services-button-prev,
    .services-button-next {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
}

.our-services-silver{
    padding: 40px 0;
}
.section-row {
    margin-bottom: 40px;
}
.highlight-text{
    color: #08881d;
}
.btn-default{
    color: #ffffff;
    background: #003f9b;
}
.btn-default.btn-highlighted::after {
    background-color: #08881d;
}
.btn-default.btn-highlighted:hover {
            color: #ffffff;
}
.about-us {
    padding: 40px 0;
}
/************************************/
/***  About Achievements css      ***/
/************************************/

.about-achievements {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border: 1px solid #E8E8E8;
}

.achievements-title h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0D0D0D;
    margin-bottom: 25px;
    font-family: var(--accent-font);
    position: relative;
    padding-bottom: 15px;
}

.achievements-title h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #08881d;
    border-radius: 2px;
}

.achievements-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.achievement-item {
    width: calc(50% - 10px);
    background: #F9F8F5;
    border-radius: 12px;
    padding: 25px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.achievement-item:hover {
    border-color: #08881d;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(199, 154, 59, 0.12);
}

.achievement-item-full {
    width: 100%;
    justify-content: center;
    text-align: center;
}

.achievement-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: #08881d;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #FFFFFF;
    transition: all 0.4s ease;
}

.achievement-item:hover .achievement-icon {
    background: #0D0D0D;
}

.achievement-item-full .achievement-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    font-size: 22px;
}

.achievement-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #08881d;
    font-family: var(--accent-font);
    margin-bottom: 4px;
    line-height: 1.2;
}

.achievement-content p {
    font-size: 14px;
    color: #666666;
    margin: 0;
    font-weight: 500;
}

.achievement-item-full .achievement-content h2 {
    font-size: 32px;
}

.achievement-item-full .achievement-content p {
    font-size: 15px;
}

@media (max-width: 1199px) {
    .about-achievements {
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .achievement-item {
        width: 100%;
    }
    .about-achievements {
        padding: 25px 20px;
    }
}

.container {
    max-width: 1400px;
}
.about-us-btn{
    padding-top: 10px;
    margin-top: 0px;
}
.main-menu ul li a:hover, .main-menu ul li a:focus {
    color: #08881d;
}
/************************************/


/************************************/
/***  Sell Property Info css       ***/
/************************************/

.sell-property-info-wrap {
    background: #F9F9F9;
    padding: 60px 0 30px;
    margin: 60px 0;
}

.sell-property-info {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.sell-property-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #08881d;
    background: rgba(199, 154, 59, 0.1);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 18px;
}

.sell-property-content h2 {
    font-size: 30px;
    font-weight: 700;
    color: #0D0D0D;
    font-family: var(--accent-font);
    margin-bottom: 15px;
    line-height: 1.3;
}

.sell-property-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 15px;
}

.sell-property-content h4 {
    font-size: 17px;
    font-weight: 700;
    color: #0D0D0D;
    margin-bottom: 12px;
    margin-top: 20px;
}

.sell-property-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sell-property-benefits li {
    font-size: 14px;
    color: #555555;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sell-property-benefits li i {
    color: #28A745;
    font-size: 16px;
    flex-shrink: 0;
}

/* Form */
.sell-property-form {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #EEEEEE;
}

.sell-property-form h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0D0D0D;
    margin-bottom: 20px;
    text-align: center;
}

.sell-property-form .form-group {
    margin-bottom: 14px;
}

.sell-property-form .form-control {
    width: 100%;
    padding: 11px 16px;
    font-size: 14px;
    color: #333333;
    background: #F7F7F7;
    border: 1px solid #E8E8E8;
    border-radius: 8px;
    outline: none;
    transition: border 0.3s ease;
}

.sell-property-form .form-control:focus {
    border-color: #08881d;
    background: #FFFFFF;
}

.sell-property-form select.form-control {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C79A3B' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.sell-property-submit {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 30px;
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    background: #08881d;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.sell-property-submit:hover {
    background: #0D0D0D;
}

.sell-property-submit i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.sell-property-submit:hover i {
    transform: translateX(4px);
}

/* Bottom CTA */
.sell-property-cta-bottom {
    text-align: center;
    margin-top: 40px;
    padding: 30px 0 10px;
    border-top: 1px solid #E8E8E8;
}

.sell-property-cta-bottom p {
    font-size: 16px;
    color: #666666;
    margin-bottom: 18px;
}

.sell-property-cta-bottom .btn-default {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    font-size: 15px;
    font-weight: 600;
    color: #FFFFFF;
    background: #08881d;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sell-property-cta-bottom .btn-default:hover {
    background: #0D0D0D;
}

.sell-property-cta-bottom .btn-default i {
    transition: transform 0.3s ease;
}

.sell-property-cta-bottom .btn-default:hover i {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .sell-property-info-wrap {
        padding: 40px 0 20px;
    }
    .sell-property-content {
        margin-bottom: 30px;
    }
    .sell-property-form {
        margin-top: 10px;
    }
}

/************************************/
/***  CTA Sell Property css       ***/
/************************************/

.cta-sell-property {
    position: relative;
    background: linear-gradient(135deg, #08881d 0%, #A87D2E 30%, #E8C06A 60%, #08881d 100%);
    border-radius: 16px;
    padding: 30px 30px;
    overflow: hidden;
    margin: 30px 0;
}

.cta-sell-property::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/cta-box-bg-img.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.08;
    z-index: 0;
    border-radius: 16px;
}

.cta-sell-property::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.cta-sell-property .row {
    position: relative;
    z-index: 1;
}

.cta-sell-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FFFFFF;
    background: rgba(0,0,0,0.15);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 18px;
}

.cta-sell-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    font-family: var(--accent-font);
    margin-bottom: 15px;
    line-height: 1.3;
}

.cta-sell-content p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    margin: 0;
    max-width: 600px;
}

.cta-sell-btn {
    text-align: right;
}

.cta-sell-btn .btn-default {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    font-size: 15px;
    font-weight: 600;
    background: #FFFFFF;
    color: #08881d;
    border: none;
    animation: cta-blink 1.8s ease-in-out infinite;
}

.cta-sell-btn .btn-default i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.cta-sell-btn .btn-default:hover i {
    transform: translateX(5px);
}

.cta-sell-btn .btn-default:hover {
    background: #0D0D0D;
    color: #FFFFFF;
    animation: none;
}

@keyframes cta-blink {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.6); }
    50% { box-shadow: 0 0 0 12px rgba(255,255,255,0); }
}

@media (max-width: 991px) {
    .cta-sell-property {
        padding: 40px 30px;
    }
    .cta-sell-content {
        margin-bottom: 25px;
        text-align: center;
    }
    .cta-sell-content p {
        max-width: 100%;
    }
    .cta-sell-btn {
        text-align: center;
    }
}

@media (max-width: 575px) {
    .cta-sell-content h2 {
        font-size: 24px;
    }
    .cta-sell-property {
        padding: 30px 20px;
    }
}

/************************************/

/************************************/
/***  Our Projects Silver css     ***/
/************************************/

.our-projects-silver {
    background: var(--secondary-color) url('../images/service-bg-shape.png') no-repeat;
    background-position: top right;
    background-size: auto;
    padding: 80px 0 60px;
}

.our-projects-silver .projects-filter-row {
    padding-bottom: 30px;
}

/* Load More */
.projects-load-more {
    text-align: center;
    margin-top: 20px;
}

.projects-load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    background: #08881d;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.projects-load-more-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.projects-load-more-btn:hover {
    background: #0D0D0D;
    color: #FFFFFF;
}

.projects-load-more-btn:hover i {
    transform: translateY(3px);
}

/* Category Filter */
.projects-filter-silver ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.projects-filter-silver ul li a {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #666666;
    background: #F5F5F5;
    padding: 10px 22px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 1px solid #E8E8E8;
}

.projects-filter-silver ul li a:hover,
.projects-filter-silver ul li a.active {
    background: #08881d;
    color: #FFFFFF;
    border-color: #08881d;
    box-shadow: 0 4px 15px rgba(199, 154, 59, 0.3);
}

/* Card Styles */
.project-card-silver {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    border: 1px solid #F0F0F0;
}

.project-card-silver:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(199, 154, 59, 0.12);
    border-color: #08881d;
}

.project-card-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card-silver:hover .project-card-image img {
    transform: scale(1.08);
}

.project-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #FFFFFF;
    background: #08881d;
    padding: 5px 12px;
    border-radius: 20px;
}

.project-card-body {
    padding: 22px;
}

.project-card-body h3 {
    font-size: 17px;
    font-weight: 700;
    color: #0D0D0D;
    font-family: var(--accent-font);
    margin-bottom: 8px;
    line-height: 1.4;
}

.project-card-body p {
    font-size: 13px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 12px;
}

.project-card-details {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 15px;
    padding-top: 12px;
    border-top: 1px solid #F0F0F0;
}

.project-card-details span {
    font-size: 12px;
    color: #888888;
    display: flex;
    align-items: center;
    gap: 5px;
}

.project-card-details span i {
    color: #08881d;
    font-size: 12px;
}

.project-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #08881d;
    text-decoration: none;
    transition: all 0.3s ease;
}

.project-card-btn i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.project-card-btn:hover {
    color: #0D0D0D;
}

.project-card-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 575px) {
    .project-card-image {
        height: 200px;
    }
    .project-card-body {
        padding: 18px;
    }
}
/***  CTA Projects css            ***/
/************************************/

.cta-sell-btn {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.btn-outline-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 600;
    background: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-cta i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.btn-outline-cta:hover {
    background: #FFFFFF;
    color: #08881d;
    border-color: #FFFFFF;
}

.btn-outline-cta:hover i {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .cta-sell-btn {
        align-items: center;
    }
    .cta-sell-btn .btn-default,
    .btn-outline-cta {
        width: 100%;
        justify-content: center;
    }
}


/***  Footer Dark css    ***/
/************************************/

.main-footer {
    position: relative;
    background: #003f9b;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/footer-bg-image.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.08;
    z-index: 0;
    display: block;
}

.main-footer::after {
    display: none;
}

.footer-box {
    padding: 170px 0 0;
    position: relative;
    z-index: 1;
}

.footer-col {
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-logo img {
    max-height: 50px;
}

.footer-about-text {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.65);
    margin: 0;
}

.footer-col h3 {
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #08881d;
}

.footer-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu-list li {
    margin-bottom: 12px;
}

.footer-menu-list li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-menu-list li a .footer-link-icon {
    font-size: 12px;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.footer-menu-list li a:hover .footer-link-icon {
    color: #08881d;
}

.footer-menu-list li a:hover {
    color: #FFFFFF;
    padding-left: 5px;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}

.footer-contact-list li {
    font-size: 15px;
    color: rgb(255, 255, 255);
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    transition: transform 0.3s ease;
}

.footer-contact-list li:hover {
    transform: translateX(5px);
}

.footer-contact-list li i {
    color: #FFFFFF;
    font-size: 15px;
    margin-top: 3px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.footer-contact-list li:hover i {
    transform: translateX(5px);
}

.footer-contact-list li a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-list li a:hover {
    color: #FFFFFF;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.65);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    transform: translateY(-3px);
}

.footer-copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 10px;
    gap: 10px;
}

.footer-copyright p {
    font-size: 13px;
    color: rgb(255 255 255);
    margin: 0;
}

.footer-developed-by a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-developed-by a:hover {
    color: #FFFFFF;
}

@media (max-width: 767px) {
    .footer-copyright {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .footer-box {
        padding: 70px 0 0;
    }
    .footer-col {
        margin-bottom: 30px;
    }
}
.our-faqs {
    padding: 20px 0 !important;
}
.sell-property-info-wrap
 {
    background: #F9F9F9;
    padding: 60px 0 30px;
    margin: 0px 0;
}

.footer-logo img {
    width: 100%;
    max-width: 236px;
}
.our-blog {
    padding: 40px 0 0px !important;
}

.main-footer {
    position: relative;
    background: #003f9b;
    overflow: hidden;
    margin-top: -138px;
}
.cta-sell-property {
    z-index: 9999;
}

.main-footer::before {
    opacity: 0.03;
}
.testimonial-item{
    min-height:350px;
}
.testimonial-item-content p{
    font-weight: 300;
}
.section-title h2{
    font-size: 38px;
}

/***  Floating Contact CTA    ***/
/************************************/

.floating-cta {
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-cta-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #FFFFFF;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    position: relative;
}

.floating-cta-item::after {
    content: attr(title);
    position: absolute;
    right: 60px;
    white-space: nowrap;
    background: rgba(0,0,0,0.8);
    color: #FFFFFF;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.floating-cta-item:hover::after {
    opacity: 1;
}

.floating-cta-item.whatsapp {
    background: #25D366;
}

.floating-cta-item.whatsapp:hover {
    background: #128C7E;
    transform: scale(1.1);
}

.floating-cta-item.phone {
    background: #08881d;
}

.floating-cta-item.phone:hover {
    background: #A87D2E;
    transform: scale(1.1);
}

.top-bar{
    background-color: #08881d !important;
    padding:4px 0;
}

.btn-default::before {
    width: 36px;
    height: 28px;
}
.btn-default{
    padding: 13px 57px 13px 20px;
}

@media (max-width: 575px) {
    .floating-cta {
        right: 12px;
        bottom: 80px;
        gap: 8px;
    }
    .floating-cta-item {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}
@media (max-width: 767px) {
    .footer-box {
        padding: 157px 0 0;
    }
        .services-slider-wrapper {
        padding: 0 0px;
    }
    .banner-button-prev, .banner-button-next {
    width: 34px;
    height: 33px;
    }
    .banner-button-prev, .banner-button-next {
        font-size: 13px;
    }
    .slicknav_icon .slicknav_icon-bar {
    background-color: #ffffff;
    }
    .top-bar-right{
        display: none;
    }
    .top-bar {
    padding: 12px 0;
}
.about-achievements {
        margin-top: 17px;
    }
    .our-projects-silver{
            padding: 45px 0 40px;
    }
    .text-size{
        font-size: 28px !important;
    }
}

.btn-default::after {
    background: #08881d;
}
.navbar {
    padding: 16px 0 !important;
}
.footer-menu-list li a{
    color: rgb(255 255 255) !important;
}
.footer-about-text{
    color: rgb(255 255 255);
}
.section-title h2 {
    font-size: 30px;
}

/************************************/
/***  About Us Page Section css    ***/
/************************************/

/* Layout */
.about-section {
    padding: 60px 0;
    background: #F8F6F2;
    position: relative;
    overflow: hidden;
}

.about-section .container {
    position: relative;
    z-index: 1;
}

.about-section::before,
.about-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(31,94,74,0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.about-section::before {
    top: -80px;
    left: -80px;
}

.about-section::after {
    bottom: -80px;
    right: -80px;
}

.about-row {
    display: flex;
    align-items: center;
    gap: 0;
}

/* Left Column */
.about-left {
    position: relative;
}

.about-small-heading {
    display: inline-block;
    font-family: "Space Grotesk", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #08881d;
    margin-bottom: 16px;
    position: relative;
    padding-left: 40px;
}

.about-small-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 2px;
    background: #08881d;
}

.about-large-heading {
    font-family: "Space Grotesk", sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.25;
    margin-bottom: 30px;
}

.about-large-heading span {
    color: #1F5E4A;
}

.about-content p {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color: #6b6b6b;
    margin-bottom: 22px;
    line-height: 1.85;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* Vertical Divider */
.about-divider {
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, #08881d 20%, #08881d 80%, transparent 100%);
    min-height: 420px;
    margin: 0 40px;
    flex-shrink: 0;
    opacity: 0.5;
}

/* Right Column */
.about-right {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Premium Badge */
.about-badge {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1F5E4A 0%, #2a7a60 50%, #08881d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
    box-shadow: 0 8px 32px rgba(31,94,74,0.25);
}

.about-badge::before {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.2);
}

.about-badge-inner {
    text-align: center;
    color: #FFFFFF;
}

.about-badge-number {
    font-family: "Space Grotesk", sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    display: block;
}

.about-badge-text {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
    display: block;
    margin-top: 4px;
}

/* Statistics Grid */
.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
}

/* Statistic Cards */
.about-stat-card {
    background: #FFFFFF;
    border: 1px solid #08881d;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1F5E4A, #08881d);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.10);
    border-color: #08881d;
}

.about-stat-card:hover::before {
    opacity: 1;
}

.about-stat-number {
    font-family: "Space Grotesk", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1F5E4A;
    line-height: 1;
    margin-bottom: 8px;
}

.about-stat-label {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #6b6b6b;
    letter-spacing: 0.5px;
}

/* Animations */
.about-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.about-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-zoom-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.about-zoom-in.visible {
    opacity: 1;
    transform: scale(1);
}

.about-stat-card:nth-child(1) { transition-delay: 0.1s; }
.about-stat-card:nth-child(2) { transition-delay: 0.2s; }
.about-stat-card:nth-child(3) { transition-delay: 0.3s; }
.about-stat-card:nth-child(4) { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 1199.98px) {
    .about-large-heading {
        font-size: 36px;
    }
    .about-divider {
        margin: 0 30px;
        min-height: 380px;
    }
}

@media (max-width: 991.98px) {
    .about-section {
        padding: 70px 0;
    }
    .about-row {
        flex-direction: column;
        gap: 50px;
    }
    .about-divider {
        width: 120px;
        height: 1px;
        min-height: auto;
        margin: 0 auto;
        background: linear-gradient(90deg, transparent 0%, #08881d 20%, #08881d 80%, transparent 100%);
    }
    .about-large-heading {
        font-size: 34px;
    }
    .about-badge {
        width: 140px;
        height: 140px;
    }
    .about-badge-number {
        font-size: 34px;
    }
}

@media (max-width: 575.98px) {
    .about-section {
        padding: 50px 0;
    }
    .about-large-heading {
        font-size: 28px;
    }
    .about-content p {
        font-size: 15px;
    }
    .about-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    .about-stat-card {
        padding: 20px 14px;
    }
    .about-stat-number {
        font-size: 28px;
    }
    .about-stat-label {
        font-size: 12px;
    }
    .about-badge {
        width: 120px;
        height: 120px;
    }
    .about-badge-number {
        font-size: 30px;
    }
    .about-badge-text {
        font-size: 10px;
    }
        .sv-content-section {
        padding: 41px 0;
    }
   




 .top-bar-left ul li a:hover{
        color: #ffffff !important;
 }

 .slicknav_menu{
    background: #003e99 !important;
 }

 .slicknav_btn
 {
    background: #04409a;
 }
 .slicknav_nav .slicknav_row, .slicknav_nav li a{
    color: #fdfdfd;
 }
 .slicknav_arrow:after{
    color: #fffbff !important;
 }
}
.main-menu ul ul{
    background: #003f9b;
    width: 326px;
    line-height: 20px !important;
    
}
.main-menu ul ul li a
 {
    color: #f7f7f8;
 }

 @media (max-width: 1256px) and (min-width: 201px) {
   .main-menu ul li {
    margin: 0 0px;
}
}