
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-color: #7D1E6A; 
    --secondary-color: #A67C52;
    --accent-color: #F4D03F; 
    --background-color: #FAF3E0; 
    --text-color: #3E3E3E;
    --white-color: #FFFFFF; 
    --black-color: #000000; 
    --hover-color: #5E174E; 
    --card-bg-color: #FFFFFF; 
    --footer-bg-color: #1E1E1E; 
    --button-color: #7D1E6A; 
    --button-hover-color: #5E174E; 

    --soft-green: #B3C99C; 
    --gold: #EAB543; 
    --btn-hover: #D6A023; 
    --footer-bg: #121212; 
    --page-bg: rgba(250, 243, 224, 0.95); 
}


body
{
    font-family: 'Poppins','Montserrat', 'Segoe UI' , 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif ;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.4;
    margin: 0;
    padding: 0;
}


/* NB */
.navbar{

    background:linear-gradient(to bottom,var(--text-color),rgba(20, 26, 53, 0.026)); 
}

.navbar .navbar-nav .nav-link {
    color: var(--white-color);
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-brand{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 50px;
    font-weight: bold;
    color: var(--white-color);  
}

#navbarNav a{
    font-weight: 700;
}

h1,h2,h3,h4,h5,h6{
    font-family: "Dela Gothic One" , 'Segoe UI' , 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--white-color);
}

a
{
    color:var(--primary-color); 
    text-decoration: none;
    transition: all 0.4s ease;
}

a:hover
{
    color: var(--soft-green); 
}

.link-more{
    display: inline-flex;
    align-items: center;
    justify-content: center; 
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 12px 24px; 
    border-radius: 6px;
    background: var(--primary-color); 
    color: var(--text-color); 
    transition: all 0.3s ease;
}

.link-more .icon{
    transition: all 0.4s ease;
}

.link-more:hover .icon {
    transform: translateX(8px);
}

img{
    width: 100%;
}

section{
    padding-top: 130px;
    padding-bottom: 130px;
}


/* C&*/

.c-item{
    height: 740px;
}

.c-img{
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

/* I */

.intro {
    margin-bottom: 60px;
}


.intro h1 {
    margin-top: 16px;
    margin-bottom: 16px;
}

.intro h6 {
    color: var(--soft-green); 
}


.intro p{
    max-width: 500px;
    margin: auto;
}

.cta-btns{
    margin-top: 30px;
}

/* B$@ */

.btn
{
    padding: 16px 36px;
    font-family: "Dela Gothic One" ,'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.4s ease;
    border-radius: 6px;
    font-weight: bold;
}

.btn-brand{
    background-color:var(--button-color); 
    color: white;
    border: none;
}

.btn-brand:hover{
    background-color: transparent;
    color:white;    
    border-color:var(--button-hover-color);      
    background-color: var(--button-hover-color);
}

.btn-outline-brand{

    background-color: var(--button-color);
    color: var(--white-color);                
    border: 2px solid var(--button-color);    
}

.btn-outline-brand:hover{
    background-color:var(--button-hover-color);   
    color: white;
    border: 2px solid var(--button-hover-color);
    
}


#about{
    position: relative;
    background-color: var(--background-color);
    margin-bottom: 2px;
}

#about::after{

    content: "";
    width: 25%;
    height: 100%;
    position: absolute;
    top: 0%;
    left: 0%;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    z-index: -1;
}

#about h1{
    margin-top: 24px;
    margin-bottom: 24px;
    color: var(--primary-color);

}

#about p{
    color: var(--text-color);
    font-size: large;
}

.aboutimg img{
    border-radius: 100%;
    border: 5px solid var(--primary-color);
    padding: 5px;
}


/*T51.13.*/

#team {
    padding: 100px 0;
    background: url("/img/backimg/a25.jpeg");
    color: var(--secondary-color);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    
    position: relative;
    z-index: 1;
}

#team::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.679);
    backdrop-filter: blur(5px); 
    z-index: -1;
}


.team-img{
    border-radius: 10px;

    overflow: hidden;
    position: relative;
}

.team-img img{
    width: 100%;
    transition: all 0.3s ease-in-out;
}

.team-img:hover img {
    transform: scale(1.05);
}

