/*----------------------------------------------------
@File: Default Styles
@Author: Rocky Ahmed
@URL: http://wethemez.com
Author E-mail: rockybd1995@gmail.com

This file contains the styling for the actual theme, this
is the file you need to edit to change the look of the
theme.
---------------------------------------------------- */
/*=====================================================================
@Template Name: Honey Wedding 
@Author: Rocky Ahmed
@Developed By: Rocky Ahmed
@Developer URL: http://rocky.wethemez.com
Author E-mail: rockybd1995@gmail.com

@Default Styles

Table of Content:
01/ Variables
02/ predefin
03/ header
04/ button
05/ banner
06/ breadcrumb
07/ about
08/ team
09/ project 
10/ price 
11/ team 
12/ blog 
13/ video  
14/ features  
15/ career  
16/ contact 
17/ footer

=====================================================================*/
/*----------------------------------------------------*/
/*font Variables*/
/*Color Variables*/
/*=================== fonts ====================*/
@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900");
/*---------------------------------------------------- */
/*----------------------------------------------------*/
:root{
  /*colors */
  --primary-color: #d188fe;
  --secondary-color:#1c1f55;
  --gray-color: #eaebf1;
  --white-color: #ffffff;
  --dark-gray: #373636; 
}
.list {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  
}

a:hover, a:focus {
  text-decoration: none;
  outline: none;
}
img{
  width: 100%;
}
.row.m0 {
  margin: 0px;
}

