@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Varela+Round&display=swap');

* {
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:"Varela Round",serif;
}
html,body {
    background-color:#ffffff;
    display:flex;
    flex-direction:column;
}
/*header*/
header {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px;
    background-color:#753BBD;
    color:white;
    position:sticky;
    top:0;
    z-index:1000;
}
.logo {
    font-size:1.5rem;
    padding-left:20px;
    animation:ease;
}
.logo img {
    width:140px;
    margin-top:10px;
    transition:transform 3s ease-out forward;
}
@keyframes transform {
    0% {
    left:-100%;
}
100% {
    left:0;
}
}/* Navbar */
nav {
    display:flex;
    justify-content:space-between;
    align-items:center;
    background-color:#753BBD;
    padding:15px 40px;
}
/* When navbar is active (scroll down or interact) */
nav.active {
    background-color:#9c27b0;
}
/* Navbar links */
.nav-links {
    list-style:none;
    display:flex;
    gap:2px;
}
.nav-links li a {
    color:white;
    text-decoration:none;
    padding:8px 16px;
}
/* Hover effect for links */
.nav-links li a:hover {
    background-color:#fff34fcf;
    border-radius:20px;
}
/* Sidebar styles */
.sidebar {
    height:100%;
    width:250px;
    position:fixed;
    top:0;
    left:0;
    background-color:#753BBD;
    overflow-x:hidden;
    transition:0.5s;
    padding-top:60px;
    z-index:1000;
}
.sidebar a {
    padding:8px 8px 8px 32px;
    text-decoration:none;
    font-size:25px;
    color:white;
    display:block;
    transition:0.3s;
}
/* Hover effect for sidebar links */
.sidebar a:hover {
    background-color:#753BBD;
    border-radius:20px;
}
.sidebar .closebtn {
    position:absolute;
    top:0;
    right:25px;
    font-size:36px;
    margin-left:50px;
}
#sidebarBtn {
    font-size:30px;
    cursor:pointer;
    color:white;
}
#sidebarBtn {
    display:none;
}
.content {
    margin-left:260px;
    padding:20px;
}
/* Mobile screens (max-width:480px) */
@media screen and (max-width:480px) {
    .sidebar {
    width:0;
    position:fixed;
}
.content {
    margin-left:0;
}
nav {
    display:none;
}
#sidebarBtn {
    display:block;
}
.sidebar a {
    font-size:18px;
    line-height:40px;
}
.logo img {
    width:100px;
    margin-top:10px;
    transition:transform 0.3s ease-in-out;
}
}/* Tablets (min-width:481px and max-width:768px) */
@media screen and (min-width:481px) and (max-width:768px) {
    .sidebar {
    width:0;
    position:fixed;
}
.content {
    margin-left:0;
}
nav {
    display:none;
}
#sidebarBtn {
    display:block;
}
.sidebar a {
    font-size:20px;
    line-height:40px;
}
}/* Laptops and Small Desktops (min-width:769px and max-width:1024px) */
@media screen and (min-width:769px) and (max-width:1024px) {
    .sidebar {
    display:none;
}
.content {
    margin-left:260px;
}
nav {
    display:flex;
}
#sidebarBtn {
    display:none;
}
}/* Large Screens and Desktops (min-width:1025px) */
@media screen and (min-width:1025px) {
    .sidebar {
    display:none;
}
.content {
    margin-left:260px;
}
nav {
    display:flex;
}
#sidebarBtn {
    display:none;
}
}/* Slider Container */
.slider-container {
    position:relative;
    width:100%;
    height:85vh;
    margin:0 auto;
    overflow:hidden;
    box-shadow:0 10px 20px rgba(0,0,0,0.3);
}
/* Slides Wrapper */
.slides {
    display:flex;
    transition:transform 0.8s ease-in-out;
}
/* Individual Slide */
.slide {
    min-width:100%;
    height:615px;
    box-sizing:border-box;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#ffffff;
    font-weight:900;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}
