*{
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
}
html, body{
  width: 100%;
  height: 100%;
}
body{
  font-family: headb;
}

  @keyframes ring {
            0%, 20%, 50%, 80%, 100% { transform: rotate(0deg); }
            10% { transform: rotate(-10deg); }
            30% { transform: rotate(10deg); }
            60% { transform: rotate(-5deg); }
            70% { transform: rotate(5deg); }
        }
        .animate-ring {
            animation: ring 1s ease-in-out;
        }
        
        /* Hide checkbox */
        #menuToggle {
            display: none;
        }
        
        /* Mobile menu initial state */
        .mobile-menu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: white;
        }
        
        /* When checkbox is checked, show menu */
        #menuToggle:checked ~ .mobile-menu {
            max-height: 400px;
        }
        
        /* Menu items animation */
        .menu-item {
            opacity: 0;
            transform: translateX(-20px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        /* Staggered animation for menu items */
        #menuToggle:checked ~ .mobile-menu .menu-item:nth-child(1) {
            opacity: 1;
            transform: translateX(0);
            transition-delay: 0.1s;
        }
        
        #menuToggle:checked ~ .mobile-menu .menu-item:nth-child(2) {
            opacity: 1;
            transform: translateX(0);
            transition-delay: 0.2s;
        }
        
        #menuToggle:checked ~ .mobile-menu .menu-item:nth-child(3) {
            opacity: 1;
            transform: translateX(0);
            transition-delay: 0.3s;
        }
        
        #menuToggle:checked ~ .mobile-menu .menu-item:nth-child(4) {
            opacity: 1;
            transform: translateX(0);
            transition-delay: 0.4s;
        }
        
        #menuToggle:checked ~ .mobile-menu .menu-item:nth-child(5) {
            opacity: 1;
            transform: translateX(0);
            transition-delay: 0.5s;
        }
        
        /* Hamburger icon animation */
        .menu-icon {
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        #menuToggle:checked + label .menu-icon {
            transform: rotate(90deg);
        }
        
        /* Change icon when menu is open */
        .menu-icon::before {
            content: "\ec61"; /* ri-menu-line */
            font-family: "remixicon";
        }
        
        #menuToggle:checked + label .menu-icon::before {
            content: "\eab6"; /* ri-close-line */
        }
        
        /* Smooth background overlay */
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            /* background: rgba(0, 0, 0, 0); */
            pointer-events: none;
            transition: background-color 0.3s ease;
            z-index: 40;
        }
        
        #menuToggle:checked ~ .menu-overlay {
            /* background: rgba(0, 0, 0, 0.2); */
            pointer-events: auto;
        }
        
        /* Menu item hover effects */
        .menu-item:hover {
            /* background: linear-gradient(90deg, rgba(236, 72, 153, 0.1) 0%, transparent 100%); */
            transform: translateX(5px);
        }
        
        /* Enhanced menu container */
        .mobile-menu {
            /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); */
            border-top: 1px solid #f3f4f6;
        }
        
        /* Add subtle pulse animation to call button */
        .call-button {
            animation: pulse 2s infinite;
        }
        
       

.page4 {
  width: 100%;
  min-height: 125vh;
  padding:0 5vw;
  background-color: #ffffff;
}

.page4 .cards {
  width: 90%;
  height: 20vh;
  margin-left: 5vw;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 2px solid #999;
}

.page4 .cards:nth-child(2) {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  overflow: hidden;
}

.page4 .cards:nth-last-child(1) {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  overflow: hidden;
}

.page4 .cards .cards-left-img {
  width: 0%;
  height: 100%;
  /* display: none; */
  -webkit-transition: ease-out 0.2s;
  -o-transition: ease-out 0.2s;
  transition: ease-out 0.2s;
  background-color: #999;
}

.page4 .cards .cards-left-img>img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top;
     object-position: top;
}

