*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Header */
header{
    background: white;
    /* border-bottom: 1px solid #eee; */
    display: flex;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
    z-index: 1000;
    background: transparent;
    transition: background-color 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
    
}
/* Header scroll effect */


header.scrolled {
    background-color: #ffffff; /* solid color on scroll */
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.logo{
    margin-top: 10px;
}
.logo img {
    transition: transform 0.35s ease;
    transform-origin: left center;
}

header.scrolled .logo img {
    transform: scale(0.75);
}
/* Navbar */
.navbar{
    width: 100%;
    max-width: 1300px;
    display: flex;
    align-items: center;
    padding: 0 2rem;
}

.navbar_elements1{
    display: flex;
    align-items: center;
    flex: 1;
}

.logoname h3{
    font-size: 20px;
    font-weight: 600;
    color: #33668D;
}

.navbar_elements2{
    flex: 2;
}

.menu{
    display: flex;
    align-items: center;
    width: 100%;
}

/* Center menu */
#menu{
    list-style: none;
    display: flex;
    gap: 1.8rem;
    margin: 0 auto;
}

#menu li a{
    text-decoration: none;
    color: #111;
    font-weight: 500;
}

/* Login / Register */
.user{
    display: flex;
    gap: 0.8rem;
}

.user a{
    text-decoration: none;
    padding: 10px 30px;
    border-radius: 6px;
    font-weight: 500;
    background: #33668D;
    color: white;
}

/* hero section */
#hero{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
    margin-top: 100px;
    margin-bottom: 80px;
}
.container{
    max-width: 1140px;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin: 0 auto;
}
.hero_container {
    display: flex;
    /* align-items: center; */
    /* justify-content: space-between; */
}

.hero_elements1 {
    position: relative;
    width: 50%;
    padding: 0 15px;
}
.hero_elements2 {
    width: 50%;
    display: flex;
    justify-content: center;
}

.hero_elements2 img {
    max-width: 650px;
    width: 100%;
}

.hero_headline {
    width: 100%;
    min-height: 220px; 
    align-items: center;
}

.hero_headline h1 {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
}

.typing {
    display: block;
    min-height: 1.2em;
}

.hero_text{
    font-size: 16px;
    font-weight: 400;
    padding-top: 30px;
    margin-bottom: 16px;
}
.hero_button_play{
    display: flex;
    margin-top: 40px;
    /* justify-content: center; */
    /* align-items: center; */
}
.hero_button a{
    background: #33668D;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 500;
    display: inline-block;
    transition: .5s;
    position: relative;
    overflow: hidden;
    z-index: 44;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
}
.hero_button a::before {
    position: absolute;
    content: "";
    top: 0px;
    height: 100%;
    left: -25%;
    width: 0%;
    background: #174260;
    transform: skew(50deg);
    transition-duration: .6s;
    z-index: -1;
}
.hero_button a:hover::before {
    width: 150%;
}

