:root {
    --primary: #ffa1b7;
    --primary-dark: #ffa1b7;
    --primary-light: #ffa1a3;
    --secondary: #795548;
    --light: #F1F8E9;
    --dark: #ffa1b7;
    --grey: #808080;
}

.icon{
    color: var(--primary);
}

.text-primary{
    color: var(--primary) !important;
}

@font-face {
  font-family: "LogoFont";
  src: url("../fonts/ss_bruney.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "freight";
  src: url("../fonts/freight.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "harmony";
  src: url("../fonts/harmony.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}



body {
    font-family: "freight", sans-serif;
    font-style: normal;
    font-size: 1.09rem;
    background-color: #f8f9fa;
    background: url("../img/back.jpg");
    background-position: center;
    font-variation-settings:"wdth" 95.1;
}

.navbar {
    background-color: var(--light-750);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: bold;
    color: var(--primary) !important;
} 

.nav-link {
    color: black !important;
    font-weight: 400;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary) !important;
}

.nav-item{
    margin: 7px !important;
}

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


.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.hero-section { 
    background: linear-gradient(rgba(255, 255, 255, .0), rgba(255, 255, 255, .0)), url("../img/banner_back.jpg");
    background-size: cover;
    background-position: center;
    /*color: white;*/
    /*padding: 150px 0 100px;*/
    /*margin-top: 40px;*/
    height: 900px;
}
.hero-section {
    width: 100%;
    background-image: url('../img/banner_back.jpg'); /* If you have one */
    background-size: cover;
    background-position: center;
    padding: 60px 20px; /* Give some space on mobile */
}

.banner-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto; /* Not full height on mobile */
}



.nav-logo{
    height: 30px;
}

.bottom_image{
    height: 125px !important
}

/* Desktop styles */
@media (min-width: 768px) {
    .hero-section {
        height: 100vh; /* Full viewport height on desktop */
        padding: 0;
    }

    .banner-container {
        height: 100%;
    }
}
/* Tablet */
@media (max-width: 991px) {
  .hero-section {
    height: 600px;
    padding: 120px 0 80px;
  }
  
  .logo{
      height: 30px !important;
  }
  
  .bottom_image{
    height: 70px !important
  }
}

/* Mobile */
@media (max-width: 576px) {
  .hero-section {
    height: 450px;
    padding: 80px 0 60px;
  }
  
  .logo{
      height: 35px !important;
  }
  .nav-logo{
      height: 25px !important;
  }
  
  .bottom_image{
    height: 50px !important
  }
}

.section-title {
    
    font-family: "harmony";
    position: relative;
    margin-bottom: 1.5rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary);
}

.service-card {
    transition: transform 0.3s;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    border-radius: 15px;
}


.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.testimonial-card {
    border-left: 4px solid var(--primary);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}



.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-info {
    background-color: var(--light);
    border-radius: 10px;
    padding: 2rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-right: 10px;
}

footer {
    /*background-color: var(--dark);*/
    color: var(--grey);
}

.footer-links a {
    color: black;
    text-decoration: none;
    transition: color 0.3s;
}
 
.footer-links a:hover {
    color: white;
}

.social-icons a {
    color: white;
    font-size: 1.2rem;
    margin-right: 15px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--primary-light);
}

.benefits-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.benefits-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.desc_text {
    color: var(--grey);
    font-weight: 300;
}

.lead {
    font-size: 1.5rem !important;
    font-weight: 300 !important;
}

.image-wrapper {
  position: relative;
  display: inline-block;
}

.main-img {
  border-radius: 1rem;
  width: 100%;
  height: auto;
  max-width: 700px;
  max-height: 1000px;
}

.overlay-img {
  position: absolute;
  bottom: -20px;
  right: -20px;
  border-radius: 1rem;
  width: 45%;
  max-width: 220px;
  box-shadow: 0px 6px 20px rgba(0,0,0,0.2);
}

.testimonials-section {
    padding: 60px 0;
    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
}

.testimonials-container {
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.3) transparent;
}

.testimonials-container::-webkit-scrollbar {
    height: 8px;
}

.testimonials-container::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.testimonials-container::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.3);
    border-radius: 10px;
}

.testimonials-wrapper {
    display: flex;
    gap: 30px;
    padding: 0 20px;
    min-width: min-content;
}

.testimonial-card {
    min-width: 350px;
    max-width: 400px;
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.initials-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 20px;
}

.client-name {
    font-size: 1.0rem;
    font-weight: 500;
    color: #333;
    margin-top: 10px;
}

.testimonial-text {
    line-height: 1.6;
    font-style: italic;
    margin: 0;
    text-align: justify;
}

.quote-icon {
    color: #667eea;
    font-size: 1.5rem;
    margin-bottom: 15px;
}



.scroll-hint {
    color: rgba(255,255,255,0.8);
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: 300px;
    }
    
    .testimonials-wrapper {
        gap: 20px;
        padding: 0 15px;
    }
}