.page4 .cards .information-feature {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.page4 .cards .information-feature .cards-text-feature {
  width: 60%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5vw;
  padding-left: 3vw;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.page4 .cards .information-feature .cards-text-feature h2 {
  font-family: headb;
  color: #000;
}

.page4 .cards .information-feature .cards-text-feature p {
 font-family: headb;
  color: #000;
}

.page4 .cards .information-feature .cards-number {
  margin-right: 3vw;
  margin-top: 4vw;
  background-color: #000;
  color: white;
  padding: 0.2vw 1.3vw;
 font-family: headb;
  font-weight: 800;
  border-radius: 20px;
  border: none;
  font-size: 0.8vw;
}

.page4 .cards .information-feature .cards-number i {
  display: none;
  color: white;
}

.page4 .cards:hover .cards-left-img {
  width: 35%;

}

.page4 .cards:hover {
  background-color: #F3F4F6;
}

.page4 .cards:hover .information-feature .cards-text-feature h2 {
  color: #444;
}

.page4 .cards:hover .information-feature .cards-text-feature p {
  color: #444;
}

.page4 .cards:hover .cards-number {
  background-color: #444;
}

.page4 .cards:hover .information-feature .cards-text-feature {
  width: 60%;
}

.page4 .cards:hover .information-feature .cards-number h4 {
  display: none;
}

.page4 .cards:hover .information-feature .cards-number i {
  display: initial;
}

#page6 {
    width: 100%;
    position: relative;
    padding: 5vw 3vw;
    min-height: fit-content;
    border-top: 1px solid #575349;
    font-family:headb;
    font-weight: 500;
  }
  
  #page6 > h1 {
    font-size: 6vw;
    line-height: 1;
    margin-bottom: 5vw;
  }
  
  .executive {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 2vw 1vw 2vw 0;
    border-top: 1px solid #575349;
    cursor: pointer;
  }
  
  .executive:nth-last-child(1) {
    border-bottom: 1px solid #575349;
  }
  
  .executive > h1 {
    font-size: 3vw;
  }
 
  
  .exe-img {
    height: 17vw;
    width: 23vw;
    z-index: 999;
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
  }
  
  .exe-img img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  @media (max-width: 767px) {
    .page4 {
      width: 100%;
      min-height: 110vh;
      padding-top: 5vw;
  }
  
  .page4 .cards {
      width: 90%;
      height: 20vh;
      margin-left: 5vw;
      cursor: pointer;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
  }
  
  .page4 .cards:nth-child(1) {
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
      overflow: hidden;
  }
  
  .page4 .cards:nth-last-child(1) {
      border-bottom-left-radius: 10px;
      border-bottom-right-radius: 10px;
      overflow: hidden;
  }
  
  .page4 .cards .cards-left-img {
      width: 0%;
      height: 100%;
      -webkit-transition: ease-out 0.2s;
      -o-transition: ease-out 0.2s;
      transition: ease-out 0.2s;
  }
  
  .page4 .cards .cards-left-img>img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
      -o-object-position: center;
         object-position: center;
  }
  
  .page4 .cards .information-feature {
      width: 100%;
      height: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
  }
  
  .page4 .cards .information-feature .cards-text-feature {
      width: 55%;
      height: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 1.5vw;
      padding-left: 3vw;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
  }
  
  .page4 .cards .information-feature .cards-text-feature h2 {
      font-family: headb;
      font-size: 5.4vw;
  }
  
  .page4 .cards .information-feature .cards-text-feature p {
     font-family: headb;
      font-size: 2.9vw;
  }
  
  .page4 .cards .information-feature .cards-number {
      margin-right: 3vw;
      margin-top: 4vw;
      padding: 0.6vw 1.8vw;
     font-family: headb;
      font-weight: 800;
      border-radius: 20px;
      border: none;
      font-size: 1.5vw;
  }
  
  .page4 .cards .information-feature .cards-number i {
      display: none;
      font-size: 1.5vw;
  }
  
  .page4 .cards:hover .cards-left-img {
      width: 35%;
  
  }
  
 
  
  
  .page4 .cards:hover .information-feature .cards-text-feature {
      width: 75%;
  }
  
  .page4 .cards:hover .information-feature .cards-number h4 {
      display: none;
  }
  
  .page4 .cards:hover .information-feature .cards-number i {
      display: initial;
      font-size: 1.4vw;
  }
  }
  svg {
    width: 100%;
    height: auto;
  }