/********** Template CSS **********/
:root {
    --primary: #348E38;
    --secondary: #525368;
    --light: #E8F5E9;
    --dark: #0F4229;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}
body {
    font-family: 'Poppins', sans-serif !important;
}
h1,
.h1,
h2,
.h2,
.fw-bold {
	font-family: Poppins;
    font-weight: 700 !important;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}


/* Footer */
/* ============================================
   FOOTER SECTION - DESIGN 1
============================================ */
.footer-section {
    position: relative;
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark)  100%);
    overflow: hidden;
}

/* Wave Decoration */
.footer-top-wave {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 100px;
    overflow: hidden;
}

.footer-top-wave svg {
    width: 100%;
    height: 100%;
}

/* Footer Main */
.footer-main {
    position: relative;
    padding-top: 80px;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Footer Brand */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.brand-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, #40916c 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(45, 106, 79, 0.3);
}

.brand-logo i {
    font-size: 1.8rem;
    color: #fff;
}

.brand-text h3 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.brand-text span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    max-width: 400px;
}

/* Footer CTA */
.footer-cta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
    background: rgba(255, 255, 255, 0.05);
    padding: 25px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-content h5 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, #40916c 100%);
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(45, 106, 79, 0.3);
    flex-shrink: 0;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(45, 106, 79, 0.4);
    color: #fff;
}

.cta-btn i {
    transition: transform 0.3s ease;
}

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

/* Footer Widget */
.footer-widget {
    position: relative;
}

.widget-title {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.title-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary) 0%, #40916c 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.title-icon i {
    color: #fff;
    font-size: 0.9rem;
}

/* Contact List */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: var(--primary);
    transform: scale(1.1);
}

.contact-icon i {
    color: var(--primary);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.contact-item:hover .contact-icon i {
    color: #fff;
}

.contact-text span {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin-bottom: 3px;
}

.contact-text p {
    color: #fff;
    font-size: 0.95rem;
    margin: 0;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links li:last-child {
    margin-bottom: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-links a:hover::before {
    opacity: 1;
}

/* Newsletter */
.newsletter-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.newsletter-form {
    margin-bottom: 25px;
}

.form-wrapper {
    display: flex;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.form-wrapper:focus-within {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 18px;
    color: #fff;
    font-size: 0.95rem;
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, #40916c 100%);
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(45, 106, 79, 0.4);
}

.newsletter-btn i {
    color: #fff;
    font-size: 1rem;
}

/* Social Links */
.social-links {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-links span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-5px);
    color: #fff;
}

.social-icon i {
    font-size: 0.95rem;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.copyright-text a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.copyright-text a:hover {
    color: var(--primary);
}

.designer-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.designer-text i {
    color: #e74c3c;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.designer-text a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.designer-text a:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .footer-cta {
        flex-direction: column;
        text-align: center;
        margin-top: 30px;
    }
    
    .brand-text h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .footer-main {
        padding-top: 60px;
    }
    
    .footer-brand {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }
    
    .footer-tagline {
        text-align: center;
    }
    
    .widget-title {
        justify-content: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}


/* Footer end */


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 80px
}


/* Fix for original navbar brand */
.navbar-brand h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 2.5;
	text-transform: uppercase;

    margin: 0 !important;
    padding: 0;
}

.navbar-brand h1 small {
    font-size: 1.0rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
}

/* Ensure navbar has proper height */
.navbar {
    min-height: auto;
}

.navbar-brand {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    white-space: nowrap;
}


.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

/* Simple Logo Image */
.navbar-brand .logo-img {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-brand:hover .logo-img {
    transform: scale(1.05);
}

/* Adjust for sticky/scrolled navbar */
.sticky-top.shadow-sm .logo-img {
    height: 50px;
}

/* Responsive */
@media (max-width: 991px) {
    .navbar-brand .logo-img {
        height: 50px;
    }
}

@media (max-width: 575px) {
    .navbar-brand .logo-img {
        height: 45px;
    }
}


/* facts */

/* ============================================
   FACTS SECTION - DESIGN 1: GLASSMORPHISM
============================================ */
.facts-section {
    position: relative;
    background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 50%, #40916c 100%);
    overflow: hidden;
}

.facts-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('img/carousel-1.jpg') center center no-repeat;
    background-size: cover;
    opacity: 0.15;
}

.facts-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Facts Badge */
.facts-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.facts-badge i {
    color: #f4a261;
}

.facts-title {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 700;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.2);
}

.facts-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-top: 10px;
}

