/* General Styles */
body {
    /* Keep custom font if desired, otherwise Bootstrap default is fine */
    /* font-family: Arial, sans-serif; */

}

/* Fixed Full-Width Navigation Bar on Scroll */
.navbar-fixed-full {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%; /* Make navbar full width */
    z-index: 100;
    padding: 0px;
    border-bottom: 1px #ababab solid;
}

.navbar-brand{
    padding: 0px;
}

.navbar-brand img{
    height: 80px;
}


/* Header */
.language-selector {
    text-align: right;
    padding: 10px 20px;
    background-color: #f8f9fa; /* Light background for the header area */
}

.language-selector label {
    margin-right: 5px;
}

.dropdown-item:hover {
        cursor: pointer;
        background-color: #0494d7;
        color: #ffffff;
}

.dropdown-menu {
    margin-bottom: 8px;
}



/* Hero Section */
#hero {
    color: white;
    /* Padding adjusted for Bootstrap container */
    padding-top: 180px !important;
    background-image: url('/img/technical-background6.jpg'); /* Placeholder image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    height: 960px;

}

#hero-title{
    background-color: rgba(32, 32, 32, 0.9);
    padding: 10px;
    border-radius: 15px;
    border: solid 1px #777;
    margin-top: 64px;
}

#hero-subtitle{
    margin-top: 40px;
    background-color: rgba(32, 32, 32, 0.85);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px #777;
    font-weight: 400;
    border: solid 1px #777;

}

#hero-learn-more{
    margin-top: 80px;
    border: solid 1px #aaa;
    box-shadow: 0 0 15px #000;
    font-weight: 600;
    transition: all 0.35s ease-in-out;
    background-color: #0494d7;
}

#hero-learn-more:hover{
    box-shadow: 0 0 35px #000;
    transition: all 0.55s ease-in-out;
    padding: 20px;
    font-size: 32px;
    border-radius: 15px;
}


/* Keep custom CTA button hover effect if needed */
.cta-button:hover {
    background: #0056b3; /* Custom hover color */
}

#services{
  
    border-top: solid 1px #444;
    padding-bottom: 140px !important;
}

/* Services Section */
.service-card {
     /* Keep custom hover effect */
     transform: scale(0.90);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: scale(1.0); /* Slightly adjusted scale */
}

/* About Section */
#about {
    padding-top: 96px;
    padding-bottom: 96px;
    background: #333; /* Keep custom background */
    color: white;
    background-image: url('/img/technical-background5.jpg'); /* Placeholder image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */

}

#about-title{
    background-color: rgba(32, 32, 32, 0.9);
    padding: 10px;
    border-radius: 10px;
    font-weight: 600;
    border: solid 1px #777;

}

#about-content{
    color:azure;
    font-weight: 400;
    padding: 16px;
    border-radius: 10px;
    background-color: rgba(32, 32, 32, 0.95);
}

.testimonial {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 20px;
    margin-bottom: 15px; /* Adjusted margin */
    border-radius: 5px;
    transition: opacity 0.3s ease; /* Keep transition */
    border: solid 1px #777;
}

.testimonial.hidden {
    opacity: 0;
    visibility: hidden;
}

#why-bitcrafter{
    border-top: #000 solid 1px;
}

.lead{
    font-weight: 400;
}

/* Carousel Section */

#technologies{
    border-bottom: solid 1px #cdcdcd;
    border-top: solid 1px #cdcdcd;
    background-color: #efefef;
}

#technologies-title{
    color: #444;
}

.carousel {
    max-width: 800px;
    margin: 50px auto;
    height: 100px;
  }
  .slick-slide {
    text-align: center;

  }  
  .slick-slide i {
    color: #333;
    opacity: 0.25;
    font-size: 24px;
    transition: all 0.35s ease-in-out;
  }  
  .slick-slide i:hover {
    color: #0494d7;
    transition: all 0.35s ease-in-out;
  }  
  .icon {
    color: #444;
  }

  .slick-current i{
    opacity: 1 !important;
    font-size: 128px !important;
    
    transition: all 0.75s ease-in-out;
  }

  .slick-active i{
    opacity: 0.75;
    font-size: 72px;
    transition: all 0.75s ease-in-out;
  }



/* Bootstrap handles form styling, keep specific overrides if needed */

/* Keep custom submit button hover effect if needed */
.submit-button:hover {
    background: #0056b3; /* Custom hover color */
}

.contact-icon {
    font-size: 80px;
    color:#444;
    padding-top: 32px;
    padding-bottom: 64px;

}

.contact-icon a {
    text-decoration: none;
    color: #444;
    transition: color 0.5s ease;
}

.contact-icon a:hover {
    color: #0494d7;
    transition: color 0.5s ease;
}

#contact-title{
    padding-top: 32px;
}

#contact-mail{
    margin-top: -21px;
    font-size: 96px;

}


/* Footer */
footer {
    background: #333; /* Keep custom background */
    color: white;
}

#footer-copyright{
    margin-top: 15px;
    margin-left: 20px;
}

.social-media i{
    font-size: 32px;
}

.social-media a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.3s ease; /* Keep transition */
}

.social-media a:hover {
    color: #0494d7; /* Use Bootstrap primary color for hover */
}

#terms-link {
    margin-bottom: 6px;
}

#imprint-link {
    margin-bottom: 6px;
}

#data-protection-link {
    margin-bottom: 6px;
}

/* Legal Sections */
.legal-section {
    display: none;
    padding: 20px;
    background-color: #f8f9fa;
    color: #333;
    margin-top: 20px;
}

.legal-section:target {
    display: block;
}