/*common code start here*/

*{
    box-sizing: border-box;
    list-style-type: none;
    margin: 0;
    padding: 0;
    outline: none;
    text-decoration: none !important;
    font-family: "Nunito", sans-serif;
}
html{
    scroll-behavior: smooth;
}
img{
    width: 100%;
    height: auto;
}
ul{
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
}

/*common code ends here*/
/*header start*/
.header nav{
    background-color: rgba(0, 0, 0, 0.5) !important;
}
.navbar {
    display: flex;
    justify-content: space-between; 
    
  }
.navbar-brand img {
    width: 150px;
    height: 60px;
    max-width: 100%;
    object-fit: contain;
  }
  .navbar-nav {
    flex-direction: column; 
  }
  
  .navbar-collapse {
    display: flex;
    justify-content: flex-end;
  }
  
  .dropdown-menu {
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 0; 
    box-shadow: none;
    border-radius: 7px; 
  }
  
  .dropdown-menu .dropdown-item {
    color: #ffffff; 
    padding: 10px 20px; 
  }
  
  .dropdown-menu .dropdown-item:hover {
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  .dropdown-menu .dropdown-divider {
    border-top: 1px solid #6c757d; 
  }

/*header end*/
/*video banner start*/
  .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }
  .video-content img{
     width: 15%;
  }
.video-content{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        text-align: center;
}
/*video banner end*/

/*about start*/
.about-us{
    margin-top: -50px;
    margin-bottom: 70px;
}
.about-header{
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    letter-spacing: 5px;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
    margin-bottom: 50px;
}
.card{
    padding-top:10px;
    padding-bottom: 10px;
    border-radius: 20px;
    border:1px solid #fff;
    box-shadow: 0 26px 58px 0 rgba(0, 0, 0, .22), 0 5px 14px 0 rgba(0, 0, 0, .18);
}
.card img{
    width: 70px;
}
.center-hr{
      border: none;
      height: 2px;
      background: #a3a27f;
      width: 8%;
      margin: 10px auto;

}
.card-text{
    font-size: 14px;
    color:#7e7d7d;
}
.card-btn{
    padding: 6px 25px;
    font-size: 16px;
    color: #a3a27f;
    border: 2px solid #a3a27f;
    background-color: transparent;
    border-radius: 50px; 
    transition: 0.3s;
    margin-top:15px;
}
.card-btn:hover{
    background-color: #a3a27f;
    color:#ffffff;
}
.about-us .row {
    display: flex;
}

.card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.card-img-top {
    flex: 0 1 auto;
}

.card-body {
    flex: 1 0 auto;
}

