html, body {
overflow-y: auto;
scrollbar-width: auto;
}
::-webkit-scrollbar {
width: 9px;
height: 9px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 6px;
}
::-webkit-scrollbar-thumb {
background: #888;
border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
background: #555;
}
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Cairo', sans-serif;
        }
        body {
            background-color: #f9fcf7;
            color: #1e3a2f;
            line-height: 1.6;
            overflow-x: hidden;
        }
        /* شريط العملات المتحرك مع أزرار اللغة */
/* اضف هنا كود الشريط */
/* Language switcher inside ticker */
        .lang-switcher {
            display: flex;
            gap: 8px;
            background: rgba(0,0,0,0.4);
            padding: 4px 10px;
            border-radius: 40px;
            backdrop-filter: blur(4px);
            flex-shrink: 0;
        }
        .lang-btn {
            background: #ffb74d;
            border: none;
            padding: 4px 12px;
            border-radius: 20px;
            font-weight: bold;
            cursor: pointer;
            transition: 0.3s;
            color: #1e3a2f;
            font-size: 0.9rem;
        }
        .lang-btn.active {
            background: #2e7d32;
            color: white;
        }
        .lang-btn:hover {
            transform: scale(1.05);
        }
        h1, h2, h3 { font-weight: 700; }
        .hero {
            background: linear-gradient(135deg, #1b4d2b 0%, #2e7d32 70%, #81c784 100%);
            color: white;
            padding: 80px 20px 100px;
            position: relative;
            overflow: hidden;
			min-height: 83dvh;
			width: 100%;
			display: flex;
			align-items: center;
			justify-content: center;
        }
        .hero::before {
            content: "";
            position: absolute;
            top: -50px;
            left: -50px;
            width: 300px;
            height: 300px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
            pointer-events: none;
            animation: float 15s infinite ease-in-out;
        }
        .hero::after {
            content: "";
            position: absolute;
            bottom: -80px;
            right: -50px;
            width: 400px;
            height: 400px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
            pointer-events: none;
            animation: float 20s infinite reverse;
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
            position: relative;
            z-index: 2;
        }
        .hero-text { flex: 1 1 400px; }
        .hero-text h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
            animation: fadeInUp 1s ease-out;
			text-align: center;
        }
        .hero-text p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.95;
            animation: fadeInUp 1.2s ease-out;
        }
        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            animation: fadeInUp 1.4s ease-out;
			align-items: center;
			justify-content: center;
        }
        .btn {
            display: inline-block;
            padding: 14px 34px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1rem;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }
        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255,255,255,0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }
        .btn:hover::before {
            width: 300px;
            height: 300px;
        }
        .btn-primary {
            background-color: #ffb74d;
            color: #1e3a2f;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        }
        .btn-primary:hover {
            background-color: #ff9800;
            transform: translateY(-3px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.15);
        }
        .btn-outline {
            border: 2px solid white;
            color: white;
            background: transparent;
        }
        .btn-outline:hover {
            background-color: white;
            color: #2e7d32;
            transform: translateY(-3px);
        }
        .hero-image {
            flex: 1 1 300px;
            text-align: center;
        }
        .hero-image img {
            max-width: 100%;
            width: 400px;
            border-radius: 30px;
            box-shadow: 20px 20px 30px rgba(0,0,0,0.2);
            transition: transform 0.5s, box-shadow 0.5s;
        }
        .hero-image img:hover {
            transform: scale(1.02) rotate(1deg);
            box-shadow: 25px 25px 35px rgba(0,0,0,0.25);
        }

        .services {
            max-width: 1200px;
            margin: 80px auto;
            padding: 0 20px;
        }
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        .section-title h2 {
            font-size: 2.6rem;
            color: #1b5e20;
            margin-bottom: 15px;
        }
        .section-title p {
            color: #4a6b4f;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }
        .title-decoration {
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, #ffb74d, #2e7d32);
            margin: 20px auto 0;
            border-radius: 2px;
        }
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        .service-card {
            background: white;
            padding: 40px 20px;
            border-radius: 30px;
            box-shadow: 0 15px 30px rgba(0,40,0,0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-align: center;
            border: 1px solid #e0f0e0;
            position: relative;
            overflow: hidden;
        }
        .service-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to left, #ffb74d, #2e7d32);
            transform: translateX(-100%);
            transition: transform 0.5s;
        }
        .service-card:hover::before {
            transform: translateX(0);
        }
        .service-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 40px rgba(46,125,50,0.2);
        }
        .service-icon {
            font-size: 3.5rem;
            color: #2e7d32;
            margin-bottom: 20px;
            transition: transform 0.3s;
        }
        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
            color: #ffb74d;
        }
        .service-card h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: #1b5e20;
        }
        .service-card p {
            color: #2c4a33;
        }

        .features {
            background-color: #eaf5ea;
            padding: 80px 20px;
            clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
        }
        .features-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 50px;
        }
        .features-list {
            flex: 1 1 400px;
        }
        .feature-item {
            display: flex;
            gap: 20px;
            margin-bottom: 35px;
            align-items: flex-start;
            transition: transform 0.3s;
        }
        .feature-item:hover {
            transform: translateX(-10px);
        }
        .feature-icon {
            background: #ffb74d;
            color: #1e3a2f;
            width: 60px;
            height: 60px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            flex-shrink: 0;
            box-shadow: 0 10px 15px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }
        .feature-item:hover .feature-icon {
            background: #2e7d32;
            color: white;
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        }
        .feature-text h3 {
            font-size: 1.5rem;
            margin-bottom: 8px;
        }
        .feature-text p {
            color: #2b4b35;
        }
        .features-image {
            flex: 1 1 300px;
            text-align: center;
        }
        .features-image img {
            max-width: 100%;
            width: 450px;
            border-radius: 30px;
            box-shadow: 25px 25px 0 #2e7d32;
            transition: all 0.4s;
        }
        .features-image img:hover {
            transform: scale(1.02);
            box-shadow: 35px 35px 0 #1b5e20;
        }

        .testimonials {
            max-width: 1200px;
            margin: 100px auto;
            padding: 0 20px;
        }
        .testimonials-slider {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        .testimonial-card {
            background: white;
            padding: 30px;
            border-radius: 30px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
            border: 1px solid #d4e8d4;
            transition: all 0.4s;
            position: relative;
        }
        .testimonial-card:hover {
            border-color: #2e7d32;
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 30px rgba(46,125,50,0.1);
        }
        .client-info {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        .client-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: #b8d9b8;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: #1b5e20;
            border: 3px solid #ffb74d;
            transition: 0.3s;
        }
        .testimonial-card:hover .client-img {
            border-color: #2e7d32;
            transform: rotate(360deg);
            transition: transform 0.6s;
        }
        .client-name h4 {
            font-size: 1.3rem;
        }
        .client-name p {
            color: #4f7356;
        }
        .rating {
            color: #ffb74d;
            margin-bottom: 15px;
        }
        .quote {
            font-style: italic;
            color: #2b4f35;
            position: relative;
            padding-right: 20px;
        }
        .quote i {
            color: #2e7d32;
            opacity: 0.4;
            font-size: 1.8rem;
            position: absolute;
            right: -10px;
            top: -15px;
        }

        .contact {
            background: linear-gradient(145deg, #1e3a2f, #2e7d32);
            color: white;
            padding: 80px 20px;
            position: relative;
            overflow: hidden;
        }
        .contact::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: rotate 30s linear infinite;
        }
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
            position: relative;
            z-index: 2;
        }
        .contact-info {
            flex: 1 1 300px;
        }
        .contact-info h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        .contact-info p {
            margin-bottom: 30px;
            opacity: 0.9;
            font-size: 1.1rem;
        }
        .info-details {
            list-style: none;
        }
        .info-details li {
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            transition: transform 0.3s;
        }
        .info-details li:hover {
            transform: translateX(-10px);
        }
        .info-details i {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: #ffb74d;
        }
        .contact-form {
            flex: 1 1 400px;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(8px);
            padding: 40px;
            border-radius: 40px;
            transition: transform 0.3s;
        }
        .contact-form:hover {
            transform: scale(1.02);
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px 20px;
            border: none;
            border-radius: 30px;
            background: rgba(255,255,255,0.9);
            font-size: 1rem;
            font-family: 'Cairo', sans-serif;
            transition: 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            box-shadow: 0 0 0 3px #ffb74d;
            transform: scale(1.02);
        }
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        .form-group button {
            background: #ffb74d;
            color: #1e3a2f;
            padding: 16px 30px;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.3s;
            width: 100%;
            position: relative;
            overflow: hidden;
        }
        .form-group button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255,255,255,0.3);
            /*transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;*/
        }
        .form-group button:hover::before {
            width: 300px;
            height: 300px;
        }
        .form-group button:hover {
            background: #ffa726;
            transform: scale(1.02);
        }

        .footer {
            background: #132b1d;
            color: #b8d9b8;
            padding: 40px 20px;
        }