/* Fact Card */
.fact-card {
    position: relative;
    height: 100%;
}

.fact-card-inner {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.fact-card:hover .fact-card-inner {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.fact-card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(244, 162, 97, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 0;
}

.fact-card:hover .fact-card-glow {
    opacity: 1;
    width: 250px;
    height: 250px;
}

/* Icon Wrapper */
.fact-icon-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
}

.fact-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #f4a261 0%, #e76f51 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(244, 162, 97, 0.4);
    transition: all 0.4s ease;
}

.fact-card:hover .fact-icon {
    transform: scale(1.1) rotate(10deg);
}

.fact-icon i {
    font-size: 2rem;
    color: #fff;
}

.icon-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px dashed rgba(244, 162, 97, 0.5);
    border-radius: 50%;
    animation: spin 15s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Fact Content */
.fact-content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 15px;
}

.fact-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin: 0;
}

.fact-plus {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f4a261;
    margin-left: 5px;
    margin-top: 5px;
}

.fact-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #f4a261, transparent);
    margin: 0 auto 15px;
    border-radius: 2px;
}

.fact-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
    display: block;
}

/* Responsive */
@media (max-width: 991px) {
    .facts-title {
        font-size: 2.2rem;
    }
    
    .fact-number {
        font-size: 3rem;
    }
}

@media (max-width: 767px) {
    .facts-title {
        font-size: 1.8rem;
    }
    
    .fact-card-inner {
        padding: 30px 20px;
    }
    
    .fact-icon {
        width: 70px;
        height: 70px;
    }
    
    .fact-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .fact-icon i {
        font-size: 1.5rem;
    }
    
    .fact-number {
        font-size: 2.5rem;
    }
}


/* ============================================
   TESTIMONIAL SECTION - DESIGN 1
============================================ */
.testimonial-section {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    overflow: hidden;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(45, 106, 79, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonial-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(244, 162, 97, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Section Badge */
.testimonial-section .section-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(45, 106, 79, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.testimonial-section .section-badge i {
    color: var(--primary);
    font-size: 0.9rem;
}

.testimonial-section .section-badge span {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Title */
.testimonial-section .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.2;
    margin-bottom: 20px;
}

.testimonial-section .section-desc {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Testimonial Stats */
.testimonial-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
    padding: 25px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary) 0%, #40916c 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(45, 106, 79, 0.25);
}

.stat-icon i {
    color: #fff;
    font-size: 1.3rem;
}

.stat-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    line-height: 1;
}

.stat-content span {
    color: #888;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Button */
.btn-testimonial {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, #1b4332 100%);
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(45, 106, 79, 0.3);
}

.btn-testimonial:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(45, 106, 79, 0.4);
    color: #fff;
}

.btn-testimonial i {
    transition: transform 0.3s ease;
}

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

/* Carousel Wrapper */
.testimonial-carousel-wrapper {
    position: relative;
    padding: 20px;
}

.quote-decoration {
    position: absolute;
    top: -20px;
    right: 40px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(244, 162, 97, 0.1) 0%, rgba(244, 162, 97, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}

.quote-decoration i {
    font-size: 3rem;
    color: #f4a261;
    opacity: 0.5;
}

/* Testimonial Card */
.testimonial-card {
    padding: 15px;
}

.testimonial-card-inner {
    background: #fff;
    padding: 40px 35px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.4s ease;
}

.testimonial-card-inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.testimonial-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), #52b788);
    border-radius: 25px 25px 0 0;
}

/* Rating */
.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #f4a261;
    font-size: 1rem;
    margin-right: 3px;
}

