@font-face {
    font-family: 'Cairo';
    src: url('/assets/fonts/Cairo/static/Cairo-Regular.ttf') format('truetype');
    font-weight: 400;
}
  
@font-face {
    font-family: 'Cairo';
    src: url('/assets/fonts/Cairo/static/Cairo-Bold.ttf') format('truetype');
    font-weight: 700;
}
  
@font-face {
    font-family: 'Saira';
    src: url('/assets/fonts/Saira/static/Saira-Regular.ttf') format('truetype');
    font-weight: 400;
}
  
@font-face {
    font-family: 'Saira';
    src: url('/assets/fonts/Saira/static/Saira-Bold.ttf') format('truetype');
    font-weight: 700;
}



:root {
    --header: 70px;
    --sidebar: 15rem;
    --padding: 8rem;
    --padding-m: 2rem;
  
    --primary-color: #0077b6;
    --logo-color: rgb(3, 3, 135);
    --secondary-color: #6C63FF;
    --accent-color: #028c75;
    --accent-color-hover: #00C9A7;
    --dark-color: #1F1F1F;
    --light-color: #F9F9F9;
    --white-color: #fff;
    --bg-color: #eee;
  
    --font-family-ar: 'Cairo', sans-serif;
    --font-family-en: 'Saira', sans-serif;
  
    --font-xs: 12px;
    --font-sm: 14px;
    --font-md: 16px;
    --font-lg: 20px;
    --font-xl: 28px;
    --font-xxl: 36px;
    --font-3xl: 40px;
  
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-bold: 700;
    --font-weight-extra-bold: 900;
  }
  
  /* للأجهزة اللوحية - تابلت (768px أو أقل) */
  @media (max-width: 768px) {
    :root {
      --padding: 4rem;
      --font-lg: 18px;
      --font-xl: 24px;
      --font-xxl: 30px;
      --font-3xl: 34px;
      --sidebar: 12rem;
    }
  }
  
  /* للموبايل - شاشات صغيرة (480px أو أقل) */
  @media (max-width: 480px) {
    :root {
      --padding: 2rem;
      --font-lg: 16px;
      --font-xl: 20px;
      --font-xxl: 24px;
      --font-3xl: 28px;
      --sidebar: 10rem;
    }

    input,
    textarea,
    select {
      font-size: 16px;
    }

  }
  

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


li {
    list-style: none;
}

a {
    text-decoration: none;
}

body {
    font-family: var(--font-family-ar);
}

/* ---------------- 1- header ---------------- */


/* ---------- 2- main ----------------- */
#main {
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-color: var(--bg-color);
}


main {
    min-height: 100%;
    display: flex;
    align-items: center;
    padding: 0 var(--padding);
    margin-top: 25px;
}

main .swiper {
    width: 100%;
    height: 500px;
    border-radius: 20px;
}

main .swiper-slide {
   border-radius: 20px;
   padding: 20px;
   cursor: pointer;
   background-color: var(--accent-color);
}



main .swiper-slide .slideBox {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    transform: scaleX(-1);
    height: 100%;
    color: rgb(12, 12, 84);
}

main .swiper-slide span {
    font-weight: var(--font-weight-bold);
    font-size: 23px;
}

main .swiper-slide h1 {
    font-size: var(--font-3xl);
}

main .swiper-slide p {
    font-weight: var(--font-weight-bold);
    font-size: 15px;
}

main .swiper-slide h1 span {
    color: rgb(40, 40, 148);
    font-size: var(--font-3xl);
}

main .swiper-slide .btnLoginRegister {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 40px;
}

main .swiper-slide .btnLoginRegister a {
    background-color: var(--white-color);
    border: 1px solid #067ead;
    width: 250px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: var(--font-weight-bold);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, .1);
    transition: .5s;
    color: var(--primary-color);
}

main .swiper-slide a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

main .swiper-slide.slide1 {
    background: url('/divorxSite/upload/images/bg.JPEG.jpg');
    transform: scaleX(-1);
    background-position: top;
    background-size: cover;
}

main .swiper-slide.slide2 {
    background: url('/divorxSite/upload/images/bg.JPEG.jpg');
    transform: scaleX(-1);
    background-position: top;
    background-size: cover;
}

main .swiper-slide.slide3 {
    background: url('/divorxSite/upload/images/bg.JPEG.jpg');
    transform: scaleX(-1);
    background-position: top;
    background-size: cover;
}

/* ------------- 3- about -------------- */
#about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100vh;
    padding: 0 var(--padding);
    overflow: hidden;
    /* background: linear-gradient(45deg, rgb(2, 5, 6), rgb(0, 0, 0));  */
    background-color: var(--bg-color);
}

.about {
   display: flex;
   flex-direction: column;
   gap: 30px;
}