.overlay{
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.team-details{
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 0;
    padding: 5%;
    width: 100%;
    text-align: center;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
}

.team-details h4{
    color: var(--white-color);
    font-size: 18px;
    font-weight: bold;
}

.team-img:hover .team-details{
    opacity: 1;
}

.team-img:hover .overlay{
    opacity: 1;
}

.socials a{
    display: inline-block;
    width: 37px;
    height: 37px;
    background-color: var(--card-bg);
    border-radius: 50%;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.socials i{
    line-height: 37px;
    color: var(--text-color);
    font-size: 16px;
    text-align: center;
    transition: all 0.2s linear;
}

.socials a:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

.socials a:hover i{
    color: var(--background-color);
}

.team-details, .socials i{
    margin-top: 30px;
    color: var(--primary-color);
    font-size: 20px;
}

.team-member {
    position: relative;
    margin: 10px; 
}

.team-member  .social-links {
    position: absolute;
    top: 0px; 
    right: 10px;
    transition: all 0.4s ease;
    opacity: 0;  
}

.team-member:hover  .social-links {
    opacity: 1;
    top: 20px;
}


/* S&@ */

.intro h1{
    color: var(--primary-color);
} 

.card-img-top{
    height: 100px;
    width: 100px;
    object-fit: cover;
    filter: brightness(0.8);
    border-radius: 50%;
    border: 3px solid var(--secondary-color);
    padding: 4px;      
}

.wraper span {
    display: flex;
    justify-content: center;
    font-size: 4rem;
    color: white;
    height: 90px;
    width: 90px;
    border-radius: 50%;
    align-items: center;
    margin: 0 auto;
    background-color: var(--primary-color);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.wraper{
    font-size: 50px;
    color: white;    
}

.card {
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.371);
}

.card p{
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
}

.card-body a.btn i{
    font-size: 1.5rem; 
    color: var(--primary-color); 
    transition: all 0.3s ease; 
}

.card-body a.btn:hover i {
    font-size: 2rem; 
    color: var(--secondary-color);
    font-weight: bold;
    transition: all 0.3s ease;
}

.card-body .btn:focus{
    box-shadow: none !important;
}


/* S%&I% */

.social-links a{
    width: 48px;
    height: 48px;
    background-color:var(--card-bg); 
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.social-links a:hover{
    background-color: var(--soft-green);
    color: var(--text-color);
    transform: scale(1.1);
}

/*&*/

#pricelist{
    padding: 80px 0;
    background-color:var(--background-color)
  }
  
  .price-list-thumb-wrap {
    padding-right: 50px;
    margin-bottom: 30px; 
  }
  
  .price-list-thumb {
    margin-bottom: 10px;
    padding: 15px;
    background: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }

  .price-list-thumb-wrap h6,h4{
    color: var(--secondary-color);
  }

  .price-list-thumb-wrap h1{
    color: var(--primary-color);
  }

  .price-list-thumb:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.15);
}
  
  .price-list-thumb:last-child {
    margin-bottom: 0;
  }
  
  .price-list-thumb h6 strong {
    color: var(--gold);
  }

  .price h4 strong {
    color: var(--gold);
  }
  
  .price-list-thumb-divider {
    background: var(--soft-green);
    flex: auto;
    height: 2px;
    margin: auto 15px 0;
  }
  
  .price-list-section .custom-block-bg-overlay-wrap {
    padding: 0;
  }

.link-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 50px; 
    padding: 12px 20px; 
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.link-more:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

.text-center {
    text-align: center;
}

.custom-block-bg-overlay-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}


/* R@S&I%S */
.price-list-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.2);
    display: block;
    margin: auto;
}


@media (max-width: 1024px) {
    .price-list-thumb-wrap {
        padding-right: 20px;
    }

    .custom-block-bg-overlay-wrap {
        margin-top: 30px; 
    }
}

@media (max-width: 768px) {
    .price-list-thumb-wrap {
        padding-right: 0;
        text-align: center;
    }

    .price-list-thumb {
        padding: 10px;
    }

    .price-list-thumb {
        padding: 10px;
    }

    .price-list-image {
        text-align: center;
        margin-top: 30px;
    }

    .price-list-image img {
        max-width: 80%;
    }

    .custom-block-bg-overlay-wrap {
        margin-top: 20px;
    }

    .link-more {
        width: 100%; 
        margin-top: 30px;
        padding: 14px 0;
    }
}

@media (max-width: 480px) {
    .price-list-section {
        padding: 50px 0;
    }

    .price-list-thumb-wrap {
        padding-right: 0;
        text-align: center;
    }

    .link-more {
        font-size: 13px;
        padding: 12px;
    }

    .price-list-image img {
        max-width: 100%;
    }
}

/**R%S**/

#reviews {
    padding: 100px 0;
    background: url("/img/backimg/a24.jpeg");
    color: var(--secondary-color);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    
    position: relative;
    z-index: 1;
}

#reviews::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    backdrop-filter: blur(5px);
    z-index: -1;
}


#reviews h1{
    color: var(--primary-color);
    font-weight: 8px;
}

.carousel-item h5{
    color: var(--text-color);
    font-weight: 8px;
}

.testimonial-carousel {
    max-width: 900px;
    margin: auto;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 20px;  
    padding: 30px;
    box-shadow:  0px 4px 8px rgba(0, 0, 0, 0.829);   
    text-align: center;
    height: 320px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 5px; 
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;    
}

.testimonial-card:hover {
    transform: scale(1.01);  
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--primary-color);
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
    display: block;
    margin: auto;  
    border: 3px solid var(--soft-green);
}