/* Testimonial Text */
.testimonial-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
}

/* Author */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.author-image {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
    padding: 3px;
    background: #fff;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.author-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 5px 0;
}

.author-info span {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border: 2px solid #e0e0e0;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: scale(1.1);
}

.nav-btn i {
    font-size: 0.9rem;
    color: #666;
    transition: color 0.3s ease;
}

.nav-btn:hover i {
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .testimonial-section .section-title {
        font-size: 2.2rem;
    }
    
    .testimonial-stats {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .testimonial-section .section-title {
        font-size: 1.8rem;
    }
    
    .testimonial-card-inner {
        padding: 30px 25px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .quote-decoration {
        display: none;
    }
}


/* Mission Statement About */




/* ============================================
   MISSION & VISION SECTION - DESIGN 3 (TABBED)
============================================ */
.mission-vision-section-v3 {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.mission-vision-section-v3::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(45, 106, 79, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

/* Badge V3 */
.mv-badge-v3 {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(45, 106, 79, 0.1);
    padding: 12px 25px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.mv-badge-v3 .badge-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary), #40916c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mv-badge-v3 .badge-icon i {
    color: #fff;
    font-size: 0.9rem;
}

.mv-badge-v3 .badge-text {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* footer icon */

.footer-brand {
    margin-bottom: 30px;
}

.brand-link {
    display: inline-block;
    margin-bottom: 18px;
    transition: all 0.4s ease;
}

.footer-logo {
    height: 75px;
    width: auto;
    max-width: 230px;
    object-fit: contain;
    filter: drop-shadow(0 4px 15px rgba(82, 183, 136, 0.2));
    transition: all 0.4s ease;
}

.brand-link:hover .footer-logo {
    transform: scale(1.05) translateY(-3px);
    filter: drop-shadow(0 8px 25px rgba(82, 183, 136, 0.3));
}

.brand-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    max-width: 350px;
}

/* Responsive */
@media (max-width: 991px) {
    .footer-brand {
        text-align: center;
    }
    
    .brand-tagline {
        max-width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .footer-logo {
        height: 65px;
        max-width: 200px;
    }
    
    .brand-tagline {
        font-size: 0.9rem;
    }
}

@media (max-width: 575px) {
    .footer-logo {
        height: 55px;
        max-width: 180px;
    }
}

/* footer icon */



/* Main Title */
.mv-main-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.mv-main-subtitle {
    color: #666;
    font-size: 1.1rem;
}

/* Tab Navigation */
.mv-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    background: #fff;
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.mv-tab-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 30px;
    border: none;
    background: transparent;
    border-radius: 15px;
    cursor: pointer;
    position: relative;
    transition: all 0.4s ease;
}

.mv-tab-btn:hover {
    background: rgba(45, 106, 79, 0.05);
}

.mv-tab-btn.active {
    background: linear-gradient(135deg, var(--primary), #40916c);
}

.mv-tab-btn .tab-icon {
    width: 45px;
    height: 45px;
    background: rgba(45, 106, 79, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mv-tab-btn.active .tab-icon {
    background: rgba(255, 255, 255, 0.2);
}

.mv-tab-btn .tab-icon i {
    color: var(--primary);
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.mv-tab-btn.active .tab-icon i {
    color: #fff;
}

.mv-tab-btn .tab-text {
    font-weight: 600;
    font-size: 1rem;
    color: #1a1a2e;
    transition: color 0.3s ease;
}

.mv-tab-btn.active .tab-text {
    color: #fff;
}

.mv-tab-btn .tab-indicator {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mv-tab-btn.active .tab-indicator {
    opacity: 1;
}

/* Tab Content */
.mv-tabs-content {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.mv-tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.mv-tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Tab Image */
.tab-image-wrapper {
    position: relative;
    height: 100%;
    min-height: 450px;
}

.tab-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.tab-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mv-tab-pane:hover .tab-image img {
    transform: scale(1.05);
}

.tab-image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), #40916c);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(45, 106, 79, 0.4);
    z-index: 2;
}

.tab-image-badge.vision-badge {
    background: linear-gradient(135deg, #ea580c, #f97316);
    box-shadow: 0 15px 40px rgba(234, 88, 12, 0.4);
}

.tab-image-badge.values-badge {
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.4);
}

.tab-image-badge i {
    font-size: 2rem;
    color: #fff;
}

.tab-image-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 106, 79, 0.3) 0%, transparent 60%);
}

.tab-image-decoration.vision-decoration {
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.3) 0%, transparent 60%);
}

.tab-image-decoration.values-decoration {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.3) 0%, transparent 60%);
}

