* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1e40af;
    --secondary-blue: #3b82f6;
    --light-blue: #60a5fa;
    --primary-gradient: linear-gradient(135deg, #64b84b 0%, #4ab273 50%, #23a9ad 100%);
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --overlay-dark: rgba(0, 0, 0, 0.7);
}
html{
  scroll-padding-top: 88px;
}
body {
  font-family: "Cairo", sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    
}
section{
   padding: 120px 0px;
  min-height: 100vh;
}
body.loaded {
    opacity: 1;
}

.navbar {
    background: #052d33 !important;
    backdrop-filter: blur(10px);
    border: none;
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(30, 64, 175, 0.1);
}

.navbar .nav-link {
  color: var(--white) !important;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  padding: 0.5rem 1.5rem !important;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar .nav-link:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  transform: translateY(-2px) !important;
  color: var(--white) !important;
}

.navbar .nav-link.active {
  background: rgba(255, 255, 255, 0.15) !important;
  transform: translateY(-2px);
  color: var(--white) !important;
}

.navbar-brand-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.logo-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.logo-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 0.75rem;
    object-fit: cover;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #109c3d;
    letter-spacing: -0.5px;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.hero-section {
    position: relative;
    height: 100vh;
}
.shape{
     position: absolute;
    left: 0;
    bottom: 0%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    width: 300%;
    gap: 1rem;
}
@media screen and (min-width:768px) {
    .shape{
    width: 100%;
}
}
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: .7;
    transition: opacity 0.8s ease;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-dark);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
    max-width: 100%;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    margin-left: auto;
    margin-right: auto;
}

.btn-services {
    background: var(--primary-gradient);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgb(100, 184, 75,.3);
}
.btn-contact{
    background: transparent;
    border: 1px solid #109c3d;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
}
.btn-contact:hover{
    background: var(--primary-gradient);
    box-shadow: 0 8px 25px rgba(100, 184, 75, 0.4);
        border: 1px solid #109c3d;


}
.btn-services:hover {

    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(100, 184, 75, 0.4);
    color: var(--white);
}

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

.btn-services:hover i {
    transform: rotate(90deg);
}

