
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Arial', sans-serif;
      }

      @font-face {
  font-family: 'ApisBold'; /* You can name it anything */
  src: url('../Fonts/Apis-Bold.ttf') format('truetype');
}

@font-face {
  font-family: 'ApisRegular'; /* You can name it anything */
  src: url('../Fonts/Apis-Regular.ttf') format('truetype');
}

 @font-face {
  font-family: 'arabicbold'; /* You can name it anything */
  src: url('../Fonts/GE-SS-Text-Bold.otf') format('opentype');
}

      body {
        color: #333;
          height: 100dvh; /* dynamic viewport height */
        display: flex;
        flex-direction: column;
      }

      .container {
        max-width: 1170px;
        margin: 0 auto;
        width: 100%;
        flex: 1;
        display: flex;
        flex-direction: column;
        background: linear-gradient(to bottom,
            rgb(255, 255, 255) 0%,
            rgb(255, 255, 255) 30%,
            rgb(228, 226, 220) 100%);
        border-radius: 10px;
        height: 100dvh;
      }

      header {
        text-align: center;
        margin-bottom: -20px;
      }

      .topline {
        height: 20px;
        background: linear-gradient(120deg,
            #ec1c24 0%,
            #ec1c24 28%,
            #ec2423 42%,
            #ee3d22 64%,
            #f16421 92%,
            #f27121 100%);
        margin-bottom: 20px;
      }

      .logo-image {
        width: 200px;
        height: auto;
        margin: 0 auto 10px;
      }

      .subtitle {
        font-size: 10px;
        color: #404040;
        padding: 0 10px;
        margin-bottom: 8px;
        font-weight: bold;
        margin-top: 10px;
        font-family: 'ApisBold';
      }

      .tagline-image {
        max-width: 90%;
        height: auto;
      }

      .tagline-imagefull {
        max-width: 90%;
      }

      .benefits {
        background: white;
        border-radius: 15px;
        padding: 20px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        margin-bottom: 20px;
      }

      .benefits h2 {
        color: #1a73e8;
        margin-bottom: 15px;
        text-align: center;
      }

      .benefits ul {
        list-style-type: none;
        padding-left: 0;
      }

      .benefits li {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
        display: flex;
        align-items: center;
      }

      .benefits li:last-child {
        border-bottom: none;
      }

      .benefits li::before {
        content: "✓";
        color: #1a73e8;
        font-weight: bold;
        margin-right: 10px;
      }

      .info-section {
        background: white;
        border-radius: 15px;
        padding: 20px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        margin-bottom: 20px;
      }

      .info-section h2 {
        color: #1a73e8;
        margin-bottom: 15px;
        text-align: center;
      }

      .info-section p {
        line-height: 1.6;
        margin-bottom: 15px;
      }

      .buttons {
        display: flex;
        gap: 10px;
        margin-top: 20px;
      }

      .btn {
        flex: 1;
        padding: 12px;
        border: none;
        border-radius: 8px;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
      }

      .btn-primary {
        background: #1a73e8;
        color: white;
      }

      .btn-secondary {
        background: #f1f3f4;
        color: #333;
      }

      .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      }

      .carousel-container {
        margin-top: auto;
        padding: 0;
      }

      .circle-carousel svg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
      }

      .item {
        position: absolute;
        width: 90px;
        height: 90px;
        border-radius: 50%;
        border: 5px solid rgb(177 177 177 / 40%);
        /* box-shadow: 0 4px 8px rgba(0,0,0,0.2); */
        display: flex;
        justify-content: center;
        align-items: center;
        transition: transform 0.35s, border 0.35s;
        background: linear-gradient(239deg,
            #ec1c24 0%,
            #ec1c24 28%,
            #ec2423 42%,
            #ee3d22 64%,
            #f16421 92%,
            #f27121 100%);
        background-clip: content-box;
      }

      .item.active {
        background-clip: content-box;
      }

      .item::after {
        content: "";
        position: absolute;
        top: 0px;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 50%;
        border: 3px solid #ddd;
        pointer-events: none;
      }

      .item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        pointer-events: none;
      }

      .item.active {
        transform: scale(1.3);
        border: 3px solid rgb(177 177 177 / 40%);
        /* box-shadow: 0 4px 8px rgba(0,0,0,0.2); */
        z-index: 2;
        background: #F3F3F0;
        background-clip: content-box !important;
        overflow: visible;
      }

      .item.active::after {
        content: "";
        position: absolute;
        top: 0px;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 50%;
        border: 2px solid #DA0812;
        pointer-events: none;
      }

      .center-image {
        position: absolute;
        top: 36%;
        right: 50%;
        width: 50%;
        height: 87%;
        transform: translate(50%, -50%);
        /* border-radius: 50%; */
        overflow: hidden;
        /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
        z-index: 1;
      }

      .center-image img {
        width: 100%;
        height: 100%;
      }

      .disclaimer {
        font-size: 0.7rem;
        color: #666;
        text-align: center;
        margin-top: 10px;
      }

      .item svg {
        position: relative;
        width: 60%;
        height: 60%;
      }

      .circle-carousel {
        position: relative;
        width: 100%;
        max-width: 500px;
        aspect-ratio: 1/1;
        margin: 0 auto;
        touch-action: none;
        user-select: none;
        aspect-ratio: 1/1;
      }

      .carousel-wrapper {
        position: relative;
        width: 100vw;
        /* ياخد العرض الكامل */
        max-width: 500px;
        /* أقصى عرض */
        aspect-ratio: 2 / 1.5;
        /* الارتفاع = نصف العرض */
        max-height: 260px;
        /* لا يتجاوز 300px */
        margin: 0 auto;
        bottom: 0;
        overflow: hidden;
        padding-top: 60px;

      }

       @media only screen and (max-width: 375px) {
        .carousel-wrapper  {
           max-height: 230px;
        }
      }


       @media only screen and (min-width: 600px) {
        .circle-carousel {
        position: relative;
        width: 100%;
        max-width: 650px;
        aspect-ratio: 1/1;
        margin: 0 auto;
        touch-action: none;
        user-select: none;
        aspect-ratio: 1/1;
      }

      .carousel-wrapper {
        position: relative;
        width: 100vw;
        /* ياخد العرض الكامل */
        max-width: 650px;
        /* أقصى عرض */
        aspect-ratio: 2 / 1.5;
        /* الارتفاع = نصف العرض */
        max-height: 390px;
        /* لا يتجاوز 300px */
        margin: 0 auto;
        bottom: 0;
        overflow: hidden;
        padding-top: 80px;

      }
      .subtitle {
          font-size: 20px !important;
        }

        .item-label {    
        font-size: 12px !important;
      }

     .item.active .item-label {
        color: #5D6065;
        font-size: 13px !important;
      }
      }

      .toplogoheight {
        max-height: 10vh;
      }

      .nexteraheight img {
        max-height: 7vh;
            margin-top: 10px;
      }

      .fullshadowheigh img {
        max-height: calc(30vh - 30px);
        margin-top: 14px;
       
      }
       @media only screen and (min-width: 500px) {
        .fullshadowheigh img  {
        margin-bottom: 40px;
        }
      }

    /* @media only screen and (max-width: 500px) 
    {
        .fullshadowheigh img  {
       margin-left: -30%;
        }
    } */


        @media only screen and (min-width: 376px) and (max-width: 500px){
       .tagline-imagefull
       {
           margin-top: 0px !important;

       }
      }

      .item svg path {
        fill: white;
        transition: fill 0.3s ease;
      }

      .item.active svg path {
        fill: url(#active-gradient) !important;
      }
      .item-label {
        position: absolute;
        bottom: 100%;
        /* shows label above the circle */
        left: 50%;
        transform: translateX(-50%);
        margin-bottom: 6px;
        font-size: 9px;
        color: #C1C1C0;
        font-weight: 600;
        white-space: nowrap;
        pointer-events: none;
        /* keeps swipe working */
        text-align: center;
          font-family: 'ApisRegular';
      }

     .item.active .item-label {
        color: #5D6065;
         font-family: 'ApisBold';
      }

      /* Tooltip base style */
.click-hint {
    position: absolute;
    bottom: 80%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 6px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s 
      ease, transform 0.3s 
      ease;
    z-index: 10;
}
/* small arrow */
.click-hint::after {
  content: '';
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.75) transparent transparent transparent;
}

