

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
}

.logo1 {
 
  font-size: 2rem;
  font-weight: bold;
  color: white;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
  flex-direction: row-reverse;
}

.nav-link {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #ef4444;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: #ef4444;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  list-style: none;
  padding: 0.5rem 0;
  margin-top: 1rem;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: #333;
  text-decoration: none;
  transition: background 0.3s ease;
}

.dropdown-menu a:hover {
  background: #f3f4f6;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("img/hero-bg.jpg")
    center / cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.decorative-text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.deco-text {
  position: absolute;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.1);
  user-select: none;
}

.creative {
  top: 10%;
  left: 5%;
  font-size: 4rem;
  transform: rotate(-15deg);
}

.design {
  bottom: 15%;
  right: 5%;
  font-size: 3rem;
  transform: rotate(15deg);
}


.tempo {
  top: 50%;
  left: 2%;
  font-size: 6rem;
  transform: rotate(-90deg) translateY(-50%);
  transform-origin: left center;
}

.hero-content {
  text-align: center;
  color: white;
  z-index: 10;
  max-width: 800px;
  padding: 0 2rem;
}

.hero-title {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  animation: fadeInUp 1s ease 0.2s both;
}


.hero-btn {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-btn:hover {
  background: white;
  color: #333;
  transform: translateY(-2px);
}

/* About Us*/

  
.about {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #2c2c2c;
}

.about-section {
  padding: 60px 10%;
  text-align: center;
}

.section-header .tag {
  background-color: #ffe5eb;
  color: #e91e63;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: bold;
}

.section-header h2 {
  font-size: 32px;
  margin: 20px 0;
}

.section-header .highlight {
  color: #e91e63;
}

.about-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 50px;
  gap: 40px;
}


.left-column {
  flex: 1;
  min-width: 300px;
  max-width: 45%;
  text-align: left;
}

.left-column h3 {
  font-size: 28px;
}

.left-column p {
  font-size: 16px;
  margin: 20px 0;
}

.about-btn {
  text-decoration: none;
  border: 2px solid #e91e63;
  padding: 10px 24px;
  border-radius: 30px;
  color: #e91e63;
  font-weight: bold;
  transition: 0.3s;
}

.about-btn:hover {
  background-color: #e91e63;
  color: white;
}

.right-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  flex: 1;
  min-width: 300px;
  max-width: 50%;
}

.feature .icon {
  font-size: 30px;
  color: #e91e63;
  margin-bottom: 10px;
}

.feature h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.feature p {
  font-size: 15px;
  color: #666;
}

/* Services */
/* إعدادات أساسية */
.services-section44 {
  font-family: Arial, sans-serif;
  background: #fff;
  color: #333;
  margin: 0;
  padding: 0;
}

/* قسم الخدمات */
.services-section44 {
  text-align: center;
  padding: 40px 20px;
}

/* العنوان الفرعي */
.subtitle44 {
  color: #f05a66;
  font-weight: bold;
  font-size: 14px;
  background: #ffe6ea;
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
}

/* العنوان الرئيسي */
.title44 {
  font-size: 28px;
  margin-bottom: 30px;
}

.title44 span {
  color: #f05a66;
}

/* الشبكة الأساسية (4 أعمدة) */
.services-grid44 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto 40px auto;
}

/* كل عنصر خدمة */
.service-box44 {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-box44:hover {
  transform: translateY(-5px);
  border-bottom: 4px solid #f05a66;
}

/* الأيقونة داخل عنصر الخدمة */
.service-box44 .icon44 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #f05a66;
}

/* عنوان الخدمة */
.service-box44 h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

/* وصف الخدمة */
.service-box44 p {
  font-size: 14px;
  color: #666;
}

/* الشبكة السفلية للعناصر الفرعية */
.sub-services-grid44 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  max-width: 1000px;
  margin: auto;
}

/* عنصر فرعي */
.sub-box {
  background: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  text-align: left;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.sub-box span {
  font-size: 20px;
  color: #f05a66;
}

.sub-box:hover {
  background: #f05a66;
  color: #fff;
}

.sub-box:hover span {
  color: #fff;
}


/* Call To Action */


       /*  portfolio */ 
       
.portfolio {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
  background: #fff;
}

.portfolio {
  padding: 50px 20px;
}

.portfolio h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}

.portfolio h2 span {
  color: #e91e63;
}

.filter-buttons {
  margin-bottom: 30px;
}

.filter-buttons .filter {
  padding: 8px 20px;
  margin: 5px;
  border: none;
  background: #f1f1f1;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
}

.filter-buttons .filter.active {
  background: #e91e63;
  color: white;
}

.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  max-width: 1100px;
  margin: auto;
}

.portfolio-gallery .item {
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s;
}

.portfolio-gallery .item img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 100%;
}

      /* Pricing */

      
.pricing-section {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff;
  text-align: center;
}

.pricing-section {
  padding: 60px 20px;
}

