        /* Banner Container - Full viewport height */
        .ah-banner {
            position: relative;
            width: 100%;
            height: 130vh; 
            overflow: hidden;
        }

        /* Slides Wrapper */
        .ah-banner-slides {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
        }
        /* Individual Slide */
        .ah-banner-slide {
            flex: 0 0 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 2rem 5%;
            position: relative;
            color: #FFFFFF;
            background-size: cover;
            background-position: center;
            opacity: 1;
            transition: opacity 0.8s ease-in-out;
             min-height: 90vh;
        }

        /* Non-active slide styling */
        .ah-banner-slide:not(.active) {
            opacity: 0.8;
        }

        /* Slide Content */
        .ah-banner-content {
            max-width: 600px;
            z-index: 2;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.6s ease-out 0.3s;
            font-family: Arial, sans-serif;
        }

        .ah-banner-slide.active .ah-banner-content {
            transform: translateY(0);
            opacity: 1;
        }

        .ah-banner-content h1, .ah-banner-content strong {
            font-size: 3rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            font-family: Arial, sans-serif;
            display: block;
        }

        .ah-banner-content h1 span {
            color: #FFD600;
        }

        .ah-banner-content p {
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            line-height: 1.6;
        }

        /* CTA Button */
        .ah-cta-button {
            display: inline-flex;
            align-items: center;
            background-color: #00BFA5;
            color: #FFFFFF;
            padding: 1rem 1.75rem;
            border-radius: 30px;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: none;
            cursor: pointer;
            transform: translateY(10px);
            opacity: 0;
            transition: all 0.6s ease-out 0.5s;
        }

        .ah-banner-slide.active .ah-cta-button {
            transform: translateY(0);
            opacity: 1;
        }

        .ah-cta-button svg {
            margin-left: 0.75rem;
            width: 20px;
            height: 20px;
            fill: #FFFFFF;
        }

        .ah-cta-button:hover {
            background-color: #009688;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        /* Slide Image */
        .ah-banner-image {
            position: relative;
            width: 45%;
            z-index: 2;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.7s ease-out 0.4s;
        }

        .ah-banner-slide.active .ah-banner-image {
            transform: translateY(0);
            opacity: 1;
        }

        .ah-banner-image img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: var(--small-radius8);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        /* Decorative Arc */
        .ah-decor-arc {
            position: absolute;
            top: 0;
            right: 0;
            width: 500px;
            height: 500px;
            opacity: 0.8;
            transform: scale(0.9);
            transition: transform 1s ease-out;
        }

        .ah-banner-slide.active .ah-decor-arc {
            transform: scale(1);
        }

        /* Navigation Arrows */
        .ah-banner-arrow {
			display: none;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(5px);
            border: none;
            cursor: pointer;
            z-index: 3;
            padding: 1rem;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .ah-banner-arrow--left {
            left: 2rem;
        }

        .ah-banner-arrow--right {
            right: 2rem;
        }

        .ah-banner-arrow svg {
            width: 32px;
            height: 32px;
            fill: #FFFFFF;
            transition: fill 0.3s;
        }

        .ah-banner-arrow:hover {
            background: rgba(255, 255, 255, 0.4);
            transform: translateY(-50%) scale(1.1);
        }

        .ah-banner-arrow:hover svg {
            fill: #00BFA5;
        }

        /* Dots Navigation */
        .ah-banner-dots {
            position: absolute;
            right: 2rem;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            z-index: 3;
        }

        .ah-banner-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.4s ease;
            transform: scale(0.8);
        }

        .ah-banner-dot.active {
            background: #FFFFFF;
            transform: scale(1.2);
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
        }

        .ah-banner-dot:hover:not(.active) {
            background: rgba(255, 255, 255, 0.8);
            transform: scale(1);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .ah-banner-slide {
                flex-direction: column;
                text-align: center;
                padding: 5rem 2%;
            }

            .ah-banner-content {
                margin-bottom: 3rem;
            }

            .ah-banner-image {
                width: 80%;
            }

            .ah-decor-arc {
                width: 300px;
                height: 300px;
            }

            .ah-banner-dots {
                flex-direction: row;
                right: auto;
                left: 50%;
                top: auto;
                bottom: 2rem;
                transform: translateX(-50%);
                gap: 1rem;
            }
.ah-banner-arrow{
	display: block;
}
            .ah-banner-arrow--left {
                left: 1rem;
            }

            .ah-banner-arrow--right {
                right: 1rem;
            }
        }

        @media (max-width: 576px) {
            .ah-banner-content h1 {
                font-size: 2rem;
            }

            .ah-cta-button {
                padding: 0.8rem 1.5rem;
            }

            .ah-banner-dot {
                width: 8px;
                height: 8px;
            }
        }
/*================Comprehensive R&D Capabilities begin=================*/
        /* Section Title */
        .ah-section-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        .ah-section-header h2 {
            font-size: 2rem;
            color: var(--main-color);
            margin-bottom: 0.5rem;
        }
        .ah-section-header p {
            font-size: 1.25rem;
            color: #555;
        }

        /* Cards Grid */
        .ah-cards-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 4rem; /* Sufficient gap to prevent overlapping */
			margin-bottom:6rem;
        }

        /* Responsive Breakpoints */
        @media (min-width: 768px) {
            .ah-cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (min-width: 992px) {
            .ah-cards-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* Card Component */
        .ah-card {
            background: #fff;
            border-radius: var(--small-radius8);
            overflow: visible; /* Ensure link isn't clipped */
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            position: relative; /* For positioning the link */
			cursor: pointer;
        }
        .ah-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.15);
        }

        .ah-card-image {
            width: 100%;
            height: 180px;
            object-fit: cover;
			 border-radius: var(--small-radius8);
        }

        .ah-card-icon-wrap {
            width: 64px;
            height: 64px;
            margin: -32px auto 1rem; /* Overlap effect */
            background: var(--main-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            transition: background 0.3s ease;
            position: relative;
            z-index: 2;
        }
		 .ah-card-icon-wrap img
		 {
			width:40px;
			height:40px;
		 }
        .ah-card:hover .ah-card-icon-wrap {
            background: #0B6E42;
        }

        .ah-card-icon {
            width: 32px;
            height: 32px;
            fill: #fff;
        }

        .ah-card-content {
            padding: 1.5rem;
            text-align: center;
            padding-bottom: 2.5rem; /* Space for link */
        }

        .ah-card-title {
            font-size: 1.25rem;
            color: #222;
            margin-bottom: 0.75rem;
        }

        .ah-card-desc {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 1.5rem;
        }

        /* Link Style - Ensuring full visibility */
        .ah-card-link {
            position: absolute;
            bottom: -20px; /* Half outside card */
            left: 50%;
            transform: translateX(-50%);
             width: 80%; 
            height: 40px;
            border-radius: 40px;
            background-color: var(--main-ye-green-color);
            /* display: flex;
            align-items: center;
            justify-content: center; */
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 2px 6px rgba(0,0,0,0.15);
            z-index: 3; /* Higher z-index to ensure visibility */
            color:#fff;
            padding:auto 30px;
            text-align: center;
            line-height:40px;
        }

        .ah-card:hover .ah-card-link {
            background-color: #0B6E42;
            transform: translateX(-50%) scale(1.1);
            color:#fff;
        }

        .ah-link-icon {
            width: 16px;
            height: 16px;
            fill: #fff;
        }
		/*================Comprehensive R&D Capabilities end=================*/
		/*================Next-Generation Antibody Discovery begin=================*/
		        /* Main container: responsive flex layout */
				.ah-ngd {
					display: flex;
					width: 100%;
					/* min-height: 100vh; */
					flex-wrap: wrap; /* Wrap for small screens */
				}
		
				/* Left content area */
				.ah-left {
					flex: 1 1 50%; /* Equal width (desktop) */
					background-color:var(--main-color); /* Teal background */
					display: flex;
					align-items: flex-start;
					justify-content: center;
					flex-direction: column;
					padding: 2rem;
					color: #FFFFFF;
					position: relative;
				}
				
				.ah-left > h2 {
					font-size: 2.5rem;
					line-height: 1.2;
          margin-bottom:30px;
				}
				.ah-left > h2 span {
					color: #A6E879; /* Green highlighted text */
				}
			.ah-left {
					flex: 1 1 50%; /* Equal width (desktop) */
					background-color:var(--main-color); /* Teal background */
					display: flex;
					align-items: flex-start;
					justify-content: center;
					flex-direction: column;
					padding: 2rem;
					color: #FFFFFF;
					position: relative;
				}
				/* Right content area */
				.ah-right {
					flex: 1 1 50%; /* Equal width (desktop) */
					position: relative; /* For absolutely positioned button */
					overflow: hidden; /* Crop image overflow */
				}
				.ah-right .fuhao{
					width: 0;
					height: 0;
					border-left: 20px solid var(--main-color); 
					border-right: 20px solid transparent; 
					border-top: 10px solid transparent; 
					border-bottom: 10px solid transparent; 
					position: absolute;
					top:50%;
					left:0;
					z-index: 100;
					/* transform: rotate(90deg); */
				}
				.ah-right img {
					width: 100%;
					height: 100%;
					object-fit: cover; /* Maintain image ratio */
					transition: transform 0.3s ease; /* Mouse interaction: scale transition */
				}
				/* Mouse hover effect: slight image scaling */
				.ah-right:hover img {
					transform: scale(1.05);
				}
		
				/* Button style */
				.ah-learn-more {
					position: absolute;
					bottom: 2rem;
					left: 2rem;
					display: inline-flex;
					align-items: center;
					background-color: var(--main-color);
					color: #FFFFFF;
					font-family: 'Montserrat', sans-serif;
					text-decoration: none;
					padding: 0.75rem 1.5rem;
					border-radius: 25px;
					transition: 
background-color 0.3s ease,
						transform 0.3s ease;
				}
				/* Button hover effect */
				.ah-learn-more:hover {
					background-color: #1A8F74;
					transform: translateY(-2px);
          color: #FFFFFF;
				}
		
				/* SVG arrow icon */
				.ah-arrow {
					width: 16px;
					height: 16px;
					margin-left: 0.5rem;
					fill: #FFFFFF;
					transition: transform 0.3s ease;
				}
				/* Arrow moves right on button hover */
				.ah-learn-more:hover .ah-arrow {
					transform: translateX(5px);
				}
		
				/* 7. Responsive adaptation (layout adjustment for small screens) */
				@media (max-width: 768px) {
					.ah-left, .ah-right {
						flex: 1 1 100%; /* Stack vertically */
					}
					.ah-left {
						align-items: center;
						text-align: center;
						padding: 3rem 1rem;
					}
					.ah-right {
						height: 50vh; /* Limit height */
					}
					.ah-learn-more {
						left: 50%;
						transform: translateX(-50%);
					}
				}
.ah-turnarea{
	position: relative;
  border: 2px solid #ffffff;
  padding: 2rem;
}


.ah-turnarea .dou{
	position: absolute;
	top:-20px;
	left:20px;
	width:60px;
	height:40px;
	background-color: var(--main-color);
	text-align: center;
	z-index: 100;
}
.ah-turnarea .dou img{
  width:36px;
  height:33px;
}


				  /* Carousel container style */
				  .ah-carousel {
            position: relative;
            max-width: 800px;
            /* margin: 0 auto; */
            /* border: 2px solid #ffffff; */
            color: #ffffff;
             overflow: hidden; 
          }
		
				/* Carousel item container (sliding container) */
				.ah-carousel-slides {
					display: flex;
					flex-direction: column;
					transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
					
				}
        .ah-carousel-slides h2 a{
          color:#fff;
        }
        .ah-carousel-slides h2:hover a{
          color:var(--main-link-hover-color);
        }
		
				/* Individual carousel item */
				.ah-carousel-slide {
					
					flex-shrink: 0;
					width: 100%;
          padding:30px 50px 30px 0px;
					
				}
		
				.ah-carousel-slide h2 {
				
					font-size: 1.3rem;
					margin-bottom: 1rem;
				}
		
				.ah-carousel-slide p {
					font-size: 1rem;
					line-height: 1.6;
				}
		
				/* Dot navigation container */
				.ah-carousel-dots {
					position: absolute;
					right: 0.5rem;
					top: 50%;
					transform: translateY(-50%);
					display: flex;
					flex-direction: column;
					gap: 0.5rem;
				}
		
				/* Dot style (SVG background) */
				.ah-carousel-dot {
					width: 12px;
					height: 12px;
					cursor: pointer;
					background-color:rgba(255,255,255,0.8);
					border-radius: 12px;
				  
					transition: background 0.3s ease;
				}
		
				.ah-carousel-dot.active {
					background-color: #fff;
				}
				/*================Next-Generation Antibody Discovery end=================*/
/*================Product Portfolio begin=================*/
.ah-pp-bg{
  background-color: var(--bg-green-light-color);
  display: block;
  padding:6rem auto;
}

.syms-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

.syms-title {
  font-size: 2.2rem;
  margin-bottom: 15px;
  font-weight: 600;
}
.syms-title span{
  color:var(--main-color);
}

.syms-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Carousel container styles */
.ther-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}

