.full-image-section {
  width: 100%;
  background: #eee; /* light border area like screenshot */
  padding: 10px 0;
}

.full-image-section img {
  width: 100%;
  height: auto;
  display: block;
}
.about-section {
  background: #eee;
  padding-bottom: 40px;
}

/* Title bar */
.about-title {
  background: #f4a300;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  padding: 12px 0;
  width: 85%;
  margin: 0 auto 25px;
  border: 3px solid #1a1a1a;
}

/* Video box */
.about-video-box {
  background: #fff;
  border: 3px solid #3a3a3a;
  padding: 6px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}

.about-video-box video {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

/* Text */
.about-text {
  font-size: 18px;
  line-height: 1.8;
}

.about-text li {
  margin-bottom: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .about-title { font-size: 22px; width: 95%; }
  .about-video-box video { height: 220px; }
  .about-text { font-size: 16px; }
}
.founder-section {
  background: #eee;
  /* padding: 60px 0; */
}

/* Image */
.founder-img {
  border: 3px solid #1e5aa8;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.founder-img img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  display: block;
}

/* Content box */
.founder-content {
  background: #d9d3d3;
  padding: 25px;
}

/* Title bar */
.founder-title {
  background: #f4a300;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  padding: 10px;
  margin-bottom: 20px;
}

/* Quote */
.quote {
  font-style: italic;
  font-weight: 600;
  margin-top: 15px;
}


/* ===== ANIMATION ===== */
.slide-left {
  opacity: 0;
  transform: translateX(-60px);
  animation: slideLeft 1s ease forwards;
}

.slide-right {
  opacity: 0;
  transform: translateX(60px);
  animation: slideRight 1s ease forwards;
}

@keyframes slideLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


/* Responsive */
@media (max-width: 768px) {
  .founder-title { font-size: 22px; }
}
/* Section */
.profile-section {
  background: #eee;
  padding: 60px 0;
}

/* Image */
.profile-image {
  border: 3px solid #1e5aa8;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.profile-image img {
  width: 100%;
  height: 570px;
  object-fit: cover;
  padding: 50px;
  display: block;
}

/* Content */
.profile-content {
  background: #d9d3d3;
  padding: 25px;
}

/* Title */
.profile-title {
  background: #f4a300;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  padding: 10px;
  margin-bottom: 20px;
}


/* ===== Animation ===== */
.animate-left {
  opacity: 0;
  transform: translateX(-60px);
  animation: moveLeft 1s ease forwards;
}

.animate-right {
  opacity: 0;
  transform: translateX(60px);
  animation: moveRight 1s ease forwards;
}

@keyframes moveLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes moveRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


/* Responsive */
@media (max-width: 768px) {
  .profile-title { font-size: 22px; }
}
.problems-section {
  background: #f4a000;
  padding: 10px 0;
  margin-bottom: 70px;
border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}

/* Title */
.problem-title {
  border: 3px solid #1e5aa8;
  text-align: center;
  font-weight: 600;
  font-size: 26px;
  padding: 8px;
  margin-bottom: 20px;
}

/* List */
.problem-list {
  list-style: disc;
  padding-left: 25px;
}

/* Animation initial state */
.problem-list li {
  opacity: 0;
  font-size: 14px;
  font-weight: 700;
  color: #000;
  line-height: 26px;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

/* When visible */
.problem-list li.show {
  opacity: 1;
  transform: translateY(0);
}
.care-banner {
  width: 100%;
  background: #eee;          /* light outer background like screenshot */
  padding: 8px 0;            /* small top & bottom gap */
}

.care-banner img {
  width: 100%;
  height: auto;
  margin-top: 110px;
  display: block;
  object-fit: cover;
}



/* Card Style */
.service-card{
    background:#f7f7f7;
    border:3px solid #2c3e50;
    padding:25px;
    height:100%;
    position:relative;
}

/* Icon */
.service-icon{
    color:#f4a000;
    font-size:45px;
    margin-bottom:10px;
}

/* Title */
.service-title{
    font-size:24px;
    font-weight:700;
    margin-bottom:25px;
}

/* Click Text */
.toggle-btn{
    color:#ff8c00;
    font-weight:600;
    cursor:pointer;
    text-decoration:underline;
}

/* Hidden List */
.service-list{
    display:none;
    margin-top:15px;
    border-top:1px solid #ccc;
    padding-top:10px;
    font-size:16px;
    color: #7a7a7a;
    ;
}

/* Active show */
.service-card.active .service-list{
    display:block;
}

/* Divider line between rows */
.row-divider{
    height:3px;
    background:#000;
    margin:40px 0;
}

/* ===== PICNIC GALLERY ===== */
.picnic-gallery{
  display:flex;
  flex-direction:column;
  align-items:center;
  padding:25px 10px 50px;
}

.picnic-row{
  display:flex;
  justify-content:center;
  gap:22px;
  flex-wrap:wrap;
  margin-bottom:22px;
}

.picnic-row img{
  width:265px;
  height:467px;
  object-fit:cover;
  border:3px solid #1e5aa8;
  box-shadow:0 6px 14px rgba(0,0,0,0.35);
  cursor:pointer;
}

/* ===== TWO IMAGE SECTION ===== */
.image-section{
  display:flex;
  justify-content:center;
  gap:30px;
  padding:30px 15px 50px;
  flex-wrap:wrap;
}

.image-section img{
  width:550px;
  height:499px;
  object-fit:cover;
  border:3px solid #1e5aa8;
  box-shadow:0 6px 14px rgba(0,0,0,0.35);
  cursor:pointer;
  transition:.3s;
}

.image-section img:hover{
  transform:scale(1.02);
}

/* ===== TAKING CARE ===== */
.care-gallery{
  display:flex;
  flex-direction:column;
  align-items:center;
  padding:30px 15px 50px;
}

.care-row{
  display:flex;
  justify-content:center;
  gap:28px;
  flex-wrap:wrap;
  margin-bottom:28px;
}

.care-row img{
  width:300px;
  height:260px;
  object-fit:cover;
  border:3px solid #1e5aa8;
  box-shadow:0 6px 14px rgba(0,0,0,0.35);
  cursor:pointer;
  transition:.3s;
}

.care-row img:hover{
  transform:scale(1.03);
}

/* ===== LIGHTBOX ===== */
.lightbox{
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.9);
  justify-content:center;
  align-items:center;
  z-index:9999;
}

.lightbox img{
  max-width:95%;
  max-height:95%;
  box-shadow:0 0 20px #000;
  border-radius:4px;
  animation:zoomIn .3s ease;
}

@keyframes zoomIn{
  from{transform:scale(.8);opacity:0;}
  to{transform:scale(1);opacity:1;}
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){

  .picnic-row img{
    width:45%;
    height:300px;
  }

  .image-section img{
    width:100%;
    height:auto;
  }

  .care-row img{
    width:45%;
    height:220px;
  }
}




/* Image wrapper */
.full-image-wrapper{
  display:flex;
  margin-top: 110px;
  justify-content:center;
  padding:20px 15px 40px;
}

/* Image style */
.full-image-wrapper img{
  width:100%;
  max-width:1500px;   /* keeps same centered look */
  height:auto;
  background:#fff;
  box-shadow:0 6px 16px rgba(0,0,0,0.25);
}
/* ===== Section Background ===== */
.contact-section{
  display:flex;
  justify-content:center;
  gap:30px;
  padding:40px 20px;
  background:#d9d9d9;
  flex-wrap:wrap;
}

/* ===== Card Style ===== */
.contact-card{
  background:#eee;
  width:360px;
  padding:25px 22px 28px;
  border:3px solid #1e2f45;
  box-shadow:0 6px 14px rgba(0,0,0,0.35);
  position:relative;
}

/* ===== Icon Box ===== */
.icon-box{
  width:42px;
  height:42px;
  background:#f4a300;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:6px;
  margin-bottom:10px;
}

.icon-box i{
  color:#fff;
  font-size:18px;
}

/* ===== Text ===== */
.contact-card h3{
  margin:10px 0 12px;
  font-size:22px;
}

.contact-card p{
  margin:6px 0;
  font-size:16px;
  line-height:1.5;
}

/* ===== Responsive ===== */
@media(max-width:768px){
  .contact-card{
    width:100%;
    max-width:400px;
  }
}
/* ===== Wrapper ===== */
.contact-wrap{
  display:flex;
  justify-content:center;
  gap:30px;
  padding:40px 20px;
  background:#d9d9d9;
  flex-wrap:wrap;
}

/* ===== Map ===== */
.contact-map{
  width:600px;
  height:520px;
  box-shadow:0 6px 14px rgba(0,0,0,0.25);
  background:#fff;
}

/* ===== Form Box ===== */
.contact-form-box{
  width:500px;
  background:#f4a900;
  padding:25px 30px 35px;
  box-shadow:0 6px 14px rgba(0,0,0,0.25);
}

/* Labels */
.contact-form-box label{
  display:block;
  font-weight:bold;
  margin:15px 0 8px;
}

/* Inputs */
.contact-form-box input,
.contact-form-box textarea{
  width:100%;
  padding:10px;
  border:1px solid #ccc;
  background:#eee;
  font-size:14px;
  margin-bottom:10px;
}

/* Name row */
.name-row{
  display:flex;
  gap:15px;
}

.name-row input{
  width:50%;
}

/* Fake captcha */
.fake-captcha{
  display:flex;
  align-items:center;
  gap:10px;
  background:#eee;
  padding:12px;
  margin:15px 0;
  font-size:14px;
}

.captcha-logo{
  margin-left:auto;
  font-size:12px;
  color:#666;
}

/* Submit button */
.submit-btn{
  background:#1f6fb2;
  color:#fff;
  border:none;
  padding:10px 18px;
  font-size:16px;
  cursor:pointer;
  border-radius:3px;
}

/* ===== Responsive ===== */
@media(max-width:900px){
  .contact-map,
  .contact-form-box{
    width:100%;
    height:auto;
  }

  .contact-map{
    height:400px;
  }
}
