body {
    font-family: "Hind", "Arial", sans-serif;
    margin: 0;
    /* padding: 20px; */
    background-color: #000000;
    color: #333;
}

/* Nav */
.navbar {
    /* background-color: #ffffff; */
    color: #002896;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    background-color: #000000;
    z-index: 999;
  }
  
  .links .img-nav{
    width: 0;
  }
  
  .links a {
    margin: 10px 20px;
    color: #ffffff;
  }
  .navbar-mini{
    /* width: 100%; */
    background-color: #00000070;
    display: flex;
    justify-content: center;
    box-shadow: 0 2px 4px rgb(0 0 0 / 58%);
    padding: 10px;
    z-index: 999;
  }
  .link {
    background-color: transparent;
    display: flex;
  }
  
    .link a{
    padding: 10px 20px;
    margin: 0 10px;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    color: #ffffff;
    transition: 0.5s;
  }
  
  
  .link a:hover {
    color: #030c8f;
    font-size: 22px;
  }
  
  
  .logo {
    display: flex;
    align-items: center;
  }
  
  .logo img {
    width: 50px;
    height: auto;
    margin-right: 10px;
    border: none;
    border-radius: 5px;
  }
  
  .logo-text {
    font-family: sans-serif;
    font-size: 24px;
    font-weight: bold;
  }
  
  .social-links-nav{
    margin-left: 10px;
    padding: 10px;
  }
  /* ايقوز سوشيال الناف */
  
  .social-links-nav ul li a{
    font-size: 16px;
    text-transform: capitalize;
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    color: #bbbbbb;
    display: block;
    transition: all 0.3s ease;
  }
  .social-links-nav ul li a:hover{
    color: #ffffff;
    padding-left: 8px;
  }
  .social-links-nav a{
    display: inline-block;
    height: 37px;
    width: 20px;
    /* background-color: rgba(255,255,255,0.2); */
    margin:0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #000000;
    transition: all 0.5s ease;
  }
  .social-links-nav a:hover{
    color: #ffffff;
    background-color: #24262b;
  }
  
  .social-links-nav a i{
    padding: 5px;
    background-color: #ffffff;
    border: none;
    border-radius: 55px;
  }
  
  .links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  
  .links a {
    /* color: #002896; */
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    transition: color 0.3s ease;
  }
  /*   
  .links a:hover {
    color: #002896;
  } */
  
  .links a {
    transition: all 0.3s ease;
  }
  
  .links a:hover {
    /* background-color: #f2f2f2; */
    color: #ffffffc4;
    transform: scale(1.05);
  }
  
  .menu-icon {
    display: none;
    cursor: pointer;
    color: #ffffff;
    font-size: 24px;
  }
  
  .link-videos .img-nav{
    width: 80px;
    position: fixed;
    z-index: 2;
    border: 2px white;
    border-radius:10px  ;
    margin-top: 18px;
  }
  
  @media screen and (max-width: 768px) {
    .links {
      display: none;
      flex-direction: column;
      align-items: flex-start;
      position: absolute;
      top: 60px;
      left: 0;
      width: 100%;
      background-color: #ffffff;
      padding: 10px 0;
      border: 1px;
      border-radius: 8px;

    }
    .links a:hover{
      color: #002896;
    }
    .menu-icon{
      
      display: block;
    }
    .link a{
      display: flex;
      margin: 2px;
      padding: 8px;
      font-size: 12px;
  }
  
  
  .link-videos .img-nav{
    width: 50px;
    position: fixed;
    z-index: 2;
    border: 2px white;
    border-radius:10px  ;
    margin-top: 18px;
  }
  
  
  .link a:hover{
      color: #c3c2c2;
      margin: 3px;
      padding: 3px;
      font-size: 13px;
  }
  .links a{
    
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    color: #0056b3;
    font-size: 24px;
    font-weight: 600;
    line-height: 38px;
    text-decoration: none;
    /* gap: 20px; */
  }
  .links  .img-nav{
    width: 70px;
    height: 60px;
    object-fit: contain;
  }
  }
  