/* Tab Content Wrapper */
.tab-content-wrapper {
    padding: 50px 45px;
}

.content-label {
    display: inline-block;
    background: rgba(45, 106, 79, 0.1);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.content-label.vision-label {
    background: rgba(234, 88, 12, 0.1);
    color: #ea580c;
}

.content-label.values-label {
    background: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
}

.content-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.3;
    margin-bottom: 20px;
}

.content-text {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Content Features */
.content-features {
    margin-bottom: 30px;
}

.feature-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8f9fa;
    padding: 15px 18px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(45, 106, 79, 0.1);
    transform: translateY(-3px);
}

.feature-item.vision-feature:hover {
    background: rgba(234, 88, 12, 0.1);
}

.feature-item.values-feature:hover {
    background: rgba(124, 58, 237, 0.1);
}

.feature-item i {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--primary), #40916c);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.feature-item.vision-feature i {
    background: linear-gradient(135deg, #ea580c, #f97316);
}

.feature-item.values-feature i {
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a2e;
}

/* Content Button */
.content-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary), #1b4332);
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(45, 106, 79, 0.3);
}

.content-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(45, 106, 79, 0.4);
    color: #fff;
}

.content-btn.vision-btn {
    background: linear-gradient(135deg, #ea580c, #c2410c);
    box-shadow: 0 10px 30px rgba(234, 88, 12, 0.3);
}

.content-btn.vision-btn:hover {
    box-shadow: 0 15px 40px rgba(234, 88, 12, 0.4);
}

.content-btn.values-btn {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

.content-btn.values-btn:hover {
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.4);
}

.content-btn i {
    transition: transform 0.3s ease;
}

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

/* Responsive */
@media (max-width: 991px) {
    .mv-main-title {
        font-size: 2.5rem;
    }
    
    .mv-tabs-nav {
        flex-direction: column;
        gap: 10px;
    }
    
    .mv-tab-btn {
        justify-content: center;
    }
    
    .mv-tab-btn .tab-indicator {
        display: none;
    }
    
    .tab-image-wrapper {
        min-height: 350px;
    }
    
    .tab-content-wrapper {
        padding: 40px 30px;
    }
    
    .content-title {
        font-size: 1.7rem;
    }
}

@media (max-width: 767px) {
    .mv-main-title {
        font-size: 2rem;
    }
    
    .mv-tab-btn {
        padding: 15px 20px;
    }
    
    .mv-tab-btn .tab-icon {
        width: 40px;
        height: 40px;
    }
    
    .mv-tab-btn .tab-text {
        font-size: 0.9rem;
    }
    
    .tab-image-wrapper {
        min-height: 280px;
    }
    
    .tab-image-badge {
        width: 60px;
        height: 60px;
        border-radius: 15px;
        bottom: 20px;
        left: 20px;
    }
    
    .tab-image-badge i {
        font-size: 1.5rem;
    }
    
    .tab-content-wrapper {
        padding: 30px 20px;
    }
    
    .content-title {
        font-size: 1.4rem;
    }
    
    .feature-row {
        flex-direction: column;
    }
    
    .feature-item {
        padding: 12px 15px;
    }
}



/* Mission Statement About */

/* Why choose us */

/* ============================================
   WHY CHOOSE US SECTION - DESIGN 2
============================================ */
.why-choose-section-v2 {
    background: #fff;
    position: relative;
}

/* Section Badge */
.why-choose-section-v2 .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.badge-dot {
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, var(--primary), #52b788);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.why-choose-section-v2 .section-badge span {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.section-link:hover {
    color: #1b4332;
}

.section-link:hover i {
    transform: translateX(5px);
}

.section-link i {
    transition: transform 0.3s ease;
}

/* Why Card V2 */
.why-card-v2 {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 35px 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.why-card-v2:hover {
    background: #fff;
    border-color: rgba(45, 106, 79, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}

/* Highlighted Card */
.why-card-v2.highlighted {
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(45, 106, 79, 0.15);
}

.highlight-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #f4a261, #e76f51);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Card Header */
.card-header-v2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.icon-box {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary) 0%, #40916c 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(45, 106, 79, 0.3);
    transition: all 0.4s ease;
}

.why-card-v2:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
    border-radius: 50%;
}

.icon-box i {
    font-size: 1.6rem;
    color: #fff;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-num {
    font-size: 2rem;
    font-weight: 800;
    color: rgba(45, 106, 79, 0.15);
}

.card-line {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    border-radius: 2px;
}

/* Card Body */
.card-body-v2 h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.card-body-v2 p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Card Features */
.card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #555;
    background: rgba(45, 106, 79, 0.08);
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.card-features li:hover {
    background: rgba(45, 106, 79, 0.15);
}

.card-features li i {
    color: var(--primary);
    font-size: 0.7rem;
}

/* Hover Line */
.card-hover-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #52b788, #f4a261);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.why-card-v2:hover .card-hover-line {
    transform: scaleX(1);
}