/*about start*/
/*outlet start*/
.outlet{
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #333230;
    box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
}
.out-header{
    color: #fff;
}
/*outlet end*/
/*out outlet slider start*/
.out-slider{
    background-image: url(../images/footer\ banner.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 70px;
    padding-top: 50px;
}
.wMaxFull h2{
    font-size: 25px;
}
.wMaxFull li{
   display: inline;
   list-style: disc !important;
}

.wMaxFull li::before {
    content: "•"; 
    margin-right: 10px; 
}
.out-btn{
    padding: 6px 25px;
    font-size: 16px;
    color: #fff;
    border: 2px solid #fff;
    background-color: transparent;
    border-radius: 50px; 
    transition: 0.3s;
    margin-top:15px;
}
.out-btn:hover{
    background-color: #a3a27f;
}
.card {
    transition: transform 0.3s ease; /* Smooth transition */
}
.card:hover{
    transform: scale(0.9); 
    background-color: #DCDBD1;
    border-color: #DCDBD1;

}
.card_box {
    overflow: hidden; 
    border-radius: 10px; 
  }
  
  .card_box img {
    border-radius: 10px; 
    width: 100%;
    height: auto; 
    display: block; 
    height:auto;
  }
.card_text{
    position: absolute;
        top: 50%;
        left: 45%;
        transform: translate(-50%, 25%);
        color: white;
        text-align: left;
}
.slider_carousel .owl-nav {
    position: absolute;
    top: 40%;
    width: 100%;
}

.slider_carousel .owl-prev, .slider_carousel .owl-next {
   width: 40px;
   height: 40px;
   background-color: transparent;
   color:#fff;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 50%;
   position: absolute;
   top: 50%;
   font-size: 30px;
}

.slider_carousel .owl-next {
   right: -50px;
}

.slider_carousel .owl-prev {
   left: -50px;
}
/*work start*/
.how-work {
    background-image: url(../images/footer\ banner.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 80px;
    padding-bottom: 60px;
}
.work-content{
    color: #ffffff;
    padding-bottom: 40px;
}
.left-hr{
    border: none;
    height: 2px;
    background: #a3a27f;
    width: 4%;
}
.work-mid {
    padding: 20px;
}
.work-mid img{
    width: 70px;
    margin-bottom: 15px;
}
.work-mid h6{
    color: #a3a27f;
}
.work-mid p{
    color: #ffffff;
}
/*work end*/
/*testimonial sec start*/
#testimonial_area {
	padding: 60px 0;
}

.box-area {
	padding: 30px;
	position: relative;
	display: block;
	background: #fff;
	color: #000;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
	margin: 40px 0;
    border-radius: 30px;
}
.box-area h5 {
	font-size: 16px;
	font-weight: 700;
	color: #262627;
	margin-top: 30px;
	margin-bottom: 5px;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.box-area span {
	color: #262626;
	display: block;
	font-size: 13px;
	margin: 0 0 10px;
	font-weight: 400;
}
.box-area .content {
	color: #262626;
}
.box-area .img-area {
	width: 90px;
	height: 90px;
	position: absolute;
	top: -40px;
	left: 0;
	bottom: 0;
	margin: 0 auto;
	right: 0;
	z-index: 1;
	border: 5px solid #fff;
	border-radius: 50%;
	box-shadow: 0 5px 4px rgba(0, 0, 0, 0.5);
}
.box-area .img-area img {
	width: 100%;
	height: auto;
	border-radius: 50%;
}
.rating {
	margin-bottom: 15px;
}
.rating img{
    width: 20% !important;
    margin: 0 auto;
}
#testimonial_area .owl-nav {
	position: absolute;
	top: 50%;
	width: 100%;
}
#testimonial_area .owl-prev, #testimonial_area .owl-next {
	width: 40px;
	height: 40px;
	line-height: 40px;
	color: #000;
	border-radius: 50%;
	text-align: center;
	background: #ffffff;
	position: absolute;
}
#testimonial_area .owl-prev {
	left: -60px;
	top: -30px;
}
#testimonial_area .owl-next {
	right: -60px;
	top: -30px;
}

/*testimonial sec end*/