.subtitle {
  color: #e91e63;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.title3 {
  font-size: 32px;
  margin: 10px 0 40px;
}

.title3 span {
  color: #e91e63;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.card3 {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  padding: 30px 20px;
  width: 300px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.card3.active {
  border-color: #e91e63;
}

.icon3 {
  font-size: 40px;
  background: rgba(233, 30, 99, 0.1);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e91e63;
}

.card3 h3 {
  margin: 10px 0;
  font-size: 20px;
}

.price {
  font-size: 28px;
  color: #e91e63;
  margin-bottom: 20px;
}

.price span {
  font-size: 14px;
  color: #999;
}

.card3 ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin: 20px 0;
}

.card3 ul li {
  margin: 10px 0;
  font-size: 14px;
  color: #333;
}

.card3 ul li.disabled {
  color: #ccc;
  text-decoration: line-through;
}

.card3 button {
  padding: 10px 20px;
  border: 1px solid #ddd;
  background: none;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.card3 button:hover {
  background: #e91e63;
  color: white;
  border-color: #e91e63;
}



/* Frequently */



.faq-section {
  font-family: 'Segoe UI', sans-serif;
  background: #fff;
  margin: 0;
  padding: 0;
  color: #333;
}

.faq-section {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
}


.ree22 {
  padding-top: 30px;
  text-align:left;
}

.faq-tag1 {

  text-align: center;
  color: #ff5e7d;
  font-weight: bold;
  font-size: 20px;
  text-transform: uppercase;
} 

.faq-title {
  justify-content: flex-start;
  font-size: 28px;
  margin: 10px 0 30px;
}

.highlight {
  color: #f43f5e;
}

.faq-container {
  display: flex;
  text-align: center;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  border: 1px solid #fddde0;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff5f6;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  padding: 15px 20px;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: bold;
  text-align: left;
  color: #e11d48;
  cursor: pointer;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 10px 20px 20px;
}


/* Team99 */

.team-section99 {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

.team-section99 {
    text-align: center;
    padding: 50px 20px;
}

.team99 {
   color: #f43f5e;
}

.Flowed99{
   
  text-align: center;
  color: #ff5e7d;
  font-weight: bold;
  font-size: 20px;
  text-transform: uppercase;
}

.section-title99 {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
}

.team-container99 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.team-member99 {
    background: white;
    border-radius: 10px;
    margin: 15px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 200px; /* يمكنك تغيير العرض حسب الحاجة */
}

.member-image99 {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 15px;
}

/* Team77 */


.team-section77 {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff;
  color: #333;
}

.team-section77 {
  padding: 50px 20px;
  text-align: center;
}

.team-header77 .team-tag77 {
  background-color: #fdebed;
  color: #e91e63;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 10px;
}

.team-header77 h2 {
  font-size: 32px;
  margin: 0;
}

.team-header77 .highlight77 {
  color: #e91e63;
}

.team-members77 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
  gap: 20px;
}

.member77 img {
  width: 250px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.member77 img:hover {
  transform: scale(1.05);
}

/* Need Help */


.contact-section200 {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #fff;
    color: #333;
}

.contact-section200 {
    text-align: center;
    padding: 40px 20px;
}

.section-subtitle200 {
    background-color: #f8d7da;
    color: #c82333;
    padding: 5px 15px;
    display: inline-block;
    border-radius: 20px;
    margin-bottom: 10px;
}

.section-title200 {
    font-size: 28px;
    margin-bottom: 30px;
}

.section-title200 span {
    color: #e91e63;
}

.map-container200 {
    margin: auto;
    max-width: 1100px;
}

.contact-content200 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
    gap: 30px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info200 {
    flex: 1;
    min-width: 250px;
    text-align: left;
}

.info-item200 {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-item .icon200 {
    font-size: 24px;
    color: #e91e63;
    margin-right: 15px;
}

.contact-form200 {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form200 input,
.contact-form200 textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

.contact-form200 textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form200 button {
    background-color: #e91e63;
    color: white;
    padding: 10px 20px;
    border: none;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form200 button:hover {
    background-color: #c2185b;
}


/* Footer Section */


footer {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

footer {
  font-family: 'Open Sans', sans-serif;
  background-color: #111;
  color: #fff;
}

footer {
  background-color: #000;
  padding: 60px 20px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-column {
  flex: 1 1 220px;
  margin: 20px;
}

.footer-column h2,
.footer-column h3 {
  color: #fff;
  margin-bottom: 20px;
}

.footer-column p,
.footer-column ul,
.footer-column a {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column a {
  text-decoration: none;
  color: #ccc;
  transition: 0.3s;
}

.footer-column a:hover {
  color: #fff;
}

.social-links a {
  display: inline-block;
  margin-right: 15px;
  width: 40px;
  height: 40px;
  background: #111;
  border: 1px solid #444;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: #ccc;
  transition: 0.3s;
}

.social-links a:hover {
  background: #f00;
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 40px;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
}

.footer-bottom a {
  color: #ff3e3e;
  text-decoration: none;
}
