*{
    padding: 0;
    margin: 0;
    font-family: "Poppins", sans-serif;
}
body{
    background-color: black;
}
.container{
    width: 100%;
    height: 100vh;
}
.i1{
    width: 100%;
    position: relative;
    z-index: 0;
}
header{
    width: 100%;
    height: 13vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: end;
    gap: 10vw;
    position: absolute;
    z-index: 1;
}
.logo{
    width:7vw;
}
nav{
    width: 46vw;
    height: 8vh;
    border-radius: 2vw;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border: 0.1vw solid white;
    gap: 2vw;
    
}
nav ul {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    list-style: none;
    gap: 1vw;
    padding: 1vw;
}
ul li a{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: white;
}
.t1{
    width: 7vw;
    height: 6vh;
    background-color: rgb(33,35,44);
    border-radius: 5vw;
    color: white;
    font-weight: 600;
}
/* li ko relative banate hain taki dropdown uske andar position ho */
li {
    position: relative;
    list-style: none;
}

/* General li styling */
li {
    position: relative;
    list-style: none;
}

/* Common style for t2, t4, t5 buttons */
.t2, .t4, .t5 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 9vw;
    height: 6vh;
    border-radius: 5vw;
    font-weight: 600;
    text-decoration: none;
    color: white;
    transition: background-color 0.3s ease;
}

.t2:hover,
.t4:hover,
.t5:hover {
    background-color: rgb(33, 35, 44);
    color: white;
}

/* dropdown box (same for all) */
.dropdown {
    position: absolute;
    top: 100%;   /* button ke neeche */
    left: 0;
    display: none; /* hidden by default */
    flex-direction: column;
    width: 10vw;
    background: rgb(33,35,44)   ;
    border-radius: 0 0 1vw 1vw;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    padding: 0.5vw 0;
    z-index: 100;
}

/* hover par dropdown dikhana */
li:hover .dropdown {
    display: flex;
}