/*footer start*/
.footer{
    background-image: url(../images/footer\ banner.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 80px;
    padding-bottom: 15px;
    
}
.newsletter h1{
    font-size: 30px;
    color:#ffffff;
}
.newsletter p{
    font-size: 16px;
    color:#ffffff;
}
.email-form {
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    max-width: 100%;
    padding-bottom: 50px;
  }

  .email-form input[type="email"] {
    background-color: transparent; 
    border: none;
    border-bottom: 2px solid #fff; 
    color: white;
    padding: 10px;
    flex: 1;
    outline: none;
  }
  .email-form button {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 0;
    cursor: pointer;
  }

  .email-form input::placeholder {
    color: white;
    opacity: 0.7;
  }
  .single-box{
    color: #fff;
  }
  .footer-bottom {
    border-top: 1px solid #fff;
}
.ft{
    display: flex;
    padding-top: 25px;
}
.copyright p{
    color: #ffffff;
}
.socials a {
    margin-left: 10px;
}
.socials i{
    color: #ffffff;
    font-size: 18px;
}
/*footer end*/

/*awaken page start*/
.awaken-banner{
    background-image: url(../images/header\ banner.png);
    background-size: cover;
    background-repeat: no-repeat;
}
.aw-banner-image img{
    width: 20%;
    padding-top: 60px;
}
/*awaken page end*/
/*menu content start*/
.menu-cont{
    background-image: url(../images/menu\ image.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 70px;
    padding-bottom: 70px;
}
.menu-box {
    margin: 0 auto;
    background-color: #f0f0f0; 
    padding: 20px;
    width: 400px; 
    text-align: center; 
    border-radius: 10px; 
    opacity: 0.7;
    box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22); 
  }

/*menu content end*/
/*awaken end*/
/*hak-mag page start*/
.hak-banner{
    background-image: url(../images/hakheader\ banner.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
}
.hak-man-cont{
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    letter-spacing: 5px;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
    margin-bottom: 50px;
    margin-top: 20px;

}

.hak-man-box{
    display: flex;
    flex-wrap: wrap;
}
.column {
    display: flex;
    align-items: center; 
}
.hak-box-main {
    margin-left: 60px;
    margin-right: 20px;
    background-color: #ffffff;
    padding: 100px;
    width: 100%;
    text-align: center;
    border-radius: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.sg{
    padding: 110px;
}
.lf{
    margin-left: 20px;
    margin-right: 60px;
}
.hak-man-box-text {
    align-items: center;
}

.hak-man-box-image img{
    object-fit: cover;
    width: 100%;
    height: auto;
    margin-right: 0; /
}
/*hak-mag page end*/
/*oslin page start*/

.additional-logo img {
    padding-top: 70px;
  }
.carousel-item {
    height: 100vh; 
}

.carousel-item img {
    object-fit: cover; 
    height: 100%; 
}

.pro-sec-con p{
 font-size: 17px;
}
.pro-img {
    display: flex;
    justify-content: center; 
    align-items: center; 
    height: 100%; 
}
.pro-img img {
    width: 60%;
    max-width: 100%; 
    height: auto;
}
.plan-cont{
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 150px;
    padding-bottom: 150px;
}
.plan-box {
    color: #ffffff;
    background-color: #634274; 
    padding: 40px;
    width: 400px; 
    text-align: center; 
    border-radius: 20px; 
    opacity: 0.7;
    box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22); 
  }
  .plan-box h3{
    font-size: 24px;
  }
  .plan-box p{
    letter-spacing: 2px;
}
  .plan-box-right {
    max-width: 400px; 
    text-align: center; 
    margin-left: auto; 
    padding: 40px; 
    display: flex; 
    flex-direction: column; 
    align-items: flex-end; 
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px; 
    opacity: 0.7;
    box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22); 
}

    .plan-box-right h3 {
        margin: 0 auto;
        font-weight: 600;
        font-size: 24px !important;
        padding-bottom: 10px;
    }
    .plan-box-right p{
        letter-spacing: 2px;
    }
  
/*oslin page end*/
/*contact page start*/
.contact-banner{
    background-image: url(../images/background\ banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    overflow: hidden;
    padding-bottom: 20px;
}
.contact-cont{
    justify-content: center;
    flex-direction: column;
    color: #fff;
    padding-top: 170px;
}

.contact-cont h3{
    font-size: 20px;
}
.contact-info {
    display: flex;;
    margin-bottom: 50px;
    column-gap: 60px;
}

.contact-info h3 {
    text-transform: uppercase;
    font-weight: 300;
}

.contact-info h1 {
    font-size: 36px;
    margin: 20px 0;
}

.contact-info p {
    font-size: 16px;
    line-height: 1.5;
}

.contact-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
}

.contact-form h2 {
    color: #000;
    margin-bottom: 20px;
}
.form-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.form-group input[type="text"],
.form-group input[type="tel"] {
    flex: 1;
    margin-bottom: 10px;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}


.btn-submit{
    padding: 10px 25px;
    background-color: #fff;
    color: #888;
    border: 1px solid #888;
    border-radius: 50px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.btn-submit:hover {
    background-color: #a3a27f;
    color: #fff;
}
.contact-detail{
    max-width: 300px;
    padding: 20px;
    border-radius: 8px;
    color: #fff;
}
.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 20px;
    margin-right: 15px;
    color: #a3a27f;
}

.info-content h4 {
    margin: 0;
    font-size: 14px;
    font-weight: bold;
    color: #a3a27f;
}

.info-content p {
    margin: 5px 0 0;
    font-size: 14px;
    line-height: 1.5;
    color: #ddd;
}


/*contact page end*/

/* Mobile view */
/*@media (max-width: 768px) {
    .hak-man-box {
        flex-direction: column;
    }

    .hak-man-box-text {
        order: 2;
    }

    .hak-man-box-image {
        order: 1;
    }
}*/
.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly; 
    margin: -15px; 
}

.card_box {
    flex: 0 1 calc(33.333% - 30px); 
    margin: 15px; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); 
    border-radius: 8px;
    overflow: hidden; 
    transition: transform 0.3s; 
    transform: scale(1.05);
}



@media (max-width: 768px) {
    .card_box {
        flex: 0 1 calc(50% - 30px); 
    }
}

@media (max-width: 576px) {
    .card_box {
        flex: 0 1 100%; 
    }
}

