@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&family=Cinzel:wght@400..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Saira:ital,wght@0,100..900;1,100..900&display=swap');


/* About Section */

.about-section {
  position: relative;
  background: url("public/cherry_1.jpg") center/cover fixed no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 60px 20px;
  overflow: hidden;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(2px);
  z-index: 1;
}

.content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin-top: -100px;
}

.content h2 {
  font-size: 2rem;
  line-height: 1.8;
  
  font-weight: 600;
  font-family: "Saira", sans-serif;
}

.content p {
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 20px;
  font-family: "Roboto", sans-serif;
}

.highlight {
  color: black;
  font-weight: 700;
}

.icon {
  height: 18px;
  width: 18px;
  vertical-align: middle;
  color: #4fe39c;
  margin: 0 4px;
}

.btn-container {
  margin-top: 30px;
}

.back-btn {
  color: #fff;
  text-decoration: none;
  background: #4fe39c;
  padding: 10px 20px;
  border-radius: 25px;
  transition: 0.3s ease;
  font-family: 'Noto Sans JP', sans-serif;
}

.back-btn:hover {
  background: #3ec887;
}


/* Extra small devices (phones, portrait ≤320px) */
@media (max-width: 320px) {
  .about-section {
    padding: 40px 12px;
  }

  .content h2 {
    font-size: 1.1rem;
    line-height: 1.5;
  }

  .content p {
    font-size: 0.8rem;
    line-height: 1.4;
  }
}

/* Small devices (≤480px) */
@media (max-width: 480px) {
  .about-section {
    padding: 45px 14px;
  }

  .content h2 {
    font-size: 1.2rem;
    line-height: 1.6;
  }

  .content p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

/* Medium devices (≤576px) */
@media (max-width: 576px) {
  .about-section {
    padding: 50px 16px;
  }

  .content h2 {
    font-size: 1.3rem;
    line-height: 1.6;
  }

  .content p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .overlay {
  position: absolute;
  inset: 0;
  background: #60a5fab0;
  backdrop-filter: blur(2px);
  z-index: 1;
}
}

/* Large phones (≤768px) */
@media (max-width: 768px) {
  .about-section {
    padding: 60px 18px;
    min-height: auto;
  }

  .content {
    max-width: 95%;
  }

  .content p {
    font-size: 1rem;
  }
}

/* Tablets (≤992px) */
@media (max-width: 992px) {
  .about-section {
    padding: 80px 25px;
  }

  .content {
    max-width: 900px;
  }

  .content p {
    font-size: 1.05rem;
  }
}

/* Desktop but smaller ≤1152px */
@media (max-width: 1152px) {}

/* Large Desktop ≤1440px */
@media (max-width: 1440px) {}


/* Mission & Vision Section */

.mv-section {
  display: flex;
  gap: 30px;
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

/* Card */
.mv-card {
  flex: 1;
  background: linear-gradient(145deg, #111726, #111726);
  border-radius: 22px;
  padding: 40px;
  position: relative;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.05),
    0 0 40px rgba(0,255,200,0.05);
}

/* Title */
.mv-card h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 25px;
  color: white;
  font-family: "Saira", sans-serif;

}

/* Content */
.content-mv {
  display: flex;
  gap: 18px;
}

.line {
  width: 3px;
  background: linear-gradient(rgb(10, 56, 124), #1aa68a);
  border-radius: 10px;
}

.content-mv p {
  font-size: 16px;
  line-height: 1.8;
  color: #cfcfcf;
  max-width: 480px;
  font-family: "Roboto", sans-serif;
}

.content-mv strong {
  color: #ffffff;
}

/* Icons */
.icon {
  position: absolute;
  opacity: 0.12;
}

/* Target */
.target {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 5px solid #5e6d69;
  top: 30px;
  right: 40px;
}

.target::before,
.target::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 5px solid #5e6d69;
}

.target::before {
  width: 90px;
  height: 90px;
  top: 20px;
  left: 20px;
}

.target::after {
  width: 35px;
  height: 35px;
  top: 47px;
  left: 47px;
}

/* Eye */
.eye {
  width: 150px;
  height: 90px;
  border-radius: 100px / 60px;
  border: 5px solid #5e6d69;
  top: 40px;
  right: 40px;
}

.eye::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  background: #5e6d69;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Responsive */
@media (max-width: 900px) {
  .mv-section {
    flex-direction: column;
  }
}



/* Contact Section */

.section-container {
  display: flex;
  width: 100%;
  height: 50vh;
  background-color: #bababa  ;
  padding: 20px 0px;
}

.image-side {
  position: relative;
  flex: 1.2;
  overflow: hidden;
}

.text-side {
  flex: 1;
  background-color: #bababa  ;
  color: black;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-side h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: black;
  font-family: "Saira", sans-serif;
}

.subtitle {
  font-size: 1.1rem;
  
  line-height: 1.4;
  color: black;
  font-family: "Roboto", sans-serif;
}

.description-con {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  color: black;
  font-family: "Roboto", sans-serif;
}

.learn-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid black;
  color: black;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  width: fit-content;
  font-family: "Roboto", sans-serif;
}