.custom-nav-numbers {
    position: absolute;
    left: .5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nav-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-number:hover,
.nav-number.active {
    background: var(--white);
    color: #0d752e;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}


.swiper-pagination {
    bottom: 2rem !important;
    text-align: center;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--white);
    transform: scale(1.2);
}

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

@media (max-width: 1200px) {
    .custom-nav-numbers {
        left: 1rem;
    }
    
    .nav-number {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    
    .hero-title {
        font-size: 3.8rem;
    }
    
    .hero-description {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
          max-width: 250px !important;
    }
    
    .btn-services {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .logo-img {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 576px) {
  .nav-number {
    width: 35px;
    height: 35px;
    font-size: .9rem;
}

    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
        max-width: 250px !important;
    }
    
    .navbar-custom {
        padding: 0.75rem 0;
    }
    
    .logo-circle {
        padding: 0.4rem 1.2rem;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-img {
        width: 30px;
        height: 30px;
        margin-right: 0.5rem;
    }
}

body:not(.loaded) {
    opacity: 0;
    transition: opacity 0.3s ease;
}


* {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.nav-link:focus,
.btn-services:focus,
.nav-number:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

@media (prefers-contrast: high) {
    .slide-overlay {
        background: rgba(0, 0, 0, 0.7);
    }
    
    .nav-number {
        border-width: 3px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
.service-card {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-img-hover {
  height: 0;
  overflow: hidden;
  position: relative;
}

.card-img-hover img {
  width: 100%;
  height: 200px;
    transition: all 0.2s ease-in-out;

}

.service-card:hover .card-img-hover {
  height: 200px;
}

.icon-wrapper {
  background: #d0ffdf;
  padding: 18px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  color: #109c3d;
  z-index: 2;
  margin: 20px 10px;
  transition: all 0.2s ease-in-out;
}

.service-card:hover .icon-wrapper {
  background: #fff;
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  margin: -30px 0px;
  

}
.service-card p{
    text-align: justify;
    margin-top: 20px;
}
.icon-wrapper img {
  width: 40px;
  height: 40px;
}

.card-body {
  transition: all 0.4s ease;
}

.service-card:hover .card-body {
    margin-top: 20px;
}
.service-card .card-body h5{
      color: #07531f !important;

}
.line {
  width: 30px;
  height: 3px;
  background-color: #109c3d;
  margin-top: 10px;
  margin-bottom: 30px;
}

.cards .col-lg-4:not(:first-child) {
  position: relative;
}

.cards .col-lg-4:not(:first-child)::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 0;
  width: 1px;
  height: 80%;
  background-image: repeating-linear-gradient(
    to bottom,
    #ccc,
    #ccc 4px,
    transparent 4px,
    transparent 8px
  );
}

@media (max-width: 767.98px) {
 .cards .col-lg-4::after {
    display: none;
  }
}

.about-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-blue) 50%, transparent 100%);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f742f;
    margin-bottom: 1rem;
    position: relative;
      transition: all 0.4s ease-in-out;

}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -13px;
    right: 0%;
    width: 60px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
      transition: all 0.4s ease-in-out;

}
.section-title:hover::after{
    width: 100px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #000;
    margin-top: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: justify;
}

.about-features {
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-dark);
}

.feature-item i {
    color: #4d9c10;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.btn-about {
    background: var(--primary-gradient);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.btn-about:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
    color: var(--white);
}

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

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

.about-image {
    position: relative;
}

.about-image {
  position: relative;
  border-radius: 20px;
  z-index: 1;
}

.about-image::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(45deg, #00c9ff, #92fe9d, #e0f7fa, #b2fefa);
  z-index: -1;
  filter: blur(15px);
  border-radius: 25px;
  opacity: 0.8;
  animation: glow 4s linear infinite;
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
  border-radius: 20px;
  display: block;
  position: relative;
  z-index: 2;
}

.about-image img:hover {
  transform: rotate(-3deg);
}

@keyframes glow {
  0% { filter: blur(15px) hue-rotate(0deg); }
  100% { filter: blur(15px) hue-rotate(360deg); }
}


.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 120px;
    z-index: 4;
}

.badge-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color:#4d9c10;
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    margin-top: 0.5rem;
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .experience-badge {
        bottom: -15px;
        right: -15px;
        padding: 1.2rem;
        min-width: 100px;
    }
    
    .badge-number {
        font-size: 1.8rem;
    }
    
    .badge-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    .experience-badge {
        margin: -3rem auto 0;
        display: inline-block;
        z-index: 4 !important;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .btn-about {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
     .experience-badge {
        margin: -3rem auto 0;
        display: inline-block;
        z-index: 4 !important;
    }
}

.vision-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-blue) 50%, transparent 100%);
}
.vision-section .section-title::after,.contact-section .section-title::after{
    right: 40%;
}
@media screen and (min-width:992px) {
  .vision-section .section-title::after,.contact-section .section-title::after {
    right: 46%;
}
  
}
.foundation-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border-top: 4px solid transparent;
}

.foundation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.foundation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.15);
}

.foundation-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.card-icon i {
    font-size: 2rem;
    color: var(--white);
    transition: transform 0.4s ease;
}

.foundation-card:hover .card-icon {
    transform: scale(1.1);
}

.foundation-card:hover .card-icon i {
    transform: rotate(10deg);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    position: relative;
}

.card-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.9;
    text-align: justify;
}

.values-list {
    margin-top: 1rem;
}

.value-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateX(-5px);
}

.value-item i {
    color: #4d9c10;
    margin-right: 0.8rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.value-item:hover i {
    transform: scale(1.2);
}
.card-decoration-1 {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0%, rgba(96, 165, 250, 0.05) 100%);
  border-radius: 50%;
}

.foundation-card:hover .card-decoration-1, .foundation-card:hover .card-decoration {
  animation: pulse 1.5s ease-in-out infinite;
}

.card-decoration {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0%, rgba(96, 165, 250, 0.05) 100%);
    border-radius: 50%;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.6;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}



.foundation-card:hover .card-decoration {
    transform: scale(1.2);
    opacity: 0.8;
}

