html {
    font-size: 18px;
    zoom: 50%;
}

body {
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgb(0, 0, 0) 100%);
    margin: 0;
    font-family: 'Aref Ruqaa', sans-serif;
    color: #000;
    min-height: 100vh;
}

/* Typography General */
h1, h2, p {
    margin: 0 0 1.66667rem 0;
    font-family: 'Aref Ruqaa', sans-serif;
}

h1 {
    border-bottom: 0.167rem solid #ff9900;
    font-size: 5rem;
    color: #000;
}

h2 {
    font-size: 3rem;
    color: #000;
}

p {
    line-height: 1.6em;
    color: #000;

}




/* ---- Layout Rules ---- */
.main-hero {
    min-height: 30vh;
    padding-top: 1.5em;
    background: #ffffff;
}



section {
    position: relative;
    padding: 4rem 6rem;
    background: #F2F2F2;
    margin-bottom: 0.5em;
    box-shadow: 0 0 0.833rem rgba(0, 0, 0, 0.1); 
}

.info {
    max-width: 90%;
    font-size: 2rem;
}

/* ---- Navigation Styles ---- */
.navbar__menu {
    display: flex;
    position: fixed;
    align-items: center;
    font-weight: bold;
    z-index: 100;
    font-size: 3rem;
    right: 0;
    padding-right: 5rem;

}


.navbar__menu ul {
    padding-left: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    font-size: 3rem;

}

.navbar__menu li {
    margin: 0 0.833rem;
    font-size: 3rem;

}

.navbar__menu .menu__link{
    padding: 1em;
    font-weight: bold;
    text-decoration: none;
    margin-right: 1em;
    color: rgb(0, 0, 0);
    font-size: 2rem;
}


.navbar__menu .menu__link:hover,  .menu__link.active {
    background: #ff9900;
    transition: ease 0.5s all;
}



/* Logo and Company Info */
.logo-container {
    display: flex;
    width: 30%;
    align-items: center;
}

.logo {
    width: 100%;
    height: 5rem;

}

/* Header and Footer Styles */
.page__header {
    background: #ffffff;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 1em;
    padding-left: 5rem;
    padding-right: 5rem;
    font-size: 3rem;
    height: fit-content;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Swiper Container */
.swiper-container {
    width: 100%;
    /* height: 127.2vh; */
    padding-top: 4.5rem;
    position: relative;
    z-index: 1;
    height: 60vh;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    min-height: 100%; /* Ensure the slides take the full container height */
    transition: opacity 0.5s ease-in-out; /* Smooth transition */
    
}


/* Slide Content */
.slide-content {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
    padding: 1.5rem;
    border-radius: 0.5rem;
    color: #000;
    border-left: 0.4rem solid #ff9900; /* Border for emphasis */
    max-width: 45rem;
}


/* Slide Title */
.slide-title {
    font-size: 5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

/*--------------------------------------------------*/

/* ---- Theme Rules ---- */
.landing__container {
    width: 100%;
}

/* Footer Styles */
.page__footer {
    background-color: #ffffff;
    color: #000000;
    padding: 0.8333rem 0;
    position: relative;
    text-align: left;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 4.1667rem;
    flex-wrap: wrap;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
}

.company-info {
    flex: 1;
    padding: 1.2rem 1.6667rem;

}

.footer-logo {
    max-width: 30%;
    height: auto;
    margin-bottom: 0.8333rem;
}

.footer-content p {
    font-size: 1.25rem;
    line-height: 1.6;
}

.footer-links {
    flex: 1;
    padding: 0 1.6667rem;
}

.footer-links h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8333rem;
}

.footer-links ul {
    list-style-type: none;
    padding: 0;
    font-size: 1.5rem;

}

.footer-links ul li {
    margin-bottom: 0.4167rem;
}

.footer-links ul li a {
    color: rgb(0, 0, 0);
    text-decoration: none;
}

.footer-links ul li a:hover {
    color: #ff9900;
}

.social-links {
    margin-top: 0.8333rem;
    padding: 1rem;
}

.social-links a {
    color: rgb(0, 0, 0);
    font-size: 2rem;
    margin-right: 0.4167rem;
    text-decoration: none;
}

.social-links a:hover {
    color: #ff9900;
}

.footer-bottom {
    text-align: center;
    margin-top: 1.6667rem;
    font-size: 2rem;
    color: rgb(0, 0, 0);
}

.footer-bottom a {
    color: inherit;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #ff9900;
}

.footer-links h2 {
    border-bottom: 0.167rem solid #ff9900;
    width: 25%; /* Change this to whatever width you want. */
}

/* Add arrows and hover effect */
.footer-links ul li a {
    position: relative; /* To position the arrow */
    text-decoration: none;
    color: black; /* Default text color */
    transition: color 0.5s ease; /* Smooth color transition */
  }
  
  .footer-links ul li a::before {
    content: "\25CF"; /* Unicode for the right arrow (→) */
    position: absolute;
    left: -2rem; /* Position the arrow to the left of the text */
    transition: color 0.5s ease; /* Smooth color transition */
  }
  
  .footer-links ul li a:hover {
    color: #ff9900; /* Change text color on hover */
  }
  
  .footer-links ul li a:hover::before {
    color: #ff9900; /* Change arrow color on hover */
  }
  

/* Contact Link */
.contact-link {
    color: #000;
    text-decoration: none;
    transition: color 0.5s ease;
}

.contact-link:hover {
    color: #ff9900;
}

#arrowIcon {
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.5s ease;
    background-color: #ff9900;
}


