/*
Theme Name: Gibson Ads
Description: Custom WordPress theme for Gibson Ads
Version: 1.0
Author: Krish Patel
*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* ============================================
   SCROLL ANIMATIONS & TEXT EFFECTS
   ============================================ */

/* Base animation classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children animation */
.stagger-children>* {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stagger-children.animate-in>*:nth-child(1) {
    transition-delay: 0.1s;
}

.stagger-children.animate-in>*:nth-child(2) {
    transition-delay: 0.2s;
}

.stagger-children.animate-in>*:nth-child(3) {
    transition-delay: 0.3s;
}

.stagger-children.animate-in>*:nth-child(4) {
    transition-delay: 0.4s;
}

.stagger-children.animate-in>*:nth-child(5) {
    transition-delay: 0.5s;
}

.stagger-children.animate-in>*:nth-child(6) {
    transition-delay: 0.6s;
}

.stagger-children.animate-in>* {
    opacity: 1;
    transform: translateY(0);
}

body,
html {
    font-family: "Poppins", sans-serif;
    /*font-family: "Montserrat", sans-serif;*/
    margin: 0 !important;
    padding: 0 !important;
    background-color: #f4f4f4;
    font-weight: 400;
}

a {
    outline: none;
    transition: all 0.5s;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    outline: none;
    transition: all 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    color: #a7cf4c !important;
}

a:focus {
    text-decoration: none;
    outline: none;
}

img {
    max-width: 100%;
    border: 0px;
    transition: all 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

iframe {
    max-width: 100%;
    border: 0px;
    width: 100%;
}

/* ============================================
   404 PAGE STYLES WITH ANIMATIONS
   ============================================ */

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        opacity: 1;
    }

    70% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes slide {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100vw);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* 404 Page Container */
.error-404-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    padding: 20px;
}

.error-404-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    z-index: 1;
}

.floating-animation {
    animation: float 3s ease-in-out infinite;
}