/* Responsive */
@media (max-width: 991px) {
    .why-card-v2 {
        padding: 30px 25px;
    }
}

@media (max-width: 767px) {
    .card-features {
        flex-direction: column;
        gap: 10px;
    }
    
    .card-features li {
        width: fit-content;
    }
    
    .icon-box {
        width: 55px;
        height: 55px;
        border-radius: 15px;
    }
    
    .icon-box i {
        font-size: 1.4rem;
    }
}


/* Why choose us */



/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(15, 66, 41, .6);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(rgba(15, 66, 41, .6), rgba(15, 66, 41, .6)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Top Feature ***/
@media (min-width: 991.98px) {
    .top-feature {
        position: relative;
        margin-top: -80px;
        z-index: 1;
    }
}




/*** Facts & Quote ***/
.facts,
.quote {
    background: rgba(15, 66, 41, .6);
}


/*** Service ***/
.service-item {
    position: relative;
    text-align: center;
}

.service-item .service-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
}

.service-item .service-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    transform: scale(1.2);
    transition: .3s;
    z-index: -1;
}

.service-item:hover .service-img img {
    transform: scale(1);
}

.service-item .service-text {
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .3s;
}

.service-item:hover .service-text {
    background: rgba(15, 66, 41, .6);
}

.service-item .service-text h4,
.service-item .service-text p {
    transition: .3;
}

.service-item:hover .service-text h4 {
    color: #FFFFFF;
}

.service-item:hover .service-text p {
    color: var(--light);
}

.service-item .service-text .btn-square {
    width: 100px;
    height: 100px;
    background: transparent;
    transition: .5s;
}

.service-item:hover .service-text .btn-square {
    background: var(--light);
}

