	
	.parallax-2 {
    background-image: url('../img/parallax5.jpg');
}
		
.about-icon {
    font-size: 40px; /* size of the icon */
    color: white; /* icon color */
    background-color: #A10AC7; /* circle background color */
    border-radius: 50%; /* makes it a circle */
    width: 100px;
    height: 100px;
    line-height: 100px; /* centers the icon vertically */
    text-align: center; /* centers the icon horizontally */
    display: inline-block;
    margin-bottom: 20px;
}
		
        /* Floating Bubbles - IMPROVED */
        .bubbles {
            position: absolute;
            width: 100%;
            height: 100vh; /* Full viewport height */
            top: 0;
            left: 0;
            z-index: 1; /* Behind content but above background */
            pointer-events: none;
            overflow: hidden;
        }

        .bubble {
            position: absolute;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            backdrop-filter: blur(2px);
            animation: float linear infinite;
            opacity: 0.7;
            bottom: -100px; /* Start below the screen */
        }

        @keyframes float {
            0% { 
                transform: translateY(0) rotate(0deg); 
                opacity: 0.7;
            }
            80% {
                opacity: 0.6;
            }
            100% { 
                transform: translateY(-120vh) rotate(360deg); /* Go beyond the top */
                opacity: 0;
            }
        }
		
		@media (max-width: 992px) {
			#about {
				margin-top: -80px !important;
			}
			
			#features {
				margin-top: -100px !important;
			}
			
			
		}
		
 .button-group {
  display: flex;
  gap: 12px;
  max-width: 400px;
  margin: 20px auto;
}

.outline-btn {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  border: 2px solid #fff;
  background-color: transparent;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.outline-btn:hover {
  background-color: #e84393;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}
		
		/* قسم الدعوة إلى العمل */
.cta-section {
    background: linear-gradient(135deg, #3498db 0%, #2ecc71 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('../img/pattern2.png') repeat;
    background-size: 100% 100%;
}

.cta-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.cta-title {
    font-weight: 700;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-text {
    font-size: 1.2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* أزرار القسم */
.cta-buttons .btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-primary {
    background: #e74c3c;
    border: none;
}

.cta-buttons .btn-primary:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.cta-buttons .btn-outline-light {
    border: 2px solid white;
    background: transparent;
}

.cta-buttons .btn-outline-light:hover {
    background: white;
    color: #3498db;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* ميزات القسم */
.cta-features {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.feature-item i {
    color: #e74c3c;
    margin-left: 8px;
    font-size: 1.2rem;
}

.feature-item span {
    font-weight: 600;
}

/* التكيف مع الشاشات الصغيرة */
@media (max-width: 768px) {
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
    
    .feature-item {
        justify-content: flex-start;
    }
}
		
	.audio-toggle {
      font-size: 20px;
      cursor: pointer;
      color: grey;
    }

    .audio-toggle:hover {
      color: black;
    }
		
body.dark-mode .audio-toggle {
      color: cornsilk !important;
    }
		
.inline-thin-text {
  display: inline;
  direction: rtl;
  color: white;
  font-family: 'Cairo', 'Arial', sans-serif;
  font-weight: 300; /* Thin */
  font-size: 1.2rem;
  line-height: 1.6;
	text-align: center;
	background-color: #1e1e1e;
	
}
		
.inline-thin-text {
  display: inline-block;
  direction: rtl;
  color: white;
  font-family: 'Cairo', 'Arial', sans-serif;
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: center;
background-color: rgba(142, 68, 173, 0.5); /* semi-transparent purple */
  padding: 0 10px;
  border-radius: 3px;

  max-width: 850px;
  word-wrap: break-word;
	box-shadow: 0 0 40px 10px rgba(255, 255, 255, 0.8), /* Bright white glow */
            0 0 80px 20px rgba(255, 255, 255, 0.5); /* Larger, softer outer glow */
}
		
.inline-thin-text:hover {
  
background-color: #e84393; /* semi-transparent purple maher */



}

@media (max-width: 480px) {
  .inline-thin-text {
    max-width: 90vw;
    padding: 0 8px;
    font-size: 1rem;
  }
}
		
@media (max-width: 1000px) {
	#about{
		margin-top: 10px !important;
	}
	
	#misseman {
        content: url('../img/emanmob.jpg');
    }
	
	#welcome{
		margin-top: -50px !important;
	}
}
		

		

