/* Importing Poppins font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Apply Poppins font globally to all elements */
body, html {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

/* Ensuring all text elements use Poppins font */
h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 400; /* Fixed the typo in 'font-weight' */
    margin-bottom: 20px;
    font-size: 24px; /* Font size set to 14px for h1, h2, h3 */
}

/* For other text elements, you can set a default font size */
p, span, a, button {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    margin-bottom: 20px;
    font-size: 16px; /* Default font size for other text elements */
}


/* About Section */
.about {
    padding: 40px 20px;
    text-align: left;
  }
  
  .about-content {
    display: flex;
    justify-content: center;
    align-items: left;
    padding: 10px 20px;
    background-color: #fff;
  }
  .about h2 {
    justify-content: center;
    text-align: left;
    margin-left: 330px;
  }
  
  .about p {
    margin-bottom: 20px;
    margin-left: 20px;
  
  }
  .profile-pic1 {
    width: 250px;
    height: 250px;
    border-radius: 60%;
    margin: 20px;
    margin-right: 20px;
    margin-bottom: 170px;
  }
  
  .bio {
    max-width: 700px;
  }
  .read-more-btn {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 0px;
    margin-left: 20px;
    background-color: #dfbca4;  /* Blue background */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
  }
  
  .read-more-btn:hover {
    background-color: #df915d;  /* Darker blue on hover */
  }
  
  /* Responsive Styles */

/* Large Desktop Screens (1440px and above) */
@media (min-width: 1440px) {
  .about {
    padding: 60px 40px; /* Increase padding for larger screens */
  }

  .about h2 {
    font-size: 2.0rem; 
    margin-left: 380px; 
  }

  .about-content {
    justify-content: space-between; 
  }

  .profile-pic1 {
    width: 300px; 
    height: 300px;
  }

  .read-more-btn {
    font-size: 14px; 
    padding: 10px 20px; 
}
}

/* Tablets (Max Width: 1024px) */
@media (max-width: 1024px) {
  .about h2 {
      font-size: 2.0rem; 
      margin-left: 400px; 
    }

  .about-content {
    flex-direction: column; 
    align-items: left; 
  }

  .profile-pic1 {
    width: 220px;
    height: 220px;
    margin: 10px auto;
  }

  .bio {
    text-align: left; /* Center-align the bio text */
    margin: 10px auto;
  }

  .read-more-btn {
    font-size: 12px; /* Smaller button text */
    padding: 6px 9px;
    margin-top: 10px;
    margin-left: 200px;
    width: 30%; /* Full-width button for small devices */
    text-align: center;
  }
}

/* Small Mobile Devices (Max Width: 480px) */
@media (max-width: 480px) {
  .about {
    padding: 20px 10px; /* Reduce padding for small screens */
    margin-top: 45px;
  }

  .about h2 {
    font-size: 2.0rem; 
    margin-left: 0; 
    text-align: center; 
  }

  .about p {
    margin-left: 0; 
    text-align: left; 
  }

  .profile-pic1 {
    width: 180px; 
    height: 180px;
  }

  .bio {
    max-width: 90%; 
  }

  .read-more-btn {
    font-size: 12px; /* Smaller button text */
    padding: 6px 12px;
    margin-top: 10px;
    margin-left: 70px;
    width: 50%; /* Full-width button for small devices */
    text-align: center;
  }
}




  
/* Art and Travel Section Styles */
#art-travel {
  background-color: #dfbca4; /* Light neutral background for modern professionalism */
  padding: 50px 0; /* More balanced padding */
}

.container {
  max-width: 800px; /* Slightly reduced container size for better balance */
  margin: 0 auto;
  padding: 0 15px; /* Less padding for compactness */
}

.section-header {
  text-align: center;
  margin-bottom: 40px; /* Reduced margin to make it feel more compact */
}

.section-header h2 {
  letter-spacing: 0.5px; /* Subtle letter spacing */
  margin-bottom: 10px;
}

.section-header p {
  line-height: 1.6;
  margin: 0 auto;
}

/* Flexbox for rows */
.row {
  display: flex;
  justify-content: space-between;
  gap: 15px; 
  flex-wrap: wrap;
}

/* Column styling */
.col {
  flex: 0 0 48%; 
  margin-bottom: 20px; 
  text-align: center;
}