body {
  line-height: 24px;
  font-size: 20px;
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  color: #777777;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}

button:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.p_120 {
  padding-top: 120px;
  padding-bottom: 120px;
}

.pad_top {
  padding-top: 120px;
}

.mtop-10 {
   position: relative;
   top:10em;
}
.mt-25 {
  margin-top: 25px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

@media (min-width: 1620px) {
  .box_1620 {
    max-width: 1650px;
    margin: auto;
  }
}

/* Main Title Area css
============================================================================================ */
.main_title {
  text-align: center;
  max-width: 720px;
  margin: 0px auto 75px;
}

.main_title h2 {
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  font-size: 36px;
  color: #222222;
  margin-bottom: 12px;
}

.main_title p {
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  line-height: 24px;
  color: #777777;
  margin-bottom: 0px;
}

/* End Main Title Area css
============================================================================================ */
/*---------------------------------------------------- */
/*----------------------------------------------------*/
.header_area {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  -webkit-transition: background 0.4s, all 0.3s linear;
  -o-transition: background 0.4s, all 0.3s linear;
  transition: background 0.4s, all 0.3s linear;
}

.header_area .navbar {
  background-color: #1c1f55;
  padding: 0px;
  border: 0px;
  border-bottom: .1em solid #fff;
  border-radius: 0px;
}

.header_area .navbar .nav .nav-item {
  margin-right: 45px;
}

.header_area .navbar .nav .nav-item .nav-link {
  font: 500 12px/100px "Roboto", sans-serif;
  text-transform: uppercase;
  color: #222222;
  padding: 0px;
  display: inline-block;
}

.header_area .navbar .nav .nav-item .nav-link:after {
  display: none;
}

.header_area .navbar .nav .nav-item:hover .nav-link, .header_area .navbar .nav .nav-item.active .nav-link {
  font-weight: bolder;
}

.header_area .navbar .nav .nav-item.submenu {
  position: relative;
}

.header_area .navbar .nav .nav-item.submenu ul {
  border: none;
  padding: 0px;
  border-radius: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin: 0px;
  background: #fff;
}

@media (min-width: 992px) {
  .header_area .navbar .nav .nav-item.submenu ul {
    position: absolute;
    top: 120%;
    left: 0px;
    min-width: 200px;
    text-align: left;
    opacity: 0;
    -webkit-transition: all 300ms ease-in;
    -o-transition: all 300ms ease-in;
    transition: all 300ms ease-in;
    visibility: hidden;
    display: block;
    border: none;
    padding: 0px;
    border-radius: 0px;
  }
  .header_area .main_menu .navbar .navbar-collapse   ul li a {
    color: var(--white-color) !important;
  }
  navbar  h2{
  color: var(--white-color);
  }
}

.header_area .navbar .nav .nav-item.submenu ul:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #eeeeee transparent transparent transparent;
  position: absolute;
  right: 24px;
  top: 45px;
  z-index: 3;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
}

.header_area .navbar .nav .nav-item.submenu ul .nav-item {
  display: block;
  float: none;
  margin-right: 0px;
  border-bottom: 1px solid #ededed;
  margin-left: 0px;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.header_area .navbar .nav .nav-item.submenu ul .nav-item .nav-link {
  line-height: 45px;
  color: #222222;
  padding: 0px 30px;
  -webkit-transition: all 150ms linear;
  -o-transition: all 150ms linear;
  transition: all 150ms linear;
  display: block;
  margin-right: 0px;
}

.header_area .navbar .nav .nav-item.submenu ul .nav-item:last-child {
  border-bottom: none;
}

.header_area .navbar .nav .nav-item.submenu ul .nav-item:hover .nav-link {
  background: #7d3d72;
  color: #fff;
}

@media (min-width: 992px) {
  .header_area .navbar .nav .nav-item.submenu:hover ul {
    visibility: visible;
    opacity: 1;
    top: 100%;
  }
}

.header_area .navbar .nav .nav-item.submenu:hover ul .nav-item {
  margin-top: 0px;
}

.header_area .navbar .nav .nav-item:last-child {
  margin-right: 0px;
}

.header_area .navbar .search {
  font-size: 12px;
  line-height: 60px;
  display: inline-block;
  color: #222222;
  margin-left: 214px;
}

.header_area .navbar .search i {
  font-weight: 600;
}

.header_area + section, .header_area + row, .header_area + div {
  margin-top: 100px;
}

.header_area.navbar_fixed .main_menu {
  position: fixed;
  width: 100%;
  top: -70px;
  left: 0;
  right: 0;
  background: #fff;
  -webkit-transform: translateY(70px);
  -ms-transform: translateY(70px);
  transform: translateY(70px);
  -webkit-transition: background 500ms ease, -webkit-transform 500ms ease;
  transition: background 500ms ease, -webkit-transform 500ms ease;
  -o-transition: transform 500ms ease, background 500ms ease;
  transition: transform 500ms ease, background 500ms ease;
  transition: transform 500ms ease, background 500ms ease, -webkit-transform 500ms ease;
  -webkit-transition: transform 500ms ease, background 500ms ease;
  -webkit-box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.1);
}

.top_menu {
  border-bottom: 1px solid #eeeeee;
}

.top_menu .header_social li {
  display: inline-block;
  margin-right: 15px;
}

.top_menu .header_social li a {
  font-size: 12px;
  color: #ccc;
  display: inline-block;
  line-height: 45px;
  -webkit-transition: all 300ms linear 0s;
  -o-transition: all 300ms linear 0s;
  transition: all 300ms linear 0s;
}

.top_menu .header_social li:last-child {
  margin-right: 0px;
}

.top_menu .header_social li:hover a {
  color: #7d3d72;
}

.top_menu .ac_btn {
  line-height: 28px;
  border: 1px solid #eeeeee;
  display: inline-block;
  background: #f9f9ff;
  padding: 0px 19px;
  font-size: 12px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #777777;
  -webkit-transition: all 300ms linear 0s;
  -o-transition: all 300ms linear 0s;
  transition: all 300ms linear 0s;
  margin-right: 1px;
  margin-top: 8px;
}

.top_menu .ac_btn:hover {
  background: #7d3d72;
  color: #fff;
  border-color: #7d3d72;
}

.top_menu .dn_btn {
  line-height: 28px;
  border: 1px solid #7d3d72;
  display: inline-block;
  background: #7d3d72;
  padding: 0px 19px;
  font-size: 12px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #fff;
  -webkit-transition: all 300ms linear 0s;
  -o-transition: all 300ms linear 0s;
  transition: all 300ms linear 0s;
}

.top_menu .dn_btn:hover {
  background: transparent;
  color: #777777;
  border-color: #7d3d72;
}

.top_menu .lan_pack {
  height: 30px;
  border: 1px solid #eeeeee;
  border-radius: 0px;
  line-height: 28px;
  font-size: 12px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  padding-left: 19px;
  padding-right: 36px;
  color: #777777;
  background: #f9f9ff;
  margin-right: 5px;
  margin-top: 8px;
}

.top_menu .lan_pack .current {
  color: #777777;
}

.top_menu .lan_pack:after {
  content: "\f0d7";
  border: none !important;
  font: normal normal normal 12px/1 FontAwesome;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  height: auto;
  margin-top: -6px;
  right: 20px;
}
  
  span{
    color:var(--secondary-color);
  }

  .text-center{
    text-align: center;
  }
  .section-title{
    font-size: 2rem;
    font-weight: bolder;
    text-align: center;
  }
  /*-------------hero----------------------------------------------------------*/
  .hero{
    position: relative;
     
    background: linear-gradient(to bottom, #1c1f55, #d086fd);
    max-height: 100dph;
     
   padding: 4em 1em 5em;
    color: #fff !important;
    border-bottom-left-radius: 3em;
    border-bottom-right-radius: 3em;
  }

  @media (min-width: 1200px) {
     .hero{
    padding: 4em 0em 5em;
  }
 
  }
  .hero .hero-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.2s;
  }
  
  .hero .hero-title {
    /* Keep your original styles */
    font-size: clamp(.8rem, 0.5rem + 10vw, 4rem);
    line-height: 1.5;
    color: var(--white-color);
  
    /* Animation */
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.4s;
  }
  
  .hero .hero-info {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.6s;
  }
  
  .hero .hero-btn {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.8s;
    
  }
  .hero .btn-primary{
    background-color: var(--primary-color);
    border: 0;
  }
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .hero-image{
  position: relative;
  width: 80%;
  
  top: -2em;
 
  display: block;
  margin: 0 auto;
  border: 0.5em solid;
  border-image: linear-gradient(to right, var(--primary-color), var(--secondary-color)) 1;
  }
  
/* About -------------------------------------------------------------------------*/
 .about-us{
   position: relative; 
   
  margin-bottom: 20em;
 }
 .about-us .about-us-content{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 5em;
 }
 .about-us .about-us-content .about-us-info span{
  background-color: var(--primary-color);
  padding: .5em;
  border-radius: .5em;
  color: #fff;
 }
 .about-us .about-us-content .about-us-info{
  position: relative;
  top: 3em;

 }
 .about-us .about-us-image img{
position: relative;
top: 3em;
border-radius: 1em;
 }
 .about-us-products{
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 5em;
 }
 .about-us-products img{
position: relative;
top: 3em;
border-radius: 1em;
 }
 /*------------------------------Product----------------------------------------*/
 .offer{
  position: relative;
  top:-10em;
  background-color: var(--gray-color);
  padding:5em 0em 10em;

 }
 .offer span{
  background-color: var(--primary-color);
  padding: .5em;
  border-radius: .5em;
  color: #fff;
 }
 .offer .section-title {
    color: #00001f;
 }
.offer .offer-content .card{
  display: flex;
  flex-direction: column;
  border: 0.3em solid transparent; /* Set initial transparent border */
  margin-top: 2em;
  border: 0;
  background-color:  #f3f4fb;
  color: #00001f;
  border-radius: 2em;
  text-align: center;
  padding: 1em;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.offer .offer-content .card a{
  color: var(--primary-color);
}
.offer .offer-content .card:hover {
  border: 0.3em solid var(--primary-color);
 
}

.offer .offer-content .card .card-title{
  position: relative;
  font-size: 1.1em;
  line-height: 1.5;
  font-weight: bolder;
}
.product .card a{
  color: var(--primary-color);
}
.offer .offer-content .card .card-image{
  width: 5em;
  display: block;
  margin: 0 auto; /* centers the image horizontally */
  margin-bottom: 1em;
}
 
 .product{
  position: relative;
  top:-5em;
 }
 .product .product-content .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1em;
}
 .product .product-content .section-title{
  text-align: left;
  width: 40%;
  line-height: 1;
 }
 

 .product-gallery {
    padding: 40px 0;
    
  }
  .section-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: bold;
    color: #333;
  }
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  .gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background: #fff;
  }
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
  }

  .gallery-item:hover img {
    transform: scale(1.05);
  }


