html, body{
    overflow-x: hidden;
    scroll-behavior: smooth;
}
body{
    font-family: "Tajawal", serif;
}
:root{
    --primary-color:#35ac72;
    --secondary-color: #d3a841;
    --bg-color:#202020;
}
::selection {
    color: white;
    background: var(--primary-color);
  }
::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 12px;
}
.brand{
    color: var(--primary-color);
}
.btn{
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: white;
    font-size: 22px;
    font-weight: 600;
    border-radius: 25px;
    position: relative;
    padding: 5px 20px;
    z-index: 1;
}
.btn:hover{
    background-color: transparent;
    color: var(--primary-color);
}
.title{
    position: relative;
    width: fit-content;
}
.title::before{
    position: absolute;
    content: "";
    width: 80%;
    height: 5px;
    border-radius: 12px;
    background-color: var(--primary-color);
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}

.whatsapp{
    position: fixed;
    right: 20px;
    bottom: 25px;
    border-radius: 50%;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
    z-index: 11;
    animation: 1.5s ease-out infinite animate-pulse;
}
.whatsapp::before{
    position: absolute;
    content: "";
    font-size: 16px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #E82C0C;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0px;
    right: 0px;
    color: white;

}
.social-icon {
    font-size: 1rem; 
    color: white;
    padding: 12px;
    border-radius: 50%; 
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none; 
    transition: background-color 0.3s, transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icon.whatsapp {
    background-color: #25D366;
    width: 60px;
    font-size: 40px;
}

.social-icon:hover {
    color: white;
    transform: translateY(-5px); 
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); 
}
.navbar{
    position: absolute;
    width: 100%;
    z-index: 11;
    backdrop-filter: blur(1px);
    background-color: white;
}
.navbar .navbar-toggler{
    font-size: 30px;
    color: var(--primary-color);
}
.navbar .nav-link{
    color: white;
    font-size: 20px;
    font-weight: 500;
}
.navbar .nav-link:hover{
    color: var(--primary-color);
}
.navbar .active{
    color: var(--primary-color);
}
/* start hero section  */

.hero{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    z-index: 1;
}
.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}
.hero::before{
    content: "";
    position: absolute;
    background-color: rgba(0, 0, 0, 0.6);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero h1{
    color: white;
    font-weight: 600;
    font-size: 36px;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}
@media(max-width:767px){
    .hero h1{
        font-size: 24px;
    }
}
/* end hero section  */


/* start about us  */
.device-intro {
    background-color: #f9f9f9;
    color: #333;
    position: relative;
    z-index: 1;
}
.device-intro::before{
    content: "";
    position: absolute;
    background-image: url('../imgs/right.png');
    width: 143px;
    height: 267px;
    right: 0;
    z-index:-1;
}
.device-intro::after{
    content: "";
    position: absolute;
    background-image: url('../imgs/letf.png');
    width: 144px;
    height: 267px;
    background-size: cover;
    left: 0;
    bottom: 50px;
    z-index:-1;

}
.device-intro h2 {
    font-weight: 700;
    color: #222;
}

.device-intro img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.device-intro p {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    font-size: 18px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.features-list i {
    color: var(--primary-color);
    font-size: 20px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;

}



/* start choose us  */
.why-choose {
    color: #333;
}
.why-choose h2 {
    font-weight: 700;
    color: #222;
    margin: auto;
    margin-bottom: 40px;
}

.why-choose .box{
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    height: 100%;
    padding: 20px;
    border-radius: 12px;
    transition: all .3s ease-in-out;
}
.why-choose .box:hover{
    transform: translateY(-5px);
}
.why-choose .box .icon-box{
    text-align: center;
    margin-bottom: 20px;
    width: 80px;
    border-radius: 10px;
    margin: auto;
    padding: 15px;
    background-color: var(--primary-color);
}
.why-choose .box h4{
    text-align: center;
    color: black;
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
}


/* start v3max-sectors  */

.v3max-sectors {
    background-color: #f9f9f9;
    color: #333;
}

.v3max-sectors h2 {
    font-weight: 700;
    color: #222;
    margin: auto;
    margin-bottom: 40px;
    
}

.sector-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sector-box:hover {
    transform: translateY(-10px);
}

.sector-title {
    font-size: 18px;
    font-weight: 600;
    color: #555;
    margin-top: 10px;
}

.v3max-sectors .sector-box img {
    max-width: 100%;
    min-height: 220px;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
}


/* start exclusive-choice*/
.exclusive-choice {
    color: #333;
}

.exclusive-choice h2 {
    font-weight: 700;
    color: #222;
}

.choice-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.choice-list li {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
}
.choice-list li img{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
    width: 35px;
}
.choice-list i {
    color: var(--primary-color);
    font-size: 24px;
    width: 50px;
    height: auto;
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price {
    color: var(--primary-color);
    font-weight: bold;
}

.exclusive-choice img {
    border-radius: 8px;
    max-width: 100%;
    height: auto;
}

/* start packages  */

.packages {
    background-color: #f9f9f9;
}
.packages h2{
    font-weight: 700;
    color: #222;
    margin: auto;
    padding-bottom: 30px;
}
.package-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
    position: relative;
    padding: 0 ;
    padding-bottom: 30px;
}
.package-card h3{
    color: white;
    background-color: var(--primary-color);
    width: 100%;
    border-radius: 8px;
    padding-block: 10px;
}
.mix-card{
    transform: translateY(-40px);
    scale: 1.01;
    border: 2px solid var(--primary-color);
}
@media(max-width:992px){
    .mix-card{
        transform: translateY(0);
        scale: 1;
    }
}
.package-card:hover:not(.mix-card) {
    transform: translateY(-10px);
}
.package-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.package-card h4 {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: bold;
    padding-bottom: 20px;
}

.package-card ul {
    padding: 0;
    margin: 0;
    list-style: none;
    margin-bottom: 60px;
}

.package-card ul li {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    text-align: right;
    padding-inline: 15px;
}

.package-card ul li i {
    color: var(--primary-color);
    font-size: 10px;
    margin-left: 10px;
    background-color: #f9f9f9;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.packages .btn{
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

/* start footer  */
footer {
    background-color: #ededed;
    padding-top: 20px;
    padding-bottom: 10px;
    position: relative;
    z-index: 1;
}

 footer h5 {
    margin-bottom: 16px;
}

footer p, footer ul {
    font-size: 16px;
    line-height: 1.6;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    text-decoration: none;
    color: #222;
    transition: color 0.3s ease;
}
footer a:hover{
    color: var(--primary-color);
}

  
@keyframes animate-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(119 ,140,204,.4)
    }

    5% {
        transform: scale(1.01)
    }

    15% {
        transform: scale(1)
    }

    70% {
        box-shadow: 0 0 0 20px rgba(119 ,140,204,0)
    }

    100% {
        box-shadow: 0 0 0 40px rgba(119 ,140,204,0)
    }
}