 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: "Merriweather", serif;
     background-color: #6b8e3f;
     color: white;
     font-size: 14px;
     padding-top: 100px;
 }

 /* Header */
 header {
     background: #101828;
     background: linear-gradient(90deg, rgba(16, 24, 40, 1) 0%, rgba(0, 79, 59, 1) 35%, rgba(11, 79, 74, 1) 100%);
     padding: 15px 0;
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 99999;
 }

 .header_me {
     display: flex;
     justify-content: space-between;
     align-items: center;

 }

 .logo {
     color: white;
     font-size: 24px;
     font-weight: bold;
     display: flex;
     flex: 1;
     align-items: center;
     gap: 10px;
 }


 .logo img {
     width: auto;
     height: 60px;
 }

 #chatmxh {
     position: fixed;
     bottom: 15%;
     right: 20px;
     z-index: 99999;
 }

 .top_fix {
     position: fixed;
     bottom: 6%;
     right: 25px;
     z-index: 99999;
 }

 .chatfb {
     margin-top: 10px;
 }

 .chatfb img,
 .top_fix img {
     width: 60px;
     transition: 0.2s;
 }

 .chatfb:hover img {
     transform: scale(1.1);
 }

 .fb-page.fb_iframe_widget {
     width: 100%;
 }

 nav {
     display: flex;
     gap: 30px;
     align-items: center;
 }

 nav a {
     color: white;
     text-decoration: none;
     font-size: 14px;
     transition: color 0.3s;
 }

 nav a:hover {
     color: #9ccc65;
 }

 .phone-icon {
     color: white;
     font-size: 18px;
 }

 /* Hero Section */
 .hero {
     padding: 60px 0 0;
     gap: 40px;
 }

 .hero-content {
     flex: 1;
     text-align: center;
     margin-top: 40px;
 }

 .hero-content h1 {
     font-size: 48px;
     color: white;
     justify-content: center;
     margin-bottom: 20px;
     display: flex;
     align-items: center;
     gap: 15px;
 }

 .hero-icon {
     font-size: 40px;
 }

 .hero-content p {
     color: white;
     font-size: 16px;
     line-height: 1.6;
     margin-bottom: 20px;
 }

 .hero-icons {
     display: flex;
     gap: 15px;
     text-align: center;
     justify-content: center;
     font-size: 24px;
 }

 .hero-icons img {
     width: 200px;
 }

 .hero-image {
     flex: 0.9;
     text-align: center;
 }



 /* Info Sections */
 .info-sections {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 30px;
     padding: 40px 0;
 }

 .info-box {
     gap: 20px;
     width: 100%;
 }

 .info-box-icon {
     font-size: 32px;
     min-width: 50px;
 }

 .info-box h3 {
     font-size: 16px;
     color: #1b5e3f;
     margin-bottom: 5px;
 }

 .info-box p {
     font-size: 12px;
     color: #999;
 }

 .map-image {
     width: 100%;
     height: 200px;
     background: #f0f0f0;
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 14px;
     color: #999;
 }

 .video-container {
     width: 100%;
     height: 200px;
     background: #333;
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 48px;
     cursor: pointer;
 }

 /* Explore Section */
 .explore {
     padding: 0 0 60px 0;
     text-align: center;
 }

 .explore h2 {
     font-size: 36px;
     color: white;
     margin-bottom: 10px;
     position: relative;
     display: inline-block;
 }

 .explore p {
     color: white;
     font-size: 14px;
     margin-bottom: 40px;
 }

 .carousel {
     display: flex;
     gap: 20px;
     justify-content: center;
     align-items: center;
     margin-bottom: 20px;
 }

 .carousel-btn {
     background: white;
     border: none;
     width: 40px;
     height: 40px;
     border-radius: 50%;
     cursor: pointer;
     font-size: 20px;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: background 0.3s;
 }

 .carousel-btn:hover {
     background: #ffeb3b;
 }

 .carousel-items {
     display: flex;
     gap: 20px;
     justify-content: center;
     flex-wrap: wrap;
 }

 .carousel-item {
     width: 200px;
     height: 200px;
     background: #333;
     border-radius: 10px;
     overflow: hidden;
     position: relative;
     cursor: pointer;
 }

 .carousel-item img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .carousel-item-label {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     background: rgba(0, 0, 0, 0.7);
     color: white;
     padding: 10px;
     text-align: center;
     font-size: 12px;
 }

 .carousel-dots {
     display: flex;
     gap: 8px;
     justify-content: center;
 }

 .dot {
     width: 8px;
     height: 8px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.5);
     cursor: pointer;
 }

 .dot.active {
     background: white;
 }

 /* Services Section */
 .services {
     padding: 30px 0 60px 0;
     gap: 40px;
 }

 .ico_ngang {
     text-align: center;
     margin-bottom: 10px;
 }

 .ico_ngang img {

     width: 40px;
 }

 .animals-content {
     text-align: center;
     margin-bottom: 40px;
 }

 .services-content h2 {
     font-size: 36px;
     color: white;
     margin-bottom: 10px;
 }

 .services-content p {
     color: white;
     font-size: 14px;
     line-height: 1.6;
 }

 .services-list {
     display: flex;
     flex-direction: row;
     gap: 20px;
     align-items: center;
 }

 .services-content {
     text-align: center;
     margin-bottom: 50px;
 }

 .service-item {
     width: 100%;
     background: white;
     padding: 20px;
     border-radius: 10px;
     text-align: center;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 10px;
 }

 .service-item-icon {
     font-size: 32px;
 }

 .service-item h3 {
     font-size: 14px;
     color: #1b5e3f;
 }

 .service-icons {
     display: flex;
     gap: 15px;
     margin-top: 20px;
     justify-content: center;
 }

 .service-icons a {
     width: 30px;
     height: 30px;
     background: #f0f0f0;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     text-decoration: none;
     color: #1b5e3f;
     font-size: 16px;
     transition: background 0.3s;
 }

 .service-icons a:hover {
     background: #ffeb3b;
 }

 /* Animals Section */
 .animals {
     padding: 0 0 60px;
 }

 .animals-content h2 {
     font-size: 36px;
     color: white;
     margin-bottom: 20px;
 }

 .animals-content p {
     color: white;
     font-size: 14px;
     line-height: 1.6;
 }

 .animals-grid {
     background: #abba00;
     padding: 20px;
     border-radius: 10px;
 }

 .animal_box {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 20px;
 }

 .animal-card {
     background: #333;
     border-radius: 10px;
     overflow: hidden;
     position: relative;
     height: 300px;
 }

 .animal-card img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     object-position: center;
 }

 .animal-card-label {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     background: #d1ff98;
     color: #282828;
     padding: 10px;
     text-align: center;
 }

 /* Footer */
 footer {
     background: #101828;
     background: linear-gradient(40deg, rgba(16, 24, 40, 1) 0%, rgba(0, 79, 59, 1) 59%, rgba(11, 79, 74, 1) 100%);
     padding: 60px 50px;
     text-align: center;
 }

 footer h2 {
     font-size: 56px;
     color: white;
     margin-bottom: 10px;
     position: relative;
     display: inline-block;
 }

 footer h2::after {
     content: '';
     display: block;
     width: 60px;
     height: 4px;
     background-color: #ffeb3b;
     margin: 10px auto 0;
 }

 .contact-info {
     display: grid;
     grid-template-columns: repeat(5, 1fr);
     gap: 30px;
 }

 .box_footer {
     margin: 40px 0;
     padding: 40px 0;
     background: #97979742;
     border-radius: 30px;
     box-shadow: 1px 5px 20px 4px #00000024;
 }

 .top_anmian {
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 24px;
     gap: 10px;
     margin-bottom: 25px;
 }

 .top_anmian img {
     height: 30px;
 }

 .contact-item {
     color: white;
 }

 .contact-item-icon {
     font-size: 32px;
 }

 .contact-item p {
     font-size: 12px;
     line-height: 1.6;
 }

 .footer-buttons {
     display: flex;
     gap: 20px;
     justify-content: center;
     margin-top: 30px;
 }

 .btn {
     padding: 15px 30px;
     border: none;
     border-radius: 25px;
     cursor: pointer;
     font-size: 14px;
     font-weight: bold;
     transition: all 0.3s;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
 }


 .btn img {
     height: 15px;
 }

 .btn-primary {
     background: #9AE600;
     background: linear-gradient(90deg, rgba(154, 230, 0, 1) 0%, rgba(253, 199, 0, 1) 100%);
     color: #1b5e3f;
 }

 .btn-primary:hover {
     background-color: #fdd835;
 }

 .btn-secondary {
     background-color: #ffffff14;
     color: white;
     border: 2px solid white;
 }

 .btn-secondary:hover {
     background-color: white;
     color: #1b5e3f;
 }

 /* Responsive */
 @media (max-width: 768px) {
     header {
         flex-direction: column;
         gap: 15px;
     }

     nav {
         flex-wrap: wrap;
         justify-content: center;
     }

     .hero {
         flex-direction: column;
     }

     .info-sections {
         grid-template-columns: 1fr;
     }

     .services {
         grid-template-columns: 1fr;
     }

     .animals {
         grid-template-columns: 1fr;
     }

     .contact-info {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 .box_size {
     width: 1280px;
     margin: auto;
 }

 .title_box {
     width: 100%;
     padding: 10px;
     text-align: left;
     display: flex;
     align-items: center;
     justify-content: left;
     background: #4A6741;
     color: white;
     gap: 10px;
 }

 .map_tcv {
     width: 100%;
     height: 500px;
 }

 .map_tcv img {
     width: 100%;
     height: 100%;
 }

 .hotline {
     color: yellow;
 }

 .phone-icon img {
     height: 20px;
 }

 .video_tcv {
     position: relative;
     width: 100%;
     height: 500px;
     padding-bottom: 56.25%;
     /* 16:9 aspect ratio */
     background-color: #000;
     overflow: hidden;
 }

 .video_tcv video {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .video-controls {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
     padding: 20px 15px 15px;
     display: flex;
     gap: 10px;
     opacity: 0;
     transition: opacity 0.3s ease;
     z-index: 10;
 }

 .video_tcv:hover .video-controls {
     opacity: 1;
 }

 .video-controls button {
     background-color: rgba(255, 255, 255, 0.3);
     border: none;
     color: white;
     padding: 8px 12px;
     border-radius: 4px;
     cursor: pointer;
     font-size: 14px;
     transition: background-color 0.2s ease;
 }

 .video-controls button:hover {
     background-color: rgba(255, 255, 255, 0.5);
 }

 .video-controls button.active {
     background-color: rgba(255, 255, 255, 0.8);
     color: #2c3e50;
 }