.hero_play {
    position: absolute;
    left: 40%;
    bottom: 0px;
    width: 100px;
    height: 100px;
    margin-left: 10px;
  /* top: 10; */
  /* align-items: center; */
  /* padding-bottom: 20px; */
}
.play {
    position: absolute;
    top: 70%;
    left: 50%;
    font-size: 35px;
    transform:translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle{
    box-shadow: 10px 10px 50px 5px #33668D;
    margin-top: 20px;
    border-radius: 50%;
    border: 8px solid #fff;
    border-left-color: #4B83A6;
    border-right-color: #4B83A6;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: outerrotate 5s infinite ease-in-out;
    /* animation-play-state: paused; */
}
.innercircle{
    box-shadow: 10px 10px 50px 5px #33668D;
    border-radius: 50%;
    border: 8px solid #fff;
    border-left-color: #33668D;
    border-right-color: #33668D;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: innerrotate 3s infinite ease-in-out;
    /* animation-play-state: paused; */
}
/* .hero_play:hover .circle, .hero_play:hover .innercircle{
    animation-play-state: running;
} */

.play a{
    text-decoration: none;
    color: #174260;
}

@keyframes outerrotate{
  0%{
    transform: rotate(0deg);
  }
  50%{
    transform: rotate(360deg);
  }
  100%{
    transform: rotate(0deg);
  }
}
@keyframes innerrotate{
  0%{
    transform: rotate(0deg);
  }
  50%{
    transform: rotate(-360deg);
  }
  100%{
    transform: rotate(0deg);
  }
}


/* company profile section*/

#company_profile{
    background-image: url(image/cpimg.png);
    padding-bottom: 70px;
    padding-top: 80px;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cp_items1{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px 15px;
    margin: 16px 0px 0px;
}
.cp_text h1{
    font-size: 42px;
    font-weight: 800;
}
.underline{
    height: 5px;
    width: 90px;
    background: #184059;
    margin: 20px auto;
    position: relative;
    border-radius: 30px;
}
.underline::before{
    content: '';
    position: absolute;
    left: 0;
    top: -2.7px;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: #4B83A6;
    animation: move 3s infinite alternate-reverse;
}
.cp_items2{
    display: flex;
    justify-content: center;
    align-items: center;
}
.cp_item2_element{
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}
.singlecounter{
    text-align: center;
    margin-bottom: 24px !important;
}
.counter_num h1 {
    color: #ffff;
    font-size: 40px;
    font-weight: 800;
}
.counter_text h5 {
    margin-top: 6px;
    font-size: 20px;
    /* color: #33668D; */
    color: #214B6B;
}
/* Useful info page*/
#useful_info{
    padding-top: 80px;
    padding-bottom: 80px;
    background: #D5E7F2;
    width: 100%; 
}
.useful_info_item{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    

}
.cards{
    flex: 0 0 33.33%;
    flex: 0 0 33.33%;
    max-width: 33.33%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-bottom: 30px;

}
.cards_inside{
    background: #fff;
    box-shadow: 0 20px 50px 5px #e9eef7;
    text-align: center;
    padding: 60px 40px 45px;
    transition: .5s;
    border-radius: 7px;
}
.card_logo{
    position: relative;
    left: 20%;
    /* bottom: 0px; */
    width: 140px;
    height: 140px;
    margin-left: 10px;
}
.icon {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 35px;
    transform:translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
}
.card_circle{
    box-shadow: 10px 10px 50px 5px #33668D;
    border-radius: 50%;
    border: 8px solid #fff;
    border-left-color: #4B83A6;
    border-right-color: #4B83A6;
    width: 140px;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: outerrotate 5s infinite ease-in-out;
    /* animation-play-state: paused; */
}
.card_innercircle{
    box-shadow: 10px 10px 50px 5px #33668D;
    border-radius: 50%;
    border: 8px solid #fff;
    border-left-color: #33668D;
    border-right-color: #33668D;
    width: 110px;
    height: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: innerrotate 3s infinite ease-in-out;
    /* animation-play-state: paused; */
}
.card_logo:hover .card_circle, .card_logo:hover .card_innercircle{
    animation-play-state: running;
}
.cardheading{
    margin-top: 30px;
    margin-bottom: 20px;
}
.cardheading a{
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    color: #184059;
}
.card_text p{
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 16px;
    color: #4B83A6;
}
.Learnmore_button a{
    border:2px solid #214B6B;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 500;
    display: inline-block;
    transition: .5s;
    position: relative;
    overflow: hidden;
    z-index: 44;
    border-radius: 50px;
    color: #214B6B;
    text-decoration: none;
}
.Learnmore_button a::before {
    position: absolute;
    content: "";
    top: 0px;
    height: 100%;
    left: -25%;
    width: 0%;
    background: #214B6B;
    transform: skew(50deg);
    transition-duration: .6s;
    z-index: -1;
    color: #0c5adb;
}
.Learnmore_button a:hover::before {
    width: 150%;
}
.Learnmore_button a:hover{
    color: #ffff;
}


/* Payment partners */
#paypartner{
    padding-top: 50px;
    padding-bottom: 70px;
    background: #33668D;
    /* margin: 0px; */
}




@keyframes move{
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translateX(88px);
    }

}

/* footer section */
footer{
    background-image: url(image/footerimg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    /* min-height: 300px;  */
    
}
.footer{
    max-width: 1140px;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin: 0 auto;
    
}
.footer_container{
    padding: 50px 0px;
    display: flex;
    justify-content: center;
    
}
.footer_element1, .footer_element2, .footer_element3{
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    padding: 0px 15px;
}
.footer_logo{
    display: flex;
    align-items: center;
}
.footer_logoname h3{
    color: black;
    margin-bottom: 8px;
    font-size: 28px;
    font-weight: 400;
}
.footer_logo{
    padding-bottom: 30px;
}
.info p{
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 400;
    color: #ffff;
}
.follow_socialmedia{
    display: flex;
    gap: 20px;
}
.socialmedia_links {
    display: flex;
    gap: 10px;
    font-size: 20px;
}
.footer_element2 h3, .footer_element3 h3{
    margin-top: 15px;
    padding-bottom: 24px;
    font-size: 24px;
    font-weight: 800;
}
.footer_element3 p{
    color: #ffff;
}
.followus a{
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: #D5E7F2;
}
.socialmedia_links a{
    font-size: 16px;
    text-decoration: none;
    color: #D5E7F2;
}
.followus a:hover, .socialmedia_links a:hover{
    color: black;
}
.ourservices_links li a{
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}
.ourservices_links li{
    list-style: none;
    padding-bottom: 10px;

}
.ourservices_links li a:hover{
    color: black;
}
.footer_bottom{
    display: flex;
    /* align-items: center; */
    max-width: 1140px;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin: 0 auto;
    border-top: 1px solid #fff;
    padding-bottom: 40px;
    padding-top: 50px;

}
/* .footer_bottom_element2 a::before{
    position: absolute;
    content: "";
    right: -17px;
    top: 6px;
    height: 14px;
    width: 1px;
    background: #fff;
    transform: skew(-20deg);
} */
 .footer_bottom_element1, .footer_bottom_element2{
    width: 50%;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 16px;
}
.footer_bottom_element1 p{
    color: #fff;
}
.footer_bottom_element2 a{
    margin-right: 30px;
    text-decoration: none;
    color: #fff;
}
.footer_bottom_element2{
    display: flex;
    justify-content: flex-end;
}


/* YouTube popup modal */
#videoModal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#videoModal .video-box {
    position: relative;
    width: 80%;
    max-width: 800px;
    background: #000;
    margin: 0 auto;
}

#videoModal iframe {
  width: 100%;
  height: 450px;
}

#closeBtn {
  position: absolute;
  top: -35px;
  right: 0;
  font-size: 30px;
  color: black;
  cursor: pointer;
}
