@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700&display=swap');

:root {
    --primary-color: #4e54c8;
    --secondary-color: #8f94fb;
    --accent-color: #f5f7fa;
    --text-color: #333;
    --light-text: #777;
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #ecf0f1;
    --text-color: #333;
    --light-text: #777;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tajawal', sans-serif;
}

body {
    background-color: #f9f9f9;
    color: var(--text-color);
    line-height: 1.6;
}


/* navbar start */

.nav_moblie{
    display: none;
}
nav{
    padding: 20px 35px;
    background: #eee;
    direction: rtl;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px;
    border-radius: 70px;
}

nav .links a{
    all: unset;
    margin: 5px 8px;
    padding: 5px 10px;
    border-radius: 50px;
    transition: 0.2s;
    font-size: .9rem;
}
nav .links a:hover{
    cursor: pointer;
    background: #ecffff;
    color: #8d8dff;
}
.logo_lap{
    display: flex;
    align-items: center;
}

.logo_lap img{
    width: 250px;
}

nav .links_social a img{
    margin: 0 1px;
    width: 45px;
    height: 45px;
    cursor: pointer;
    font-weight: 500;
    padding: 2px 5px;
    transition: 0.2s ease;
}
nav .links_social a img:hover{
    transform: scale(1.3);
}
nav .links_social .whatsapp img{
    
}
nav .links_social .instagram img{
    translate: 0 2.1px;
    width: 50px;
    height: 50px;

}
nav .links_social .call img{
    translate: 0 3px;
    width: 51px;
    height: 51px;
}


/* navbar end  */


/* main start  */
.contianer_landing_page{
    padding: 50px 85px;
    width: 100%;
    display: flex;
    align-items: center;
}
.contianer_landing_page .three img{
    display: none;
}
.contianer_landing_page .one img{
    width: 65%;
    border-radius: 30px 10px 30px 10px;
}
.contianer_landing_page .two{
    max-width: 500px;
    text-align: center;
}
.contianer_landing_page .two h1{
    color: #005abb;
    font-size: 18px;
    font-weight: 500;
}

.contianer_landing_page .two p{
    color: #920101;
    margin-top: 10px;
    text-align: end;
    text-align: center;
    font-size: 14px;
}
/* From Uiverse.io by GetYourCode8605 */ 
.glow-on-hover {
    margin-top: 15px;
  width: 120px;
  height: 40px;
  border: none;
  outline: none;
  color: #fff;
  background: #fff;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
  font-weight: 600;
}

.glow-on-hover:before {
  content: '';
  background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing_54134 20s linear infinite;
  opacity: 0;
  transition: opacity .3s ease-in-out;
  border-radius: 10px;
}

.glow-on-hover:active {
  color: #000
}

.glow-on-hover:active:after {
  background: transparent;
}

.glow-on-hover:hover:before {
  opacity: 1;
}

.glow-on-hover:after {
  z-index: -1;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #0760a0;
  left: 0;
  top: 0;
  border-radius: 10px;
}

@keyframes glowing_54134 {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 400% 0;
  }

  100% {
    background-position: 0 0;
  }
}
.glow-on-hover a{
    text-decoration: none;
    color: #ffffff;
}
.glow-on-hover a i{
    margin-right: 7px;
    rotate: 30deg;
}
.services-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--light-text);
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1e88e5;
    text-align: center;
}

.service-content p {
    color: #4a4a4a;
    margin-bottom: 20px;
    text-align: center;
    font-size: 0.90rem;
    font-weight: 400;
}

.service-features {
    margin-bottom: 20px;
}

.service-features li {
    margin-bottom: 8px;
    position: relative;
    padding-right: 25px;
    text-align: end;
    list-style: none;
    font-size: 0.85rem;
    color: #2e7d32;
    font-weight: 500;
}

.service-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 2px;
    color: var(--secondary-color);
}

.service-button {
    display: inline-block;
    padding: 10px 25px;
    background: var(--secondary-color);
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
}

.service-button:hover {
    background: transparent;
    color: var(--secondary-color);
}

.service-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
    flex-flow: column;
    float: right;
    justify-content: end;
}

.service-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--light-text);
}

.service-icon i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}
.service-icon img{
    width: 30px;
    height: 25px;
}


/* main end */



 /* start About us  */


.about-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background: #005abb;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 20px 20px 0 0;
}

.section-header p {
    font-size: 0.9rem;
    color: #920101;
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.about-image:hover {
    transform: translateY(-10px);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    text-align: center;
    flex: 1;
    min-width: 300px;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 10px;
}

.feature-box {
    flex: 1;
    min-width: 200px;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-box h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.values-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, #fff 100%);
    margin-top: 0px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--primary-color);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}
.salider{
    display: none;
}
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    
    .section-header h2 {
        font-size: 1.7rem;
    }
    
    .feature-box {
        min-width: 100%;
    }
}

 /* end About us  */


 /* start info contant */
 footer {
    direction: rtl;
    background: #1a1a2e;
    color: #fff;
    padding: 60px 0 0;
    border-top: 7px solid #2eff6d;
    border-radius: 10px 10px 0 0 ;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 30px;
}

