.full-screen-section {
    min-height: 100vh;           /* Full screen height */
    display: flex;
    align-items: center;         /* Vertical center */
    padding: 80px 0;             /* Safe inner spacing */
    box-sizing: border-box;
    background-size: cover;
    background-image: url(/img/vision_back.png);
}
.full-screen-section10 {
    background-size: cover;
    background-image: url(/img/vision_back.png);
}
.full-screen-section20 {
    background-size: cover;
    background-image: url(/img/mission_back.png);
}

.full-screen-section1 {
    min-height: 100vh;           /* Full screen height */
    display: flex;
    align-items: center;         /* Vertical center */
    padding: 80px 0;             /* Safe inner spacing */
    box-sizing: border-box;
    background-size: cover;
    background-image: url(/img/mission_back.png);
}

.full-screen-section2 {
    min-height: 100vh;           /* Full screen height */
    display: flex;
    align-items: center;         /* Vertical center */
    padding: 80px 0;             /* Safe inner spacing */
    box-sizing: border-box;
    background-size: cover;
    background-image: url(/img/vision_back.png);
}



.py-100 { padding: 100px 0; }

.aa-overview {
    background-image: url(/img/curv_background.jpg);
    background-size: cover;          /* FULL coverage */
    background-position: center;     /* Center the image */
    background-repeat: no-repeat;              /* Full screen height */
    position: relative;
}


.aa-section-tag {
    display: inline-block;
    color: #2e7d32;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.aa-section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
}

.aa-section-text {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
}






.aa-split-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.aa-split-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.aa-image {
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}






.aa-list {
    padding-left: 0;
    list-style: none;
}

.aa-list li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    color: #444;
}

.aa-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #2e7d32;
    font-weight: bold;
}





/* VALUE CARD BASE */
.aa-value-card {
    background: #ffffff;
    padding: 42px 48px;
    margin-bottom: 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);

    /* 👇 KEY FIX */
    max-width: 420px;       /* controls horizontal size */
    width: 100%;
    transition: 0.35s ease;
}

/* Bigger cards for bottom row */
.wide-card {
    max-width: 520px;
}

/* Hover effect */
.aa-value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 55px rgba(0,0,0,0.12);
}

/* Typography */
.aa-value-card h5 {
    font-weight: 700;
    margin-bottom: 12px;
}

.aa-value-card p {
    color: #555;
    line-height: 1.6;
}

/* Mobile Fix */
@media (max-width: 768px) {
    .aa-value-card,
    .wide-card {
        max-width: 100%;
        padding: 32px 26px;
    }
}



.floating-btn {
  position: fixed;
  bottom: 25px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 999;
  transition: all 0.3s ease;
}


/* Scroll To Top - Right Side */
.scroll-top-btn {
  right: 25px;
  background: #ff8800;
  border: none;
  opacity: 0;
  visibility: hidden;
}

.scroll-top-btn:hover {
  background: #e67600;
  transform: scale(1.1);
}

/* Show button when active */
.scroll-top-btn.active {
  opacity: 1;
  visibility: visible;
}