/* dropdown items */
.dropdown ul {
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.dropdown ul li {
    width: 100%;
}

.dropdown ul li a {
    display: block;
    width: 100%;
    padding: 0.5vw 1vw;
    text-decoration: none;
    color: black;
    transition: color 0.3s ease;
}

/* hover effect on dropdown links */
.dropdown ul li a:hover {
    color: aqua;
}

.t3{
    width: 7vw;
    height: 6vh;
    border-radius: 5vw;
    font-weight: 600;
}
.t3:hover{
    transition: 0.5s;
    background-color: rgb(33,35,44);
}

.icon{
    color: aqua;
}

.b1{
    width: 13vw;
    height: 7vh;
    background-color: black;
    border: 0.1vw solid aqua;
    border-radius: 2vw;
    color: white;
    font-weight: 600;
    cursor: pointer;
}   

.b1:hover{
    box-shadow: 0vw 0vw 2vw blue;
    border: 0.2vw solid purple;
}
.image{
    width: 100%;
    height: 70vw;
    position: relative;
}
.i1{
    width: 100%;
    height: 70vw;
}
.uper-hero{
    width: 100%;
    height: 40vw;
    /* background-color: rgba(137, 43, 226, 0.075); */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 15vw;
}
.hero{
    width: 70%;
    height: 35vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2vw;
}
.uper-btn{
    width: 100%;
    height: 5vw;

    display: flex;
    justify-content: center;
    align-items: center;
}
.b2{
    width: 19vw;
    height: 3vw;
    display: flex;
    background-color: black;
    color: white;
    justify-content: center;
    align-items: center;
    border-radius: 2vw;
    border: 0.2vw solid white;
    text-shadow: 0vw 0vw 10vw purple;
}
.b2:hover{
    transition: 0.8s;
    border: 0.1vw solid purple;
    box-sizing: border-box;
    border-radius: 5vw;
    box-shadow: 0vw 0vw 1vw blue ;
}
.uper-heading{
    width: 100%;
    height: 15vw;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.heading{
    font-size: 6vw;
    font-weight: 600;
    color: white;
    line-height: 7vw;
}
.uper-para{
    width: 62%;
    height: 5vw;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.para{
    font-weight: 600;
    color: gray;
}
.uper-btn1{
    width: 100%;
    height: 7vw;
    display: flex;
    justify-content: center;
    align-items: center;
}
.b3{
    width: 15vw;
    height: 5vw;
    background-color: aqua;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    border-radius: 3vw;
    font-size: 1.3vw;
    letter-spacing: 0.1vw;
}
.b3:hover{
    background-color: black;
    border: 0.3vw solid aqua;
    transition: 2s;
    color: white;
}
.section1{
    width: 100%;
    height: 150vw;
    background-color: rgb(11,12,16);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5vw;
}
.uper-btn2{
    width: 90%;
    height: 3vw;
    display: flex;
    justify-content: start;
    align-items: center;
}
.b4{
    width: 12vw;
    height: 4vw;
    background-color: rgb(11,12,16);
    border-radius: 2vw;
    border: 0.1vw solid white;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: aqua;
    font-weight: 600;
}
.b4:hover{
    transition: 0.8s;
    background-color: black;
    border: 0.1vw solid aqua;
    color: white;
}
.uper-heading1{
    width: 90%;
    height: 20vw;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-content: center;
}
.heading1{
    width: 50%;
    height: 20vw;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    font-size: 5vw;
    font-weight: 600;
    color: white;
    line-height: 6vw;
}
.uper-card{
    width: 90%;
    height: 85vw;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2vw;
}
.card{
    width: 30vw;
    height: 85vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1vw;
}
.card1{
    width: 99%;
    height: 50vw;
    background-color: yellow;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    border-radius: 1vw;
    background-image: url(./c1);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-clip: border-box;
    backface-visibility: hidden;
    border-image-width: 2vw;
    filter: blur(0.1vw);
    filter: grayscale(50%);

}
.card2{
    width: 99%;
    height: 30vw;
    background-color: yellow;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    border-radius: 1vw;
    background-image: url(./s2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-clip: border-box;
    backface-visibility: hidden;
}
.card3{
    width: 99%;
    height: 30vw;
    background-color: yellow;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    border-radius: 1vw;
    background-image: url(./c3.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-clip: border-box;
    backface-visibility: hidden;
}
.card4{
    width: 99%;
    height: 50vw;
    background-color: yellow;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    border-radius: 1vw;
    background-image: url(./c4.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-clip: border-box;
    backface-visibility: hidden;
    border-image-width: 2vw;
}
.card5{
        width: 99%;
    height: 30vw;
    background-color: rgb(38,38,38);
     display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 1vw;
}
.iner-card1{
    width: 100%;
    height: 50vw;
    background-color: rgba(0, 0, 0, 0.329);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: end;
}
.uper-text{
    width: 90%;
    height: 18vw;
    background-color: rgba(255, 255, 255, 0.219);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2vw;
    border-top-left-radius: 2vw;
    border-top-right-radius: 2vw;

}
.iner-card1:hover{
    background-color:rgba(0, 0, 0, 0.781) ;
    transition: 0.2s;

}
.uper-heading2{
    width: 80%;
    height: 3.5vw;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: start;
    border-bottom: 0.1vw solid white;
}
.heading2{
    font-size: 1.5vw;
    font-weight: 600;
    color: white;
}
.uper-para1{
    width: 80%;
    height: 5vw;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.para1{
    font-size: 1.2vw;
    font-weight: 600;
    color:white;
}
.uper-heading3{
    width: 90%;
    height: 5vw;
    display: flex;
    justify-content: start;
    align-items: center;
}
.heading3{
    font-size: 1.9vw;
    font-weight: 600;
    color: white;
}
.uper-para2{
    width: 90%;
    height: 20vw;
}
.para2{
    font-weight: 600;
    color: white;
}
.para:hover , .para1:hover , .par2:hover {
    transition: 0.9s;
    color: aqua;
} 
.heading:hover , .heading1:hover 
,.heading2:hover , .heading3:hover{
    transition: 0.9s;
    color: black;
}
.section2{
    width: 100%;
    height: 60vw;
    background-color: rgb(20,21,27);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.uper-btn3{
    width: 90%;
    height: 5vw;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.b5{
    width: 12vw;
    height: 3vw;
    font-size: 1.5vw;
    border-radius: 2vw;
    font-weight: 600;
    color: aqua;
    border: 0.2vw solid gray;
    display: flex;
    justify-content: center;
    align-items: center;
}
.b5:hover{
    transition: 0.8s;
    background-color: black;
    border: 0.2vw solid aqua;
    box-shadow: 0vw 0vw 1vw purple;
}
.uper-heading4{
    width: 90%;
    height: 10vw;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.heading4{
    font-size: 5vw;
    font-weight: 600;
    color: white;
}
.uper-card1{
    width: 100%;
    height: 45vw;
    background-color: red;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}