
/* Animated Background */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}
.stats-sec-container {
	background: linear-gradient(135deg, #fff 0%, #e5ffed 100%);
	padding: 80px 0;
}
.why-choose-container {background: linear-gradient(135deg, #ffffff 0%, rgba(255, 247, 237, 0.5) 50%, rgba(254, 243, 199, 0.5) 100%);
	padding: 80px 0;}

.bg-blob-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #fed7aa 0%, #fde68a 100%);
    top: 0;
    left: 0;
    animation: float1 20s ease-in-out infinite;
}

.bg-blob-2 {
    width: 700px;
    height: 700px;
    background: linear-gradient(135deg, #fde68a 0%, #fed7aa 100%);
    bottom: 0;
    right: 0;
    animation: float2 25s ease-in-out infinite;
}

.bg-blob-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #fdba74 0%, #fcd34d 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float3 15s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(100px, 50px) scale(1.2); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-100px, -50px) scale(1.3); }
}

@keyframes float3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50px, 50px) scale(1.4); }
}

/* Container */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	width: 100%;
}

/* Icons */
.icon {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

/* Badge */
.badge, .badge-primary, .badge-secondary, .badge-tertiary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 20px;
	border-radius: 9999px;
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 24px;
}
.badge-primary {
	background: linear-gradient(to right, #16a34a, #10b981);
	color: white;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.badge .icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #ffffff;
}
.gradient-text {
	background: linear-gradient(to right, #16a34a, #10b981, #14b8a6);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
	display: inline-block;
}
/* Hero Section */
.hero-section {
    text-align: center;
    margin-bottom: 0;
    animation: fadeInUp 0.6s ease-out;margin-top: 140px;padding-bottom: 80px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin: 2rem 0;
    background: linear-gradient(to right, #16a34a, #10b981, #14b8a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-description {
	font-size: 1.25rem;
	color: #4b5563;
	line-height: 1.75;
	max-width: 768px;
	margin: 0 auto;
}

/* Service Section */
.service-section {
    margin-bottom: 6rem;
    animation: fadeInUp 0.6s ease-out;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}

.service-image-wrapper {
    position: relative;
    width: 100%;
}

.service-image-glow {
    /*position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #fb923c 0%, #fbbf24 100%);
    border-radius: 1.5rem;
    filter: blur(50px);
    opacity: 0.3;
    transition: opacity 0.3s ease;*/
}

.service-image-wrapper:hover .service-image-glow {
    opacity: 0.4;
}

.service-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.service-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.7s ease;display: block;
}

.service-image-wrapper:hover .service-image {
    transform: scale(1.1);
}

.service-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
}

.service-image-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.service-image-badge .icon {
    width: 1.75rem;
    height: 1.75rem;
    color: #ea580c;
    flex-shrink: 0;
}

.service-image-badge span {
    font-weight: 700;
    color: #0f172a;
    font-size: 1.25rem;
}

.service-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.benefits-section {
	
}
.service-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.service-description {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.75;
}

/* Section Headings */
.section-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.heading-icon {
    padding: 0.5rem;
    background: linear-gradient(135deg, #fed7aa 0%, #fde68a 100%);
    border-radius: 0.75rem;
}

.heading-icon .icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #ea580c;
}

/* Info Boxes */
.info-box {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: #dedede 1px solid;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-item {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    font-size: 1.125rem;
    color: #334155;
}

.check-icon {
    border-radius: 0.5rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.check-icon .icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #2d7d32;
}
.features-section {
	margin-bottom: 30px;
}
/* CTA Button */
.service-section .btn, .why-choose-section .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 24px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: var(--transition);
	text-align: center;
	white-space: nowrap;
	font-family: "Roboto Flex", serif;
}
.service-section .btn, .why-choose-section .btn {
	background: #2d7d32;
	font-size: 17px;
	padding: 16px 24px;
	color: #fff;
	margin-top: 20px;
	width: 220px;
}
.why-choose-section .btn {width: 220px;margin: 0 auto;}
.cta-button {
    background: #2d7d32;
  font-size: 15px;
  padding: 14px 24px;margin-top: 30px;
}

.cta-button:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    background: linear-gradient(135deg, #ea580c 0%, #d97706 100%);
}

.cta-button:active {
    transform: scale(0.95);
}

.cta-button-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
    width: 100%;
}

