/***** Full section block ******/
#aboutblock {
    width: 100%;
    padding: 80px 6%;
    background: #f6f7f9;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Flex container */
.about-container {
    width: 100%;
    max-width: 1250px;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

/* Text block */
#aboutblock .textblocks {
    flex: 1;
    min-width: 320px;
    text-align: justify;
}

#aboutblock h2 {
    font-size: 34px;
    font-weight: 700;
    color: #1b1b1c;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

#aboutblock p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 35px;
    max-width: 90%;
}

/* Read More Button */
.readmore-btn {
    display: inline-block;
    padding: 12px 26px;
    background: #003366;
    color: white;
    text-decoration: none;
    font-size: 15px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    font-weight: 600;
    transition: all .35s ease;
}

.readmore-btn:hover {
    background: #00509E;
    transform: translateY(-3px);
}

/* Image block */
#aboutblock .imageblocks {
    flex: 1;
    min-width: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-wrapper {
    width: 100%;
    max-width: 520px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.45s ease;
}

.img-wrapper img {
    width: 100%;
    display: block;
    transition: transform .6s ease;
}

/* Subtle zoom hover effect */
.img-wrapper:hover img {
    transform: scale(1.07);
}
/* ********** */


/* Responsive */
@media (max-width: 768px) {
    #slider { height: 60vh; }

    #slider .textblock h1 {
        font-size: 1.8rem;
    }
    #slider .textblock p {
        font-size: 1rem;
    }
}


/* ********* */



/* --- EPHRATAH Emporium Premium Section --- */

.eph-home-section {
  padding: 90px 20px;
  background: #f5f5f5;
  font-family: "Segoe UI", "Montserrat", sans-serif;
}

.eph-container {
  max-width: 1250px;
  margin: auto;
  text-align: center;
}

.eph-title {
  font-size: 42px;
  font-weight: 700;
  color: #222;
  margin-bottom: 5px;
  letter-spacing: -0.5px;
}

.eph-subtitle {
  font-size: 15px;
  color: #aa8d47; /* Gold tint */
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 60px;
}

.eph-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.eph-card {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 18px;
  border-top: 4px solid #f0c674;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  text-align: left;
}

.eph-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.eph-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #222;
}

.eph-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* --- CLIENT SECTION (Premium Style) --- */

#clientsession {
  padding: 80px 20px;
  background: #fafafa;
  text-align: center;
  font-family: "Montserrat", "Segoe UI", sans-serif;
}

#clientsession h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #222;
  letter-spacing: -0.5px;
  position: relative;
}

/* Gold underline effect */
#clientsession h2::after {
  content: "";
  height: 3px;
  width: 70px;
  background: #d4af37;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

#clientlogoblock {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 40px;
  align-items: center;
}

#clientlogoblock img {
  width: 100%;
  max-width: 140px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
  margin: auto;
}

/* Hover reveals full color and subtle lift */
#clientlogoblock img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-6px) scale(1.05);
}