@media (max-width: 992px) {
    .foundation-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
    }
    
    .card-icon i {
        font-size: 1.8rem;
    }
    
    .card-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .foundation-card {
        padding: 1.8rem 1.2rem;
        text-align: center;
    }
    
    .card-icon {
        margin: 0 auto 1.5rem;
        width: 65px;
        height: 65px;
    }
    
    .card-icon i {
        font-size: 1.6rem;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
    
    .card-description {
        font-size: 0.95rem;
    }
    
    .values-list {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .foundation-card {
        padding: 1.5rem 1rem;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    .card-description {
        font-size: 0.9rem;
    }
    
    .value-item {
        font-size: 0.9rem;
    }
}
.water-circle {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #a0e7e5, #7bdff2);
  box-shadow: 0 0 30px rgba(123, 223, 242, 0.4);
  overflow: hidden;
  animation: float 4s ease-in-out infinite;
}

.water-circle::before,
.water-circle::after {
  content: '';
  position: absolute;
  width: 140%;
  height: 140%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 40%;
  animation: ripple 6s infinite ease-in-out;
}

.water-circle::after {
  animation-delay: 3s;
}

@keyframes ripple {
  0% {
    transform: scale(0.9) rotate(0deg);
  }
  50% {
    transform: scale(1.05) rotate(180deg);
  }
  100% {
    transform: scale(0.9) rotate(360deg);
  }
}

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

.custom-service-card {
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}
.custom-service-card:hover {
transform: translateY(-10px);
}
.service-img{
    height: 350px;
    width: 100%;
    object-fit: cover;
}
.service-img img{
    height: 100%;
    width: 100%;
        object-fit: cover;

}

.custom-line {
  height: 2px;
  width: 80%;
  background: repeating-linear-gradient(
    to right,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.1) 5px,
    transparent 5px,
    transparent 10px
  );
    transition: all 0.5s ease-in-out;
  border-radius: 1px;
}
.custom-service-card:hover .custom-line {
  background: repeating-linear-gradient(
    to right,
    rgba(13, 175, 35, 0.753),
    rgba(13, 175, 35, 0.753) 5px,
    transparent 5px,
    transparent 10px
  );
}
.custom-service-card .card-body small{
    color: #109c3d;
}
.custom-service-card .card-body h5{
    color: #064219;
    font-weight: 700 !important;
}
.icon-circle{
    font-size: 2rem;
      background: #d0ffdf;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #109c3d;
  z-index: 2;
  margin: 20px 10px;
  transition: all 0.2s ease-in-out;
}
section.bubbles {
  position: relative;
  overflow: hidden;
  z-index: 1;
  min-height: 30vh;
}
.bubbles-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
}

.bubble {
  position: absolute;
  bottom: -60px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255,1), rgba(173, 216, 230, 1));
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow:
    inset -2px -2px 4px rgba(255, 255, 255, 0.4),
    inset 2px 2px 6px rgba(173, 216, 230, 0.2),
    0 2px 6px rgba(173, 216, 230, 0.2);
  filter: blur(0.5px);
  backdrop-filter: blur(2px);
  animation: floatUp calc(var(--i) * 0.5s) linear infinite;
  left: calc(var(--i) * 9%);
}
@keyframes floatUp {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateY(-300px) scale(1.2);
    opacity: 0.1;
  }
  100% {
    transform: translateY(-600px) scale(0.8);
    opacity: 1;
  }
}
.bubble:nth-child(1) { left: 5%;
  --i:14
 }
.bubble:nth-child(2) { left: 20%;
--i:11
 }
.bubble:nth-child(3) { left: 35%;
--i:9
 }
.bubble:nth-child(4) { left: 50%;--i:17 }
.bubble:nth-child(5) { left: 65%;--i:13 }
.bubble:nth-child(6) { left: 80%;--i:12 }
.bubble:nth-child(7) { left: 25%;--i:16 }
.bubble:nth-child(8) { left: 75%;--i:10 }
.bubble:nth-child(9) { left: 10%; --i:15}
.bubble:nth-child(10) { left: 90%; --i:8}

.counter-card {
  border: 5px solid #d0ffdf;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 200px;
  height: 200px;
  background-color: #fff;
  box-shadow: 0 0 30px rgba(123, 223, 242, 0.4);
  border-radius: 50%;
  border-top-right-radius: 0;
  transform: rotate(-45deg);
  margin: 40px auto;
  transition: all 0.5s ease-in-out;
}

.counter-card:hover {
  animation: bubble 2s linear infinite;
}

@keyframes bubble {
  0% {
    transform: rotate(-45deg) translateY(0);
  }
  50% {
    transform: rotate(-45deg) translateY(-10px);
  }
  100% {
    transform: rotate(-45deg) translateY(0);
  }
}