/* Stats Section */
.stats-section {

}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(to right, #16a34a, #10b981, #14b8a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 1.5rem 0;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #475569;
    max-width: 48rem;
    margin: 1.5rem auto 0;
    line-height: 1.75;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.stat-card {
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
	border: #dedede 1px solid;    
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.stat-icon {
    display: inline-flex;
    padding: 1rem;
    background: linear-gradient(to right, #16a34a, #10b981, #14b8a6);
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stat-icon .icon {
    width: 2rem;
    height: 2rem;
    color: #fff;
}

.stat-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.stat-description {
	font-size: 17px;
	color: #475569;
	line-height: 1.4;
}

/* Clients Section */
.clients-section {
    margin-bottom: 5rem;
	margin-top: 5rem;
}

.clients-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.client-card {
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.client-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.client-header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.client-icon {
    padding: 0.75rem;
    background: linear-gradient(to right, #16a34a, #10b981, #14b8a6);
    border-radius: 1rem;
}

.client-icon .icon {
    width: 2rem;
    height: 2rem;
    color: #ffffff;display: block;
}

.client-power {
    padding: 0.5rem 1rem;
    background: #000;
    color: white;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.client-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.client-description {
	font-size: 17px;
	color: #475569;
	line-height: 1.4;
	flex-grow: 1;
}

/* Why Choose Section */
.why-choose-section {
    margin-bottom: 0;
}

.why-choose-wrapper {
	position: relative;
	padding: 2px;
	border-radius: 2rem;
}

.why-choose-content {
    
    border-radius: 1.875rem;
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

.why-choose-image-container {
    position: relative;
}

.why-choose-image-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #fb923c 0%, #fbbf24 100%);
    border-radius: 1.5rem;
    filter: blur(50px);
    opacity: 0.4;
}

.why-choose-image {
    position: relative;
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 1.5rem;
    border: 4px solid white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.why-choose-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-choose-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #16a34a, #10b981, #14b8a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;text-align: center;
}

.why-choose-subtitle {
    font-size: 1.25rem;
    color: #334155;
    line-height: 1.75;text-align: center;
}

.why-choose-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.why-choose-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.why-choose-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.why-choose-check {

    border-radius: 0.75rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.why-choose-check .icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #2d7d32;display: block;
}

.why-choose-item span {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 5rem;margin-top: 5rem;
}

.faq-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;display: block !important;
}

.faq-item {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    
}

.faq-question span {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    padding-right: 1.5rem;
}

.faq-icon {
    padding: 0.5rem;
    background: linear-gradient(to right, #16a34a, #10b981, #14b8a6);
    border-radius: 0.75rem;
    flex-shrink: 0;
}

.faq-icon .icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #ffffff;
    transition: transform 0.3s ease;display: block;
}

.faq-item.active .chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
    
}

.faq-answer p {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.75;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }

    .hero-description {
        font-size: 1.25rem;
    }

    .service-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;align-items: center;
    }

    .service-reverse .service-content {
        direction: rtl;
    }

    .service-reverse .service-text {
        direction: ltr;
    }

    .service-image {
       height: 350px;
    }

    .service-title {
        font-size: 3rem;
    }

    .service-description {
        font-size: 1.125rem;
  line-height: 1.75;
    }

    .section-heading {
        font-size: 1.875rem;
    }

    .section-title {
        font-size: 3.75rem;
    }

    .section-subtitle {
        font-size: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-choose-content {
        grid-template-columns: repeat(1, 1fr);
        gap: 4rem;
        padding: 0;
    }

    .why-choose-image {
        height: 500px;
    }

    .why-choose-title {
        font-size: 3rem;
    }

    .cta-button-large {
        width: auto;
    }

    .faq-question span {
      font-size: 1.3rem;
    }

    .faq-answer p {
       font-size: 17px;
    line-height: 1.4;padding: 0 }
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
	
	
}


section {
	padding: 0;
}
.service-more {
	display: grid;
	grid-template-columns: 49% 49%;
	justify-content: space-between;
	margin: 40px 0 20px;
}

.why-choose-section .cta-button {margin-top: 0;}
.why-choose-grid {display: grid;grid-template-columns: 48% 48%;justify-content: space-between;}
.why-choose-grid .team-photo {}
.why-choose-grid .team-photo img {width: 100%;display: block;border-radius: 1.5rem;}
.why-choose-grid .why-choose-list {gap: 14px;}
.why-choose-grid .why-choose-list .why-choose-item {padding: 10px 20px;}


@media (max-width: 1024px) {
	.hero-title {font-size: 3rem;margin: 5px 0 20px;}
	.hero-description {font-size: 1.2rem;}
	.service-content {grid-template-columns: repeat(1, 1fr);gap: 2rem;}
	.service-title {font-size: 2rem;}
	.service-description {font-size: 16px;line-height: 26px;}
	.service-more {grid-template-columns: 100%;}
	.hero-section {padding-bottom: 40px;}
	.features-section {margin-top: 40px;}
	.service-section {margin-bottom: 2rem;}
	.stats-sec-container, .why-choose-container {padding: 50px 0;}
	.section-header {margin-bottom: 2rem;}
	.badge {margin-bottom: 10px;}
	.info-list {gap: 0;}
	.info-item {font-size: 16px;}
	.stat-description, .client-description {font-size: 16px;line-height: 26px;}
	.faq-section {margin-bottom: 3rem;margin-top: 3rem;}
	.why-choose-grid {grid-template-columns: 100%;}
	.why-choose-grid .team-photo {margin-bottom: 20px;}
	
	
}
@media (max-width: 767px) {
    .hero-section {margin-bottom: 0;margin-top: 120px;}
    .service-section {margin-bottom: 0;}
    .stats-section, .clients-section,.why-choose-section {margin-bottom: 0;}
	.hero-title {font-size: 2rem;margin: 10px 0 20px;}
	.clients-section {margin-top: 3rem;margin-bottom: 0 !important;}
	.why-choose-content {padding: 0;}
	.why-choose-title {font-size: 2rem;}
	.why-choose-text {gap: 1rem;}
	.why-choose-subtitle {font-size: 1.2rem;}
	.why-choose-section {margin-bottom: 0 !important;}
	.faq-question span {font-size: 1.2rem;}
	.faq-answer p {padding: 0;font-size: 16px !important;line-height: 26px !important;}
	.why-choose-title br {display:none}
	
}