/*
 Theme Name:   Astra Child
 Theme URI:    https://example.com/astra-child/
 Description:  Child theme for the Astra theme
 Author:       Your Name
 Author URI:   https://example.com
 Template:     astra
 Version:      1.0.0
*/
p{
    margin-bottom: 0px;
}
/* Add your custom styles below this line */
#desktopHeader {
    display: block;
  }
/* Hide mobileHeader by default */
#mobileHeader {
    display: none;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 15px;
    padding-bottom: 15px;
}
  
  /* Hide desktopHeader on mobile devices (max width 768px) */
@media (max-width: 768px) {
#desktopHeader {
    display: none;
}
#mobileHeader {
    display: block;
}

}

.form-contact-custom{
    max-width: 450px;
    width: 100%;
  }
  
.headerBg{
	background-color: #00000000 !important;
    display: block;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    transition: all .3s ease-in-out;
}

.main-header-bar-wrap{
    background: #532482 !important;
}
.ast-primary-header-bar .site-primary-header-wrap{
    min-height: 70px;
}

.site-header {
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    min-height: 70px;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.main-navigation ul li {
  padding: 0px 15px;
}

.main-navigation ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
}
.button-contact{
    padding: 8px 19px; 
    background-color: #212529; 
    color: white; 
    text-decoration: none; 
    border-radius: 30px;
    font-size: 14px;
}
.button-language{
    padding: 8px 9px; 
    color: white; 
    text-decoration: none; 
    border: 1px solid white;
    border-radius: 30px;
    font-size: 14px;
}
.custom-ast-container{
    max-width: 1380px;
    margin: auto;
}
.headerCustomButtons{
    display: flex;
    gap: 10px;
}


/* Width Expansion Border Effect for Menu Items */
.main-navigation ul li {
    position: relative;
}

.main-navigation ul li a {
    position: relative;
    transition: color 0.3s ease;
}

.main-navigation ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: black;
    transition: width 0.4s ease;
}

.main-navigation ul li a:hover::after {
    width: 100%;
}

.main-navigation ul li a:hover {
    color: #ffffff;
}
.mobile-site-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.headerCustomButtons-mobile{
    display: flex;
    align-items: center;
    gap: 10px;
}
.svg-block{
    display: flex;
    justify-content: center;
    align-items: center;
}



#mobile-site-navigation {
    display: none;
    position: fixed;
    top: 120px;
    right: 0;
    width: 250px;
    background: #532482 !important;
    padding-top: 15px;

    box-shadow: -2px 0 5px rgba(0,0,0,0.5);
    overflow-y: auto;
    z-index: 1000;
    transition: transform 0.3s ease;
    transform: translateX(100%);

  }
  
  #mobile-site-navigation.active {
    display: block;
    transform: translateX(0);
  }
  footer{
    background:  #532482 !important;
    padding: 10px 0;
  }
  #site-footer-custom{
    background: #532482 !important;
  }
  .footer-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .site-logo-footer{
    max-width: 120px;
    width: 100%;
  }
  .copyWriteContent{
    text-align: center;
    font-size: 13px;
    color: #ffffff;
    padding-top: 20px;
    padding-bottom: 40px;
  }


  .form-contact-custom{
    max-width: 450px;
    width: 100%;
  }

  .submit-button{
    background:  #532482 !important;
  }