/*------------------------------Banner-------------------------------------------*/

.banner{
  color: #fff;
  background: linear-gradient(to bottom, #1c1f55, #d086fd);
 padding:5em 0em 5em;
}


@media (min-width: 1200px) {
 .banner{
  padding:5em 0em 5em;
}


}

.banner .banner-btn .btn{
  background-color: var(--primary-color);
  border: 0;
}










.parallex{
  position: relative;
  top:-10em;
  
}

.parallex {
  background-image: url('../img/parallex.jpg');
  min-height: 500px; /* Adjust as needed */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
 
/* End Testimonials Area css
============================================================================================ */
 /*============== contact_area css ================*/
.mapBox {
  height: 420px;
  margin-bottom: 80px;
}

 _info .info_item {
  position: relative;
  padding-left: 45px;
}

 _info .info_item i {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
  line-height: 24px;
  color: #7d3d72;
  font-weight: 600;
}

.contact_info h6 a{
  color: var(--primary-color);
  
}
.contact_area .submit_btn{
  background-color: #f1dffe;
  border: 0;
}
.contact_area .submit_btn:hover{
 color: #fff;
  background-color: var(--primary-color);
}
 _info .info_item h6 {
  font-size: 16px;
  line-height: 24px;
  color: "Roboto", sans-serif;
  font-weight: bold;
  margin-bottom: 0px;
  color:var(--primary-color) !important;
}

 _info .info_item h6 a {
  color:var(--primary-color) !important;
}

 _info .info_item p {
  font-size: 14px;
  line-height: 24px;
  padding: 2px 0px;
}

 _form .form-group {
  margin-bottom: 10px;
}

 _form .form-group .form-control {
  font-size: 13px;
  line-height: 26px;
  color: #999;
  border: 1px solid #eeeeee;
  font-family: "Roboto", sans-serif;
  border-radius: 0px;
  padding-left: 20px;
}

 _form .form-group .form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

 _form .form-group .form-control.placeholder {
  color: #999;
}

 _form .form-group .form-control:-moz-placeholder {
  color: #999;
}

 _form .form-group .form-control::-moz-placeholder {
  color: #999;
}

 _form .form-group .form-control::-webkit-input-placeholder {
  color: #999;
}

 _form .form-group textarea {
  resize: none;
}

 _form .form-group textarea.form-control {
  height: 140px;
}

 _form .submit_btn {
  margin-top: 20px;
  cursor: pointer;
}
/*============== footer-area css ===============*/
.footer-area {
  background: #222222;
}

.single-footer-widget p {
  margin-bottom: 0px;
  color: #777777;
  max-width: 235px;
}

.single-footer-widget ul li a {
  line-height: 25px;
  display: inline-block;
  color: #777;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  margin-bottom: 13px;
}

.single-footer-widget ul li a:hover {
  color: #7d3d72;
}

.single-footer-widget .instafeed {
  margin-left: -5px;
  margin-right: -5px;
}

.single-footer-widget .instafeed li {
  margin: 5px;
}

.single-footer-widget .subscribe_form {
  padding-top: 25px;
}

.single-footer-widget .input-group {
  display: block !important;
}

.single-footer-widget input {
  width: 100%;
  border: 1px solid #333333;
  font-size: 13px;
  line-height: 30px;
  padding-right: 40px;
  height: 40px;
  color: #999999;
  background: transparent;
  padding-left: 20px;
}

.single-footer-widget input.placeholder {
  color: #999999;
}

.single-footer-widget input:-moz-placeholder {
  color: #999999;
}

.single-footer-widget input::-moz-placeholder {
  color: #999999;
}

.single-footer-widget input::-webkit-input-placeholder {
  color: #999999;
}

.single-footer-widget input:focus {
  outline: none;
}

.single-footer-widget .sub-btn {
  background: #7d3d72;
  color: #fff;
  font-weight: 300;
  border-radius: 0;
  line-height: 34px;
  padding: 4px 11px 0px;
  cursor: pointer;
  position: absolute;
  right: 0px;
  top: 0px;
}

.single-footer-widget .sub-btn span {
  position: relative;
  top: -1px;
}

.footer_title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.border_line {
  width: 100%;
  height: 1px;
  background: #333333;
  margin-top: 30px;
}

.footer-bottom {
  padding-top: 70px;
}

.footer-bottom .footer-text {
  margin-bottom: 0px;
}

.footer-bottom .footer-text a {
  color: #7d3d72;
}

.footer-bottom .footer-social {
  text-align: right;
}

.footer-bottom .footer-social a {
  font-size: 18px;
  line-height: 30px;
  color: #82848f;
  margin-left: 25px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.footer-bottom .footer-social a:hover {
  color: #7d3d72;
}

.f_social_wd p {
  font-size: 14px;
  color: #777777;
  margin-bottom: 15px;
}

.f_social_wd .f_social a {
  font-size: 14px;
  color: #cccccc;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  margin-right: 20px;
}

.f_social_wd .f_social a:hover {
  color: #7d3d72;
}

.f_social_wd .f_social a:last-child {
  margin-right: 0px;
}

/*---------------------------------------------------- */

/*# sourceMappingURL=style.css.map */