.right-nav-bar {
    position: fixed;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    background-color: #ff9900;
    z-index: 1000;
    color: #fff;
    cursor: pointer;
    text-align: center;
    display: flex; /* Make sure it's visible */
    flex-direction: column;
}


.dropdown-content {
    display: none;
    flex-direction: column;
    background-color: #fff;
    margin-top: 1%;

}

.menuButton{
    display: none;
}

.menu-title {
    padding: 1rem;
    background-color: #ff9900;
    color: #fff;
    border: none;
    border-radius: 100%;
  
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-in-out;
}

.right-nav-bar, .menu-title, #arrowIcon,.fa-arrow-right:hover {
    background-color: #000;
}


.menu-title, .right-nav-bar{
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}


.dropdown-content a {
    color: rgb(0, 0, 0);
    padding: 1rem;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #ff9900;
}

.show {
    display: flex;
}


.right-nav-bar a {
    color: #000;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.0.5s;
    font-size: 1.5rem;
}

.right-nav-bar a:hover {
    background-color: #ff9900;
}

#navBar a.active {
    background-color: #ff9900; /* Highlight color */
    color: #fff;
}



/* right-Side Language Switcher */
.language-switcher-right {
    position: fixed;
    top: 50%;
    right: 0; /* Change 'right' to 'right' */
    transform: translateY(-50%);
    background-color: #000;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 1000;
    transition: opacity 0.5s ease;

}

.language-switcher-right img {
    width: 4rem; /* Adjust size of flags */
    height: auto;
    cursor: pointer;
    transition: transform 0.5s ease-in-out;
    border-radius: 0.5rem;
}

.language-switcher-right img:hover {
    transform: scale(1.5); /* Zoom effect on hover */
}

/* Product Details Styles */
.product-details {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; /* Aligns the image to the bottom */
}

.product-details img {
    max-width: 35%;
    margin-right: 5%;
    pointer-events: none; /* Makes the video unclickable */
    min-height: 70% ;

}

.product-details .details {
    width: 50%; /* Adjust this value based on the table's width */
}


.details-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;

}

.details-table th, .details-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.details-table th {
    background-color: #f2f2f2;
    font-weight: bold;
    font-size: 1.5rem;
    
}


