/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



:root {
  --primary-color: #4fc3f7;
  --primary-dark: #29b6f6;
  --primary-light: #81d4fa;
  --secondary-color: #e1f5fe;
  --accent-color: #0277bd;
  --text-dark: #263238;
  --text-light: #546e7a;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, #4fc3f7 0%, #29b6f6 100%);
  --gradient-soft: linear-gradient(
    135deg,
    rgba(79, 195, 247, 0.1) 0%,
    rgba(41, 182, 246, 0.05) 100%
  );
  --shadow: 0 10px 30px rgba(79, 195, 247, 0.15);
  --shadow-hover: 0 20px 60px rgba(79, 195, 247, 0.25);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Cairo", sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  overflow-x: hidden;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}



/* Hero Section */
.hero-section {
  position: relative;
  height: 75vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.8) contrast(1.1) saturate(1.2);
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    rgba(79, 195, 247, 0.3) 0%,
    rgba(41, 182, 246, 0.6) 50%,
    rgba(2, 119, 189, 0.8) 100%
  );
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(79, 195, 247, 0.2) 0%,
    rgba(41, 182, 246, 0.15) 25%,
    rgba(2, 119, 189, 0.25) 50%,
    rgba(79, 195, 247, 0.3) 75%,
    rgba(41, 182, 246, 0.2) 100%
  );
  backdrop-filter: blur(0.5px) saturate(1.1);
  -webkit-backdrop-filter: blur(0.5px) saturate(1.1);
  z-index: 2;
}

.hero-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 30%,
    transparent 70%,
    rgba(255, 255, 255, 0.02) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: white;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 
    0 15px 35px rgba(255, 255, 255, 0.3),
    0 5px 15px rgba(79, 195, 247, 0.4);
}

.hero-badge i {
  font-size: 1.1rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

@keyframes glow {
  from {
    box-shadow: 
      0 0 25px rgba(255, 255, 255, 0.4),
      0 0 50px rgba(79, 195, 247, 0.3);
  }
  to {
    box-shadow: 
      0 0 35px rgba(255, 255, 255, 0.6),
      0 0 70px rgba(79, 195, 247, 0.5);
  }
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.highlight {
  color: var(--primary-color);
  font-weight: 900;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
}

.stat {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 120px;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: white;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: white;
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Story Section */
.story-section {
  padding: 8rem 0;
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  position: relative;
}

.story-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-soft);
  color: var(--primary-color);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(79, 195, 247, 0.2);
}

.story-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.story-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.story-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 600;
}

.feature i {
  color: #10b981;
  font-size: 1.2rem;
}

.story-visual {
  position: relative;
}

.visual-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.visual-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.floating-card {
  position: absolute;
  background: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  animation: float 3s ease-in-out infinite;
}

.floating-card:first-child {
  top: 20%;
  right: -10%;
  animation-delay: 0s;
}

.floating-card:last-child {
  bottom: 20%;
  left: -10%;
  animation-delay: 1.5s;
}

.floating-card i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

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

/* Vision Mission Section */
.vision-mission-section {
  padding: 8rem 0;
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.vm-card {
  background: var(--white);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 3rem;
  border-radius: 24px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.vm-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 25px 50px rgba(79, 195, 247, 0.3);
  border: 2px solid var(--primary-color);
  background: linear-gradient(145deg, #ffffff, #f8fdff);
}



.vm-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.vm-card h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.vm-card p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.vm-highlight {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--gradient-soft);
  padding: 1rem 1.5rem;
  border-radius: 15px;
  font-weight: 600;
  color: var(--primary-color);
}

.vm-highlight i {
  font-size: 1.2rem;
}

/* Goals Section */
.goals-section {
  padding: 8rem 0;
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
   }

.goals-header {
  text-align: center;
  margin-bottom: 5rem;
}

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

.goals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.goal-card {
  background: var(--white);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 2.5rem;
  border-radius: 24px;
  transition: all 0.4s ease;
  position: relative;
  border: 1px solid rgba(79, 195, 247, 0.1);
}

.goal-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 40px rgba(79, 195, 247, 0.25);
  border: 1px solid var(--primary-color);
  background: linear-gradient(145deg, #ffffff, #f0fbff);
}

.goal-card:hover .goal-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--gradient);
  color: white;
}



.goal-number {
  position: absolute;
  top: -15px;
  right: 2rem;
  background: var(--gradient);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.goal-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-soft);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.goal-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.goal-card p {
  color: var(--text-light);
  line-height: 1.7;
}

/* Services Overview Section */
.services-overview-section {
  padding: 8rem 0;
  background: var(--white);
}

.services-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.services-visual {
  position: relative;
}

.services-visual img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.services-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  color: var(--primary-color);
}

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

.services-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 15px;
  transition: all 0.3s ease;
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);

}

.service-item:hover {
  transform: translateX(-5px);
  box-shadow: var(--shadow);
}

