
:root {
    --primary-color: #2c3e50;
    --accent-color: #00f70c9a;
    --text-color: #333;
    --transition-speed: 0.4s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
  scroll-behavior: smooth;
}

ul{
    list-style: none;
}
body {
    font-family: 'Tahoma', sans-serif;
    line-height: 1.6;
}



 .container {
    height: 100vh;
    background-image: linear-gradient(to left, #03282667 40%, #050e0a 60%), url(images/child_learning.jpg);
    background-repeat: no-repeat;
    background-size:contain;
    background-position:right center ;
}
.container:hover{
    background-image: linear-gradient(to left, #03282600 40%, #050e0a 60%), url(images/child_learning.jpg);



}

.navbar {
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    padding: 1rem 2rem;
    position: relative;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    width: 65px;
    height: auto;
    transition: transform var(--transition-speed);
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
}


.nav-menu li a{
    color: white; 
}
.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    padding: 0.5rem 1rem;
    transition: all var(--transition-speed);
    display: block;
}

.nav-link:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 220px;
    z-index: 1000;
    border-top: 3px solid var(--accent-color);
    background: #00410386;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 0.8rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    transition: background var(--transition-speed);
    display: block;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

}

.dropdown-item:hover {
    padding-left: 2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(34, 139, 34, 0.377);

}

.language-switcher {
    margin-left: auto;
}