.footer-section h3 {
    font-size: 24px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    color: #fff;
    font-weight: 700;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: #e94560;
}

.footer-links li {
    margin-bottom: 15px;
    list-style: none;
}

.footer-links a {
    color: #b8b8b8;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    display: block;
}

.footer-links a:hover {
    color: #e94560;
    transform: translateX(-8px);
}

.contact-info {
    display: flex;
    margin-bottom: 20px;
    transition: 0.15s;
}
.contact-info:hover{
    transform: scale(1.05);
}
.contact-info i {
    font-size: 20px;
    color: #e94560;
    margin-left: 15px;
    margin-top: 3px;
}

.contact-info a {
    font-size: 16px;
    color: #fff;
    line-height: 1.6;
    text-decoration: none;
}
.contact-info a:hover , .contact-info i:hover{
    color: #e94560 ;
}
.social-media {
    margin-top: 30px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white !important;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

/* ألوان أيقونات التواصل الأصلية */
.social-icons a.facebook { background: #1877f2; } /* فيسبوك */
.social-icons a.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); } /* إنستغرام */
.social-icons a.tiktok { background: #000000; } /* تيك توك */
.social-icons a.whatsapp { background: #25d366; } /* واتساب */

.social-icons a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.newsletter input {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: none;
    border-radius: 8px;
    background: #16213e;
    color: #fff;
    font-size: 16px;
    font-family: 'Tajawal';
}

.newsletter button {
    width: 100%;
    padding: 15px;
    background: #e94560;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter button:hover {
    background: #ff6b81;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding: 25px;
    background: #0f3460;
    margin-top: 60px;
    font-size: 13px;
    color: #b8b8b8;
}
.copyright p{
    margin-top: 10px;
}
.copyright p a{
    display: block;
    text-decoration: none;
    color: #b8b8b8;
    transition: 0.2s;
    width: fit-content;
    margin: auto;
}
.copyright p a:hover{
    transform: scale(1.15);
    color: #e94560;
}

/* end info contant */








 /* 600px mobile */

 @media (max-width:776px){
    
nav{
    border-radius: 20px 20px 0 0;
}
.logo_lap, .links, .social-icons{
    display: none;
}
.nav_moblie{
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    width: 100%;
}
.nav_moblie .logo{
    display: block;
}
.nav_moblie .logo img{
    width: 180px;
}
.menu-toggle {
    display: block;
    font-size: 23px;
    width: 50px;
    height: 35px;
    border: 1px solid #444;
    border-radius: 3px;
    color: #444;
}
.menu-toggle:hover{
    cursor: pointer;
}
.nav_moblie ul {
    position: absolute;
    z-index: 10;
    top: 97px;
    width: 95%;
    background-color: #eee;
    backdrop-filter: blur(10px);
    max-height: 0;
    overflow: hidden;
    translate: 35px 0;
    transition: max-height 0.2s ;
    border-radius: 0 0 20px 20px;
}

.nav-links.active {
    max-height: 500px; /* يمكن تعديله حسب عدد العناصر */
    padding: 8px 0;
}

.nav-links li {
    width: 100%;
    text-align: center;
}
.nav-links a {
    text-decoration: none;
    display: inline-block;
    padding: 10px 0;
    transition: 0.1s;
    width: 100%;
}
.nav-links li a:hover{
    background: #abc1ff;
    color:  white;
}
nav .social-icons{
    display: none;
}
.contianer_landing_page{
    display: flex;
    flex-flow: column;
    padding: 20px 5px;
    gap: 15px;
}
.contianer_landing_page .one img{
    display: none;
}
.contianer_landing_page .two {
    width: 95%;
}
.contianer_landing_page .two  h1{
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 15px;
    text-shadow: 4px 4px 7px #0c607fe3;
    transition: 0.2s;
}
.contianer_landing_page .two p{
    font-size: 14px;
}
.contianer_landing_page .three img{
    display: block;
    width: 90%;
    border-radius: 20px 10px 20px 10px;
    margin: auto;
}
.social-icons{
    display: flex;

}
.services-grid {
    grid-template-columns: 1fr;
}

.section-header h2 {
    font-size: 2rem;
    color: #0522b6;
}
.service-icon{
    font-size: 80%;
}


.footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
}

.salider{
    display: flex;
    flex-flow: column;
    gap: 12px;
    position: fixed;
    bottom: 40px;
    left: 20px;
}

.salider a{
    font-size: 30px;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: 0.2s;
}
.salider a:hover{
    transform: scale(1.15);
    border: rgb(9, 255, 0) 3px solid;
}
.salider .btn_whatsapp a{
    background: #25d366;
    font-size: 30px;
}
.salider .btn_calling a{
    font-size: 30px;
    background: #1877f2;
}

}


 @media (min-width:601px) and (max-width:920px){



}