.counter-inner {
  transform: rotate(45deg); 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 20px 0px;
}
.counter-inner .counter-icon{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.3rem;
        background: #d0ffdf;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #109c3d;
}
.counter-number{
    font-size: 1.3rem;
    font-weight: 700;
}
.counter-label{
    color: #6b7280;
    font-weight: 600;
    padding-bottom: 30px;
}
.contact-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-blue) 50%, transparent 100%);
}

.contact-section {
  background-color: #f8f9fa;
  padding-top: 60px;
  padding-bottom: 60px;
  direction: rtl;
  font-family: 'Cairo', sans-serif; 
}


.contact-form-wrapper {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: all 0.5s ease-in-out;
  overflow: hidden; 
}
.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.contact-form-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.15);
}

.contact-form-wrapper:hover::before {
    transform: scaleX(1);
}

.form-title,
.info-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #212529;
}

.contact-form .form-group {
  position: relative;
}
.phone::placeholder{
    text-align: right;
}
.contact-form .form-control {
    padding: 10px 20px;
  border-radius: 12px;
  box-shadow: none;
}
.contact-form .form-control:hover,.contact-form .form-control:focus{
border: 1px solid #0f742f;
}

input.is-invalid,
select.is-invalid,
textarea.is-invalid {
  border-color: #dc3545;
}

.contact-info .info-description {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #6c757d;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
   background-color: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.5s ease-in-out;
}
.contact-item:hover{
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    transform: translateY(-8px);
}
.contact-icon {
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-gradient);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  margin-left: 15px;
  flex-shrink: 0;
}

.contact-details h4 {
  margin: 0 0 5px;
  font-size: 1rem;
  font-weight: 600;
}

.contact-details p {
  margin: 0;
  font-size: 0.95rem;
  color: #6c757d;
}
.success-message {
  transition: opacity 0.3s ease-in-out;
}

.social-links h4 {
  margin-top: 20px;
  font-size: 1.1rem;
  font-weight: 600;
}

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

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background-color: #e9ecef;
  color: #0d752e;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  transition:all 0.3s ease-in-out;
}

.social-link:hover {
  background-color: #0d752e;
  color: #fff;
}

footer h4{
color: #0d752e;
}

.service-img {
  height: 300px;
  position: relative;
}

.img-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.img-slide.active {
  opacity: 1;
  z-index: 1;
}

  .blog-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s;
        }
        .blog-card:hover {
            transform: translateY(-5px);
        }
        .blog-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }
        .blog-card .card-body {
            padding: 20px;
        }
        .blog-card .card-title {
            font-weight: bold;
            font-size: 1.25rem;
            color: #0f742f;
        }
        .blog-card .card-text {
            color: #555;
            font-size: 0.95rem;
            line-height: 1.6;
        }
        .read-more {
            color: #064219;
            text-decoration: none;
            font-weight: bold;
        }
        .read-more:hover {
            text-decoration: underline;
        }

        .blog h2{
          color: #11933a;
        }



        .blog-detail-header {
    background: var(--primary-gradient);
    padding: 120px 0 30px;
    color: var(--white);
}

.blog-detail-header .breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
}

.blog-detail-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.blog-detail-header .breadcrumb-item a:hover {
    color: var(--white);
}

.blog-detail-header .breadcrumb-item.active {
    color: var(--white);
}

.blog-detail-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.blog-detail-content {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.article-header {
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 1.5rem;
}

.article-category {
    display: inline-block;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.article-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.article-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.meta-item i {
    color: var(--primary-blue);
}

.article-image {
    text-align: center;
}

.article-image img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.article-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 2rem 0 1rem;
    position: relative;
}


.article-content p {
    margin-bottom: 1.5rem;
}

.article-content .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #e9ecef 0%, #e8fff0 100%);
    border-radius: 15px;
    border-left: 4px solid #0d752e;
}




.article-tags {
    border-top: 1px solid #e2e8f0;
    padding-top: 1.5rem;
}

.article-tags h5 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.tag {
    display: inline-block;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.tag:hover {
    background: var(--primary-gradient);
    color: var(--white);
    transform: translateY(-2px);
}
.cards{
  padding: 20px 0px;
  min-height: 50vh;
}