.service-item .service-text .btn {
    width: 31px;
    height: 31px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: var(--light);
    white-space: nowrap;
    overflow: hidden;
    transition: .3s;
}

.service-item:hover .service-text .btn {
    width: 112px;
}




 


.services-section-v1 {
    background: linear-gradient(135deg, #1a4d2e 0%, #2d6a4f 50%, #40916c 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.services-section-v1::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.service-card-v1 {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    height: 100%;
}

.service-card-v1:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.service-card-v1 .card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.service-card-v1:hover .card-image img {
    transform: scale(1.15);
}

.service-card-v1 .card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(26, 77, 46, 0.9), transparent);
}

.service-card-v1 .icon-wrapper {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f4a261, #e76f51);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(244, 162, 97, 0.4);
    transition: all 0.4s ease;
}

.service-card-v1:hover .icon-wrapper {
    transform: translateX(-50%) rotate(360deg) scale(1.1);
}

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

.service-card-v1 .card-content {
    padding: 50px 30px 30px;
    text-align: center;
}

.service-card-v1 .card-content h4 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}

.service-card-v1 .card-content h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #f4a261, #e76f51);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.service-card-v1:hover .card-content h4::after {
    width: 80px;
}

.service-card-v1 .card-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-card-v1 .read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card-v1 .read-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f4a261, #e76f51);
    transition: left 0.4s ease;
    z-index: -1;
}

.service-card-v1 .read-more-btn:hover::before {
    left: 0;
}

.service-card-v1 .read-more-btn:hover {
    border-color: transparent;
    transform: translateX(5px);
}

.service-card-v1 .read-more-btn i {
    transition: transform 0.3s ease;
}

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

/* Floating Elements */
.floating-leaf {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Project in index */


/* ============================================
   PROJECTS SECTION - ELEGANT DESIGN
============================================ */
.projects-section {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    overflow: hidden;
}

/* Background Decoration */
.projects-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
}

.deco-circle.deco-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(45, 106, 79, 0.06) 0%, transparent 70%);
    top: -200px;
    left: -150px;
}

.deco-circle.deco-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(244, 162, 97, 0.05) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
}

/* ============================================
   SECTION HEADER
============================================ */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.badge-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary));
}

.badge-line:last-child {
    background: linear-gradient(90deg, var(--primary), transparent);
}

.section-badge i {
    color: var(--primary);
    font-size: 0.8rem;
}