.learn-more-btn:hover {
  background-color: #fff;
  color: black;
}

/* ---------------- MEDIA QUERIES (Responsive) ---------------- */

@media (max-width: 320px) {

  .section-container {
    flex-direction: column;
    height: auto;
    padding: 0;
  }

  .image-side {
    height: 200px;
  }

  .image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .text-side {
    padding: 18px;
  }

  .text-side h2 {
    font-size: 1.3rem;
  }

  .subtitle {
    font-size: 0.85rem;
  }

  .description-con {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
  }

  .learn-more-btn {
    font-size: 0.85rem;
    padding: 8px 16px;
  }
}
@media (max-width: 480px) {

  .section-container {
    flex-direction: column;
    height: auto;
  }

  .image-side {
    height: 240px;
  }

  .text-side {
    padding: 22px;
  }

  .text-side h2 {
    font-size: 1.45rem;
  }

  .subtitle,
  .description-con {
    font-size: 0.95rem;
  }
}
@media (max-width: 576px) {

  .section-container {
    flex-direction: column;
    height: auto;
  }

  .image-side {
    height: 260px;
  }

  .text-side {
    padding: 26px;
  }

  .text-side h2 {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {

  .section-container {
     flex-direction: column;
    height: auto;          /* 🔥 KEY FIX */
    padding: 0;
  }

   .image-side {
    width: 100%;
    height: 220px;         /* ✅ FIXED HEIGHT */
    flex: none;
  }

  .image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;     /* ✅ no stretch */
    display: block;
  }

  .text-side {
    padding: 32px;
  }

  .description-con {
    margin-bottom: 2rem;
  }
}
@media (max-width: 992px) {

  .section-container {
    height: auto;
  }

  .image-side {
    min-height: 320px;
  }

  .text-side {
    padding: 40px;
  }

  .text-side h2 {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 1152px) {
  /* Desktop layout remains same */
  .text-side h2 {
    font-size: 1.9rem;
  }
}








/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */
.why-choose-section {
    padding: 60px 0 20px 150px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.why-choose-wrapper {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 0;
    align-items: stretch;
    position: relative;
    min-height: 600px;
    margin-top: 40px;
}

.why-choose-image-side {
    position: relative;
    z-index: 1;
    height: 100%;
    padding: 0;
    margin: 0;
}

.why-main-image {
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
    min-height: 600px;
    opacity: 1;
    display: block;
}

.why-choose-content-side {
    position: relative;
    z-index: 2;
    margin-left: -150px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 0;
}

.why-choose-main-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: #333333;
    margin: 0 auto;
    letter-spacing: -0.5px;
    padding: 0;
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 10;
    font-family: "Saira", sans-serif;
}

.caption-boxes {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.caption-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 15px 18px 45px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.6s ease-out forwards;
    position: relative;
    overflow: hidden;
    width: 500px;
    height: 85px;
    font-family: "Roboto", sans-serif;
    color: white;
}

/* Zigzag pattern - alternating left and right positioning */
.caption-box:nth-child(odd) {
    margin-left: 0;
    margin-right: auto;
}

.caption-box:nth-child(even) {
    margin-left: 60px;
    margin-right: 0;
}

/* Staggered animation delays */
.caption-box:nth-child(1) { animation-delay: 0.1s; }
.caption-box:nth-child(2) { animation-delay: 0.2s; }
.caption-box:nth-child(3) { animation-delay: 0.3s; }
.caption-box:nth-child(4) { animation-delay: 0.4s; }
.caption-box:nth-child(5) { animation-delay: 0.5s; }
.caption-box:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Color variants */
.caption-blue {
    background: linear-gradient(135deg, #111726 0%, #6366F1 100%);
}

.caption-green {
    background: linear-gradient(135deg, #f97316 0%, #facc15 100%);
}

.caption-yellow {
    background: linear-gradient(135deg, #111726 0%, #6366F1 100%);
}

.caption-orange {
    background: linear-gradient(135deg, #f97316 0%, #facc15 100%);
}

.caption-pink {
    background: linear-gradient(135deg, #111726 0%, #6366F1 100%);
}

.caption-purple {
    background: linear-gradient(135deg, #f97316 0%, #facc15 100%);
}

.caption-red {
    background: linear-gradient(135deg, #111726 0%, #6366F1 100%);
}


.caption-box:hover {
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.caption-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    backdrop-filter: blur(10px);
}

.caption-icon svg {
    width: 28px;
    height: 28px;
}

.caption-content {
    flex: 1;
}

.caption-number {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.caption-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
    line-height: 1.3;
}

.caption-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   WHY CHOOSE US - RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .why-choose-wrapper {
        gap: 0;
    }
    
    .caption-boxes {
        gap: 15px;
    }
    
    .why-choose-content-side {
        margin-left: -100px;
    }
    
    .caption-box {
        width: 550px;
    }
}

@media (max-width: 900px) {
    .caption-box {
        width: 100% !important;
        max-width: 500px;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 40px 0;
    }
    
    .why-choose-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: auto;
    }
    
    .why-choose-image-side {
        order: 2;
        height: 300px;
    }
    
    .why-choose-content-side {
        order: 1;
        margin-left: 0;
        padding: 40px 20px;
    }
    
    .why-main-image {
        max-height: 300px;
        min-height: 300px;
    }
    
    .why-choose-main-title {
        text-align: center;
        margin-bottom: 30px;
        padding-top: 0;
    }
    
    .caption-boxes {
        gap: 15px;
    }
    
    .caption-box {
        padding: 15px 18px;
        width: 100% !important;
        max-width: 100%;
        min-height: auto;
        height: auto;
    }
    
    /* Remove zigzag in mobile - all centered */
    .caption-box:nth-child(odd),
    .caption-box:nth-child(even) {
        margin-left: auto;
        margin-right: auto;
    }
    
    .caption-icon {
        width: 45px;
        height: 45px;
    }
    
    .caption-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .caption-title {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .why-choose-section {
        padding: 30px 0;
    }
    
    .why-choose-content-side {
        padding: 0px 15px 30px 15px;
        gap: 15px;
    }
    
    .why-choose-main-title {
        font-size: 32px;
        margin-bottom: 25px;
    }
    
    .caption-box {
        padding: 12px 15px;
        gap: 12px;
        width: 100% !important;
        max-width: 100%;
        height: auto;
        flex-direction: column;
        text-align: center;
    }
    
    .caption-content {
        width: 100%;
        text-align: center;
    }
    
    .caption-icon {
        margin: 0 auto 10px auto;
        width: 40px;
        height: 40px;
    }
    
    .caption-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .caption-number {
        font-size: 0.7rem;
    }
    
    .caption-title {
        font-size: 0.95rem;
    }
    
    .caption-boxes {
        gap: 12px;
    }
}