.stars {
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 10px;
}

.testimonial-card::before,.testimonial-card::after {
    content: "“";
    font-size: 120px; 
    color:rgba(52, 4, 94, 0.384);                   
    font-weight: bold;
    position: absolute;
    
}

.testimonial-card::before {
    content: "“";
    top: 10px;
    left: 10px;
}

.testimonial-card::after {
    content: "”";
    bottom: 10px;
    right: 10px;
}

.testimonial-text {
    font-style: italic;
    font-size: 16px;
    color: var(--text-color);
    position: relative;
    padding: 20px;
}

.testimonial-text:before ,.testimonial-text:after{
    content: "“";  
    font-size: 30px;
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;

}

.testimonial-text:before {
    content: "“";
    top: -5px;
    left: -10px;
}

.testimonial-text:after {
    content: "”";
    bottom: -5px;
    right: -10px;
}

.carousel-indicators [data-bs-target] {
    background-color: var(--primary-color);
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.carousel-control-prev, .carousel-control-next {
    filter: invert(100%);
}



/* A&d*/

.accordion {
    background-color: transparent;
}

.accordion-button::after{
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4'/%3E%3C/svg%3E");
}

.accordion-button:not(.collapsed)::after{
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash-lg' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M2 8a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11A.5.5 0 0 1 2 8'/%3E%3C/svg%3E");
}

.accordion-button:focus{
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.accordion-item{
    margin-top: 8px;
}

.accordion-body{
    color: var(--text-color);
}

/*f#t*/

footer {
    padding: 60px 0;
    background-color: var(--footer-bg-color);
    color: var(--white-color);
}

.footer-top .col-lg-4,
.footer-top .col-lg-3 {
    padding: 15px;
}

.base a {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s ease;
}

.base a:hover {
    color: var(--gold);
    
}

.footer-links { 
    list-style: none; 
    padding: 0;
}

.footer-links li {  
    margin-bottom: 8px; 
}

.footer-links a {
    color: var(--primary-color); 
    text-decoration: none; 
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-top .social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer-top .social-links a {
    color: var(--primary-color);
    font-size: 25px;
    transition: all 0.3s ease;
    
}

.footer-top .social-links a:hover {
    color: var(--gold);
    transform: scale(1.1);
    background-color: var(--primary-color);
}

.footer-top .contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.footer-top .contact-info i {
    font-size: 22px;
    color: var(--gold);
}

.footer-top iframe {
    width: 100%;
    height: 200px;
    border-radius: 8px;
}

.footer-bottom {
    padding-top: 20px;
    text-align: center;
    border-top: 1px solid var(--secondary-color);
    font-size: 14px;
}

@media (max-width: 992px) {
    .footer-top .col-lg-4,
    .footer-top .col-lg-3 {
        text-align: center;
    }

    .footer-top .social-links {
        justify-content: center;
        margin-top: 10px;  
    }

    .footer-top .contact-info {
        flex-direction: column;
        text-align: center;
    }

    .footer-links { 
        text-align: center;
    }

    .footer-top .base {
        justify-content: center;
        margin-bottom: 10px; 
    }

    .footer-top iframe {
        width: 100%;
        max-width: 400px;  
        height: 200px;
        margin: 0 auto; 
        display: block;
    }
}

.footer-bottom {
    padding-top: 20px;
    text-align: center;
    border-top: 1px solid var(--secondary-color);
    font-size: 14px;
    color: var(--white-color);
}


.site-header {
    background: var(--white-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.home-btn {
    font-size: 20px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
}
.header-nav a {
    margin-left: 15px;
    padding: 8px 16px;
    background-color: var(--button-color);
    color: var(--white-color);
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}
.header-nav a:hover {
    background-color: var(--button-hover-color);
}

.price-list-thumb-wrap h2{
    color: var(--primary-color);
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.price .starting{
    color: var(--secondary-color);
}

.services-heading h1{
    color: var(--primary-color);
}

.modern-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease-in-out;
    text-align: left;
    position: relative;
    overflow: hidden;
  }
  
  .modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
  }
  
  /* TS */
  .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
    border-bottom: 2px solid #f2f2f2;
    padding-bottom: 10px;
  }

  .price h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    color: #666;
  }

  .old-price {
    color: #aaa;
    font-size: 1rem;
    text-decoration: line-through;
    margin-right: 10px;
  }
  .new-price {
    color: #1a73e8;
    font-size: 1.6rem;
    font-weight: 800;
  }
  .discount-badge {
    display: inline-block;
    margin-top: 10px;
    background: linear-gradient(135deg, #34d399, #10b981);
    color: #fff;
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 999px;
    box-shadow: 0 3px 8px rgba(16, 185, 129, 0.25);
    animation: popIn 0.4s ease;
  }

  @keyframes popIn {
    0% {
      transform: scale(0.7);
      opacity: 0;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }
  