.details-table td {
    font-weight: bold;
    font-size: 1.25rem;
    
}

.details-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.details-table tr:hover {
    background-color: #f1f1f1;

}


.fa-leaf, .fa-check-square, .fa-dollar-sign, .fa-clock, .fa-plane{
    font-size:3rem; 
    color:#ff9900; 
    margin-right: 0.833rem;
}

/**********************************************************************/


@media (max-width: 1199px) { 
    
    html {
        font-size: 8px;
        zoom: 75%;
    }
    
    body {
        min-height: 100vh;
    }
    
    /* Typography General */
    h1, h2, p {
        margin: 0 0 1.66667rem 0;
    }
    
    h1 {
        border-bottom: 0.167rem solid #ff9900;
        font-size: 5rem;
    }
    
    h2 {
        font-size: 3rem;
    }
    
    p {
        line-height: 1.6em;    
    }

    .main-hero {
        min-height: 30vh;
        padding-top: 1.5em;
    }
    
    section {
        padding: 4rem 6rem;
        margin-bottom: 0.5em;
        box-shadow: 0 0 0.833rem rgba(0, 0, 0, 0.1); 
    }
    
    .info {
        font-size: 2rem;
    }
    
    .navbar__menu {
        font-size: 3rem;
        padding-right: 5rem;    
    }
    
    
    .navbar__menu ul {
       font-size: 3rem; 
    }
    
    .navbar__menu li {
        margin: 0 0.833rem;
        font-size: 3rem;
    
    }
    
    .navbar__menu .menu__link{
        padding: 1em;
        margin-right: 1em;
        font-size: 2rem;
    }
 
    .logo {
        height: 5rem;    
    }
  
    .page__header {
        padding: 1em;
        padding-left: 5rem;
        padding-right: 5rem;
        font-size: 3rem;
    }
    
    /* Swiper Container */
    .swiper-container {
        width: 100%;
        height: 50vh;
        padding-top: 4.5rem;
    }
    
    .slide-content {
        bottom: 2rem;
        left: 2rem;
        padding: 1.5rem;
        border-radius: 0.5rem;
        border-left: 0.4rem solid #ff9900; /* Border for emphasis */
        max-width: 45rem;
    }
        
    .slide-title {
        font-size: 5rem;
        margin-bottom: 1rem;
    }

    
    section.your-active-class {
        border-left: 0.4167rem solid #ff9900;
        padding-left: calc(6em - 0.4167rem);
    }
/* Footer Styles */
.page__footer {
    padding: 0.8333rem 0;
}

.footer-container {
    padding: 0 4.1667rem;
}

.company-info {
    padding: 0 1.6667rem;
}

.footer-logo {
    margin-bottom: 0.8333rem;
}

.footer-content p {
    font-size: 1.25rem;
}

.footer-links {
    padding: 0 1.6667rem;
}

.footer-links h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8333rem;
}

.footer-links ul {
    padding: 0;
    font-size: 1.5rem;

}

.footer-links ul li {
    margin-bottom: 0.4167rem;
}

.social-links {
    margin-top: 0.8333rem;
    padding: 1rem;
}

.social-links a {
    font-size: 2rem;
    margin-right: 0.4167rem;
}

.footer-bottom {
    margin-top: 1.6667rem;
    font-size: 2rem;
}

.footer-links h2 {
    border-bottom: 0.167rem solid #ff9900;
}

  .footer-links ul li a::before {
    left: -2rem; /* Position the arrow to the left of the text */
  }

 
#arrowIcon {
    font-size: 2rem;
}

.right-nav-bar {
    right: 1rem;
}

.dropdown-content {
    margin-top: 1%;
}

.menu-title {
    padding: 1rem;  
    font-size: 1.5rem;
}

.dropdown-content a {
    padding: 1rem;
}

.right-nav-bar a {
    font-size: 1.5rem;
}

.language-switcher-right {
    padding: 1rem;
    gap: 1rem;
}