/* show on hover or when active */

.item.active .click-hint {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.language-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none; /* hidden by default */
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.language-box {
   background: linear-gradient(to bottom,
            rgb(255, 255, 255) 0%,
            rgb(255, 255, 255) 30%,
            rgb(228, 226, 220) 100%);
    padding: 30px;
    text-align: center;
    width: 100%;
    HEIGHT: 100VH;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    /* animation: fadeIn 0.4s 
ease; */
max-width: 1170px;
}
.svgbox g
{
fill: url(#active-gradient) !important;

}

.svgbox
{
    width: 100px;
}

.internaliconbox svg g {
fill: white !important;
transition: fill 0.3s ease;
}
    .internaliconbox
    {
       position: absolute;
    left: 41px;
    width: 60px;
    height: 22px;
    top: 37px;
    text-align: center;
    align-items: center;
    align-content: center;
    fill: white;
    }

  .menu-icon, .home-icon {  
      cursor: pointer;
      width: 50px;
      position: relative;
    }

    .langchoosesec svg
    {
        width: 120px;
    }


.langlogosec  
{
   height: 30vh;
}
.langchoosesec 
{
  height: 50vh;
    display: flex;
    justify-content: space-between;

}

.forarabic
{
  font-family: 'arabicbold';
  font-size: 18px;
    margin-bottom: 20px;
    color: #DF2124;
}
.forenglish
{
    font-family: 'ApisBold';
    font-size: 18px;
    margin-bottom: 20px;
        color: #DF2124;

}

.langnovo
{
    height: 10vh;
}
.language-boxlogo-image
{
    max-width: 250px;
    margin-top: 60px;
}

.language-boxNOVO
{
    max-width: 100px;
}

.language-box h2 {
  margin-bottom: 20px;
  font-size: 18px;
  color: #333;
}

.lang-btn {
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  margin: 5px;
  cursor: pointer;
  font-weight: bold;
  color: white;
  font-size: 16px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.lang-btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
}


.lang-btn.arabic {
  background: #f27121;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}


   
/* Floating button */
#floatBtn {
  position: fixed;
  bottom: 50%;
  right: 0px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 10000;
}

#floatBtn:hover {
  background-color: #0056b3;
  transform: scale(1.1);
}


.menulangtop
{
    display: flex;
    justify-content: space-between;
    width: 83px;
    position: absolute;
    left: 0;
    right: 0;
}

.menulangtop .internaliconbox {
    position: absolute;
       left: 15px;
    width: 19px;
    height: 24px;
    top: 7px;
    fill: white;
   
}

.menulangtop .svgbox
{
    width: 47px;
    height: 36px;
}

.menulangsvg
{
    width: 47px;
    height: 36px;
    cursor: pointer;
}

.container
{
    position: relative;
}



 /* Modal background */
  .pages-modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
  }

  /* Modal box */
  .pages-modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;       /* limit height */
    overflow-y: auto;
  }

  /* Close button */
  .pages-close {
    font-size: 24px;
    cursor: pointer;
  }

  /* Page list */
  .page-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
  }

  .page-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 8px;
    background: #f7f7f7;
    cursor: pointer;
    transition: background 0.2s;
  }

  .page-item:hover {
    background: #e9ecef;
  }

  .page-item i {
    font-size: 20px;
    color: #007bff;
  }

  .pages-modal svg 
  {
    width: 30px;
    height: 35px;
  }
  .pages-modal svg path
  {
    fill: url(#active-gradient) !important;
  }

  .menutitles
  {
      font-family: 'ApisBold';
  }
  
   
  .fullshadowheigh
  {
    position: relative;
  }

    .Imagesmodel
  {
        position: absolute;
    right: 34%;
    font-size: 8px;
    bottom: 30px;
      font-family: 'ApisRegular'; 
  }

  @media only screen and (max-width:500px)
  {
   .menutitles
   {
        font-size: 12px;

   }
      .Imagesmodel
  {
        position: absolute;
    right: 74px;
    font-size: 4px;
    bottom: 20px;
      font-family: 'ApisRegular'; 
  }
  }
  
 
 
  #pageContent {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

@media only screen and (min-width: 1170px)
{
  .container
  {
    height: auto;
    min-height: 100dvh;
  }
}