/* end */
/* Video start */
.video-section {
    margin: 0;
    position: relative; /* To position elements over the video */
    text-align: center;
    overflow: hidden; /* Prevent overflow */
}
video {
    width: 100vw; /* Full viewport width */
    height: auto; /* Auto height to maintain aspect ratio */
    max-height: 100vh; /* Max height for screen */
    object-fit: cover; /* Cover the entire area */
    position: relative;
    z-index: 1; /* Ensure video is behind overlay */
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Semi-transparent black */
    z-index: 2; /* Ensure overlay is on top of the video */
}
.video-info {
    position: absolute;
    top: 20px; /* Adjusted distance from the top */
    left: 50%;
    transform: translateX(-50%);
    color: white; /* White text for visibility */
    z-index: 3; /* Ensure text is on top */
    text-align: center;
}
.info-container {
    position: absolute;
    bottom: 80px; /* Adjust as needed for mobile */
    left: 50%;
    transform: translateX(-50%);
    z-index: 3; /* Ensure it stays on top */
    display: flex; /* Use flexbox for layout */
    flex-direction: column; /* Stack vertically */
    align-items: center; /* Center items */
    gap: 15px; /* Space between elements */
}
.price-capacity {
    display: flex; /* Use flexbox for price and capacity */
    justify-content: space-between; /* Center items */
    width: 100%; /* Full width */
    color: white; /* White text */
    font-size: 18px; /* Larger font size */
    gap: 30px; /* Space between price and capacity */
}
.buy-buttons {
    display: flex; /* Use flexbox for buttons */
    justify-content: center; /* Center buttons */
    gap: 70px; /* Space between buttons */
}
.buy-buttons button {
    padding: 0px 70px; /* Increased padding for better appearance */
    height: 50px;
    border: none;
    background-color: #007BFF;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px; /* Increased font size */
    transition: background-color 0.3s; /* Smooth transition */
}
.buy-buttons a{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 70px; /* Increased padding for better appearance */
    height: 50px;
    font-weight: 500;
    border: none;
    background-color: #007BFF;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px; /* Increased font size */
    transition: background-color 0.3s; /* Smooth transition */
    text-decoration: none;
    cursor: pointer;;
}

.vid-main{
    font-size: 35px;
    line-height: 52px;
    font-weight: 600;
}

.vid-sub{
    font-weight: 100;
    line-height: 28px;
    color: #fff;
    font-size: 14px !important;
}
.buy-buttons .black{
    display: flex;
    background-color: #000000;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.buy-buttons a:hover {
    background-color: #0056b3; /* Darker blue on hover */
}
@media (max-width: 600px) {
    video {
        height: auto; /* Adjust height for mobile */
    }
    .video-info {
        top: 20px; /* Adjust for mobile */
        width: 100%;
    }
    .video-info h1{
        font-size: 28px !important;
        line-height: 35px !important;
    }
    .info-container {
        bottom: 20px; /* Adjust for mobile */
        width: 90%; /* Adjust width for mobile */
    }
    .price-capacity {
        font-size: 20px; /* Larger font size for mobile */
        gap: 20px; /* Adjusted space for mobile */
        justify-content: space-evenly;
    }
    .buy-buttons {
        flex-direction: column; /* Stack buttons on small screens */
        gap: 20px; /* Space in column layout */
        height: 100px !important;
        width: 80%;
    }
    .vid-main{
        font-size: 24px;
        line-height: 27px;
    }

    .specifications li {
        font-size: 0.9em; /* Slightly larger font size on small screens */
    }
    .advantage {
        width: 90%; /* Take full width on small screens */
    }
    .buy-buttons button{
        height: 40px !important;
        padding: 0 100px;
    }
}
/* Video End */
h1, h2 {
    text-align: center;
    color: #ffffff; /* Black color */
    font-size: 35px;
    line-height: 52px;
}
h3{
    color: #fff;
}
.specifications {
    margin: 20px 0;
    padding: 20px;
    background: #121212;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.specifications ul {
    list-style-type: none;
    padding: 0;
    display: grid;
    justify-content: space-between;
    justify-items: center;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
}
.specifications li {
    width: 48%; /* 5 items in 2 rows */
    text-align: center; /* Center text */
    margin-bottom: 15px;
    padding: 10px;
    /* border: 1px solid #007BFF; */
    /* border-radius: 5px; */
    /* background: #e9f4ff; */
}

