/* ==============================
   Global Styles
============================== */
body {
  font-family: 'Poppins', sans-serif;
}

/* ==============================
   Navbar & Logo
============================== */
.logo-container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #cce2f8;
  margin-bottom: 60px;
  width: 330px;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #7cb6e6;
  clip-path: polygon(0% 25%, 100% 25%, 85% 110%, 15% 110%);
  border-bottom-left-radius: 80px 180px;
  border-bottom-right-radius: 80px 180px;
  transition: width 0.3s, height 0.3s;
  z-index: 5;
  pointer-events: none;
}

.logo-container img {
  margin-top: 40px;
  max-height: 120px;
  width: auto;
  max-width: 90%;
  height: auto;
  pointer-events: none;
}

.navbar-nav .nav-link {
  position: relative;
  color: #0066cc !important;
  font-weight: 500;
  border-radius: 0;
  padding: 12px 24px;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease;
  min-width: 140px;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  z-index: 10;
  overflow: hidden;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before { }

.navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #0066CC;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: -1;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show-link {
  color: #fff !important;
}

.navbar {
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  background: #fff;
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
  min-height: 80px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid #0066cc;
}

.navbar .container {
  min-height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  flex-wrap: wrap;
}

.left-nav {
  margin-right: auto;
  display: flex;
  gap: 120px;
}

.right-nav {
  margin-left: auto;
  display: flex;
  gap: 120px;
}

@media (max-width: 1200px) {
  .logo-container {
    transform: translateX(-50%) translateY(-2%);
    width: 250px;
    height: 120px;
  }
}

@media (max-width: 992px) {
  .logo-container {
    position: static;
    margin: 15px auto;
    width: 180px;
    height: 90px;
    border-bottom-left-radius: 40px 90px;
    border-bottom-right-radius: 40px 90px;
    pointer-events: auto;
  }
}

/* =============================
    COPY PASTE KAHIT SAAN SA CSS
    ============================= */

.homeRelative {
    position: relative;
}