.service-item i {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-top: 0.2rem;
}

.service-item h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.service-item p {
  color: var(--text-light);
  line-height: 1.6;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--gradient);
  color: white;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 20px 40px rgba(79, 195, 247, 0.4);
  background: linear-gradient(135deg, #29b6f6 0%, #4fc3f7 50%, #81d4fa 100%);
}

.cta-button:hover i {
  transform: translateX(5px);
}




/* Responsive Design */

/* Large Desktop */
@media (min-width: 1200px) {
  .container {
    max-width: 1400px;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .story-title,
  .goals-title,
  .services-title {
    font-size: 3.5rem;
  }
}

/* Medium Desktop */
@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .story-title,
  .goals-title,
  .services-title {
    font-size: 2.5rem;
  }
  
  .story-wrapper,
  .services-wrapper {
    gap: 4rem;
  }
  
  .vm-grid {
    gap: 2rem;
  }
  
  .goals-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

/* Tablet */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  
  /* Hero Section */
  .hero-section {
    height: 60vh;
    min-height: 500px;
    padding: 6rem 0 2rem 0;
    margin-top: 80px;
  }
  
  .hero-content {
    padding: 0 1rem;
  }
  
  .hero-background img {
    object-position: center top;
  }
  
  .hero-badge {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }

  .hero-title {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 100%;
  }

  .hero-stats {
    display: none;
  }

  
  /* Sections */
  .story-section,
  .vision-mission-section,
  .goals-section,
  .services-overview-section {
    padding: 4rem 0;
  }

  .story-wrapper,
  .services-wrapper,
  .vm-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .story-title,
  .goals-title,
  .services-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .vm-card {
    padding: 2rem;
  }
  
  .vm-card h3 {
    font-size: 1.5rem;
  }
  
  .vm-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .goals-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .goal-card {
    padding: 2rem;
  }
  
  .goal-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .visual-card img,
  .services-visual img {
    height: 300px;
  }
  
  .floating-card {
    display: none;
  }
  
  .services-badge {
    position: static;
    margin-bottom: 1rem;
    display: inline-flex;
  }
}

/* Mobile Large */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  /* Hero Section */
  .hero-section {
    height: 50vh;
    min-height: 400px;
    padding: 5rem 0 2rem 0;
    margin-top: 70px;
  }
  
  .hero-background img {
    object-position: center top;
  }
  
  .hero-badge {
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
  }

  .hero-title {
    font-size: 1.8rem;
    line-height: 1.4;
  }

  .hero-description {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .hero-stats {
    display: none;
  }

  
  /* Sections */
  .story-section,
  .vision-mission-section,
  .goals-section,
  .services-overview-section {
    padding: 3rem 0;
  }
  
  .section-badge {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }
  
  .story-title,
  .goals-title,
  .services-title {
    font-size: 1.6rem;
    line-height: 1.3;
  }
  
  .story-text p,
  .services-description {
    font-size: 1rem;
  }
  
  .vm-card,
  .goal-card {
    padding: 1.5rem;
  }
  
  .vm-card h3,
  .goal-card h3 {
    font-size: 1.2rem;
  }
  
  .vm-icon,
  .goal-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .goal-number {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
    top: -10px;
    right: 1.5rem;
  }
  
  .visual-card img,
  .services-visual img {
    height: 250px;
  }
  
  .service-item {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
  }
  
  .service-item i {
    margin-bottom: 0.5rem;
  }
  
  .cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
  }
}

/* Mobile Small */
@media (max-width: 360px) {
  .container {
    padding: 0 10px;
  }
  
  .hero-section {
    padding: 4.5rem 0 1.5rem 0;
    margin-top: 60px;
  }
  
  .hero-background img {
    object-position: center top;
  }
  
  .hero-title {
    font-size: 1.5rem;
  }
  
  .hero-description {
    font-size: 0.8rem;
  }
  
  .story-title,
  .goals-title,
  .services-title {
    font-size: 1.4rem;
  }
  
  .vm-card,
  .goal-card {
    padding: 1rem;
  }
  
  .service-item {
    padding: 0.8rem;
  }
  
  .visual-card img,
  .services-visual img {
    height: 200px;
  }
}

/* Ultra Wide Screens */
@media (min-width: 1600px) {
  .container {
    max-width: 1600px;
  }
  
  .hero-title {
    font-size: 4rem;
  }
  
  .story-title,
  .goals-title,
  .services-title {
    font-size: 4rem;
  }
}

/* Print Styles */
@media print {
  .header,
  .hero-scroll,
  .floating-card,
  .cta-button {
    display: none;
  }
  
  .hero-section {
    height: auto;
    min-height: auto;
    page-break-after: always;
  }
  
  .story-section,
  .vision-mission-section,
  .goals-section,
  .services-overview-section {
    page-break-inside: avoid;
  }
}