.section-badge .badge-text {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-subtitle {
    color: #666;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* ============================================
   FILTER BUTTONS
============================================ */
.filter-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.filter-buttons {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 10px;
    margin: 0;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.4s ease;
    background: transparent;
    border: 2px solid transparent;
    position: relative;
}

.filter-btn i {
    font-size: 0.9rem;
    color: #888;
    transition: all 0.3s ease;
}

.filter-btn span {
    font-weight: 600;
    font-size: 0.95rem;
    color: #555;
    transition: all 0.3s ease;
}

.filter-count {
    background: rgba(45, 106, 79, 0.1);
    color: var(--primary);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: rgba(45, 106, 79, 0.05);
}

.filter-btn:hover i,
.filter-btn:hover span {
    color: var(--primary);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, #1b4332 100%);
    box-shadow: 0 10px 30px rgba(45, 106, 79, 0.3);
}

.filter-btn.active i,
.filter-btn.active span {
    color: #fff;
}

.filter-btn.active .filter-count {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* ============================================
   PROJECT CARDS
============================================ */
.project-card {
    position: relative;
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.project-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* Project Image */
.project-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        transparent 40%,
        rgba(27, 67, 50, 0.9) 100%
    );
    opacity: 0.7;
    transition: all 0.4s ease;
}

.project-card:hover .project-overlay {
    opacity: 0.9;
    background: linear-gradient(
        180deg,
        rgba(27, 67, 50, 0.3) 0%,
        rgba(27, 67, 50, 0.6) 40%,
        rgba(27, 67, 50, 0.95) 100%
    );
}

/* Project Status Badge */
.project-status {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    z-index: 2;
    transition: all 0.3s ease;
}

.project-status.completed {
    background: rgba(82, 183, 136, 0.9);
    color: #fff;
}

.project-status.ongoing {
    background: rgba(244, 162, 97, 0.9);
    color: #fff;
}

.project-status i {
    font-size: 0.7rem;
}

.project-card:hover .project-status {
    transform: scale(1.05);
}

/* Project Content */
.project-content {
    padding: 30px;
    position: relative;
}

.project-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(45, 106, 79, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.project-category i {
    color: var(--primary);
    font-size: 0.8rem;
}

.project-category span {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-card:hover .project-category {
    background: var(--primary);
}

.project-card:hover .project-category i,
.project-card:hover .project-category span {
    color: #fff;
}

.project-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.project-card:hover .project-title {
    color: var(--primary);
}

.project-desc {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Project Actions */
.project-actions {
    display: flex;
    gap: 12px;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
}

.action-btn i {
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.view-btn {
    background: rgba(45, 106, 79, 0.1);
    color: var(--primary);
    border: 1px solid rgba(45, 106, 79, 0.2);
}

.view-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(45, 106, 79, 0.3);
}

.details-btn {
    background: linear-gradient(135deg, var(--primary) 0%, #1b4332 100%);
    color: #fff;
    border: none;
}

.details-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(45, 106, 79, 0.4);
    color: #fff;
}

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

/* Hover Effect Line */
.project-hover-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), #52b788, #f4a261);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.project-card:hover .project-hover-effect {
    transform: scaleX(1);
}

/* ============================================
   VIEW ALL BUTTON
============================================ */
.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--primary) 0%, #1b4332 100%);
    color: #fff;
    padding: 18px 40px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 15px 40px rgba(45, 106, 79, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.view-all-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.view-all-btn:hover::before {
    left: 100%;
}

.view-all-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(45, 106, 79, 0.4);
    color: #fff;
}

.view-all-btn i {
    transition: transform 0.3s ease;
}

.view-all-btn:hover i {
    transform: translateX(8px);
}

/* ============================================
   RESPONSIVE STYLES
============================================ */
@media (max-width: 1199px) {
    .section-title {
        font-size: 2.4rem;
    }
    
    .project-image {
        height: 250px;
    }
}

@media (max-width: 991px) {
    .section-title {
        font-size: 2rem;
    }
    
    .filter-buttons {
        gap: 10px;
        padding: 8px;
    }
    
    .filter-btn {
        padding: 12px 20px;
    }
    
    .filter-btn span {
        font-size: 0.85rem;
    }
    
    .project-image {
        height: 230px;
    }
    
    .project-content {
        padding: 25px;
    }
    
    .project-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 767px) {
    .section-badge {
        gap: 10px;
    }
    
    .badge-line {
        width: 30px;
    }
    



/* Project in index */




/* About section */

/* ============================================
   ABOUT SECTION STYLES
============================================ */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* About Image Wrapper */
.about-img-wrapper {
    position: relative;
    z-index: 1;
}

.about-img-wrapper .main-img {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.about-img-wrapper:hover .main-img {
    transform: scale(1.02);
}

.about-img-wrapper .img-decoration {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 4px solid var(--primary);
    border-radius: 1rem;
    z-index: -1;
    transition: all 0.4s ease;
}

.about-img-wrapper:hover .img-decoration {
    top: 10px;
    left: 10px;
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(243, 156, 18, 0.4);
    z-index: 10;
    border: 5px solid #fff;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 15px 40px rgba(243, 156, 18, 0.4); }
    50% { box-shadow: 0 20px 50px rgba(243, 156, 18, 0.6); }
}

.experience-badge .badge-inner {
    text-align: center;
    color: #fff;
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.3;
    opacity: 0.9;
}

/* Floating Card */
.floating-card {
    position: absolute;
    top: 30px;
    left: -40px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.floating-card i {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), #00a085);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.floating-card h6 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a2e;
}

.floating-card small {
    color: #666;
    font-size: 0.75rem;
}

/* About Content */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(var(--primary-rgb), 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.section-badge i {
    color: var(--primary);
}

.section-badge span {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h1 .highlight {
    color: var(--primary);
    position: relative;
}

.about-content h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(243, 156, 18, 0.3);
    z-index: -1;
}

.lead-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

/* Quote Box */
.quote-box {
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05) 0%, rgba(var(--primary-rgb), 0.1) 100%);
    border-left: 4px solid var(--primary);
    padding: 25px 30px;
    border-radius: 0 15px 15px 0;
    margin: 30px 0;
    position: relative;
}

.quote-box i {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 1.5rem;
    color: var(--primary);
    opacity: 0.3;
}

.quote-box p {
    margin: 0;
    font-style: italic;
    color: #1a1a2e;
    font-weight: 500;
    padding-left: 20px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), #00a085);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
    color: #fff;
    font-size: 0.9rem;
}

.feature-item span {
    font-weight: 600;
    color: #1a1a2e;
}

/* About CTA */
.about-cta {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.about-cta .btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #00a085 100%);
    border: none;
    padding: 15px 35px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.3);
    transition: all 0.3s ease;
}

.about-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(var(--primary-rgb), 0.4);
}

