.section1 {
  position: relative;
  background-color: #203A4F;
  background-image: url('images/section-bg-image.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  padding: 100px 0; /* increased top & bottom padding */
  /* z-index:-1; */
  overflow: hidden;
}

/* Dark overlay for better text visibility */
.section1::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(32, 58, 79, 0.6);
  /* z-index: 0; */
}

.section1 .container {
  position: relative;
  /* z-index: 1; */
  text-align: left; /* align text to left */

}

.section1 h1 {
  font-size: 1.5rem;
  font-weight: 700;
   padding-top:60px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}

.section1 p {
  font-size: 15px;
  color: #e0e0e0;
}

.section1 i {
  color: #0ac4d1ff;
  margin: 0 6px;
  font-size:12px;
}

/* Optional: subtle animation for a modern touch */
.section1 h1, .section1 p {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}

.section1 h1 {
  animation-delay: 0.3s;
}

.section1 p {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== FRIDGE SECTION ===== */
.fridge-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);

}

.fridge-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0d6efd;
    margin-bottom: 25px;
    line-height: 1.2;
}

.fridge-desc {
    font-size: 1.15rem;
    color: #495057;
    margin-bottom: 35px;
    line-height: 1.6;
}

.fridge-features {
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    font-size: 1.05rem;
    color: #495057;
    transition: transform 0.3s;
}

.feature-item i {
    color: #0d6efd;
    margin-right: 12px;
    font-size: 1.3rem;
}

.feature-item:hover {
    transform: translateX(5px);
}

.fridge-cta {
    font-size: 1.15rem;
    margin-bottom: 25px;
    font-weight: 500;
}

.btn-book {
    background-color: #0d6efd;
    color: #fff;
    padding: 14px 35px;
    font-size: 1.05rem;
    border: none;
    border-radius: 8px;
    transition: 0.3s;
    cursor: pointer;
    box-shadow: 0 6px 15px rgba(13, 110, 253, 0.3);
}

.btn-book:hover {
    background-color: #0056b3;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.4);
    transform: translateY(-2px);
}

.fridge-image .img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.fridge-image .img-wrapper:hover {
    transform: scale(1.05);
}

.fridge-image img {
    width: 100%;
    display: block;
    border-radius: 15px;
}
@media (max-width: 992px) {
    .fridge-section {
        padding: 13px  0px;
    }
   .fridge-title {
        font-size: 25px;
    }
    .btn-book {
        width: 100%;
        text-align: center;
        margin-bottom:20px;
    }
    .fridge-cta{
        margin-bottom:15px;
    }
    .fridge-features{
        margin-bottom:10px;
    }
}

 .washing-problems {
  background: linear-gradient(135deg, #f0f4ff, #ffffff);
  position: relative;
  padding: 80px 0;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(90deg, #38b6ff, #38b6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Problem Card */
.problem-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.4s, box-shadow 0.4s;
}

.problem-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.problem-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}

.text-section {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.text-section h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.text-section p {
  color: #555;
  line-height: 1.5;
  font-size: 0.95rem;
  flex-grow: 1;
}

/* Button */
.btn-gradient {
  background: linear-gradient(90deg, #fb7915, #fcbf49);
  border-radius: 50px;
  padding: 0.6rem 1.8rem;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  align-self: flex-start;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-gradient:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 991px) {
  .problem-card {
    text-align: center;
  }
  .btn-gradient {
    align-self: center;
  }
}


/* Section Styling */
.fridge-process {
    position: relative;
    padding: 100px 0;
    background-color: #203A4F;
    background-image: url('images/section-bg-image.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

/* Section Title */
.fridge-process .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    text-align:left;
    margin-bottom: 15px;

}

/* Divider Line (small, elegant) */
.divider {
    width: 60px;
    height: 4px;
    background: #fc6f04;
    /* margin: 0 auto 50px auto; */
    border-radius: 2px;
}
/* Step Cards - Premium Glass Effect */
/* Add a stylish bottom border to each card */
.glass-card {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(15px) !important;
    border-radius: 25px !important;
    padding: 35px 25px !important;
    margin: 15px 0 !important;
    transition: transform 0.4s ease, box-shadow 0.4s ease !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    position: relative !important; /* Needed for pseudo-element */
}

/* Stylish bottom border using pseudo-element */
.glass-card::after {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 0;
    height: 4px; /* thickness of the border */
    border-radius: 2px;
    background: linear-gradient(90deg, #FFD700, #fc6f04, #fc6f04);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

/* Optional: enhance hover effect with border glow */
.glass-card:hover::after {
    height: 6px !important;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.7) !important;
}


.glass-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Step Number - Highlighted Gold Gradient */
.step-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 60px !important;
    font-weight: 800;
    background: linear-gradient(135deg, #38b6ff, #2a5addff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* text-shadow: 0 0 15px rgba(255, 215, 0, 0.5); */
    margin-bottom: 15px;
}

/* Headings - Slightly Modern & Premium */
.glass-card h2 {

    font-size: 24px !important;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* Paragraphs */
.glass-card p {
    font-size: 16px !important;
    color: #e5e5e5;
    line-height: 1.7;
}

/* Links - Highlight */
.glass-card a {
    color: #FFD700;
    font-weight: 600;
}
.glass-card a:hover {
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .glass-card {
        margin: 20px auto;
    }
    .fridge-process{
        padding:24px 0px;
    }
    .fridge-process .section-title{
        font-size:28px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 28px;
    }

    .step-number {
        font-size: 45px;
    }

    .glass-card h2 {
        font-size: 20px;
    }

    .glass-card p {
        font-size: 14px;
    }
}



/* Trust Section Styling */
.trust-section {
    background-color: #fff;
    padding: 100px 0;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

.trust-section .section-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #203A4F;
}

.trust-section .divider {
    width: 60px;
    height: 4px;
    background: #38b6ff;
    border-radius: 2px;
    margin: 0 auto 50px auto;
}

/* Equal height & modern cards */
.trust-card {
    background: #fff;
    border-radius: 25px;
    padding: 35px 25px;
    margin: 15px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0 15px 35px rgba(56, 182, 255, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    will-change: transform;
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(56, 182, 255, 0.25);
}

/* Icon Circle */
.icon-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #38b6ff, #0a85ff);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.trust-card:hover .icon-circle {
    transform: rotate(10deg);
    box-shadow: 0 0 20px rgba(56, 182, 255, 0.5);
}

/* Headings & Text */
.trust-card h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #203A4F;
    text-align: center;
}

.trust-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    text-align: center;
}

/* Floating shapes for modern feel */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: floatAnimation 6s ease-in-out infinite alternate;
}

.shape1 {
    width: 200px;
    height: 200px;
    background: #38b6ff;
    top: 10%;
    left: -50px;
}

.shape2 {
    width: 150px;
    height: 150px;
    background: #fc6f04;
    bottom: 15%;
    right: -50px;
}

@keyframes floatAnimation {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

/* Responsive */
@media (max-width: 991px) {
    .trust-card {
        margin: 20px auto;
    }
}

@media (max-width: 576px) {
    .trust-section .section-title {
        font-size: 28px;
    }

    .trust-card h2 {
        font-size: 18px;
    }

    .trust-card p {
        font-size: 13px;
    }

    .icon-circle {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
}

@media screen and  (min-width:300px) and (max-width:768px) {
   .fridge-desc{
    font-size: 15px;
   } 
   .fridge-cta{
    font-size: 14px;;
   }
   .washing-problems{
    padding: 20px 0px;
   }
   .gradient-text {
font-size:25px !important;
}
}