/* Carousel images container styles - showing space for three images */
.ther-carousel-images {
  display: flex;
  overflow: visible;
  width: 100%;
  max-width: 750px;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Carousel item container */
.ther-carousel-item {
  flex: 0 0 auto;
  transition: all 0.5s ease;
  max-width:70%;
  height: auto;
  opacity: 0;
  position: absolute;
  transform: scale(0.8);
  pointer-events: none;
  z-index: 10;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  padding:35px 25px;
  text-align: center;
  box-shadow: 1px 0 20px rgb(0 0 0 / 10%);
}
.ther-carousel-item p{
  min-height:150px;
}

/* Carousel image styles */
.ther-carousel-img {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;  
  background: linear-gradient(to top, #bcebe8, #fff);
  border-radius: 10px;
  padding:20px;
}

.ther-carousel-img img{
  max-width:300px;
  height:100%;
  object-fit: contain;
}

.ther-carousel-item a {
  background-color: var(--main-color);
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 24px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
}

.ther-carousel-item a:hover {
  background-color: #249d66;
}

/* Active item style (currently displayed item) */
.ther-carousel-item.active {
  opacity: 1;
  position: relative;
  transform: scale(1);
  pointer-events: auto;
}

/* Previous item preview (left side) */
.ther-carousel-item.prev {
  opacity: 0.6;
  left: 0;
  transform: translateX(-70%) scale(0.8);
  pointer-events: auto;
  z-index: 0;
}

/* Next item preview (right side) */
.ther-carousel-item.next {
  opacity: 0.6;
  right: 0;
  transform: translateX(70%) scale(0.8);
  pointer-events: auto;
  z-index: 0;
}

/* Event data attributes - hidden from view */
.event-data {
  display: none;
}

/* Carousel button styles */
.ther-carousel-btn {
  background-color: #00bcd4;
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 1.5rem;
  cursor: pointer;
  margin: 0 10px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

/* Button hover effect */
.ther-carousel-btn:hover {
  background-color: #0097a7;
}

/* Event information container styles */
.ther-event-info {
  max-width: 600px;
  margin: 0 auto;
}

/* Event date styles */
.ther-event-date {
  display: block;
  font-weight: bold;
  margin: 2rem auto;
  color: #545454;
  font-size: 1.5rem;
}
.ther-event-info img{
width:30px;
height:30px;
margin-right:10px;

}

/* Event text description styles */
.ther-event-text {
  font-size: 2rem;
  color: #333;
}

/* Responsive styles for tablet devices */
@media (max-width: 768px) {
  .ther-events-title {
      font-size: 1.5rem;
  }
  .ther-carousel-btn {
      width: 35px;
      height: 35px;
      font-size: 1.2rem;
  }
  .ther-carousel-item.prev {
      transform: translateX(-60%) scale(0.7);
  }
  .ther-carousel-item.next {
      transform: translateX(60%) scale(0.7);
  }
}

/* Responsive styles for mobile devices */
@media (max-width: 480px) {
  .ther-events-title {
      font-size: 1.2rem;
  }
  .ther-events-desc {
      font-size: 0.9rem;
  }
  .ther-carousel-btn {
      width: 30px;
      height: 30px;
      font-size: 1rem;
      margin: 0 5px;
  }
  .ther-event-date {
      font-size: 0.9rem;
  }
  .ther-event-text {
      font-size: 0.9rem;
  }
  .ther-carousel-item.prev,
  .ther-carousel-item.next {
      opacity: 0.4;
      transform: scale(0.6);
  }
  .ther-carousel-item.prev {
      transform: translateX(-40%) scale(0.6);
  }
  .ther-carousel-item.next {
      transform: translateX(40%) scale(0.6);
  }
}
/*================Product Portfolio end=================*/
		/*================Experience, Innovation begin=================*/		
    /* Top section: title and contact button */
    .ah-header-section {
		padding: 40px 0;
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		flex-wrap: wrap;
		gap: 20px;
	  }
  
	  /* Title style */
	  .ah-main-title {
		font-size: 2rem;
		color: var(--main-color);
		line-height: 1.2;
		flex: 1;
		min-width: 300px;
	  }
  .ah-main-title span{color:#000;}
	  /* Contact button - aligned with container edges */
	  .ah-contact-btn {
		padding: 12px 28px;
		background-color: var(--main-color);
		color: #fff;
		text-decoration: none;
		border-radius: 25px;
		transition: background-color 0.3s ease;
		font-family: 'Chivo', sans-serif;
		white-space: nowrap;
		align-self: center;
	  }
  
	  .ah-contact-btn:hover {
		background-color: #218838;
		transform: translateY(-2px);
		box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    color: #fff;
	  }
  
	  /* Content section: features and image */
	  .ah-content-section {
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-wrap: wrap;
		/* margin-bottom: 40px; */
	  }
  
	  /* Features list area */
	  .ah-features-container {
		flex: 1;
		margin-right: 5%;
		min-width: 300px;
	  }
  
	  /* Feature module - hover effect with CSS */
	  .ah-feature {
		display: flex;
		align-items: center;
		margin: 10px auto !important;
		padding: 20px auto !important; 
		border-bottom: 1px solid #eee;
		transition: all 0.3s ease;
		cursor: pointer;
		min-height:130px;
	  }
  
	  .ah-feature:last-child {
		border-bottom: none;
	  }
  
	  /* CSS hover interaction effect */
	  .ah-feature:hover {
		transform: scale(1.02);
		box-shadow: 0 6px 18px rgba(0,0,0,0.1);
		padding-left: 8px;
	  }
  
	  /* Icon background container */
	  .ah-icon-bg {
		width: 70px;
		height: 70px;
		border-radius: 50%;
		background-color: var(--main-color);
		display: flex;
		align-items: center;
		justify-content: center;
		margin-right: 24px;
		flex-shrink: 0;
		transition: transform 0.3s ease;
	  }
	  .ah-icon-bg-2{
		background-color: var(--main-ye-green-color) !important;
	  }

  
	  /* Icon hover effect */
	  .ah-feature:hover .ah-icon-bg {
		transform: scale(1.1);
	  }
  
	  /* SVG icon style - white */
	  .ah-feature img {
		width: 42px;
		height: 42px;
	  }
  
	  /* Feature title */
	  .ah-feature h3 {
		font-size: 1.25rem;
		color: var(--main-color);
		margin-bottom: 8px;
		transition: color 0.3s ease;
	  }
  
	  .ah-feature:hover h3 {
		color: #1e7e34;
	  }
  
	  /* Feature description */
	  .ah-feature p {
		font-size: 0.95rem;
		color: #666;
		transition: color 0.3s ease;
	  }
  
	  .ah-feature:hover p {
		color: #333;
	  }
  
	  /* Image area */
	  .ah-image-section {
		flex: 0 0 420px;
		text-align: center;
		margin-top: 30px;
		transition: transform 0.5s ease;
	  }
  
	  .ah-image-section:hover {
		transform: translateY(-5px);
	  }
  
	  @media (max-width: 768px) {
		.ah-image-section {
		  flex: 0 0 100%;
		  margin-bottom: 20px;
		}
	  }
  
	  .ah-animal-img {
		max-width: 100%;
		height: auto;
		/* box-shadow: 0 4px 12px rgba(0,0,0,0.1); */
		
		
	  }
  

  
	  /* Responsive adaptation - mobile devices */
	  @media (max-width: 768px) {
		.ah-content-section {
		  flex-direction: column-reverse; /* Image on top, content below */
		}
		
		.ah-features-container {
		  margin-right: 0;
		}
		
		.ah-header-section {
		  flex-direction: column;
		  align-items: flex-start;
		}
	  }
	  /*================Experience, Innovation end=================*/
/*================Advance Pet begin=================*/
	  /* Hero Section Container */
.ah-hero-section {
	width: 100%;
	min-height: 83vh;
	background:url('../images/advance-pet.png') ;
	background-color: var(--bg-green-light-color);
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem 1rem;
	position: relative;
  }
  
  /* Decorative SVG Shape (Left Side) */
  .ah-hero-section::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 80px;
	height: 160px;
	background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 160"><path d="M40 0C18 0 0 18 0 40c0 22 18 40 40 40s40-18 40-40C80 18 62 0 40 0zm0 60c-11 0-20-9-20-20s9-20 20-20 20 9 20 20-9 20-20 20z" fill="%23E0F2F1"/></svg>') no-repeat;
	background-size: contain;
  }
  
  /* Content Wrapper */
  .ah-hero-content {
	max-width: 1200px;
	width: 100%;
	text-align: center;
	position: relative; /* Stack above decorative shape */
	z-index: 1;
  }
  
  /* Title Style */
  .ah-hero-content h2 {
	font-size: 2.8rem;
	line-height: 1.2;
	color: #FFFFFF;
	margin-bottom: 1.5rem;
  }
  .ah-hero-content h2 span {
	color: var(--main-ye-green-color) ; /* Accent color for "Together" */
  }
  
  /* Description Text */
  .ah-hero-content p {
	font-size: 1.1rem;
	color: #FFFFFF;
	max-width: 800px;
	margin: 0 auto 2rem auto;
	line-height: 1.6;
  }
  
  /* Call-to-Action Button */
  .ah-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.8rem 1.6rem;
	background-color: var(--main-ye-green-color);
	color: #FFFFFF;
	text-decoration: none;
	border-radius: 28px;
	transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  /* Button Hover Effect */
  .ah-cta-btn:hover {
	background-color: #8BC34A;
	transform: translateY(-2px);
  color: #FFFFFF;
  }
  
  /* Arrow Icon (Inline SVG) */
  .ah-cta-btn svg {
	width: 16px;
	height: 16px;
	fill: #FFFFFF;
  }
  
  /* Responsive Breakpoints */
  /* Tablet */
  @media (max-width: 768px) {
	.ah-hero-content h1 {
	  font-size: 2.2rem;
	}
	.ah-hero-content p {
	  font-size: 1rem;
	}
	.ah-cta-btn {
	  padding: 0.7rem 1.4rem;
	}
  }
  
  /* Mobile */
  @media (max-width: 480px) {
	.ah-hero-section {
	  min-height: 80vh;
	}
	.ah-hero-content h1 {
	  font-size: 1.8rem;
	}
	.ah-hero-content p {
	  font-size: 0.95rem;
	}
	.ah-cta-btn {
	  padding: 0.6rem 1.2rem;
	  font-size: 0.9rem;
	}
  }
  /*================Advance Pet end=================*/

  

  /* .row {
    --per-gap: 0.5em;
    display: flex;
    flex-wrap: wrap;
    margin-top: 1em;
    margin-bottom: 1em;
    gap: calc(var(--per-gap) * 2);
  }
  @media (min-width: 576px) {
    .container-sm,
    .container {
      max-width: 540px;
    }
  }
  @media (min-width: 768px) {
    .container-md,
    .container-sm,
    .container {
      max-width: 720px;
    }
  }
  @media (min-width: 992px) {
    .container-lg,
    .container-md,
    .container-sm,
    .container {
      max-width: 960px;
    }
  }
  @media (min-width: 1200px) {
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
      max-width: 1100px;
    }
  }
  @media (min-width: 1300px) {
    .container-xxl,
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
      max-width: 1200px;
    }
  }
  @media (min-width: 1400px) {
    .container-xxl,
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
      max-width: 1300px;
    }
  }
  @media (min-width: 1500px) {
    .container-xxl,
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
      max-width: 1400px;
    }
  } */
   
  .pro-carousel {
    position: relative;
  }
  .pro-carousel .operate {
    position: absolute;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2em;
    aspect-ratio: 1;
    cursor: pointer;
    background-color: rgba(131, 171, 41, 0.5);
    color: #fff;
    border-radius: 5em;
    transition: all ease-in-out 0.2s;
    top: 38%;
  }
  .pro-carousel .operate:hover {
    background-color: rgba(201, 188, 18, 0.8);
  }
  .pro-carousel .operate.left {
    left: 0;
  }
  .pro-carousel .operate.right {
    right: 0;
  }
  .pro-carousel .scrolling-oprate {
    position: absolute;
    bottom: 0;
    left: 48%;
    z-index: 10;
  }
  .pro-carousel .scrolling-oprate > li {
    display: inline-flex;
    border-radius: 100px;
    width: 0.6em;
    height: 0.6em;
    border: 1px solid rgba(21, 21, 21, 0.5);
    margin: 0.6em;
    transition: all ease-in-out 0.6s;
    cursor: pointer;
    justify-content: center;
    align-items: center;
  }
  .pro-carousel .scrolling-oprate > li::before {
    position: absolute;
    content: "";
    width: 1.2em;
    aspect-ratio: 1;
  }
  .pro-carousel .scrolling-oprate > li:hover {
    border: 1px solid var(--main-color);
    background-color: var(--main-color);
  }
  .pro-carousel .scrolling-oprate > li.active {
    border: 1px solid var(--main-color);
    background-color: var(--main-color);
    width: 1.6em;
  }
  .pro-carousel .scrolling-content {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  .pro-carousel .scrolling-content .scrolling-view {
    position: relative;
    display: flex;
    width: 300000px;
  }
  .pro-carousel[model-3d] {
    padding: 1em 0;
  }
  .pro-carousel[model-3d] .scrolling-content {
    perspective: 200px;
  }
  .pro-carousel[model-3d] .scrolling-content .scrolling-view {
    transform-style: preserve-3d;
    display: flex;
    width: 100%;
  }
  /* .pro-carousel .scrolling-content .scrolling-view > * {
    min-width: 100%;
  } */
  @media screen and (max-width: 768px) {
    .header-event {
      display: none;
    }
  }
  .pro-carousel[model-3d] .item {
    transition: all ease-in-out 0.2s;
    flex-shrink: initial;
    /* transform: translateZ(-100em); */
  }
  @media screen and (min-width: 769px) {
    .pro-carousel[model-3d] {
      padding: 1em 0;
    }
    .pro-carousel[model-3d] .scrolling-content {
      perspective: 50px;
    }
    .pro-carousel[model-3d] .scrolling-content .scrolling-view {
      transform-style: preserve-3d;
      display: flex;
      width: 100%;
    }
    .pro-carousel[model-3d] .item {
      transition: all ease-in-out 0.2s;
      flex-shrink: initial;
      min-width: auto;
      /* transform: translateZ(-100em); */
    }
    .pro-carousel[model-3d] .item.active {
      transform: translateZ(0);
    }
    .pro-carousel[model-3d] .item:has(+ *.active) {
      transform: translate3d(50%, 0, -1em);
    }
    .pro-carousel[model-3d] .item:has(+ * + *.active) {
      transform: translate3d(100%, 0, -2em);
    }
    .pro-carousel[model-3d] .item:has(+ * + * + *.active) {
      transform: translate3d(50%, 0, -4em);
      opacity: 0;
    }
    .pro-carousel[model-3d] .item.active + * {
      transform: translate3d(-50%, 0, -1em);
    }
    .pro-carousel[model-3d] .item.active + * + * {
      transform: translate3d(-100%, 0, -2em);
    }
    .pro-carousel[model-3d] .item.active + * + * + * {
      transform: translate3d(-80%, 0, -4em);
      opacity: 0;
    }
    .pro-carousel[model-3d] .scrolling-oprate {
      position: relative;
      left: auto;
      width: -moz-max-content;
      width: max-content;
      margin: 1em auto;
    }
  }

  
  /* .pro-carousel[model-3d] .item.active {
    transform: translateZ(0);
  }
  .pro-carousel[model-3d] .item:has(+ *.active) {
    transform: translate3d(50%, 0, -0.5em);
  }
  .pro-carousel[model-3d] .item:has(+ * + *.active) {
    transform: translate3d(100%, 0, -1em);
  }
  .pro-carousel[model-3d] .item:has(+ * + * + *.active) {
    transform: translate3d(50%, 0, -2em);
    opacity: 0;
  }
  .pro-carousel[model-3d] .item.active + * {
    transform: translate3d(-50%, 0, -0.5em);
  }
  .pro-carousel[model-3d] .item.active + * + * {
    transform: translate3d(-100%, 0, -1em);
  }
  .pro-carousel[model-3d] .item.active + * + * + * {
    transform: translate3d(-80%, 0, -2em);
    opacity: 0;
  }
  .pro-carousel[model-3d] .scrolling-oprate {
    position: relative;
    left: auto;
    width: -moz-max-content;
    width: max-content;
    margin: 1em auto;
  }
   */
  
  .new-style13 {
    position: relative;
    margin:0px;
    padding:0px;
  }
  .new-style13 > li {
  position: relative;
      padding: 3em 2em;  
     background: #fff; 
    border-radius: var(--small-radius8); 
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    font-weight: bold;
    max-width: 33em;
    width: 33em;
    min-width: 33em;
     box-shadow: 1px 0 20px rgba(0, 0, 0, 0.1); 
    text-align: center;
  }
  @media screen and (min-width: 769px) {
    .new-style13 > li {
      min-width: 33rem !important;
    }
  }
  .new-style13 > li img {
    aspect-ratio: 1;
    border-radius: 4em;
    margin-bottom: 1em;
  }
  .new-style13 > li > * {
    position: relative;
    z-index: 10;
  }
  /* .new-style13 > li::before {
    position: absolute;
    content: "";
    width: calc(100% - 2em);
    height: calc(100% - 2em);
    left: 1em;
    top: 1em;
    border: 1px dashed rgba(21, 21, 21, 0.2);
    border-radius: 2px;
    z-index: 1;
  } */
  
  