/* Buttons */
.theme-btn {
    background-color: var(--primary-green);
    color: var(--white) !important;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 500;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-btn:hover {
    background-color: var(--primary-hover);
    box-shadow: 0px 5px 15px rgba(137, 177, 79, 0.3);
}

.theme-btn-s3 {
    background-color: var(--secondary-red);
    color: var(--white) !important;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 500;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-btn-s3:hover {
    background-color: var(--secondary-red-hover);
    box-shadow: 0px 5px 15px rgba(232, 17, 43, 0.3);
}

/* Service & Navigation Cards */
.icc-card {
    padding: 2em;
    border: 2px solid transparent;
    border-radius: 12px;
    background: rgba(126, 181, 53, 0.08);
    transition: all 0.3s ease;
}

.icc-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.icc-card.style3 {
    position: relative;
    border: 2px solid var(--primary-hover);
    background: var(--white);
    text-align: center;
    box-shadow: 0px 0px 0px 3px rgba(122, 178, 47, 0.08);
}

.icc-card.style3 {
    margin-top: 37px;
}

.icc-card.style3 img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
}

.icc-card.style2 {
    padding: 1em;
    padding-top: 20px;
    border-radius: 8px;
    background: linear-gradient(180deg, #f1f7e9 0%, rgba(241, 247, 233, 0) 100%);
    box-shadow: none !important;
    border: none;
    border-top: 3px solid var(--primary-light);
}

/* Navbar Link Elements */
.navigation-holder .sub-menu {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 4px;
}

/* Footer Links & Con-links */
.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-color-light);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.con-links li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.con-links li img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.con-links span {
    font-size: 15px;
    line-height: 1.4;
}

/* Blog Cards */
.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.blog-card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 25px;
}

.blog-card-meta {
    font-size: 13px;
    color: #888;
    margin-bottom: 12px;
    display: flex;
    gap: 15px;
}

.blog-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-title a {
    color: #111;
}

.blog-card-title a:hover {
    color: var(--primary-green);
}

.blog-card-excerpt {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
}

/* Glassmorphism elements */
.glass-effect {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-effect2 {
    position: relative;
    overflow: hidden;
}

.glass-effect2:before, .glass-effect2:after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    z-index: -1;
    filter: blur(80px);
}

.glass-effect2:before {
    background-color: var(--primary-color);
    top: -20px;
    left: -20px;
}

.glass-effect2:after {
    background-color: var(--secondary-blue);
    bottom: -20px;
    right: -20px;
}

/* Bootstrap Tabs override */
.custom-tabs .nav-link {
    border: none;
    font-weight: 500;
    color: #555;
    padding: 12px 25px;
    border-radius: 30px;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.custom-tabs .nav-link.active {
    background-color: var(--primary-green) !important;
    color: white !important;
}

/* Elementor Form Override & Visibilities */
.site-form {
    width: 100% !important;
}

.site-form input,
.site-form textarea,
.site-form select,
.form-field,
.form-field-textual,
input[size="1"].form-field,
input.form-field {
    width: 100% !important;
    min-width: 100% !important;
    display: block !important;
    box-sizing: border-box !important;
    padding: 14px 16px !important;
    font-size: 15px !important;
    line-height: 1.5 !important;
    background-color: var(--white) !important;
    border: 1px solid rgba(0, 0, 0, 0.15) !important;
    border-radius: 6px !important;
    color: #333 !important;
    margin-bottom: 16px !important;
    transition: all 0.3s ease !important;
}

.site-form input:focus,
.site-form textarea:focus,
.form-field:focus {
    border-color: var(--primary-green) !important;
    box-shadow: 0 0 0 3px rgba(137, 177, 79, 0.15) !important;
    outline: none !important;
}

.site-form button[type="submit"] {
    background-color: var(--primary-green) !important;
    color: var(--white) !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    border: none !important;
    padding: 14px 30px !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    display: block !important;
}

.site-form button[type="submit"]:hover {
    background-color: var(--primary-hover) !important;
    box-shadow: 0 5px 15px rgba(137, 177, 79, 0.25) !important;
}

.site-form-fields-wrapper {
    display: block !important;
}

.form-field-group {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
}