/*--------------------------------------*/		
[dir="rtl"] .footer [class*="col-"] {
    --text-align: right;
    text-align: right;
}

[dir="ltr"] .footer [class*="col-"] {
    --text-align: left;
    text-align: left;
}

/* إذا أردت أيضاً محاذاة عناصر محددة مثل العناوين والفقرات */
.footer h4, .footer p, .footer a, .footer .copyright {
    text-align: inherit;
}
/*--------------------------------------*/	
        .footer a {
            color: #ffb74d;
            text-decoration: none;
        }
        .footer .social {
            margin: 20px 0;
        }
        .social a {
            display: inline-block;
            margin: 0 10px;
            font-size: 1.8rem;
            color: #b8d9b8;
            transition: 0.3s;
        }
        .social a:hover {
            color: #ffb74d;
            transform: translateY(-5px) scale(1.2);
        }

        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #ffb74d;
            color: #1e3a2f;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            cursor: pointer;
            transition: 0.3s;
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background: #ff9800;
            transform: translateY(-5px);
        }

        [data-aos] {
            pointer-events: none;
        }
        [data-aos].aos-animate {
            pointer-events: auto;
        }

        @media (max-width: 768px) {

        }

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

		.footer .copyright {
			border-top: 1px solid rgba(255, 255, 255, .1);
		}

        .btn-outline-footer {
			display: inline-block;
			font-weight: 400;
			line-height: 1.5;
			color: #797e88;
			text-align: center;
			vertical-align: middle;
			cursor: pointer;
			-webkit-user-select: none;
			-moz-user-select: none;
			user-select: none;
			background-color: rgba(0, 0, 0, 0);
			border: 1px solid rgba(0, 0, 0, 0);
			padding: .375rem .75rem;
			font-size: 1rem;
			border-radius: 0px;
			transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
			border-radius: 50px;
				}
        .btn-outline-footer:hover {
            background-color: white;
            color: #2e7d32;
            transform: translateY(-3px);
			border-radius: 50px;
        }

.footer-link-btn {
    display: block;
    margin-top: 10px;
    padding: 6px 12px;
    background: #1e3a2f;
    color: #fff;
    border-radius: 20px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-link-btn:hover {
    background: #ffb74d;
    color: #1e3a2f;
}