.language-switcher-right img {
    width: 4rem; /* Adjust size of flags */
    border-radius: 0.5rem;
}

.details-table {
    margin-top: 1rem;
}

.details-table th, .details-table td {
    border: 0.08333rem solid #ddd;
    padding: 0.66667rem;
}

.details-table th {
    font-size: 1.5rem;   
}


.details-table td {
    font-size: 1.25rem;    
}

}


@media (max-width: 600px) { 
    
    html {
        font-size: 6px;
        zoom: 75%;
    }
    
    body {
        min-height: 100vh;
    }
    
    /* Typography General */
    h1, h2, p {
        margin: 0 0 1.66667rem 0;
    }
    
    h1 {
        border-bottom: 0.167rem solid #ff9900;
        font-size: 5rem;
    }
    
    h2 {
        font-size: 3rem;
    }
    
    p {
        line-height: 1.6em;    
    }

    .main-hero {
        min-height: 30vh;
        padding-top: 1.5em;
    }
    
    section {
        padding: 4rem 6rem;
        margin-bottom: 0.5em;
        box-shadow: 0 0 0.833rem rgba(0, 0, 0, 0.1); 
    }
    
    .info {
        font-size: 2rem;
    }
    
    .navbar__menu {
        font-size: 3rem;
        padding-right: 5rem;    
    }
    
    
    .navbar__menu ul {
       font-size: 3rem; 
    }
    
    .navbar__menu li {
        margin: 0 0.833rem;
        font-size: 3rem;
    
    }
    
    .navbar__menu .menu__link{
        padding: 1em;
        margin-right: 1em;
        font-size: 2rem;
    }
 
    .logo {
        height: 5rem;    
    }
  
    .page__header {
        padding: 1em;
        padding-left: 5rem;
        padding-right: 5rem;
        font-size: 3rem;
    }
    
    /* Swiper Container */
    .swiper-container {
        width: 100%;
        height: 40vh; /* Full viewport height */
        padding-top: 4.5rem;
    }
    
    .slide-content {
        bottom: 2rem;
        left: 2rem;
        padding: 1.5rem;
        border-radius: 0.5rem;
        border-left: 0.4rem solid #ff9900; /* Border for emphasis */
        max-width: 45rem;
    }
        
    .slide-title {
        font-size: 5rem;
        margin-bottom: 1rem;
    }
    
    section.your-sw-class {
        border-left: 0.4167rem solid #ff9900;
        padding-left: calc(6em - 0.4167rem);
    }
/* Footer Styles */
.page__footer {
    padding: 0.8333rem 0;
}

.footer-container {
    padding: 0 4.1667rem;
}

.company-info {
    padding: 0 1.6667rem;
}

.footer-logo {
    margin-bottom: 0.8333rem;
}

.footer-content p {
    font-size: 1.25rem;
}

.footer-links {
    padding: 0 1.6667rem;
}

.footer-links h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8333rem;
}

.footer-links ul {
    padding: 0;
    font-size: 1.5rem;

}

.footer-links ul li {
    margin-bottom: 0.4167rem;
}

.social-links {
    margin-top: 0.8333rem;
    padding: 1rem;
}

.social-links a {
    font-size: 2rem;
    margin-right: 0.4167rem;
}

.footer-bottom {
    margin-top: 1.6667rem;
    font-size: 2rem;
}

.footer-links h2 {
    border-bottom: 0.167rem solid #ff9900;
}

  .footer-links ul li a::before {
    left: -2rem; /* Position the arrow to the left of the text */
  }

.language-switcher-right {
    padding: 1rem;
    gap: 1rem;
}

.language-switcher-right img {
    width: 4rem; /* Adjust size of flags */
    border-radius: 0.5rem;
}

.details-table {
    margin-top: 1rem;
}

.details-table th, .details-table td {
    border: 0.08333rem solid #ddd;
    padding: 0.66667rem;
}