.specifications .Main-Spec{
    font-size: 25px;
    line-height: 38px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    margin-bottom: 5px;
}
.specifications li p {
    font-size: 16px;
    line-height: 24px;
    color: #bababa;
}
.gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0;
    flex-direction: column;
    align-content: center;
}
.gallery img {
    width: 800px; /* Set a fixed width */
    height: 600px; /* Set a fixed height */
    margin: 0 15px; /* Space between images */
    /* border: 2px solid #007BFF; */
    border-radius: 5px; /* Rounded corners */
    display: none; /* Initially hide images */
}
.gallery img.active {
    display: block; /* Show active image */
    transition: opacity 0.5s ease;
}

.image-dis{
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    flex-direction: column;
    /* padding-top: 110px; */
    gap: 10px;
}

.image-dis p{
    font-size: 16px;
    line-height: 24px;
    color: #bababa;
}

.dots {
    text-align: center;
    margin: 10px 0;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    margin: 0 5px;
    cursor: pointer;
}
.dot.active {
    background: #007BFF; /* Active dot color */
}
.advantages {
    margin: 20px 0;
    /* padding: 10px; */
    background: #000000;
    border-radius: 5px;
}
.advantage {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: space-between;
    margin-bottom: 15px;
}

.advantage .advantage-text h3{
    font-size: 25px;
    line-height: 38px;
    font-weight: 600;
    font-weight: 600;
    color: #fff;
}
.advantage img {
    width: 100%; /* Image size */
    height: 100%;
    margin: 5px;
    max-width: 520px;
    border-radius: 5px;
}
.advantage:nth-child(odd) img {
    order: 0; /* Image on the left */
}
.advantage:nth-child(even) img {
    order: 1; /* Image on the right */
}

.advantage p{
    color: #bababa;
}
/* Responsive design */
@media (max-width: 600px) {
    h2{
        text-align: left;
    }
    .specifications li {
        font-size: 0.9em; /* Slightly larger font size on small screens */
    }
    .gallery img{
        width: 100%;
        height: auto;
        margin: auto;
    }
    .image-dis{
        padding: 0px 25px;
    }
    .dots{
        text-align: left;

    }
    .image-dis p{
        font-size: 18px;
        line-height: 28px;
        text-align: left;
        color: #bababa;
    }
    .advantages{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .advantage {
        display: block;
        /* padding: 0px; */
        flex-direction: column; /* Change direction on small screens */
        align-items: center;
    }
    .advantage .advantage-text h3{
        font-size: 20px;
        line-height: 27px;
    }
    .specifications ul{
        gap: 50px 30px !important;
    }
    .specifications li{
        width: 100%;

    }
    .specifications li p{
        font-size: 16px;
        line-height: 24px;
        font-weight: 400;
        margin: 0;
        text-align: left;
    }
    .specifications .Main-Spec
    {
        font-size: 18px;
        line-height: 28px;
        font-weight: 500;
        text-align: left;
    }
}



/* footer */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

.container{
max-width: 1170px;
margin:auto;
}
.row{
display: flex;
flex-wrap: wrap;
}
ul{
list-style: none;
}
.footer{
background-color: #24262b;
  padding: 70px 0;
}
.footer-col{
 width: 25%;
 padding: 0 15px;
}
.footer-col h4{
font-size: 18px;
color: #ffffff;
text-transform: capitalize;
margin-bottom: 35px;
font-weight: 500;
position: relative;
}
.footer-col h4::before{
content: '';
position: absolute;
left:0;
bottom: -10px;
background-color: #1014ff;
height: 2px;
box-sizing: border-box;
width: 50px;
}
.footer-col ul li:not(:last-child){
margin-bottom: 10px;
}
.footer-col ul li a{
font-size: 16px;
text-transform: capitalize;
color: #ffffff;
text-decoration: none;
font-weight: 300;
color: #bbbbbb;
display: block;
transition: all 0.3s ease;
}
.footer-col ul li a:hover{
color: #ffffff;
padding-left: 8px;
}
.footer-col .social-links a{
display: inline-block;
height: 40px;
width: 40px;
background-color: rgba(255,255,255,0.2);
margin:0 10px 10px 0;
text-align: center;
line-height: 40px;
border-radius: 50%;
color: #ffffff;
transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
color: #24262b;
background-color: #ffffff;
}


/*responsive*/
@media(max-width: 767px){
    .footer-col{
      width: 50%;
      margin-bottom: 30px;
    }
    }
    @media(max-width: 574px){
    .footer-col{
      width: 100%;
    }
    }
    
    
    
    