.homeHovered {
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.homeRelative:hover + .homeHovered {
    opacity: 1;
    pointer-events: auto;
}

.homeRelative:hover + .homeHovered > .homeHoverImg{
    left: 4.7%;
}

.homeRelative:hover + .homeHovered > .homeHoverBox{
    width: 220px;
}

.homeHoverImg {
    z-index: 2;
    position: absolute;
    top: 50%;
    left: -6.7%;
    transform: translateY(-50%) scaleX(-1);
    height: 132px;
    width: auto;
    transition: all 0.4s ease;
}

.homeHoverBox {
    z-index: 1;
    position: absolute;
    top: 50%;
    left: -7.6%;
    transform: translateY(-50%);
    height: 132px;
    width: 120px;
    background-color: #0066cc;
    transition: all 0.4s ease;
}

.aboutRelative {
    position: relative;
}

.aboutHovered {
    opacity: 1;
    transition: all 0.4s ease;
    pointer-events: none;
}

.aboutRelative:hover + .aboutHovered {
    opacity: 1;
    pointer-events: auto;
}

.aboutRelative:hover + .aboutHovered > .aboutHoverImg{
    left: 17.5%;
}

.aboutHoverImg {
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 17.5%;
    transform: translateY(-50%) scaleX(-1);
    height: 132px;
    width: auto;
    transition: all 0.4s ease;
}

.services-container {
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

.services-container.show {
    opacity: 1;
    pointer-events: auto;
}

.servicesRelative {
    position: relative;
}

.servicesHovered {
    opacity: 1;
    transition: all 0.4s ease;
    pointer-events: none;
}

.servicesRelative:hover + .services-container > .servicesHovered > .servicesHoverImg,
.services-container.show .servicesHoverImg {
    right: 17.6%;
}

.servicesRelative:hover + .services-container,
.servicesRelative:hover + .services-container > .servicesHovered,
.servicesRelative:hover .services-container .servicesDropdown,
.services-container.show .servicesDropdown {
    opacity: 1;
    pointer-events: auto;
}

.servicesHoverImg {
    z-index: 2;
    position: absolute;
    top: 50%;
    right: 27.6%;
    transform: translateY(-50%);
    height: 132px;
    width: auto;
    transition: all 0.4s ease;
}

.servicesDropdown {
    position: absolute;
    top: 185%;
    right: 23.1%;
    background: #0066cc;
    padding: 10px 0;
    list-style: none;
    z-index: 3;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    width: 140px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.servicesDropdown li {
    height: fit-content;
}

.servicesDropdown li a {
    width: 100%;
    height: 55px;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
}

.servicesDropdown li a i{
    margin-left: 28px;
}

.servicesDropdown li a:hover{
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    
}

.fa-caret-down {
    transition: transform 0.3s ease;
}

.fa-caret-down.rotate {
    transform: rotate(180deg);
}

.contactRelative {
    position: relative;
}

.contactHovered {
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.contactRelative:hover + .contactHovered {
    opacity: 1;
    pointer-events: auto;
}

.contactRelative:hover + .contactHovered > .contactHoverImg{
    right: 3.7%;
}

.contactRelative:hover + .contactHovered > .contactHoverBox{
    width: 200px;
}

.contactHoverImg {
    z-index: 2;
    position: absolute;
    top: 50%;
    right: -6.3%;
    transform: translateY(-50%);
    height: 132px;
    width: auto;
    transition: all 0.4s ease;
}

.contactHoverBox {
    z-index: 1;
    position: absolute;
    top: 50%;
    right: -7.6%;
    transform: translateY(-50%);
    height: 132px;
    width: 100px;
    background-color: #0066cc;
    transition: all 0.4s ease;
}

.vanishingAct {
    display: none;
}










@media (max-width: 991.98px) {
    .homeHovered {
        display: none;
    }
    .homeHoverImg {
        display: none;
    }
    .homeHoverBox {
        display: none;
    }
    .aboutHovered {
        display: none;
    }
    .aboutHoverImg {
        display: none;
    }
    .aboutHoverBox {
        display: none;
    }
    .servicesHovered {
        display: none;
    }
    .servicesHoverImg {
        display: none;
    }
    .servicesHoverBox {
        display: none;
    }
    .contactHovered {
        display: none;
    }
    .contactHoverImg {
        display: none;
    }
    .contactHoverBox {
        display: none;
    }
    .vanishingAct {
        display: block;
    }
    .vanishingAct2 {
        display: none;
    }
    .navbar-nav .nav-link:hover::before,
    .navbar-nav .nav-link.active::before {
        transform: translateX(0);
    }
}

@media (min-width: 991.98px) and (max-width: 1200px) {
    .homeRelative:hover + .homeHovered > .homeHoverImg{
        left: 4% !important;
    }
    .homeRelative:hover + .homeHovered > .homeHoverBox{
        width: 210px !important;
    }
    .homeHoverImg {
        left: -6% !important;
        height: 127px !important;
    }
    .homeHoverBox {
        left: -11.6% !important;
        height: 127px !important;
        width: 110px !important;
    }
    .aboutRelative:hover + .aboutHovered > .aboutHoverImg{
        left: 19.8% !important;
    }
    .aboutHoverImg {
        left: 19.8% !important;
        height: 127px !important;
    }
    .servicesRelative:hover + .services-container > .servicesHovered > .servicesHoverImg,
    .services-container.show .servicesHoverImg {
        right: 19.8% !important;
    }
    .servicesHoverImg {
        right: 29.8% !important;
        height: 127px !important;
    }
    .servicesDropdown {
        top: 195% !important;
        right: 27% !important;
        width: 135px !important;
    }
    .servicesDropdown li a i{
        margin-left: 25px !important;
    }
    .contactRelative:hover + .contactHovered > .contactHoverImg{
        right: 5% !important;
    }
    .contactRelative:hover + .contactHovered > .contactHoverBox{
        width: 220px !important;
    }
    .contactHoverImg {
        right: -5% !important;
        height: 127px !important;
    }
    .contactHoverBox {
        right: -11.6% !important;
        height: 127px !important;
        width: 120px !important;
    }
    .right-nav {
        gap: 100px !important;
    }
}

@media (max-width: 1399px) {
    .homeRelative:hover + .homeHovered > .homeHoverImg{
        left: 5%;
    }
    .homeRelative:hover + .homeHovered > .homeHoverBox{
        width: 240px;
    }
    .homeHoverImg {
        left: -5%;
        height: 132px;
    }
    .homeHoverBox {
        left: -11.3%;
        height: 132px;
        width: 140px;
    }
    .aboutRelative:hover + .aboutHovered > .aboutHoverImg{
        left: 20%;
    }
    .aboutHoverImg {
        left: 20%;
        height: 132px;
    }
    .servicesRelative:hover + .services-container > .servicesHovered > .servicesHoverImg,
    .services-container.show .servicesHoverImg {
        right: 20.4%;
    }
    .servicesHoverImg {
        right: 30.4%;
        height: 132px;
    }
    .servicesDropdown {
        right: 26.8%;
    }
    .servicesDropdown li a i{
        margin-left: 27px;
    }
    
    .contactRelative:hover + .contactHovered > .contactHoverImg{
        right: 6%;
    }
    .contactRelative:hover + .contactHovered > .contactHoverBox{
        width: 255px;
    }
    .contactHoverImg {
        right: -4%;
        height: 132px;
    }
    .contactHoverBox {
        right: -11.3%;
        height: 132px;
        width: 155px;
    }
}

/* ==============================
   About Us Section
============================== */
.extra-bold {
  font-weight: 700;
  text-shadow: 
    -0.5px -0.5px 0 #000,
     0.5px -0.5px 0 #000,
    -0.5px  0.5px 0 #000,
     0.5px  0.5px 0 #000;
}

.about-hero .about-img {
  display: block;
  width: 100%;
  height: auto;
  border: 5px solid #CAE3A3;
  border-radius: 85px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  max-width: 1200px;
  margin: 0 auto 1.5rem auto;
}

.gradient-green  { background: linear-gradient(to right, #ffffff 0%, #CAE3A3 100%); }
.gradient-blue   { background: linear-gradient(to right, #0066CC 0%, #ffffff 100%); }
.gradient-pink   { background: linear-gradient(to bottom, #ffffff 0%, #F79ECB 100%); }
.gradient-orange { background: linear-gradient(to bottom, #ffffff 0%, #F7B997 100%); }

.our-company {
  margin: 3rem;
}

.company-box {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  gap: 1rem;
}

.company-box .box-text {
  flex: 1;
  max-width: 55%;
  z-index: 2;
  text-align: center;
}

.blue-box .box-text {
  margin-left: -90px;
}

.green-box {
  flex-direction: row;
  border-radius: 90px;
  border: 5px solid #CAE3A3;
  width: 1100px;
  height: 357px;
}

.blue-box {
  flex-direction: row;
  border-radius: 90px;
  border: 5px solid #0066CC;
  width: 1100px;
  height: 357px;
}

.mission-box {
  flex-direction: row;
  border-radius: 50px;
  border: 5px solid #F79ECB;
  width: 630px;
  height: 400px;
}

.vision-box {
  flex-direction: row-reverse;
  border-radius: 50px;
  border: 5px solid #F7B997;
  width: 630px;
  height: 400px;
}

.outlined-text {
  font-size: 1.8rem; 
  color: #fff; 
  letter-spacing: 2px;
  text-shadow: 
    -1px -1px 0 #000,  
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000; 
}

.value-title {
  color: #fff;
  text-shadow: 
    1px 1px 0 #000, 
   -1px 1px 0 #000, 
    1px -1px 0 #000, 
   -1px -1px 0 #000;
}


.decor-img {
  flex: 1;
  object-fit: contain;
  margin: 0 1rem;
  height: auto;
}

.green-img {
  max-width: 40%;
  margin-left: 10px;
}

.blue-img {
  max-width: 100%;
  margin-left: -90px;
}

.mission-img,
.custom-mission-img {
  max-width: 100%;
  margin-left: -100px;
  margin-right: -200px;
  display: block;
}

.vision-img,
.custom-vision-img {
  max-width: 90%;
  margin-left: -100px;
  margin-right: -80px;
  margin-top: 10px;
  display: block;
}

/* ==============================
   Core Values Section
============================== */
.core-values-section h2 {
  font-size: 1.8rem;
  max-width: 800px;
  margin-bottom: 2rem; 
  text-align: left !important;
}

.core-side {
  background: #DBEDC1;
  border-radius: 20px;
  border: 5px solid #475F24;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  margin-top: 0 !important; 
}

.value-box {
  border-radius: 15px;
  padding: 25px 30px;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  max-width: 800px;
  min-height: 170px;
}

.light-green  { background: rgba(202, 228, 164, 0.68); border: 5px solid #8BB84A; border-radius: 30px; }
.light-blue   { background: rgba(0, 102, 204, 0.68); border: 5px solid #3371AF; border-radius: 30px; }
.light-pink   { background: rgba(247, 158, 203, 0.68); border: 5px solid #F084BB; border-radius: 30px; }
.light-orange { background: rgba(247, 185, 152, 0.68); border: 5px solid #DB8250; border-radius: 30px; }

.value-title {
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.core-item img {
  display: block;
  margin: 0 auto 10px;
  min-height: 190px;
  min-width: 170px;
  border-radius: 20px;
}

.core-item p {
  font-weight: 500;
  font-size: 0.95rem;
  margin: 0;
}

@media (min-width: 768px) {
  .core-side {
    margin-top: 0; 
  }
}

@media (min-width: 1200px) {
  .core-side {
    margin-top: 0; 
  }
}

/* ==============================
   Contact Group
============================== */
.contact-group {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    display: flex;
    align-items: center;
}

.contact-btn {
    position: relative;
    width: 6rem;
    height: 6rem;
    border-radius: 9999px;
    background-color: #180e85;
    background-image: url("/images/contact.png");
    background-size: 73%;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 8px 20px rgba(2,6,23,0.2);
    border: none;
    cursor: pointer;
    transition: transform 0.12s, box-shadow 0.12s;
    z-index: 1000;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(2,6,23,0.22)
}

.contact-btn:active {
    transform: translateY(-1px)
}

.contact-btn:focus {
    outline: 3px solid rgba(14,165,233,0.24)
}

.contact-icon {
    width: 22px;
    height: 22px
}

.contact-label {
    position: absolute;
    right: 5.2rem;
    bottom: 2rem;
    background: #1a0f91;
    color: #fff;
    padding: 10px 15px;
    border-top-left-radius: 999px;
    border-bottom-left-radius: 999px;
    font-size: 0.9rem;
    box-shadow: 0 8px 20px rgba(2,6,23,0.15);
    display: none;
    opacity: 0;
    transition: opacity 0.2s ease-in-out, right 0.2s ease-in-out;
    white-space: nowrap;
    text-decoration: none;
}

.contact-btn:hover + .contact-label {
    display: block;
    opacity: 1;
}

@media (max-width: 1024px) {
  .contact-btn {
    width: 5rem;
    height: 5rem;
  }

  .contact-label {
    right: 4.4rem;
    bottom: 1.6rem;
    padding: 8px 12px;
  }
}

@media (max-width: 750px) {
  .contact-btn {
    width: 4rem;
    height: 4rem;
  }

  .contact-label {
    right: 3.3rem;
    bottom: 1rem;
    padding: 8px 12px;
  }
}

@media (max-width: 1200px) {
  .logo-container {
    width: 250px;
    height: 120px;
  }
  .logo-container img {
    margin-top: 20px;
    max-height: 80px;
  }
  .navbar-nav .nav-link {
    padding: 10px 16px;
    font-size: 1rem;
    min-width: 110px;
  }
}

/* ==============================
   Terms & Conditions Modal FOOTER
============================== */

.custom-modal {
  margin-top: 25px;
}

.terms-modal-content {
  border: 3px solid #95C848;
  background: #fff;
  color: #303030;
  border-radius: 8px; /* optional for smoother corners */
}

.terms-title {
  color: #95C848;
  text-align: center;
  font-weight: bold;
  padding: 1px 0;
}


.terms-modal-body {
  max-height: 540px;
  overflow-y: auto;
  padding: 0 20px;  
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 15px;
  line-height: 1.6;
}

/* Scrollbar styling */
.terms-modal-body::-webkit-scrollbar {
  width: 8px;
}
.terms-modal-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.terms-modal-body::-webkit-scrollbar-thumb {
  background: #95C848;
  border-radius: 10px;
}
.terms-modal-body::-webkit-scrollbar-thumb:hover {
  background: #7cb132;
}

/* Section headings inside modal */
.terms-modal-body h6 {
  margin: 15px 0 8px;
  font-weight: 600;
  color: #95C848;
  text-align: left;
}

/* Paragraph text */
.terms-modal-body p {
  margin-bottom: 12px;
  text-align: justify;
}

/* ==============================
   VIBER 
============================== */

/* Modal Background */
#viberModal {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

/* Modal Content */
.viber-modal-content {
  background: #fff;
  border: 2px solid #99CA36;
  border-radius: 10px;
  padding: 20px;
  max-width: 350px;
  text-align: center;
  font-family: Arial, sans-serif;
}

/* Title */
.viber-modal-content h3 {
  color: #333;
  margin-bottom: 10px;
}

/* Description */
.viber-modal-content p {
  margin: 0 0 15px;
  color: #555;
}

/* Viber Number */
#viberNumber {
  font-size: 1.3rem;
  font-weight: bold;
  color: #99CA36;
  margin-bottom: 10px;
  cursor: pointer;
}

/* Copy confirmation */
#copyMsg {
  color: #28a745;
  font-size: 0.9rem;
  display: none;
  margin-bottom: 15px;
}

/* Close Button */
.viber-modal-content button {
  background: #99CA36;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
}

/* ==============================
   Footer
============================== */
.footer-section {
  background: #d6e9fa;
  color: #000;
  padding: 40px 0 0;
}

.footer-logo {
  max-height: 120px;
  width: auto;
}

.footer-section hr {
  border: none;
  border-top: 2px solid #000;
  margin: 20px 0;
}

.footer-section p,
.footer-section ul li a {
  color: #000;
  font-size: 0.95rem;
  text-decoration: none;
}

.footer-section ul {
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 6px;
}

.footer-section a:hover {
  color: #0066CC;
}

.footer-bottom {
  background: #0066CC;
  color: #fff;
  font-size: 0.9rem;
  margin-top: 20px;
}

/* ==============================
   Responsive Adjustments
============================== */
@media (max-width: 1200px) {
  .logo-container {
    width: 250px;
    height: 120px;
  }
  .logo-container img {
    margin-top: 20px;
    max-height: 80px;
  }
  .navbar-nav .nav-link {
    padding: 10px 16px;
    font-size: 1rem;
    min-width: 110px;
  }
  .about-hero .about-img {
    margin: 0 auto;
  }
  .our-company {
    margin: 1.5rem auto 3rem auto;
  }
}

@media (max-width: 992px) {
  .logo-container {
    display: none !important;
  }

  .navbar {
    padding: 20px 0;
  }

  .navbar-toggler {
    display: block !important;
  }

  .navbar-nav {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 10px;
    margin: 20px 0 10px;
  }

  .navbar-nav .nav-link {
    justify-content: flex-start;
    width: 100%;
    text-align: left;
    padding: 12px 18px;
    font-size: 1rem;
    min-width: unset;
  }

  .green-box,
  .blue-box,
  .mission-box,
  .vision-box {
    width: 100%;
    height: auto;
    flex-wrap: wrap;
  }

  .company-box {
    flex-direction: column;
    text-align: center;
  }

  .company-box .box-text {
    max-width: 100%;
    text-align: center;
    margin-left: 0 !important;
  }

  .decor-img,
  .green-img,
  .blue-img,
  .custom-mission-img,
  .custom-vision-img {
    max-width: 90% !important;
    margin: 1rem auto !important;
  }

  .core-values-section {
    display: block !important;
  }

  .core-values-section h2 {
    text-align: center !important;
    margin-bottom: 1.5rem;
  }

  .core-side {
    margin-top: 20px !important;
    min-height: auto !important;
    width: 100% !important;
  }
}

@media (max-width: 576px) {
  .logo-container {
    width: 120px;
    height: 60px;
    border-bottom-left-radius: 20px 40px;
    border-bottom-right-radius: 20px 40px;
  }

  .logo-container img {
    margin-top: 4px;
    max-height: 32px;
  }

  .navbar {
    padding: 10px 0;
    min-height: 50px;
  }

  .navbar-nav .nav-link {
    padding: 14px 10px;
    font-size: 1.1rem;
  }

  .about-hero .about-img {
    border-radius: 30px;
  }

  .value-box {
    padding: 15px;
    font-size: 0.9rem;
  }

  .core-side {
    margin-top: 2rem;
    min-height: auto;
  }

  .core-item img {
    max-width: 100px;
  }
}

@media (max-width: 400px) {
  .about-hero .about-img {
    border-radius: 30px;
  }

  .value-box {
    font-size: 0.85rem;
    padding: 12px;
  }

  .core-item img {
    max-width: 80px;
  }
}

@media (max-width: 768px) {
  .footer-section .row > div {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center !important;
    margin-bottom: 18px;
  }

  .footer-section .footer-logo {
    max-height: 70px;
  }
}

@media (max-width: 1440px) {
  .green-box,
  .blue-box {
    width: 100%;
    height: auto;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .company-box .decor-img,
  .green-img,
  .blue-img,
  .custom-mission-img,
  .custom-vision-img {
    display: none !important;
  }

  .company-box .box-text {
    max-width: 100% !important;
    margin: 0 auto !important;
    text-align: center !important;
  }

  .green-box,
  .blue-box,
  .mission-box,
  .vision-box {
    height: auto !important;
  }
}