/* Example background for default slide (can override per slide in HTML) */
.slide:first-child {
    background-image:url('slider_img/slide1.jpg');
}
/* Arrows */
.arrow {
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background-color:rgba(230,217,217,0.5);
    color:#fff;
    border:none;
    border-radius:50%;
    width:50px;
    height:50px;
    display:flex;
    justify-content:center;
    align-items:center;
    cursor:pointer;
    z-index:10;
    font-size:20px;
    transition:all 0.3s ease-in-out;
    box-shadow:0 4px 6px rgba(0,0,0,0.2);
    opacity:1;
}
/* Left Arrow Position */
.arrow.left-arrow {
    left:15px;
}
/* Right Arrow Position */
.arrow.right-arrow {
    right:15px;
}
/* Arrow Hover Effect */
.arrow:hover {
    background-color:rgba(142,46,238,0.8);
    transform:translateY(-50%) scale(1.1);
}
/* Disappear Effect when scrolling up */
.arrow.hide {
    opacity:0;
    transform:translateY(-50%) scale(0.8);
    transition:opacity 0.5s ease-out,transform 0.5s ease-out;
}
/* Responsive Adjustments */
@media (max-width:768px) {
    .arrow {
    width:40px;
    height:40px;
    font-size:18px;
}
.arrow.left-arrow {
    left:10px;
}
.arrow.right-arrow {
    right:10px;
}

}
/* Individual Slide Styling */
.slide {
    max-width:100%;
    height:85vh;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    background-size:cover;
    background-position:center;
    transition:opacity 3s ease;
    background-repeat:no-repeat;
}
.slide h2{
    font-size: 34px;
}
.hero {
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:20px;
    height:85vh;
}
.hero h1 {
    font-size:34px;
    color:#ffffff;
    font-weight:1200;
}
.hero p {
    margin-top: 16px;
    text-align:center;
    color:#ffffff;
    font-weight:200;
    font-size:20px;
}
/* About Section */
.about-section {
    margin-top:50px;
    margin-bottom:50px;
    display:flex;
    flex-wrap:wrap;
    width:100%;
    max-width:1400px;
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    gap:20px;
    justify-content:space-between;
    align-items:center;
    padding:40px;
    box-shadow:0 4px 10px rgba(0,0,0,0.1);
}
/* Image Slider */
.image-slider {
    flex:1;
    max-width:500px;
    min-width:100px;
    position:relative;
    overflow:hidden;
    border-radius:10px;
    box-shadow:0 4px 8px rgba(0,0,0,0.1);
}
.image-container {
    display:flex;
    width:100%;
    animation:slide 9s infinite;
}
.image-container img {
    width:100%;
    object-fit:cover;
    border-radius:10px;
}
/* Content Section */
.about-content {
    flex:1;
    max-width:600px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    text-align:left;
    gap:20px;
}
.about-content h1 {
    font-size:32px;
    color:#753BBD;
}
.about-content p {
    font-size:17px;
    color:#333;
    line-height:1.8;
    text-align:justify;
}
.know-more-btn {
    align-self:start;
    padding:12px 24px;
    font-size:1rem;
    color:#fff;
    background:#753BBD;
    border:none;
    border-radius:5px;
    cursor:pointer;
    transition:background 0.3s ease;
}
.know-more-btn:hover {
    background:#5a2d92;
}
/* Keyframe Animations */
@keyframes slide {
    0%,33.33% {
    transform:translateX(0);
}
33.34%,66.66% {
    transform:translateX(-100%);
}
66.67%,100% {
    transform:translateX(-200%);
}
}/* For laptops (1024px and below) */
@media (max-width:1024px) {
    .about-section {
    padding:20px;
    gap:30px;
}
.about-content h1 {
    font-size:32px;
}
.about-content p {
    font-size:0.95rem;
}
.know-more-btn {
    font-size:0.95rem;
    padding:10px 20px;
}
}/* For tablets (768px and below) */
@media (max-width:768px) {
    .about-section {
    flex-direction:column;
    align-items:center;
    text-align:center;
}
.about-content h1 {
    font-size:1.8rem;
}
.about-content p {
    font-size:0.9rem;
}
.know-more-btn {
    font-size:0.9rem;
}
}/* For mobile devices (480px and below) */
@media (max-width:480px) {
    .about-section {
    padding:15px;
    gap:15px;
}
.about-content h1 {
    font-size:1.5rem;
}
.about-content p {
    font-size:0.85rem;
}
.know-more-btn {
    font-size:0.85rem;
    padding:8px 16px;
}
.image-slider {
    max-width:90%;
    min-height:150px;
}
}/* For very small devices (320px and below) */
@media (max-width:320px) {
    .about-content h1 {
    font-size:1.3rem;
}
.about-content p {
    font-size:0.8rem;
}
.know-more-btn {
    font-size:0.8rem;
    padding:6px 12px;
}
.image-slider {
    min-height:120px;
}
}/* Container Styles with Transitions */
.custom-slider-container {
    position:relative;
    max-width:550px;
    height:400px;
    margin:40px auto;
    overflow:hidden;
    border-radius:50px;
    background:linear-gradient(135deg,#ffffff,#f0f0f0);
    box-shadow:0 15px 25px rgba(0,0,0,0.2);
    transition:transform 0.8s ease,box-shadow 0.8s ease,background 0.8s ease;
}
.custom-slider-container:hover {
    transform:scale(1.03);
    box-shadow:0 20px 40px rgba(114,34,157,0.5);
    background:linear-gradient(135deg,#e3d7ff,#f0f0f0);
}
/* Container Background Animation */
.custom-slider-container::before {
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:radial-gradient(circle,rgba(114,34,157,0.1),transparent);
    z-index:-1;
    animation:backgroundPulse 6s infinite alternate;
}
@keyframes backgroundPulse {
    0% {
    background:radial-gradient(circle,rgba(114,34,157,0.1),transparent);
}
100% {
    background:radial-gradient(circle,rgba(114,34,157,0.3),transparent);
}
}/* Heading Glow Effect */
.custom-icon-slider h2 {
    text-align:center;
    padding-top:50px;
    color:#753BBD;
    letter-spacing:2px;
}
/* Slide Styles */
.custom-slides {
    display:flex;
    transition:transform 1s cubic-bezier(0.68,-0.55,0.27,1.55);
}
.custom-slide {
    min-width:100%;
    box-sizing:border-box;
    padding:50px 30px;
    text-align:center;
    color:#444;
    background:radial-gradient(circle,#ffffff 60%,#f9f9f9);
    border-radius:15px;
    transform:scale(1.02);
    transition:transform 2.5s ease,box-shadow 0.6s ease,background 0.6s ease;
}
.custom-slide:hover {
    transform:scale(1.08);
    /* Slight zoom on hover */
  background:radial-gradient(circle,#f8f8ff 60%,#eaeaff);
}
/* Icon Glitter Effect */
.custom-slide img {
    height:50%;
    transition:transform 0.5s ease,filter 0.5s ease;
    animation:glitterEffect 3s infinite;
}
.custom-slide img:hover {
    transform:rotate(10deg) scale(1.1);
  filter:brightness(1.2) drop-shadow(0 0 10px rgba(114,34,157,0.6));
}
@keyframes glitterEffect {
    0%,100% {
    filter:brightness(1) drop-shadow(0 0 5px rgba(255,255,255,0.7));
}
50% {
    filter:brightness(1.2) drop-shadow(0 0 10px rgba(255,255,255,1));
}
}/* Mobile (up to 480px) */
@media (max-width:480px) {
    .custom-icon-slider h2 {
    text-align:center;
    padding-top:50px;
    color:#753BBD;
    font-size:1rem;
}
}/* Tablet (481px to 768px) */
@media (min-width:481px) and (max-width:768px) {
    .custom-icon-slider h2 {
    text-align:center;
    color:#753BBD;
    font-size:1.8rem;
    letter-spacing:2px;
}
}/* Laptop (769px to 1024px) */
@media (min-width:769px) and (max-width:1024px) {
    .custom-icon-slider h2 {
    text-align:center;
    color:#753BBD;
    font-size:2.4rem;
    letter-spacing:2px;
}
}/* Desktop (1025px and above) */
@media (min-width:1025px) {
    .custom-icon-slider h2 {
    text-align:center;
    color:#753BBD;
    font-size:32px;
    letter-spacing:2px;
}
}/* Dots */
.custom-slider-dots {
    position:absolute;
    bottom:20px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:12px;
}
.custom-dot {
    height:12px;
    width:12px;
    background:#ccc;
    border:2px solid #fff;
    border-radius:50%;
    cursor:pointer;
    transition:transform 0.3s ease,background-color 0.3s ease;
    box-shadow:0 2px 4px rgba(0,0,0,0.2);
}
.custom-dot:hover {
    transform:scale(1.2);
}
.custom-dot.active {
    background-color:#72229D;
    transform:scale(1.4);
    box-shadow:0 4px 8px rgba(114,34,157,0.4);
}
/* features */

.feature-content {
    display:flex;
    align-items:center;
    justify-content:center;
    background-color:#E6D4BE;
}
.feature-image {
    flex:1;
    padding-right:35px;
}
.feature-image img {
    max-width:100%;
    height:auto;
}
.feature-text {
    flex:1;
    text-align:justify;
}
.feature-text h1 {
    font-size:32px;
}
.feature-text p {
    font-size:1.10rem;
    line-height:1.8;
    text-align:justify;
}
@media (max-width:768px) {
    .feature-content {
    flex-direction:column-reverse;
    align-items:center;
}
.feature-image {
    padding-right:0;
    padding-bottom:20px;
}
.feature-text h1 {
    font-size:2rem;
}
.feature-text p {
    font-size:0.8rem;
}
}.mialyn-features-section {
    padding:50px 20px;
    background:#ffffff;
    /* White background */
  text-align:center;
    color:#333;
    position:relative;
    height:70vh;
    overflow:hidden;
    animation:containerFloat 5s infinite ease-in-out;
}
/* Floating container effect */
@keyframes containerFloat {
    0% {
    transform:translateY(0);
}
50% {
    transform:translateY(-10px);
}
100% {
    transform:translateY(0);
}
}/* Animated Background Gradient for the Section */
.mialyn-features-section::before {
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:200%;
    height:200%;
    background:radial-gradient(circle,rgba(130,50,180,0.1),rgba(255,255,255,0.02));
    animation:sectionGradient 6s infinite alternate;
    z-index:-1;
}
@keyframes sectionGradient {
    0% {
    transform:scale(1);
    background:radial-gradient(circle,rgba(130,50,180,0.1),rgba(255,255,255,0.02));
}
100% {
    transform:scale(1.5);
    background:radial-gradient(circle,rgba(150,75,200,0.1),rgba(255,255,255,0.02));
}
}/* Heading with milder glow */
.mialyn-features-section h2 {
    font-size:32px;
    color:#753BBD;
    margin-bottom:30px;
}
/* Features container */
.mialyn-features-list {
    max-width:1200px;
    margin:0 auto;
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    gap:20px;
    animation:featuresFloat 8s infinite alternate;
}
@keyframes featuresFloat {
    0%,100% {
    transform:translateX(0);
}
50% {
    transform:translateX(-10px);
}
}/* Individual feature cards with color variations */
.mialyn-feature {
    background:linear-gradient(145deg,#ffffff,#f3f3f3);
    padding:20px;
    border-radius:15px;
    box-shadow:0 2px 5px rgba(0,0,0,0.1),0 0 10px rgba(83,3,99,0.1);
    flex:1 1 calc(33.333% - 40px);
    min-width:250px;
    transition:transform 0.6s ease,box-shadow 0.6s ease,background 0.6s ease;
    position:relative;
}
/* Alternate colors for cards */
.mialyn-feature:nth-child(odd) {
    background:linear-gradient(145deg,#f5f1ff,#ffffff);
}
.mialyn-feature:nth-child(even) {
    background:linear-gradient(145deg,#efe6ff,#ffffff);
}
.mialyn-feature:hover h3 {
    text-shadow:0 4px 8px rgba(185,4,221,0.144),0 0 12px rgba(83,3,99,0.6);
    text-align:center;
}
/* Scroll-based Slide-up Effect for Features */
.mialyn-feature {
    opacity:0;
    transform:translateY(50px);
}
/* Scroll-based Slide-up Effect when in view */
.mialyn-feature.visible {
    opacity:1;
    transform:translateY(0);
    transition:opacity 1s ease-out,transform 1s ease-out;
}
.mialyn-feature h3 {
    font-size:20px;
    color:#753BBD;
}
/* Mobile (up to 480px) */
@media (max-width:480px) {
    .mialyn-features-section {
    padding:30px 15px;
    /* Reduced padding */
    height:auto;
}
.mialyn-features-section h2 {
    font-size:1.2rem;
}
/* Features container adjustment for smaller screens */
  .mialyn-features-list {
    flex-direction:column;
    gap:10px;
}
/* Adjust individual feature cards */
  .mialyn-feature {
    flex:1 1 100%;
    margin-bottom:20px;
}
/* Adjust font size for feature headings */
  .mialyn-feature h3 {
    font-size:20px;
    color:#753BBD;
    margin-bottom:10px;
}
/* Adjust paragraph size */
  .mialyn-feature p {
    font-size:14px;
    text-align:justify;
}
}/* Tablet (481px to 768px) */
@media (min-width:481px) and (max-width:768px) {
    .mialyn-features-section {
    padding:40px 20px;
    height:auto;
}
.mialyn-features-section h2 {
    font-size:26px;
}
.mialyn-features-list {
    flex-direction:column;
    gap:15px;
}
.mialyn-feature {
    flex:1 1 100%;
    margin-bottom:20px;
}
.mialyn-feature h3 {
    font-size:22px;
    margin-bottom:10px;
}
.mialyn-feature p {
    font-size:15px;
    text-align:justify;
}
}/* Laptop (769px to 1024px) */
@media (min-width:768px) and (max-width:1024px) {
    .mialyn-features-section {
    padding:50px 30px;
    height:650px;
}
.mialyn-features-section h2 {
    font-size:28px;
}
.mialyn-features-list {
    flex-direction:row;
    gap:20px;
}
.mialyn-feature {
    flex:1 1 calc(50% - 20px);
    /* Two columns */
    margin-bottom:30px;
}
.mialyn-feature h3 {
    font-size:24px;
    margin-bottom:10px;
}
.mialyn-feature p {
    font-size:16px;
    text-align:justify;
}
}@media (min-width:825px) and (max-width:900px) {
    .mialyn-features-section {
    padding:50px 100px;
    height:720px;
}
}/* Desktop (1025px and above) */
@media (min-width:1025px) {
    .mialyn-features-section {
    padding:50px 100px;
    height:530px;
}
.mialyn-features-section h2 {
    font-size:32px;
}
.mialyn-features-list {
    flex-direction:row;
    gap:20px;
}
.mialyn-feature {
    flex:1 1 calc(33.333% - 20px);
    margin-bottom:30px;
}
.mialyn-feature h3 {
    font-size:22px;
    margin-bottom:10px;
}
.mialyn-feature p {
    font-size:17px;
    text-align:center;
}
}/* Scroll-based Slide-up Effect for the sanitary-section */
.sanitary-section {
    padding:30px 10px;
    background-color:#ffffff;
    text-align:center;
    color:#333;
    opacity:0;
    transform:translateY(50px);
    transition:opacity 1s ease-out,transform 1s ease-out;
}
.sanitary-section.visible {
    opacity:1;
    transform:translateY(0);
}
.sanitary-section h2 {
    text-align:center;
    color:#753BBD;
    margin-bottom:10px;
    animation:headingSlideIn 1.5s ease forwards;
    opacity:0;
}
@keyframes headingSlideIn {
    0% {
    transform:translateY(-20px);
    opacity:0;
}
100% {
    transform:translateY(0);
    opacity:1;
}
}/* Paragraph animation with fade-in transition remains the same */
.sanitary-section p {
    text-align:justify;
    color:#555;
    line-height:1.6;
    margin:30px;
    justify-content:center;
    opacity:0;
    transform:translateY(30px);
    animation:fadeIn 1.5s ease forwards;
    animation-delay:0.5s;
}
@keyframes fadeIn {
    0% {
    opacity:0;
    transform:translateY(30px);
}
100% {
    opacity:1;
    transform:translateY(0);
}
}/* Hover interaction:Soft glowing effect on hover */
.sanitary-section p:hover {
    transform:scale(1.05);
    transition:color 0.4s ease,transform 0.4s ease,text-shadow 0.4s ease;
}
/* Mobile (up to 480px) */
@media (max-width:480px) {
    .sanitary-section {
    padding:30px 15px;
    height:auto;
}
.sanitary-section h2 {
    font-size:24px;
    margin-bottom:30px;
}
}/* Tablet (481px to 768px) */
@media (min-width:481px) and (max-width:768px) {
    .sanitary-section {
    padding:35px 20px;
    height:auto;
}
.sanitary-section h2 {
    font-size:28px;
    margin-bottom:10px;
}
.sanitary-section p {
    font-size:16px;
}
}/* Laptop (769px to 1024px) */
@media (min-width:769px) and (max-width:1024px) {
    .sanitary-section {
    height:auto;
}
.sanitary-section h2 {
    font-size:30px;
    margin-bottom:10px;
}
.sanitary-section p {
    font-size:18px;
}
}/* Desktop (1025px and above) */
@media (min-width:1025px) {
    .sanitary-section {
    max-height:290px;
    height:auto
}
.sanitary-section h2 {
    font-size:32px;
    margin-bottom:50px;
}
.sanitary-section p {
    font-size:18px;
}
}/* Feature Section */
.feature {
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:60px 20px;
    background:linear-gradient(135deg,rgba(255,255,255,0.7),rgba(255,255,255,0.9));
    border-radius:20px;
    overflow:hidden;
    position:relative;
    height:100vh;
    opacity:0;
    transform:translateY(50px);
    transition:opacity 1s ease-out,transform 1s ease-out;
}
/* When the section becomes visible */
.feature.visible {
    opacity:1;
    transform:translateY(0);
}
/* Image Styling */
.feature-image {
    flex:1;
    padding:20px;
    transition:transform 0.6s ease;
}
.feature-image img {
    width:100%;
    max-width:500px;
    border-radius:30px;
}
/* Text Styling */
.feature-text {
    flex:1;
    padding:20px;
    color:#444;
    text-align:left;
    position:relative;
    z-index:2;
    opacity:0;
    transform:translateY(20px);
    transition:opacity 1s ease,transform 1s ease;
}
/* Text Content Transition when visible */
.feature-text.visible {
    opacity:1;
    transform:translateY(0);
}
/* Heading styling */
.feature-text h1 {
    font-weight:bold;
    color:transparent;
    background:linear-gradient(135deg,#9b4d97,#530363);
    -webkit-background-clip:text;
    -moz-background-clip:text;
    background-clip:text;
    margin-bottom:20px;
    opacity:1;
    transition:opacity 1s ease,transform 1s ease;
}
/* Button Styling */
.know-more {
    padding:12px 20px;
    font-size:18px;
    background-color:#753BBD;
    color:#fff;
    border:none;
    border-radius:30px;
    cursor:pointer;
    transition:background-color 0.4s ease,transform 0.4s ease;
}
.know-more:hover {
    background-color:#753BBD;
    transform:translateY(-5px);
}
/* Mobile (up to 480px) */
@media (max-width:480px) {
    .feature {
    flex-direction:column;
    padding:30px 10px;
    height:auto;
}
.feature-image {
    margin-bottom:15px;
}
.feature-text {
    text-align:center;
}
.feature-text p {
    text-align:justify;
}
.feature-text h1 {
    font-size:24px;
    margin-bottom:15px;
    text-align:justify;
}
.know-more {
    font-size:14px;
    padding:8px 14px;
}
}/* Tablet (481px to 768px) */
@media (min-width:481px) and (max-width:768px) {
    .feature {
    flex-direction:column;
    padding:20px 15px;
    height:auto;
}
.feature-image {
    margin-bottom:20px;
}
.feature-text {
    text-align:center;
}
.feature-text p {
    text-align:justify;
    font-size:1rem;
}
.feature-text h1 {
    font-size:28px;
    margin-bottom:20px;
}
.know-more {
    font-size:16px;
    padding:10px 18px;
}
}/* Laptop (769px to 1024px) */
@media (min-width:769px) and (max-width:1024px) {
    .feature {
    padding:60px 20px;
    flex-direction:row;
}
.feature-image {
    margin-bottom:0;
}
.feature-text {
    text-align:left;
}
.feature-text h1 {
    font-size:32px;
    margin-bottom:20px;
}
.know-more {
    font-size:18px;
    padding:12px 20px;
}
}/* Desktop (1025px and above) */
@media (min-width:1025px) {
    .feature {
    padding:80px 40px;
    height:auto;
}
.feature-text h1 {
    font-size:32px;
    margin-bottom:30px;
}
.know-more {
    font-size:20px;
    padding:14px 24px;
}
}/* Slide-up Animation for Sections */
@keyframes slideUp {
    0% {
    transform:translateY(50px);
    opacity:0;
}
100% {
    transform:translateY(0);
    opacity:1;
}
}/* Add 'visible' class to trigger slide-up */
.visible {
    animation:slideUp 0.8s ease-out forwards;
    opacity:1 !important;
}
/* Highlighted Heading Styles with Vendor Prefixes and Glow Effect */
.highlighted-heading {
    text-align:center;
    margin:20px;
    font-size:2rem;
    color:#ffffff;
}
/* Video Container Styling */
.video-container {
    width:100%;
    max-width:400px;
    margin:0 auto;
    border-radius:15px;
    overflow:hidden;
}
/* Video Styling */
.video-container video {
    width:100%;
    margin-top:8px;
    height:20%;
}
/* Mobile (up to 480px) */
@media (max-width:480px) {
    .highlighted-heading {
    font-size:2rem;
    margin:10px;
}
.video-container {
    max-width:100%;
    padding:0;
}
.video-container video {
    height:auto;
}
}/* Tablet (481px to 768px) */
@media (min-width:481px) and (max-width:768px) {
    .highlighted-heading {
    font-size:2rem;
    margin:15px;
}
.video-container {
    max-width:100%;
    padding:10px;
}
.video-container video {
    height:auto;
}
}/* Laptop (769px to 1024px) */
@media (min-width:769px) and (max-width:1024px) {
    .highlighted-heading {
    font-size:2rem;
    margin:20px;
}
.video-container {
    max-width:80%;
    padding:15px;
}
.video-container video {
    height:auto;
}
}/* Desktop (1025px and above) */
@media (min-width:1025px) {
    .highlighted-heading {
    font-size:2.5rem;
    margin:20px;
}
.video-container {
    max-width:600px;
    padding:20px;
}
.video-container video {
    height:auto;
}
}.section-img {
    width:100px;
    height:100px;
    border-radius:100%;
    object-fit:cover;
    margin-top:20px;
    box-shadow:0 0 10px rgba(128,0,128,0.8);
    transition:transform 0.3s ease-in-out,box-shadow 0.3s ease-in-out;
}
.section-img:hover {
    transform:scale(1.1);
    box-shadow:0 0 20px rgba(128,0,128,1);
}
/* Mobile (up to 480px) */
@media (max-width:480px) {
    .section-img {
    width:80px;
    height:80px;
    margin-top:10px;
}
.eco-friendly-practices {
    padding:20px;
    max-width:90%;
}
.eco-friendly-practices h2 {
    font-size:1.8rem;
}
.eco-friendly-practices p {
    font-size:1rem;
    text-align:justify;
}
}/* Tablet (481px to 768px) */
@media (min-width:481px) and (max-width:768px) {
    .section-img {
    width:90px;
    height:90px;
}
.eco-friendly-practices {
    padding:25px;
    max-width:85%;
}
.eco-friendly-practices h2 {
    font-size:1.9rem;
}
.eco-friendly-practices p {
    font-size:1.05rem;
    text-align:justify;
}
}/* Laptop (769px to 1024px) */
@media (min-width:769px) and (max-width:1024px) {
    .eco-friendly-practices {
    padding:30px;
    max-width:80%;
}
.eco-friendly-practices h2 {
    font-size:2rem;
}
.eco-friendly-practices p {
    font-size:1.1rem;
    text-align:justify;
}
}/* Desktop (1025px and above) */
@media (min-width:1025px) {
    .section-img {
    width:100px;
    height:100px;
}
.eco-friendly-practices {
    padding:30px;
    max-width:75%;
}
.eco-friendly-practices h2 {
    font-size:32px;
}
.eco-friendly-practices p {
    font-size:1.1rem;
    text-align:justify;
}
}.mialynvedio {
    background-color:#753BBD;
}
/* Styling for the 'Eco-Friendly Practices' section */
.eco-friendly-practices {
    background-color:#f0f4c3;
    padding:30px;
    margin:40px auto;
    border-radius:10px;
    max-width:80%;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,0.1);
}
.eco-friendly-practices h2 {
    color:#753BBD;
    margin-bottom:15px;
}
.eco-friendly-practices p {
    font-size:1.1rem;
    color:#753BBD;
    line-height:1.6;
}
.eco-friendly-practices {
    margin-bottom:40px;
}
/* Contact Footer */
.contact-footer {
    padding:20px;
    color:#753BBD;
    text-align:center;
    border-radius:5px;
    font-family:'Arial',sans-serif;
    position:relative;
    overflow:hidden;
    padding:2rem 0;
    opacity:0;
    transform:translateY(50px);
    transition:all 0.6s ease-out;
}
.contact-footer h3 {
    font-size:20px;
    font-weight:600;
    margin-bottom:15px;
    letter-spacing:1px;
    position:relative;
}
.contact-footer h3::after {
    content:"";
    position:absolute;
    left:50%;
    bottom:-5px;
    transform:translateX(-50%);
    width:30px;
    height:2px;
    background-color:#ffd700;
    border-radius:10px;
    animation:underlineAnim 1.5s infinite;
}
/* Keyframe for the underline animation */
@keyframes underlineAnim {
    0% {
    width:30px;
}
50% {
    width:45px;
}
100% {
    width:30px;
}
}.contact-footer .social-links {
    display:flex;
    justify-content:center;
    gap:10px;
    margin-top:15px;
}
.contact-footer .social-links a {
    font-size:20px;
    color:#fff;
    background-color:#753BBD;
    width:40px;
    height:40px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    border:2px solid transparent;
    transition:all 0.3s ease;
    text-decoration:none;
}
.contact-footer .social-links a:hover {
    transform:translateY(-3px);
    background-color:#ffd700;
    color:#fff;
    box-shadow:0 5px 15px rgba(255,111,97,0.3);
    border:2px solid #ffd700;
}
.contact-footer .social-links a:active {
    transform:translateY(1px);
    box-shadow:0 5px 15px rgba(255,111,97,0.5);
}
@media (max-width:768px) {
    .contact-footer h3 {
    font-size:1.1rem;
}
}/*copywrite*/

.copywrite {
    padding-top:15px;
    padding-bottom:15px;
    text-align:center;
    color:#753BBD;
}
