.ttm-page-title-row-inner {
  background: linear-gradient(rgba(25, 25, 25, 0.6), rgba(25, 25, 25, 0.6));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Unique backgrounds for each service */
.wedding-bg {
  background-image: url('../images/wedding/banner.png');
}

.anniversary-bg {
  background-image: url('../images/anniversary/paralleox.jpg');
}

.birthday-bg {
  background-image: url('../images/birthday/paralleox.png');
}

.houseparty-bg {
  background-image: url('../images/web-img/2.png');
}

.corporate-bg {
  background-image: url('../images/corporate events/');
}

.about-us-bg {
  background-image: url('../images/bg-image/bg-2.png');
}

.our-blogs {
  background-image: url('../images/section-bg.png');
}

.connect {
  background-image: url('../images/section-bg.png');
}


.portfolio {
  background-image: url('../images/section-bg.png');
}

.services {
  background-image: url('../images/section-bg.png');
}


.container1 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.service-item1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 40px;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item1:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.service-item1:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image1 img {
    width: 500px;
    max-width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.service-content1 {
    flex: 1;
}

.service-content1 h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 16px;
    position: relative;
}

.service-content1 h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #007BFF;
    margin-top: 8px;
}

.service-content1 p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.read-more1 {
    display: inline-block;
    padding: 10px 20px;
    font-size: 15px;
    text-decoration: none;
    color: white;
    background: #007BFF;
    border-radius: 30px;
    transition: background 0.3s;
}

.read-more1:hover {
    background: #0056b3;
}

@media (max-width: 991px) {
    .service-item1 {
        flex-direction: column !important;
        text-align: center;
    }

    .service-image1 img {
        width: 100%;
        margin-bottom: 20px;
    }
}


/*gap remove of about us*/
.about-section_1 {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.portfolio-section .pt-50 {
  padding-top: 0 !important;
}

/*founders description*/

.founder-description {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 10, 0.8);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  padding: 25px;
  font-size: 15px;
  line-height: 1.6;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
  overflow-y: auto;
  scrollbar-width: none; /* For Firefox */
}

/* Optional: Hide scrollbar in Webkit browsers */
.founder-description::-webkit-scrollbar {
  display: none;
}

.featured-imagebox:hover .founder-description {
  opacity: 1;
}

