@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Maname&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins';
}
.main{
    width: 100%;
    height: 100%;
}
li, a{
    list-style: none;
    text-decoration: none;
}
.navbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* margin-inline: 20px; */
    /* font-size: 1.5rem; */
    /* background-color: #8ecae6; */
    height: 20%;
    padding: 10px 20px;
    /* border-bottom: 1px solid rgba(0, 0, 0, 0.5);  */
    position: sticky;
}

.logo{
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    font-weight: 700;
    color: #f01672;
    cursor: pointer;
}

.nav-list {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 1px;
    font-family: 'Poppins';
    font-size: 1.1rem;
}
.nav-links {
    color: #000;
}
.navbar .hamburger {
    display: none;
}

.nav-links:hover{
    color: #f01672;
    transition: .2s ease-out;
}

.Contact-Btn{
    background-color: #f01672;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
}
.Contact-Btn:Hover{
    background-color: #c8105a;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    transition: .5s ease-in-out;
}

.header{
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 20px;
}
.header-text h1, h3, p,li{
    margin: 30px;
}

.header-text li{
    font-size: 1.1rem;
}

.about-section {
    padding: 20px;
    /* text-align: left; */
    background-color: #fff;
    /* margin: 20px; */
    border-radius: 8px;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 50px 100px 50px 100px;
}

.about-text{
    text-align: left;
    margin-top: 20px;
}

.about-img{
    display: flex;
    align-items: center;
    justify-content: center;
}

.aln{
    text-align: center;
    margin-bottom: 32px;
    /* margin-top: -20px; */
}

.lorem{
    padding: 20px;
    /* text-align: left; */
    background-color: #fff;
    /* margin: 20px; */
    border-radius: 8px;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 50px 100px 50px 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden
}

.lorem img{
    border-radius: 5px;
    object-fit: cover;
    object-position: center;
    margin: 0 20px 30px 20px;

    
}


.services-section {
    padding: 20px;
    text-align: center;
    background-color: #fff;
    margin: 20px;
    border-radius: 8px;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 50px 100px 50px 100px;
    
}
.service-card {
    display: inline-block;
    width: 300px;
    margin: 20px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    text-align: center;
    transition: transform 0.2s;
}
.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 3px #f01672;
}
.service-card i {
    font-size: 50px;
    color: rgb(240, 22, 114);
    margin-bottom: 20px;
}

.service-card img {
    width: 60px;
}
.service-card h3 {
    /* font-size: 24px; */
    margin-bottom: 15px;
}
.service-card p {
    font-size: 16px;
    color: #666;
}
.services-section h2{
    text-align: center;
    color: #333;
    margin: 20px;
}

.client-section{
    padding: 20px;
    text-align: center;
    background-color: #fff;
    margin: 20px;
    border-radius: 8px;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 50px 100px 50px 100px;
    
}

.client-section h2{
    margin: 20px;
}

.client-data{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: row;
    
}

.kyb{
    transition: transform 0.3s ease-in-out;
}

.kyb:hover {
    transform: scale(1.10);
    /* box-shadow: 0 0 3px #f01672; */
}

.testimonial-section {

    margin: 0 100px 20px 100px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

}

.test-img {
    margin-bottom: 10px;
}

.testimonial p {
    font-size: 16px;
    color: #333;
}


.testimonial-section h2{
    text-align: center;
    color: #333;
    margin: 20px;
}

.test-img{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}


.testimonial-slider {
    position: relative;
    max-width: 100%;
    margin: 20px auto;
    text-align: center;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    padding: 20px;
    background-color: #fff;
    border-radius: 9px;
    box-shadow: 0 0 3px #ccc;
    margin: 60px;
    transition: transform 0.3s ease-in-out;
    /* border: 1px solid #ccc; */
    /* border-radius: 4px; */
    
}

.testimonial-slide.active {
    display: block;
}

.testimonial-slide:hover {
    transform: scale(1.02);
    box-shadow: 0 0 3px#f01672;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    /* color: white; */
    font-weight: bold;
    font-size: 26px;
    /* border-radius: 50%; */
    user-select: none;
    /* background-color: #f01672; */
    /* width: 50px; */
    /* height: 50px; */
    
}

.next {
    right: 0;
    /* border-radius: 3px 0 0 3px; */
}

.prev {
    left: 0;
}



.span{
    color: #f01672;
    text-decoration: underline;
}


.lastone{
    /* padding: 20px; */
    text-align: center;
    background-color: #fff;
    margin: 20px;
    /* border-radius: 8px; */
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 50px 100px 50px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; 
}

.both-section{
    /* padding: 20px; */
    text-align: center;
    background-color: #fff;
    margin: 20px;
    border-radius: 8px;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    margin: 50px 100px 50px 100px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    
}

.contact-form-container {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    width: 100%;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    /* margin: 50px 400px 50px 400px; */
    /* margin: 50px; */
    /* padding: 20px; */
    width: 1000px;

}

.contact-form-container h2{
    margin-bottom: 30px;
}

.contact-img{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;

}

.form-group{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


.contact-form-container h2 {
    margin-top: 0;
    text-align: center;
    color: #333;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.contact-form .form-group label i {
    margin-right: 5px;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: #f01672;
}

.contact-form button {
    display: inline-block;
    background-color: #f01672;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    
}

.contact-form button:hover {
    background-color: #a9265d;
}

.contact-form button i {
    margin-right: 5px;
}

#description{
   max-width: 100%;
}

footer {
    background-color: #f01672;
    color: #fff;
    padding: 20px 10px;
    text-align: center;
  }
  
  .minimal-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .footer-logo h3 {
    margin: 0;
    font-size: 1.5em;
    font-family: "Playfair Display", serif;
    /* font-size: 1rem; */
    font-weight: 700;
  }
  
  .footer-links {
    display: flex;
    gap: 20px;
  }
  
  .footer-links a {
    color: #fff;
    text-decoration: none;
  }
  
  .footer-links a:hover {
    text-decoration: underline;
  }
  
  .footer-contact p {
    margin: 5px 0;
  }
  
  .footer-contact a {
    color: #fff;
    text-decoration: none;
  }
  
  .footer-contact a:hover {
    text-decoration: underline;
  }

  .footer-social a {
    margin: 5px;
    color: #fff;
    font-size: 20px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: black;
}

  
  .minimal-sub-footer {
    background-color: black;
    color: #fff;
    padding: 10px;
    margin-top: 20px;
    font-size: 0.9em;
  }
  
  .minimal-sub-footer p {
    margin: 0;
  }  

.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-icon img {
    width: 50px; /* Adjust size as needed */
    height: 50px; /* Adjust size as needed */
    border-radius: 50%;
    background-color: #25D366; /* WhatsApp green color */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.whatsapp-icon img:hover {
    /* background-color: #128C7E; Darker green for hover effect */
    transform: scale(1.05);

}

.span{
    cursor: pointer;
}


.map-section {
    padding: 20px;
    margin: 50px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
}

.instagram-section h2, .map-section h2 {
    color: #333;
    margin-bottom: 20px;
}

.map-section iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 8px;
}


.overlay {
    position: relative;
    width: 100%;
    height: 300px;
    margin-bottom: 50px;
}

.photosection {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.photosection img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f0167179; /* Semi-transparent overlay */
}