.cta-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: rgba(243, 156, 18, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
    50% { transform: rotate(0deg); }
}

.contact-icon i {
    color: #f39c12;
    font-size: 1.3rem;
}

.cta-contact small {
    display: block;
    color: #666;
    font-size: 0.8rem;
}

.cta-contact h6 {
    margin: 0;
    color: #1a1a2e;
    font-weight: 700;
}

/* Achievement Cards */
.achievement-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.achievement-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), #00a085);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.achievement-card:hover .achievement-icon {
    transform: scale(1.1) rotate(10deg);
}

.achievement-icon.orange {
    background: linear-gradient(




/* about section end */


/*** Project Portfolio ***/
#portfolio-flters {
    display: inline-block;
    background: var(--light);
    padding: 10px 15px;
}

#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--primary);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--dark);
    border-color: var(--dark);
}

.portfolio-inner {
    position: relative;
    overflow: hidden;
}

.portfolio-inner::before,
.portfolio-inner::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(15, 66, 41, .6);
    transition: .5s;
}

.portfolio-inner::after {
    left: auto;
    right: 0;
}

.portfolio-inner:hover::before,
.portfolio-inner:hover::after {
    width: 50%;
}

.portfolio-inner .portfolio-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.portfolio-inner:hover .portfolio-text {
    transition-delay: .3s;
    opacity: 1;
}

.portfolio-inner .portfolio-text .btn {
    background: var(--light);
    color: var(--primary);
}

.portfolio-inner .portfolio-text .btn:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Team ***/
.team-item {
    position: relative;
    overflow: hidden;
}

.team-item .team-text {
    position: absolute;
    width: calc(100% - 45px);
    left: -100%;
    bottom: 45px;
    padding: 1.5rem;
    background: #FFFFFF;
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    left: 0;
    opacity: 1;
}

.team-item .team-social .btn {
    background: var(--light);
    color: var(--primary);
}

.team-item .team-social .btn:hover {
    background: var(--primary);
    color: var(--light);
}

.team-item .team-img .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.team-item:hover .team-img .team-social {
    transition-delay: .3s;
    opacity: 1;
}


/*** Testimonial ***/

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 4px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}


/* Footer new */
/* Footer new */



.copyright {
    color: var(--light);
    background: #072A19;
}

.copyright a {
    color: #FFFFFF;
}

.copyright a:hover {
    color: var(--primary);
}