/* Art and Travel Image Styling */
.art-image, .travel-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  width: 100%;
  height: 350px; /* Standard height */
  margin: 0 auto;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  transition: transform 1s cubic-bezier(0.25, 0.8, 0.25, 1); /* Slower transition for a smooth effect */
}

.art-image img, .travel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 1s cubic-bezier(0.25, 0.8, 0.25, 1); /* Slower transition for the image */
}

/* Hover Effect - Smooth Shrink and Expand */
.art-image:hover img, .travel-image:hover img {
  transform: scale(1.15); /* Slight zoom-in effect with a larger scale */
}

.art-image:hover, .travel-image:hover {
  transform: scale(1.03); /* Slight expansion of container */
}





/* Overlay Styling */
.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 10px;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.overlay h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.art-image:hover .overlay, .travel-image:hover .overlay {
  transform: translateY(0);
}

.col p {
  margin-top: 15px;
  line-height: 1.5;
  max-width: 400px; 
  margin: 15px auto;
}

/* Call-to-Action Button */
.cta {
  text-align: center;
  margin-top: 40px; 
}

.cta-btn {
  padding: 12px 30px;
  background-color: #8c7b5d; /* Professional, muted color */
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-btn:hover {
  background-color: #7b6c4f; /* Slightly darker shade for hover */
  transform: translateY(-2px); /* Light hover effect for interaction */
}

/* Responsive Styles */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 24px; /* Smaller font for better mobile view */
  }

  .section-header p {
    font-size: 14px;
  }

  .row {
    gap: 10px; /* Reduce gap on smaller screens */
  }

  .col {
    flex: 0 0 100%; /* Stack columns on small screens */
  }

  .art-image, .travel-image {
    height: 700px; /* Smaller images on mobile */
    padding: 60px;
  }

  .cta-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .art-image, .travel-image {
    height: 100%; /* Further reduced image height for very small screens */
  }

  .section-header h2 {
    font-size: 20px; /* Further reduced heading size for mobile */
  }

  .section-header p {
    font-size: 12px;
    line-height: 1.4;
  }

  .cta-btn {
    font-size: 12px;
    padding: 8px 15px;
  }
}




        /* Service Section Style */
.services-section {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  margin-top: 20px;
}

.services-section h2 {
  margin-bottom: 40px;
}

.services-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.service-card {
  background-color: #f8f8f8;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 250px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.service-icon img {
  width: 70px; /* Matches the emoji size */
  height: 70px; /* Matches the emoji size */
  margin-bottom: 1px;
}

.service-card h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
}

.service-card p {
  
}


  


/* Testimonial section */
.testimonials-section {
  text-align: center;
  background-color: #ddbeaa;
  color: rgb(22, 22, 22);
  padding: 50px 20px;
}

.testimonials-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.testimonials-subtitle {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* Carousel container */
.carousel-container {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.testimonials-carousel {
  display: flex;
  gap: 30px;
  transition: transform 0.3s ease-in-out;
}

.testimonial-box {
  background-color: #ddbeaa;
  color: black;
  padding: 20px;
  width: 300px;
  border-radius: 10px;
  position: relative;
  box-shadow: 10px 10px 30px rgba(116, 115, 115, 0.3); /* More pronounced shadow around the container */
  text-align: left;
  flex-shrink: 0;
  display: flex;
  flex-direction: column; /* Ensures that elements inside stack vertically */
  justify-content: space-between; /* Ensures space between the testimonial content and the profile section */
}

.quote-icon {
  font-size: 2rem;
  color: #d38a5a;
  position: absolute;
  top: 10px;
  left: 10px;
}

.testimonial-text {
  margin: 20px 0;
  line-height: 1.5;
}

.profile-section {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto; /* Ensures the profile is pushed to the bottom of the container */
}

.profile-pic {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #d49971;
}

.profile-name {
  font-size: 1rem;
  font-weight: bold;
  margin: 0;
}

.profile-role {
  font-size: 0.9rem;
  color: gray;
  margin: 0;
}

/* Buttons for manual scrolling */
.carousel-btn {
  position: absolute;
  top: 50%;
  background-color: #d38a5a;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  z-index: 10;
  font-size: 1.5rem;
  border-radius: 50%;
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

.carousel-btn:hover {
  background-color: #cd7c46;
}






  