.about h2 {
    font-size: var(--font-xxl);
    color: var(--primary-color);
}

.about p {
    width: 30rem;
    color: var(--logo-color);
    letter-spacing: .4px;
}

.about a {
    width: 200px;
    height: 50px;
    border:  1.5px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--primary-color);
    transition: .5s;
}

.about a i {
    font-size: 12px;
    padding-top: 3px;
    transition: .5s;
}

.about a:hover {
    color: var(--accent-color-hover);
    border-color: var(--accent-color-hover);
}

.about a:hover i {
    transform: translateX(-10px);
    color: var(--accent-color-hover);
}

.video {
    height: 35rem;
    transform: skewX(-15deg);
    overflow: hidden;
    padding-right: 5rem;
}

.video video {
    border-radius: 10px;
    height: 100%;
    border: 4px solid rgb(0, 0, 0);
}

/* ----------- 2- models ----------------- */
#models {
    height: 100vh;
}


#models .swiper {
    width: 100%;
    height: 100%;
}

#models .swiper-slide {
    background: linear-gradient(45deg, rgb(7, 7, 58), rgb(18, 43, 116)); 
    cursor: pointer;
    display: flex;
}

#models .modelsData {
    width: 50%;
    height: 100%;
    padding: var(--padding);
    display: flex;
    justify-content: center;
    flex-direction: column;
    color: var(--light-color);
    gap: 2rem;
}

#models .modelsData h3 {
   font-size: var(--font-lg);
}

#models .modelsData h2 {
   font-size: var(--font-xxl);
   color: var(--accent-color-hover);
}

#models .modelsData div {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 2rem;
}

#models .modelsData div a {
    min-width: 200px;
    height: 40px;
    border: 2px solid var(--accent-color-hover);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color-hover);
    gap: 15px;
    transition: .5s;
}

#models .modelsData div a i {
    font-size: var(--font-sm);
    transition: .5s;
}
#models .modelsData div a:hover {
    transform: scale(1.03);
}

#models .modelsData div a:hover i {
    transform: rotate(-360deg);
}

#models .modelsPaner {
    /* background-color: rgba(19, 19, 79, 0.538);  */
    background-color: #fff;
    overflow: hidden;
    width: 50%;
    height: 100%;
    border-radius: 0 0 80% 0;
    padding: 0 var(--padding) 0 0;
    display: flex;
    align-items: center;
    justify-content: end;
}

#models .modelsPaner img {
    width: 85%;
}


/* ----------- 4- information ----------------- */
#information {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 0;
    background-color: var(--bg-color);
    overflow: hidden;
}

#information h2 {
    font-size: var(--font-xl);
}

#information .analysesBox {
    background-color: #0077b6;
    height: 150px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6rem;
    color: var(--white-color);
}

.analysOne {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.analysOne .icon {
    border: 2px solid var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: var(--font-sm);
    padding-top: 3px;
}


.analysOne .number {
    display: flex;
    align-items: center;
    gap: 2px;
}
.analysOne .title {
    font-size: var(--font-sm);
}

#information .boxs {
    width: 100%;
    padding: 0 var(--padding);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

#information .boxs .box {
    min-height: 230px;
    border: 1px solid #a7a7a7;
    border-radius: 10px;
}

#information .boxs .box:hover {
    border: 1px solid var(--primary-color);
}

#information .boxs .box img {
    height: 100%;
    width: 100%;
}

#information a.showAll {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #0077b6;
    text-decoration: underline;
}

/* ----------- 5- contact ----------------- */
#contact {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
    background-color: #fff;
}

.contactTitle {
    text-align: center;
    font-size: var(--font-xl);
    color: #0077b6;
}

.contact {
    display: flex;
    padding: 0 var(--padding);
    align-items: center;
    gap: 2rem;
    padding: 2rem;
}

.contact div {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact div img{
    height: 23rem;
}

.contactForm form {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30PX;
    width: 30rem;
}

.contactForm h2 {
    text-align: center;
    font-size: var(--font-xl);
}

.contactForm form input {
    width: 100%;
    height: 40px;
    padding: 0 10px;
    border-radius: 10px;
    outline: none;
    font-family: var(--font-family);
    transition: .1s;
    background-color: #0076b637;
    border: none;
}


.contactForm form div {
    gap: 2rem;
    width: 100%;
}

.contactForm form input:focus {
    border: 2px solid var(--primary-color);
}


.contactForm form textarea {
    min-height: 50px;
    background-color: #0076b637;
    max-height: 10rem;
    max-width: 100%;
    min-width: 100%;
    padding: 10px;
    border-radius: 10px;
    font-family: var(--font-family);
    outline: none;
    border: none;
    transition: .1s;
}

.contactForm form textarea:focus {
    border: 2px solid var(--primary-color);
}


.contactForm form button {
    height: 40px;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-family: var(--font-family);
    background-color: var(--accent-color);
    color: var(--light-color);
    border: none;
    cursor: pointer;
}


/* contactFast  */
.contactFast {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--padding);
    gap: 2rem;
}