.details-table th {
    font-size: 1.5rem;   
}


.details-table td {
    font-size: 1.25rem;    
}

}

@media (max-width: 480px) { 
    
    html {
        font-size: 3.5px;
        zoom: 75%;
    }
    
    body {
        min-height: 100vh;
    }
    
    /* Typography General */
    h1, h2, p {
        margin: 0 0 1.66667rem 0;
    }
    
    h1 {
        border-bottom: 0.167rem solid #ff9900;
        font-size: 5rem;
    }
    
    h2 {
        font-size: 3rem;
    }
    
    p {
        line-height: 1.6em;    
    }

    .main-hero {
        min-height: 30vh;
        padding-top: 1.5em;
    }
    
    section {
        padding: 4rem 6rem;
        margin-bottom: 0.5em;
        box-shadow: 0 0 0.833rem rgba(0, 0, 0, 0.1); 
    }
    
    .info {
        font-size: 2rem;
    }
    
    .navbar__menu {
        font-size: 3rem;
        padding-right: 5rem;    
    }
    
    
    .navbar__menu ul {
       font-size: 3rem; 
    }
    
    .navbar__menu li {
        margin: 0 0.833rem;
        font-size: 3rem;
    
    }
    
    .navbar__menu .menu__link{
        padding: 1em;
        margin-right: 1em;
        font-size: 2rem;
    }
 
    .logo {
        height: 5rem;    
    }
  
    .page__header {
        padding: 1em;
        padding-left: 5rem;
        padding-right: 5rem;
        font-size: 3rem;
    }
    
    /* Swiper Container */
    .swiper-container {
        width: 100%;
        height: 30vh; /* Full viewport height */
        padding-top: 4.5rem;
    }
    
    .slide-content {
        bottom: 2rem;
        left: 2rem;
        padding: 1.5rem;
        border-radius: 0.5rem;
        border-left: 0.4rem solid #ff9900; /* Border for emphasis */
        max-width: 45rem;
    }
        
    .slide-title {
        font-size: 5rem;
        margin-bottom: 1rem;
    }
    
    section.your-active-class {
        border-left: 0.4167rem solid #ff9900;
        padding-left: calc(6em - 0.4167rem);
    }
/* Footer Styles */
.page__footer {
    padding: 0.8333rem 0;
}

.footer-container {
    padding: 0 4.1667rem;
}

.company-info {
    padding: 0 1.6667rem;
}

.footer-logo {
    margin-bottom: 0.8333rem;
}

.footer-content p {
    font-size: 1.25rem;
}

.footer-links {
    padding: 0 1.6667rem;
}

.footer-links h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8333rem;
}

.footer-links ul {
    padding: 0;
    font-size: 1.5rem;

}

.footer-links ul li {
    margin-bottom: 0.4167rem;
}

.social-links {
    margin-top: 0.8333rem;
    padding: 1rem;
}

.social-links a {
    font-size: 2rem;
    margin-right: 0.4167rem;
}

.footer-bottom {
    margin-top: 1.6667rem;
    font-size: 2rem;
}

.footer-links h2 {
    border-bottom: 0.167rem solid #ff9900;
}

  .footer-links ul li a::before {
    left: -2rem; /* Position the arrow to the left of the text */
  }

   
#arrowIcon {
    opacity:0;
}

.right-nav-bar {
    opacity:0;
}

.dropdown-content {
    opacity:0;
}

.language-switcher-right {
    padding: 1rem;
    gap: 1rem;
}

.language-switcher-right img {
    width: 4rem; /* Adjust size of flags */
    border-radius: 0.5rem;
}

.details-table {
    margin-top: 1rem;
}

.details-table th, .details-table td {
    border: 0.08333rem solid #ddd;
    padding: 0.66667rem;
}

.details-table th {
    font-size: 1.5rem;   
}


.details-table td {
    font-size: 1.25rem;    
}

}