/* Font */
@import url('https://fonts.googleapis.com/css2?family=Georama:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Georama', sans-serif ;
    text-decoration: none;
    color: #fff;    
    scroll-behavior: smooth;
}

body{
    background-color: #F5F5F5;
}

button{
    padding: 25px 32px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    border: none;
}

.hero-section{
    display: flex;
    justify-content: center;
    background-image:url(../Images/herobg.png);
    background-color: #23043C;
    background-position-y: -120px ;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    padding: 150px 7% 60px;
    flex-direction: column;
}

.starbg{
    position: absolute;
    top: 0px;
    right: 7%;
    height: 300px;
    width: 400px;
}

.hero-content-box{
    display: flex;
    gap: 24px;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    width: 50%;
    margin-top: 124px;
}

.hero-content-box h5{
    font-size: 22px;
    font-weight: 500;
    padding: 5px 16px;
    color: #707173;
    border-radius: 5px;
    background: #fff;
}

.hero-content-box h2{
    font-size: 64px;
    font-weight: 600;
}

.hero-content-box p{
    font-size: 24px;
    font-weight: 400;
    color: #fff;
}

.primary-btn{
  background-color: #4D2A86;
  color: white;
  margin-right: 24px;
  border:1px solid transparent;
  transition: all 0.3s ease
}

.primary-btn:hover{
  color: #4D2A86;
  background-color: white;
  border:1px solid #4D2A86;
  transition: all 0.3s ease
}

.secondry-btn{
  border:1px solid #4D2A86;
  color: #4D2A86;
  background-color: white;
  transition: all 0.3s ease
}

.secondry-btn:hover{
  background-color: #4D2A86;
  color: white;
  border:1px solid #4D2A86;
  transition: all 0.3s ease
}

.video-section-main{
    padding: 96px 7%;
    display: flex;
    flex-direction: column;
    gap: 60px;
    text-align: center;
}

.video-section-main iframe {
    border-radius: 10px;
    width: 100%;
    height: 90vh;
}

.video-wrapper video{
    border-radius: 10px;
    overflow: hidden;
    object-fit: cover;
    max-height: 90vh;
}

.video-section-main h1{
    color: #707173;
    font-size: 48px;
    font-weight: 600;
    text-align: left;
}

.hero-btn-box{
    margin-top: 30px;
}


@media screen and (max-width:768px){

    .hero-section{
        background-color: #23043C;
        background-repeat: no-repeat;
        background-position: top;
        background-size: contain;
        background-image: url(../Images/mobileBG.png);
        padding: 90px 32px;
    }

    .starbg{
        display: none;
    }

    .hero-content-box{
        width: 100%;
    }

    .hero-btn-box{
        text-align: center;
    }

    .primary-btn{
        margin-bottom: 24px;
        margin-right: 0;
    }

    button{
        font-size: 18px;
        padding: 16px 32px;
    }

    .hero-section img{
        width: 118px;
    }

    .hero-content-box{
        margin-top: 50px;
    }

    .hero-content-box h5{
        font-size: 14px;
    }

    .hero-content-box h2{
        font-size: 30px;
        font-weight: 600;
    }

    .hero-content-box p{
        font-size: 16px;
        font-weight: 300;
        color: #fff;
    }

    .hero-content-box p b{
        font-weight: 600;
    }

    .video-section-main h1{
        font-size: 28px;
    }

    .video-section-main{
        padding: 46px 7%;
    }

    .video-section-main{
        gap: 32px;
    }

    .video-section-main iframe{
    height: 256px;
    }

    .video-wrapper video{
        height: 256px;
    }
}

@media screen and (min-width:768px) and (max-width:1024px){

    .hero-section{
        background-color: #23043C;
        background-repeat: no-repeat;
        background-position: top;
        background-size: contain;
    }

    .starbg{
        display: non;
    }

    .hero-content-box{
        width: 80%;
    }

    .hero-btn-box{
        text-align: center;
    }

    .primary-btn{
        margin-bottom: 24px;
        margin-right: 24px;
    }

    button{
        font-size: 15px;
        padding: 18px 24px;
    }

    .starbg{
        width: 300px;
        right: 1%;
    }

    .hero-content-box{
        margin-top: 50px;
    }

    .hero-content-box h5{
    font-size: 18px;
    }

    .hero-content-box h2{
        font-size: 32px;
        font-weight: 600;
    }

    .hero-content-box p{
        font-size: 18px;
        font-weight: 400;
        color: #fff;
    }

    .video-section-main iframe{
        height: 356px;
    }

    .video-wrapper video{
        height: 356px;
        width: 100%;
    }

}

@media screen and (min-width:1024px) and (max-width:1920px){

    .hero-content-box h2{
        font-size: 48px;
    }

    .hero-content-box p{
        font-size: 18px;
    }
    
    .hero-content-box{
        margin-top: 80px;
    }

    .video-section-main{
        gap: 30px;
    }

    button{
        font-size: 18px;
        padding: 20px 28px
    }

    .hero-content-box h5{
        font-size: 18px;
    }

    .video-section-main h1{
        font-size: 38px;
    }
}

.video-wrapper {
    position: relative;
    width: 100%;
}

.video-media {
    width: 100%;
    display: block;
}

.btn-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: none;
    
    background-color: rgba(255,255,255,0.6);
    color: #4D2A86;
    font-size: 24px;
    cursor: pointer;
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    transition: 0.3s ease;
}

.btn-video:hover {
    background-color: rgba(255,255,255,0.8);
}