.contactFast .onecontact {
    display: flex;
    border: 1px solid #2d9fdc;
    padding: 20px;
    width: 100%;
    border-radius: 10px;
    background-color: #0076b63b;
}

.onecontact a {
    color: var(--primary-color);
    font-family: var(--font-family-en);
}

.onecontact {
    display: flex;
    font-size: var(--font-sm);
    gap: 10px;
    padding: 20px 0;
}

.onecontactIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    min-width: 55px;
    color: var(--light-color);
    border-radius: 5px;
}

.onecontactIcon i {
    transition: .4s;
}


.onecontactIcon:hover i {
    transform: scale(1.2);
}


.onecontactData {
    display: flex;
    flex-direction: column;
}


.contactLocation {
    padding: 0 var(--padding);
}

.locationMap {
    border: 1px solid #0077b6;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
}


/* whyOur */
#whyOur {
    background-color: #0076b63d;
    padding: 2rem var(--padding);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

#whyOur .whySpan{
    color: #0077b6;
}


.whyOurBoxs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}


.whyOurBox {
    display: flex;
    align-items: start;
    gap: 10px;
}


.whyOurBox .number {
    display: flex;
    align-items: center;
    gap: 5px;
    padding-top: 3px;
}

.whyOurBox .number span{
    color: #0077b6;
}

.whyOurBox .number div{
    height: 1px;
    width: 25px;
    background-color: #1F1F1F;
}

/* موبايل */
@media (max-width: 480px) {
    
    /* ---------- 2- main ----------------- */
    #main {
        height: 65vh;
    }

    main {
        padding: 0;
    }


    main .swiper {
        height: 350px;
        border-radius: 0;
    }

    main .swiper-slide {
    border-radius: 0;
    }


    main .swiper-slide span {
        font-size: 18px;
    }

    main .swiper-slide p {
        font-size: 13px;
    }


    main .swiper-slide .btnLoginRegister {
        gap: 10px;
        padding-top: 10px;
    }

    main .swiper-slide .btnLoginRegister a {
        background-color: var(--white-color);
        border: 1px solid #067ead;
        width: 190px;
        height: 40px;
    }

    main .swiper-slide.slide1 {
        background: url();
        background-color: transparent;
    }

    main .swiper-slide.slide2 {
        background: url();
        background-color: transparent;
    }

    main .swiper-slide.slide3 {
        background: url();
        background-color: transparent;
    }

    
    /* ----------- 3- models ----------------- */
    #models {
        height: 80vh;
    }


    #models .swiper {
        width: 100%;
        height: 100%;
    }


    #models .modelsData {
        width: 100%;
        gap:3rem;
    }


    #models .modelsPaner {
        display: none;
    }
    
    /* ------------- 3- about -------------- */
    #about {
        flex-direction: column;
        height: 100vh;
        padding: 2rem;
    }


    .about p {
        width: auto;
        font-size: 15px;
    }

    .about a {
        width: 170px;
        height: 45px;
    }


    .video {
        height: 20rem;
        transform: skewX(-15deg);
        overflow: hidden;
        padding-right: 5rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .video video {
        height: 100%;
        border: 4px solid rgb(0, 0, 0);
    }


    
    /* ----------- 5- contact ----------------- */
    #contact {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
    }

    .contactTitle {
        font-size: 18px;
    }

    .contact {
        flex-direction: column;
        padding: 0;
    }

    .contact div {
        width: 100%;
    }

    .contact div img{
        height: 17rem;
    }

    /* contactFast  */
    .contactFast {
        flex-direction: column;
        gap: 2rem;
        padding: 0;
    }

    .contactFast .onecontact {
        padding: 10px 20px;
    }


    .contactLocation {
        padding: 0;
    }
    
    /* whyOur */
    .whyOurBoxs {
        grid-template-columns: repeat(1, 1fr);
        font-size: var(--font-sm);
        width: 100%;
    }

    
    /* ----------- 4- information ----------------- */ 
    #information .analysesBox {
        height: 120px;
        gap: 3rem;
    }
    .analysOne .icon {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    #information .boxs {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    #information .boxs .box {
        min-height: 160px;
    }

}
  
  /* تابلت */
  @media (min-width: 481px) and (max-width: 1024px) {
    /* تنسيق التابلت هنا */
  }
  
  /* ديسكتوب */
  @media (min-width: 1025px) {
    /* تنسيق الديسكتوب هنا */
  }