.error-404-content {
    text-align: center;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

/* 404 Number */
.error-404-number {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 120px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.digit {
    display: inline-block;
    animation: bounceIn 0.8s ease-out both;
}

.digit-4:nth-child(1) {
    animation-delay: 0.2s;
}

.digit-0 {
    animation: spin 1.5s ease-in-out infinite;
    animation-delay: 0.4s;
}

.digit-4:nth-child(3) {
    animation-delay: 0.6s;
}

/* Title and Description */
.error-title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin: 20px 0 15px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.error-description {
    font-size: 18px;
    color: #666;
    margin: 0 0 40px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Animation Decoration */
.error-animation {
    margin: 30px 0;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.animated-decoration {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
    animation: slide 2s ease-in-out infinite;
}

/* Home Button */
.home-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    animation: bounceIn 0.8s ease-out 0.5s both;
    position: relative;
    overflow: hidden;
    z-index: 10;
    cursor: pointer;
    pointer-events: auto;
    border: none;
}

.home-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.home-button:hover::before {
    left: 0;
}

.home-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.button-text {
    display: inline-block;
}

.button-icon {
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 18px;
}

.home-button:hover .button-icon {
    transform: translateX(5px);
}

/* Decorative Circles */
.error-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: pulse 3s ease-in-out infinite;
}

.decoration-circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.decoration-circle-2 {
    width: 200px;
    height: 200px;
    bottom: -80px;
    left: -80px;
    animation-delay: 1s;
}

.decoration-circle-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
    animation-delay: 0.5s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .error-404-content {
        padding: 40px 25px;
    }

    .error-404-number {
        font-size: 70px;
        gap: 10px;
        margin-bottom: 20px;
    }

    .error-title {
        font-size: 32px;
        margin: 15px 0 10px;
    }

    .error-description {
        font-size: 16px;
        margin: 0 0 30px;
    }

    .home-button {
        padding: 14px 35px;
        font-size: 15px;
    }

    .decoration-circle-1 {
        width: 200px;
        height: 200px;
        top: -80px;
        right: -80px;
    }

    .decoration-circle-2 {
        width: 150px;
        height: 150px;
        bottom: -60px;
        left: -60px;
    }

    .decoration-circle-3 {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .error-404-section {
        min-height: 100vh;
        padding: 15px;
    }

    .error-404-content {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .error-404-number {
        font-size: 50px;
        gap: 5px;
        margin-bottom: 15px;
    }

    .error-title {
        font-size: 26px;
        margin: 12px 0 8px;
    }

    .error-description {
        font-size: 14px;
        margin: 0 0 25px;
    }

    .home-button {
        padding: 12px 30px;
        font-size: 14px;
        gap: 8px;
    }
}

.wrapper {
    display: block;
    width: 100%;
    position: relative;
    padding: 120px 0px;
}

.site-header {
    background: #000000;
    padding: 20px 0px;
}

.mainnav-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.green-bg {
    background-image: url("./images/green-bg.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.footer-left-cnt h2 {
    font-size: 48px;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 30px;
    margin-top: 50px;
}

.footer-left-cnt {
    font-size: 18px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 400;
}

.gform-field-label {
    font-size: 18px !important;
    color: #000 !important;
    font-weight: 400 !important;
}

.gfield_required {
    display: none;
}

.ginput_container input[type=text],
.ginput_container input[type=email],
.ginput_container input[type=tel],
.ginput_container textarea {
    background-color: #fff !important;
    border: 1px solid #727270 !important;
    border-radius: 0px !important;
    font-size: 20px !important;
    color: #000 !important;
    padding: 10px !important;
    height: 50px !important;
}

.outer-contact-form {
    background-color: #ffffff;
    padding: 50px;
}

.gform-footer .gform_button {
    background-color: #a7cf4c !important;
    font-size: 18px !important;
    color: #000000 !important;
    font-weight: 700 !important;
    display: inline-block !important;
    width: 100% !important;
    text-transform: uppercase !important;
    line-height: 70px !important;
    border-radius: 0px !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    border: 2px solid #a7cf4c !important;
}

.gform-footer .gform_button:hover {
    background-color: transparent !important;
    color: #a7cf4c !important;
    box-shadow: inset 0 0 0 2px #a7cf4c !important;
    transform: translateY(-2px) !important;
    border: 2px solid #1e1e1e !important;
}

.wrp-footer-bottom {
    background-color: #1e1e1e;
    font-size: 18px;
    line-height: 40px;
    color: #ffffff;
    font-weight: 400;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.wrp-footer-bottom a {
    color: #fff;
}

.footer-cnt {
    margin: 20px 0px;
}

.footer-address {
    margin: 20px 0px;
}

.footer-phone p {
    margin: 0px;
}

.first-footer {
    padding-right: 160px;
}

.footer-navigation ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.wrp-footer-bottom h3 {
    font-size: 24px;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 50px;
}

.first-footer .site-logo {
    margin-bottom: 30px;
}

.social-icons {
    display: inline-flex;
    margin-top: 30px;
    gap: 10px;
}

.social-icons a {
    display: inline-flex;
    background: #fff;
    color: #1e1e1e;
    border-radius: 5px;
    font-size: 25px;
    padding: 10px;
    min-width: 45px;
    height: 45px;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin: 0px;
    transition: all 0.3s ease;
    border: 2px solid #1e1e1e;
    font-weight: 700;
}

.social-icons a:hover {
    background: transparent;
    color: #a7cf4c;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(167, 207, 76, 0.3);
}

.social-icons a:first-child {
    margin-left: 0px;
}

.footer-credit {
    font-size: 18px;
    line-height: 40px;
    color: #ffffff;
    font-weight: 400;
}

.right-text-custom {
    text-align: right;
}

.footer-credit {
    font-size: 18px;
    line-height: 40px;
    color: #ffffff;
    font-weight: 400;
    padding: 20px 0px;
    background-color: #1e1e1e;
}

.footer-credit p {
    margin: 0px;
}

.footer-credit a {
    color: #a7cf4c;
}

/* ============================================
   HERO SECTION STYLES
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    background: #0a0a0a;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.hero-text-wrapper {
    color: #ffffff;
    animation: fadeInUp 1s ease-out;
}

.hero-tag {
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out 0.2s both;
    font-size: 18px;
    color: #ffffff;
    font-weight: 400;
}

.hero-title {
    line-height: 1.2;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.4s both;
    font-size: 60px;
    color: #ffffff;
    font-weight: 400;
}

.hero-subtitle {
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.6s both;
    font-size: 24px;
    line-height: 36px;
    color: #fff;
    font-weight: 400;
}

.hero-buttons {
    display: inline-block;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.btn-primary {
    background-color: #a7cf4c !important;
    padding: 14px 50px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px;
    border: none !important;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 18px !important;
    color: #000 !important;
    font-weight: 400 !important;
    border-radius: 0px !important;
    font-family: "Montserrat", sans-serif !important;
    margin-right: 20px;
}

.btn-primary:hover {
    background-color: #95b842 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(167, 207, 76, 0.3);
    color: #000 !important;
}

.btn-link {
    color: #ffffff !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.btn-link:hover {
    color: #a7cf4c !important;
}

/* Responsive Hero Section */
/*
@media (max-width: 768px) {
	.hero-section {
		min-height: auto;
		padding: 100px 0;
	}

	.hero-content {
		min-height: auto;
		padding: 100px 0;
	}

	.hero-title {
		font-size: 32px;
		margin-bottom: 20px;
	}

	.hero-subtitle {
		font-size: 16px;
		margin-bottom: 30px;
	}

	.hero-tag {
		font-size: 12px;
	}

	.btn-primary {
		padding: 12px 40px !important;
		font-size: 14px !important;
	}
}
    */

footer a:hover {
    color: #a7cf4c;
}

/* Portfolio page styles */
.portfolio-page {
    padding: 80px 0 120px;
}

.portfolio-filter-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 100px;
}

.portfolio-filter-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.portfolio-filter-indicator {
    display: none;
}

.portfolio-grid {
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.portfolio-grid.animating {
    opacity: 0.4;
    transform: translateY(10px);
}

.portfolio-filter {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #2f2f2f;
    cursor: pointer;
    transition: color 0.25s ease;
}

.portfolio-filter::after {
    content: '';
    width: 2px;
    height: 40px;
    background: #a7cf4c;
    margin-left: 40px;
}

.portfolio-filter:last-child::after {
    display: none;
}

.portfolio-filter.active,
.portfolio-filter:hover {
    color: #a7cf4c;
}

.portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 70px rgba(0, 0, 0, 0.08);
}

.portfolio-card-image {
    min-height: 240px;
    /*background: linear-gradient(180deg, #f7f7f7 0%, #ededed 100%);*/
    position: relative;
}
.masonry .item a {
	display: inline-block;
	width: 100%;
}

.portfolio-card-image::before {
    content: '';
    position: absolute;
    inset: 5px;
    border-radius: 18px;
    /* background: rgba(255, 255, 255, 0.8); */
    border: 3px solid rgba(167, 207, 76, 0.3);
}

.portfolio-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.portfolio-card-category {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #7a7a7a;
}

.portfolio-card-title {
    margin: 0;
    font-size: 19px;
    line-height: 1.35;
    font-weight: 600;
    color: #a7cf4c;
}

@media (max-width: 1200px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, minmax(220px, 1fr));
    }
}

@media (max-width: 992px) {
    .portfolio-page {
        padding: 60px 0 80px;
    }

    .portfolio-filter-list {
        gap: 16px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 680px) {
    .portfolio-filter-list {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    .portfolio-filter::after {
        display: none;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

.the-problem-section h3 {
    font-size: 24px;
    color: #000000;
    font-weight: 400;
    padding: 20px 0px;
}

.problem-img {
    margin: 20px 0px;
}

.the-problem-section {
    font-size: 18px;
    line-height: 30px;
    color: #000000;
    font-weight: 400;
}

.problem-wrapper {
    padding: 50px 20px 0px;
}

.left-aftermath .section-title {
    padding-right: 100px;
    font-size: 60px;
    color: #fff;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.content-aftermath p {
    margin: 0px;
    padding: 0px;
    font-size: 17px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 400;
    padding: 90px 0px;
}

.the-aftermath-content {
    margin-bottom: 20px;
}

.why-choose-us-section {
    background-color: #eafef6;
    border-top: 1px solid #1e1e1e;
    border-bottom: 1px solid #1e1e1e;
}

.why-choose-us-content .section-title {
    padding: 0px;
}

.regular-content {
    font-size: 18px;
    line-height: 30px;
    color: #000000;
    font-weight: 400;
    margin-top: 50px;
}

.next-step-section {
    background-color: #ffffff;
    padding: 100px 0;
}

.next-step-card {
    border: 2px solid #a7cf4c;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.next-step-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transform: translateY(-8px);
}

.next-step-card h3 {
    margin-bottom: 15px;
    font-size: 48px;
    line-height: 60px;
    color: #000;
    font-weight: 400;
}

.next-step-subtitle {
    margin-bottom: 30px;
    font-size: 24px;
    line-height: 60px;
    color: #000;
    font-weight: 400;
}

.next-step-card p {
    font-size: 18px;
    line-height: 30px;
    color: #000000;
    font-weight: 400;
    margin-bottom: 30px;
}

.next-step-btn {
    background-color: #a7cf4c;
    padding: 15px 28px;
    border-radius: 0px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    font-size: 18px;
    color: #000000;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
    display: inline-block;
    width: 250px;
}

.next-step-btn:hover {
    background-color: #95b842;
    transform: translateY(-2px);
    color: #000 !important;
}

.next-step-link {
    display: inline-block;
    margin-top: 18px;
    transition: color 0.3s ease;
    font-size: 24px;
    line-height: 60px;
    text-decoration: underline;
    color: #000000;
    font-weight: 400;
}

.next-step-link:hover {
    color: #a7cf4c;
}

/*
@media (max-width: 992px) {
	.next-step-card {
		padding: 30px;
	}
}

@media (max-width: 768px) {
	.next-step-section {
		padding: 60px 0;
	}

	.next-step-card {
		padding: 24px;
	}

	.next-step-card h3 {
		font-size: 26px;
	}

	.next-step-subtitle {
		font-size: 16px;
	}
}

/* ============================================
   SOLUTIONS ARCHIVE PAGE STYLES
   ============================================ */

.wrp-solution-archive {
    background-color: #ffffff;
    padding: 80px 0;
}

.solution-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
    padding: 0px 0;
    transition: all 0.3s ease;
}

.solution-item:hover {
    transform: translateX(10px);
}

.solution-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

.solution-content {
    padding-left: 60px;
    border-left: 2px solid #a7cf4c;
    padding-top: 20px;
    padding-bottom: 20px;
}

.img-sol {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
}

.solution-title {
    margin-bottom: 15px;
    margin-top: 0;
    font-size: 24px;
    line-height: 60px;
    color: #000;
    font-weight: 400;
}

.solution-excerpt {
    font-size: 18px;
    line-height: 30px;
    color: #000;
    font-weight: 400;
    margin-bottom: 20px;
}

.solution-link {
    display: inline-block;
    font-size: 18px;
    color: #000000;
    font-weight: 600;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.section-intro-content {
    font-size: 18px;
    line-height: 30px;
    color: #000000;
    font-weight: 400;
    margin-bottom: 80px;
}

.solution-link:hover {
    color: #a7cf4c;
}

.link-arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.solution-link:hover .link-arrow {
    transform: translateX(5px);
}

/* Responsive Solutions Archive */
/*
@media (max-width: 768px) {
    .wrp-solution-archive {
        padding: 60px 0;
    }

    .solution-item {
        flex-direction: column;
        margin-bottom: 40px;
        padding: 0px 0;
        padding-left: 20px;
        border-left: 4px solid #a7cf4c;
    }

    .solution-image {
        margin-bottom: 20px;
    }

    .solution-content {
        padding-left: 0;
        border-left: none;
    }

    .solution-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .solution-excerpt {
        font-size: 15px;
        line-height: 24px;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .solution-item {
        margin-bottom: 30px;
        padding: 5px 0;
        padding-left: 15px;
        border-left: 4px solid #a7cf4c;
    }

    .solution-content {
        border-left: none;
    }

    .solution-title {
        font-size: 18px;
    }

    .solution-excerpt {
        font-size: 14px;
    }

    .solution-link {
        font-size: 14px;
    }

	.next-step-card p {
		font-size: 15px;
	}
}*/
.case-studies-section .section-title {
    color: #fff;
    font-size: 60px;
    display: inline-block;
}

.case-studies-section .sec-tag {
    color: #fff;
}

.view-all-btn a {
    color: #fff;
    font-size: 18px;
    color: #ffffff;
    font-weight: 700;
    margin-left: 30px;
}

.case-study-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: transparent;
    padding: 0;
}

.case-study-card h3 {
    font-size: 28px;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 30px;
    margin-top: 0;
}

.case-study-card p {
    font-size: 18px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 400;
    flex-grow: 1;
    margin-bottom: 30px;
}

.case-study-card a {
    font-size: 18px;
    color: #ffffff;
    font-weight: 700;
    margin-top: auto;
    display: inline-block;
}

.case-study-card i,
.view-all-btn i {
    padding-left: 15px;
    vertical-align: middle;
}

.pricing-card {
    border: 2px solid #a7cf4c;
    padding: 30px 10px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: 0.3s all;
}

.pricing-card:hover {
    background: #95b842;
    border-radius: 30px;
    border: 2px solid #1e1e1e;
}

.pricing-card h3 {
    margin-bottom: 30px;
    flex-grow: 1;
    font-size: 24px;
    color: #000000;
    font-weight: 400;
}

.pricing-card h4 {
    font-size: 30px;
    line-height: 36px;
    color: #000000;
    font-weight: 400;
}

.pri-cnt {
    font-size: 18px;
    line-height: 30px;
    color: #000000;
    font-weight: 400;
}

.pri-cnt .next-step-btn {
    margin-bottom: 0px;
}

.page-main-title-wrapper {
    padding: 120px 0px;
    font-size: 24px;
    line-height: 36px;
    color: #ffffff;
    font-weight: 400;
}

.page-main-title {
    font-size: 60px;
    color: #fff;
    font-weight: 400;
}

.page-main-title-wrapper p {
    margin: 0px;
    margin-top: 20px;
}

.gform_wrapper input::placeholder,
.gform_wrapper textarea::placeholder {
    color: #898989 !important;
    opacity: 1;
    /* Ensures the color isn't faded */
}

.cnt-message {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 60px;
    font-size: 18px;
    color: #000000;
    font-weight: 400;
}

.vertical-line-right {
    font-size: 18px;
    line-height: 40px;
    color: #000000;
    font-weight: 400;
    text-align: right;
    padding-right: 50px;
    border-right: 1px solid #a7cf4c;
}

.vertical-line-left {
    font-size: 18px;
    line-height: 40px;
    color: #000000;
    font-weight: 400;
    text-align: left;
    padding-left: 50px;
    border-left: 1px solid #a7cf4c;
}

.vertical-line-right address {
    margin-bottom: 0px;
}

.vertical-line-left a {
    color: #000;
}

.page-template-contact-us .wrp-footer {
    display: none;
}

.wrp-default-page {
    font-size: 18px;
    line-height: 30px;
    color: #000000;
    font-weight: 400;
}

.page-top-name {
    font-size: 18px;
    color: #ffffff;
    font-weight: 400;
    margin: 0px 0px 20px !important;
    text-transform: uppercase;
}

.solution-excerpt p {
    display: inline;
}

.section-small-title {
    font-size: 18px;
    color: #000000;
    font-weight: 400;
    text-transform: uppercase;
}

.wrp-big-issue .section-title {
    font-size: 48px;
    color: #000;
    font-weight: 400;
    margin-bottom: 60px;
}

.big-issue-content p {
    font-size: 24px;
    color: #000000;
    font-weight: 400;
    border-left: 2px solid #a7cf4c;
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.big-issue-content {
    margin: 10px 0px;
}

.bg-green-section {
    background: #0d2319;
}

.bg-green-section p,
.bg-green-section .section-title,
.bg-green-section {
    color: #fff !important;
}

.testi-content {
    border-left: 2px solid #a7cf4c;
    padding-left: 60px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.testi-icon {
    text-align: center;
}

.msg-cleint {
    font-size: 36px;
    color: #ffffff;
    font-weight: 400;
}

.c-name {
    margin-top: 50px;
}

.solution-description ul {
    list-style: inside;
    padding: 0px;
}

.page-template-pricing .img-sol {
    align-self: baseline;
}

.page-template-pricing .solution-image {
    margin-top: 60px;
}

.page-template-pricing .solution-content {
    padding-left: 40px;
    border-left: 2px solid #a7cf4c;
    padding-top: 10px;
    padding-bottom: 10px;
}

.page-template-pricing .solution-title {
    line-height: 1.2;
}

.wrp-why-choose .section-title {
    font-size: 48px;
    color: #000000;
    font-weight: 400;
}

.wrp-why-choose {
    font-size: 18px;
    line-height: 30px;
    color: #000000;
    font-weight: 400;
}

.why-choose-middle-content p {
    font-size: 24px;
    color: #000000;
    font-weight: 400;
    border-left: 2px solid #a7cf4c;
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 20px 0px;
}

.page-template-about .wrp-solution-archive {
    font-size: 18px;
    line-height: 30px;
    color: #000000;
    font-weight: 400;
}
.wrp-matt .section-title {
	font-size: 36px;
	color: #ffffff;
	font-weight: 400;
	margin-bottom: 20px;
	padding-right: 100px;
}
.right-brde {
	border-right: 2px solid #a7cf4c;
}
.gibson-count {
	font-size: 72px;
	color: #a7cf4c;
	font-weight: 400;
	margin: 20px 0px;
	transition: transform 0.35s ease, opacity 0.35s ease;
	opacity: 0.95;
}
.gibson-count.animate-count-complete {
	transform: scale(1.08);
	opacity: 1;
}
.gibson-exp p {
	font-size: 18px;
	color: #ffffff;
	font-weight: 400;
}
.gibson-exp {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.wrp-ceo .section-title {
	font-size: 48px;
	color: #000000;
	font-weight: 400;
	margin: 20px 0px;
}
.wrp-ceo {
	font-size: 18px;
	line-height: 30px;
	color: #000000;
	font-weight: 400;
}
.r-msg {
	padding: 60px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.wrp-ceo .msg-cleint{
    color: #000000;
}
.wrp-ceo .testi-content {
	padding-left: 60px;
	padding-top: 20px;
	padding-bottom: 20px;
}
.r-matt-gallery {
	padding: 60px 0px;
}

/* ============================================
   POST GRID & CARD STYLES
   ============================================ */
.wrp-main-post {
	padding: 60px 0px;
}

.posts-grid {
	margin-bottom: 40px;
}

.posts-grid-item {
	margin-bottom: 40px;
}

.post-card {
	height: 100%;
	background: #ffffff;
	border: 1px solid #e9e9e9;
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.post-card:hover {
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
	transform: translateY(-4px);
}

.post-card-inner {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.post-card-image {
	width: 100%;
	height: 250px;
	overflow: hidden;
	background: #f5f5f5;
}

.post-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.post-card:hover .post-card-image img {
	transform: scale(1.05);
}

.post-card-image a {
	display: block;
	width: 100%;
	height: 100%;
}

.post-card-content {
	flex-grow: 1;
	padding: 20px;
	display: flex;
	flex-direction: column;
}

.post-category {
	display: inline-block;
	background: #a7cf4c;
	color: #000000;
	padding: 6px 12px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 12px;
	width: fit-content;
	text-transform: capitalize;
}

.post-card-title {
	font-size: 18px;
	font-weight: 600;
	color: #000000;
	margin-bottom: 12px;
	line-height: 1.4;
	flex-grow: 0;
}

.post-card-title a {
	color: #000000;
	text-decoration: none;
	transition: color 0.3s ease;
}

.post-card-title a:hover {
	color: #a7cf4c;
}

.post-card-excerpt {
	font-size: 14px;
	line-height: 1.6;
	color: #666666;
	margin-bottom: 16px;
	flex-grow: 1;
}

.post-card-excerpt p {
	margin: 0;
}

.post-card-meta {
	border-top: 1px solid #e9e9e9;
	padding-top: 12px;
	margin-top: auto;
    text-align: right;
}

.post-date {
	font-size: 12px;
	color: #999999;
	font-weight: 500;
}

/* Pagination */
.pagination-wrapper {
	display: flex;
	justify-content: center;
	padding: 40px 0px 0px 0px;
	margin-top: 40px;
	border-top: 1px solid #e9e9e9;
	padding-top: 40px;
}

.pagination {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	justify-content: center;
}

.pagination a,
.pagination span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	color: #333333;
	background: #ffffff;
	border: 2px solid #e9e9e9;
}

.pagination a:hover {
	background: #a7cf4c;
	border-color: #a7cf4c;
	color: #ffffff !important;
}

.pagination .current {
	background: #a7cf4c;
	border-color: #a7cf4c;
	color: #ffffff;
	width: 40px;
	height: 40px;
}

.pagination .page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
}

.pagination .prev.page-numbers,
.pagination .next.page-numbers {
	width: auto;
	height: auto;
	border: none;
	background: none;
	padding: 0;
	font-size: 18px;
	color: #a7cf4c;
}



.pagination .prev.page-numbers:hover,
.pagination .next.page-numbers:hover {
	color: #8ab938;
}

.pagination .prev.page-numbers:hover::before,
.pagination .next.page-numbers:hover::before {
	animation: slideArrow 0.3s ease;
}

@keyframes slideArrow {
	0% {
		transform: translateX(0);
	}
	50% {
		transform: translateX(-3px);
	}
	100% {
		transform: translateX(0);
	}
}
.post-single-content {
	font-size: 18px;
	line-height: 30px;
	color: #2a2a2a;
	font-weight: 400;
}
.portfolio-card-image img {
	width: 100%;
	border-radius: 20px;
}
.post-single-thumbnail {
	text-align: center;
}

/* Masonory */
.masonry {
	-moz-column-count: 3;
	-webkit-column-count: 3;
	column-count: 4;
}
.masonry .item {
	display: inline-block;
	background: #fff;
	margin: 0 0 1.5em;
	width: 100%;
	-webkit-transition: 1s ease all;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-shadow: 2px 2px 4px 0 #ccc;
}
.masonry .item img {
	max-width: 100%;
	width: 100%;
	border: 1px solid #949494;
}
.wrp-gallery {
	padding: 60px 0px 50px 0px;
}

.item {
    position: relative;
}
.imageinner {
    opacity: 1;
    display: block;
    width: 100%;
    height: auto;
    transition: .5s ease;
    backface-visibility: hidden;
}
  
.middle {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}
  
.item:hover .imageinner {
    opacity: 0.8;
}
  
.item:hover .middle {
    opacity: 1;
}
.text {
	font-size: 15px;
	padding: 10px;
	background: rgba(255,255,255,0.8);
	color: #000;
	font-weight: 500;
}
div#lightboxed--content .lightboxed--frame .lightboxed--caption {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 2px;
    background: #000;
    background: rgba(0,0,0,0.9);
    color: #fff!important;
    margin: 0px auto;
    left: 0;
    width: 500px !important;
}

.lightboxed--caption a {
	color: #fff;
}
.lightboxed--frame iframe{
    padding: 0px 50px !important;
}