.language-menu {
    right: 0;
    left: auto;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    margin: 5px 0;
    background: #eee;
    transition: all var(--transition-speed);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
        
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        flex-direction: column;
        gap: 0;
        padding: 1rem;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.4s ease;
        overflow-y: auto;
        border-left:  1px solid rgba(51, 153, 122, 0.533);
        background-color: rgb(0, 128, 19);
        z-index: 100;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-item {
        width: 100%;
        padding: 0.5rem 0;
        border-bottom: 1px solid #eee;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: #09262657;
        opacity: 1;
        visibility: visible;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        border-top: none;
        margin-top: 0;
    }

    .dropdown.active .dropdown-menu {
        max-height: 500px;
    }

    .nav-link {
        padding: 1rem;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

/* From Uiverse.io by Shakil-Babu */ 
.btn {
  background: #2e7d32;
  padding: 14px 25px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  border-radius: 10px;
  border: 2px solid seagreen;
  transition: .4s;
 }

 .btn span:last-child {
  display: none;
 }
 
 
/* From Uiverse.io by Shakil-Babu */ 
.btn_content_us {
  background-color: #00000000;
  padding: 14px 20px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  border-radius: 10px;
  border: 2px solid #2e7d32;
  box-shadow: #00ff15, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  transition: .4s;
  margin-left: 15px;
 }
.btn_content_us:hover {
  background: #3eab44;
  transition: .4s;
 }
.btn:hover {
  background: #3eab44;
  transition: .4s;
 }
 
 .btn_content_us span:last-child {
  display: none;
 }
 
 .bbtn_content_ustn:hover {
  transition: .4s;
  border: 2px dashed #00BFA6;
  background-color: #fff;
  color: #00BFA6;
 }
 
 .btn:active {
  background-color: #87dbd0;
 }
 
 


  .hero {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 5%;
    box-sizing: border-box;
    margin-top: 6%;
  }

  .hero-content {
    max-width: 600px;
    animation: fadeInUp 1.2s ease forwards;
    text-align: left;
    position: relative;
  }

  .hero h4 {
    color: #dfdfdf;
    font-size: 16px;
    margin-bottom: 10px;
  }

  .hero h1 {
    font-size: 32px;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    position: relative;
  }

  .highlighted {
    color: #2e7d32;
    display: inline-block;
    position: relative;
    z-index: 1;
  }
  .info{
    color: white;
  }

  .highlighted svg {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 20px;
    z-index: -1;
    animation: draw 1.2s ease forwards;
  }


  @keyframes draw {
    from {
      stroke-dasharray: 120;
      stroke-dashoffset: 120;
    }
    to {
      stroke-dashoffset: 0;
    }
  }



  @keyframes fadeInUp {
    0% {
      transform: translateY(50px);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }

  @media (max-width: 678px) {
    .container {
      background-image: linear-gradient(to left, #03282600 40%, #050e0a0d 60%), url(images/child_learning.jpg);

      background-size:cover;
  }
  
    .container:hover{
      background-image: linear-gradient(to left, #00000000 40%, #050e0a0d 60%), url(images/child_learning.jpg);
  }
  
  }
  @media (max-width: 768px) {
    .hero {
      justify-content: center;
      padding: 10% 5%;
    }

    .hero-content {
      text-align: center;
    }

    .highlighted svg {
      left: 50%;
      transform: translateX(-50%);
    }
  }











  .intro-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 50px 1%;
  background: linear-gradient(135deg, #cadbc8, #a5eac020);
}

.intro-text {
  flex: 1;
  max-width: 500px;
  padding: 20px;
  animation: slideInRight 1.2s ease;
}

.intro-text h2 {
  font-size: 2.3rem;
  color: #1e5631;
  margin-bottom: 20px;
}

.intro-text p {
  font-size: 1.1rem;
  line-height: 2;
  color: #2e4e3f;
  margin-bottom: 30px;
}

 .cta-button {
  background-color: #1e5631;
  color: #ffffff;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  font-weight: bold;
}

.cta-button:hover {
  background-color: #28a745;
  transform: scale(1.05);
}

.intro-image {
  flex: 1;
  max-width: 500px;
  padding: 20px;
  animation: slideInLeft 1.2s ease;
}

.intro-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 1024px) {
  .intro-section {
    flex-direction: column-reverse;
    padding: 80px 40px;
  }
  .intro-text, .intro-image {
    max-width: 100%;
    text-align: center;
  }
  .intro-text h2 {
    font-size: 2rem;
  }
  .intro-text .cta-button {
    font-size: 1rem;
    padding: 12px 25px;
  }
}

@media (max-width: 600px) {
  .intro-section {
    padding: 60px 20px;
  }
}


    .table_users {
      margin: 0;
      background: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      color: white;
    }

    .form-container {
      background: linear-gradient(145deg, #1c352c, #0e1e17);
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 0 25px rgba(0,255,150,0.2);
      width: 90%;
      max-width: 500px;
      animation: fadeIn 1s ease-out;
      position: relative;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .form-container h2 {
      text-align: center;
      color: #9fffa1;
      margin-bottom: 20px;
    }

    .input-group {
      margin-bottom: 20px;
      position: relative;
      opacity: 0;
      transform: translateY(20px);
      animation: slideUp 0.6s ease forwards;
    }

    @keyframes slideUp {
      to { opacity: 1; transform: translateY(0); }
    }

    .input-group:nth-child(1) { animation-delay: 0.2s; }
    .input-group:nth-child(2) { animation-delay: 0.3s; }
    .input-group:nth-child(3) { animation-delay: 0.4s; }
    .input-group:nth-child(4) { animation-delay: 0.5s; }
    .input-group:nth-child(5) { animation-delay: 0.6s; }
    .input-group:nth-child(6) { animation-delay: 0.7s; }

    .input-group input,
    .input-group select {
      width: 100%;
      padding: 12px 40px 12px 12px;
      border: 2px solid #2e4d40;
      background-color: #11221c;
      color: #fff;
      border-radius: 8px;
      font-size: 16px;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .input-group input:hover,
    .input-group select:hover {
      border-color: #3a8d6e;
      transform: translateY(-2px);
    }

    .input-group input:focus,
    .input-group select:focus {
      outline: none;
      border-color: #28c76f;
    }

    .input-group .valid-icon {
      position: absolute;
      left: 12px;
      top: 50%;
      transform: translateY(-50%);
      display: none;
      width: 20px;
      height: 20px;
      fill: #28c76f;
    }

    .input-group.valid .valid-icon {
      display: block;
    }

    .input-group .error-message {
      color: #ff4444;
      font-size: 13px;
      margin-top: 5px;
      display: none;
    }

    .input-group.invalid input,
    .input-group.invalid select {
      border-color: #ff4444;
      animation: shake 0.4s ease-in-out;
    }

    @keyframes shake {
      0%, 100% { transform: translateX(0); }
      25% { transform: translateX(-8px); }
      75% { transform: translateX(8px); }
    }

    .input-group.invalid .error-message {
      display: block;
    }

    .register-btn {
      background: #28c76f;
      color: #fff;
      padding: 14px;
      border: none;
      width: 100%;
      font-weight: bold;
      font-size: 18px;
      border-radius: 10px;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
      position: relative;
      overflow: hidden;
    }

    .register-btn::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 300px;
      height: 300px;
      background: rgba(255,255,255,0.15);
      border-radius: 50%;
      transform: translate(-50%, -50%) scale(0);
      transition: transform 0.5s ease;
    }

    .register-btn:hover {
    }

    .register-btn:hover::after {
      transform: translate(-50%, -50%) scale(1);
    }

    .popup-message {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background-color: #1d3b31;
      border: 2px solid #28c76f;
      padding: 25px 30px;
      border-radius: 12px;
      box-shadow: 0 0 30px rgba(0, 255, 150, 0.3);
      z-index: 999;
      display: none;
      animation: popupIn 0.5s ease-out;
      max-width: 90%;
      text-align: center;
    }

    .popup-message::before {
      content: '';
      background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2328c76f" width="48px" height="48px"><path d="M0 0h24v24H0z" fill="none"/><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>');
      width: 60px;
      height: 60px;
      display: block;
      margin: 0 auto 15px;
      animation: bounce 0.6s ease;
    }

    @keyframes popupIn {
      from { opacity: 0; transform: scale(0.5) translate(-50%, -50%); }
      to { opacity: 1; transform: scale(1) translate(-50%, -50%); }
    }

    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-15px); }
    }

    .popup-message h3 {
      color: #28c76f;
      margin-bottom: 10px;
      font-size: 1.8em;
    }

    .popup-message p {
      font-size: 15px;
      color: #e0ffe8;
      line-height: 1.6;
    }

    .offline-message {
      background: #ff4444;
      color: white;
      padding: 12px;
      border-radius: 8px;
      margin-top: 15px;
      text-align: center;
      display: none;
    }

    .loader-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(12, 24, 18, 0.9);
      display: none;
      z-index: 1000;
      backdrop-filter: blur(3px);
    }

    .loader {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    .spinner {
      animation: spin 1.2s linear infinite;
      width: 60px;
      height: 60px;
    }

    .spinner .path {
      stroke: #28c76f;
      stroke-linecap: round;
      stroke-dasharray: 90, 150;
      stroke-dashoffset: -35;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    .button-spinner {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    .mini-spinner {
      width: 24px;
      height: 24px;
      animation: spin 1s linear infinite;
    }

    .mini-spinner circle {
      stroke: #fff;
      stroke-width: 3;
    }

    @media (max-width: 480px) {
      .form-container {
        padding: 20px;
      }
      .popup-message {
        padding: 20px;
      }
    }


/* Zamzam Academy for Distance Learning */
.section-wrapper {
padding: 80px 20px;
background: linear-gradient(135deg, #0e1f14, #194833);
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
font-family: 'Cairo', sans-serif;
background-color: #0f1f17;

}

.section-title {
  font-size: 2.0rem;
color: #9fffa1;
margin-bottom: 40px;
position: relative;
}

.section-title::after {
content: "";
display: block;
width: 80px;
height: 4px;
background-color: #9fffa1;
margin: 10px auto 0;
border-radius: 2px;
animation: expand 1s ease forwards;
}

.section-content {
max-width: 1100px;
width: 100%;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
background: rgba(255, 255, 255, 0.03);
padding: 40px;
border-radius: 20px;
box-shadow: 0 15px 30px rgba(0,0,0,0.2);
backdrop-filter: blur(6px);
animation: fadeIn 1.5s ease-in-out;
}

.feature-box {
  background: #123222;
  border-radius: 15px;
padding: 25px 20px;
text-align: center;
transition: transform 0.4s, background 0.4s;
}

.feature-box:hover {
transform: translateY(-10px);
background: #1a5f3d;

}

.feature-box i {
font-size: 2.2rem;
color: #9fffa1;
margin-bottom: 15px;
}

.feature-box h3 {
color: #9fffa1;
margin-bottom: 10px;
font-size: 1.3rem;
}

.feature-box p {
font-size: 1rem;
line-height: 1.8;
color: #e0e0e0;
}

@keyframes fadeIn {
from { opacity: 0; transform: translateY(60px); }
to { opacity: 1; transform: translateY(0); }
}

@keyframes expand {
from { width: 0; }
to { width: 80px; }
}

@media (max-width: 600px) {
.section-wrapper {
  padding: 40px 15px;
}

.feature-box {
  padding: 15px;
}
}












    .box_arabic_language {
      padding: 60px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .title_box {
      color: #2e7d32;
      font-size: 36px;
      text-align: center;
      animation: fadeInDown 1s ease;
    }

    p.subtitle {
      color: #555;
      font-size: 18px;
      text-align: center;
      margin-bottom: 40px;
      animation: fadeIn 2s ease;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .card {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      padding: 20px;
      transition: transform 0.3s ease;
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .card h3 {
      color: #388e3c;
      font-size: 24px;
      margin-bottom: 10px;
    }

    ul {
      padding: 0;
      list-style: none;
      line-height: 2;
    }

    .lesta_arabic li::before {
      content: "✔️ ";
      color: #2e7d32;
    }




    @keyframes fadeInDown {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }




footer{
  background-color: #081900;
  padding: 10px 0;
  align-items: center;

}
footer p{
  color: #ffffffb8;

}



/* From Uiverse.io by Pradeepsaranbishnoi */ 
.social-links,.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-btn {
  cursor: pointer;
  height: 50px;
  width: 50px;
  font-family: 'Titillium Web', sans-serif;
  color: #333;
  border-radius: 10px;
  box-shadow: 0px 10px 10px rgba(0,0,0,0.1);
  background: rgba(255, 255, 255, 0.887);
  margin: 5px;
  transition: 0.6s;
  justify-content: center;
  border-radius: 10px;
}



.social-btn svg {
  height: 24px;
  width: 24px;
}

.social-btn span {
  width: 0px;
  overflow: hidden;
  transition: 0.3s;
  text-align: center;
  margin-left: 5px;
}

.social-btn:hover {
  width: 150px;
  border-radius: 10px;
}

.social-btn:hover span {
  padding: 2px;
  width: 80px;
  color: #fff;
}

#twitter svg {
  fill: #1da1f2;
}

#linkedin svg {
  fill: #0e76a8;
}

#github {
  fill: #333;
}
.socialIcons a:hover i{
  color: rgb(21, 1, 1);
  transition: 0.5s;
}


.footerBottom{
  background-color: #000;
  padding: 20px;
  text-align: center;
  margin: 0;
}

.designer{
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
  margin: 0px 5px;
}
@media (max-width: 700px){
  .footerNav ul{
      flex-direction: column;
  } 
  .footerNav ul li{
      width:100%;
      text-align: center;
      margin: 10px;
  }
  .socialIcons a{
      padding: 8px;
      margin: 4px;
  }
  .footerNav{
    display: none;
  }
 
}

/* buttom navbar media */

@media (min-width:990px) and (max-width:1180px) {
  .language-options{
    float: right;
    padding: 0px 0;

  }
  .footerNav{
    display: none;

  }
}



.owl-carousel .item {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.5s ease, opacity 0.5s ease;
  position: relative;
}

.owl-carousel .item img {
  border-radius: 15px;
  width: 90%;
  transition: transform 0.5s ease, opacity 0.5s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* تأثير الصورة المركزية */
.owl-stage .owl-item.center img {
  transform: scale(1.15);
  opacity: 1;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

/* جعل الصور الجانبية مائلة وبتأثير */
.owl-stage .owl-item:not(.center) img {
  opacity: 0.6;
  transform: rotate(-12deg) scale(0.75) translateY(25px);
  filter: grayscale(60%); /* تأثير تحويل الصور الجانبية إلى أبيض وأسود */
}

/* إضافة تأثير عند التمرير على الصور */
.owl-carousel .owl-item img:hover {
  transform: scale(1.1);
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.owl-carousel .owl-prev, .owl-carousel .owl-next {
  font-size: 2rem;
  color: #333;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s;
}

.owl-carousel .owl-prev:hover, .owl-carousel .owl-next:hover {
  background-color: rgba(255, 255, 255, 1);
}



    footer {
      background: #071503;
      color: white;
      text-align: center;
      padding: 20px;
      font-size: 14px;
    }

    @media (max-width: 992px) {
      .hero h1 {
        font-size: 32px;
      }

      .hero p {
        font-size: 18px;
      }

      .hero .cta-btn {
        font-size: 16px;
        padding: 12px 24px;
      }
    }

    @media (max-width: 576px) {
      .hero {
        padding: 60px 15px;
      }

      .cards-container {
        padding: 40px 20px;
      }

      .card {
        padding: 20px;
      }

      .card h3 {
        font-size: 20px;
      }

      .card p {
        font-size: 15px;
      }
    }


 :root {
            --bg-color: #fc0404;
            --primary-color: #1b5e20;
            --secondary-color: #37883c;
            --text-color: #e0f7fa;
        }



        .faq-container {
            max-width: 800px;
            margin: 5rem auto;
            padding: 2rem;
            position: relative;
        }

        .faq-title {
            text-align: center;
            font-size: 2.8rem;
            margin-bottom: 3rem;
            position: relative;
            background: linear-gradient(to right, var(--primary-color), #76ff03);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .faq-item {
            background: rgba(11, 33, 54, 0.8);
            border-radius: 1rem;
            margin: 1.5rem 0;
            overflow: hidden;
            transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(0, 200, 83, 0.2);
            backdrop-filter: blur(10px);
        }

        .faq-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 200, 83, 0.1);
        }

        .faq-question {
            padding: 1.0rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            color: white;
            background: linear-gradient(135deg, rgba(0, 200, 83, 0.1), transparent);
            font-size: 18PX;
        }

        .faq-question i {
            font-size: 1.4rem;
            color: var(--primary-color);
            transition: 0.3s ease;
            color: white;

        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 2rem;
            transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            line-height: 1.8;
            color: #b2ebf2;
        }

        .faq-item.active {
            background: rgba(13, 43, 69, 0.9);
            border-color: var(--primary-color);
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 1.5rem 2rem;
        }

        .faq-item.active .faq-question i {
            transform: rotate(45deg);
        }

        /* تأثيرات خاصة */
        .glow-effect {
            position: absolute;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, var(--primary-color), transparent 70%);
            filter: blur(80px);
            opacity: 0.1;
            z-index: -1;
        }

        .glow-left {
            top: 20%;
            left: 10%;
        }

        .glow-right {
            bottom: 30%;
            right: 15%;
        }

        @media (max-width: 768px) {
            .faq-container {
                margin: 2rem;
                padding: 1rem;
            }
            
            .faq-question {
                padding: 1rem 1.5rem;
                font-size: 0.9rem;
            }
            
            .faq-title {
                font-size: 2rem;
            }
        }

        @keyframes pulse {
            0% { opacity: 0.1; }
            50% { opacity: 0.15; }
            100% { opacity: 0.1; }
        }






        
        .Frequently-Asked-Questions {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .ask-title {
            text-align: center;
            font-size: 2.5rem;
            color: #2d3436;
            margin-bottom: 3rem;
            position: relative;
        }

        .esteham {
            display: inline-block;
            animation: bounce 2s infinite;
        }

        .border-adk {
            display: block;
            width: 100px;
            height: 3px;
            background: #00bc26;
            margin: 1rem auto;
            transform: scaleX(0);
            transition: transform 0.8s ease;
        }

        .asked {
            max-width: 800px;
            margin: 0 auto;
        }

        .card-ask {
            background: white;
            border-radius: 15px;
            margin: 1rem 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            overflow: hidden;
        }

        .card-ask:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        }

        .Questions {
            padding: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            background: linear-gradient(to left, #ffffff, #f8f9fa);
        }

        .Questions h3 {
            margin: 0;
            font-size: 1.2rem;
            color: #2d3436;
        }

        .icone {
            font-size: 2.50rem;
            color: #00b506;
            transition: transform 0.3s;
        }

        .answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, padding 0.3s;
            background: #f8f9fa;
        }

        .answer p {
            margin: 0;
            padding: 0 1.5rem 1.5rem;
            line-height: 1.6;
            color: #636e72;
        }

        .card-ask.مفتوحة .icone {
            transform: rotate(45deg);
        }

        .card-ask.مفتوحة .answer {
            max-height: 300px;
            padding: 0.5rem 0;
        }

        .زخرفة-انسيابية {
            position: absolute;
            bottom: -50px;
            left: -10%;
            width: 120%;
            height: 100px;
            background: rgba(9, 132, 227, 0.05);
            transform: rotate(-3deg);
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        @media (max-width: 768px) {
            .asked {
                padding: 0 1rem;
            }
            
            .Questions h3 {
                font-size: 1rem;
            }
        }



.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  align-items: center;
}

.footer-section {
  flex: 1 1 250px;
  margin: 20px;
  text-align: center;
}

.logo-section img {
  width: 200px;
}

.logo-section:hover img {
  transform: rotate(360deg);
}

.footer-desc {
  font-size: 14px;
  color: #ccc;
  margin-top: 10px;
}

.links-section h3,
.contact-section h3,
.social-section h3 {
  color: #00bf13;
  margin-bottom: 20px;
}

.links-section ul {
  list-style: none;
}

.links-section ul li {
  margin: 10px 0;
}

.links-section ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  transition: color 0.3s ease;
}

.links-section ul li a:hover {
  color: #ffad08;
}

.contact-section p {
  margin: 10px 0;
  font-size: 14px;
}

.whatsapp-box {
  margin-top: 20px;
}

.whatsapp-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #004609;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  border-radius: 25px;
  transition: background-color 0.4s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-button i {
  margin-right: 10px;
}

.whatsapp-button:hover {
  background-color: #128c7e;
  transform: translateY(-5px);
}

.social-section .social-icons {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.social-section .social-icon {
  margin: 0 15px;
  font-size: 28px;
  transition: transform 0.3s ease, font-size 0.3s ease;
}

.social-section .social-icon:hover {
  transform: scale(1.4);
}

.social-section .facebook:hover {
  color: #3b5998;
}

.social-section .twitter:hover {
  color: #1da1f2;
}

.social-section .instagram:hover {
  color: #e1306c;
}

.social-section .linkedin:hover {
  color: #0077b5;
}

/* إعدادات عامة للأزرار */
#facebook {
  background: linear-gradient(45deg, #145ebfd0, #1876f2ca);
}

#instagram {
  background: radial-gradient(circle, #e09b3d, #c74c4d, #bc2a8d, #5a49a3);
}

/* Twitter */
#twitter {
  background: linear-gradient(45deg, #0076d7a5, #1da0f29d);
}

#youtube {
  background: linear-gradient(45deg, #b80000be, #ff0000cf);
}




:root {
  --main-color: #1c5d3f;
  --light-bg: #f9fdfc;
  --card-bg: #fff;
  --text-color: #222;
  --shadow-light: rgba(0, 0, 0, 0.07);
  --shadow-dark: rgba(48, 38, 38, 0.15);
  --border-radius: 14px;
  --transition-speed: 0.35s;
  --font-family: 'Cairo', sans-serif;
}



h1, h2, h3, h4 {
  margin: 0 0 0.5rem 0;
  font-weight: 700;
  color: var(--main-color);
}

p {
  margin: 0 0 1rem 0;
  color: #444;
  font-size: 1rem;
}

.edu-section-wrapper {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}




@keyframes fadeInSection {
  to {
    opacity: 1;
  }
}

.edu-header-box {
  text-align: center;
  margin-bottom: 60px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(40px);
  animation: slideFadeIn 1s ease-out forwards;
  margin-top: 40px;
  font-size: 1.2rem;

}

@keyframes slideFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.edu-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px 30px;
  padding: 0 10px;
  justify-items: center;
}

.edu-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: 0 6px 20px var(--shadow-light);
  padding: 32px 28px;
  text-align: left;
  width: 100%;
  max-width: 360px;
  opacity: 0;
  transform: translateY(40px);
  animation: slideUpCard 0.8s ease-out forwards;
  background: #2e7d3226;
  will-change: transform;
  border-radius: 16px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;



}

.edu-card:nth-child(1) { animation-delay: 0.1s; }
.edu-card:nth-child(2) { animation-delay: 0.2s; }
.edu-card:nth-child(3) { animation-delay: 0.3s; }
.edu-card:nth-child(4) { animation-delay: 0.4s; }
.edu-card:nth-child(5) { animation-delay: 0.5s; }
.edu-card:nth-child(6) { animation-delay: 0.6s; }
.edu-card:nth-child(7) { animation-delay: 0.7s; }

@keyframes slideUpCard {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.edu-card:hover {
  transform: translateY(-12px) scale(1.02) rotateZ(-0.5deg);
  box-shadow: 0 20px 20px #2e7d3289;
}

.edu-icon {
  font-size: 40px;
  color: var(--main-color);
  margin-bottom: 18px;
}

.edu-card h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
  color: var(--main-color);
}

.edu-card p {
  font-size: 1rem;
  line-height: 1.55;
  color: #555;
}




@media (max-width: 768px) {
  .edu-header-box h2 {
    font-size: 2.3rem;
  }
  .edu-card {
    max-width: 100%;
  }

}

@media (max-width: 480px) {
  .edu-header-box p {
    font-size: 1rem;
  }
  .edu-card p {
    font-size: 0.95rem;
  }
}
:root {
    --deep-green: #1a4d2a;
    --forest-green: #123d24;
    --emerald: #2d6a4f;
}

.btn-container {
    display: grid;
    place-items: center;
    min-height: 100vh;
    background: #0d1f14;
}




@keyframes gentle-glow {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}
