:root{
    --purple: #22114f;
	--lighter: #eeeeee;
    --black: #192a56;
    --light-color: #424141;
    --box-shadow: 0 .5rem 1.5rem rgba(0,0,0,.1);
}
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Poppins", serif;
	text-decoration: none;
	color: inherit;
}
header{
	display: flex;
	justify-content: space-between;
	margin: 15px, 0, 15px, 0;
	align-items: center;
	z-index: 1000;
    box-shadow: var(--box-shadow);
}
.logo-name img{
	color: var(--purple);
	margin: 0;
	padding: 0;
	width: 80px;
}
.nav-menu {
    display: flex;
    gap: 20px;
	transition: all 0.3s ease;
}
nav a{
	font-size: 18px;
    border-radius: .5rem;
    padding:  1.5rem;
    color: var(--black);
}
nav a:hover{
    color: var(--purple);
}
.appointment {
	margin: 0px 20px;
    background: var(--purple);
    color: var(--lighter);
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 16px;
    display: inline-block;
    position: relative;
	font-weight: 500;
    overflow: hidden;
    transition: transform 0.3s ease, background 0.3s ease;
}
.appointment::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 300%;
    height: 100%;
    background: linear-gradient(90deg, var(--purple), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.2));
    transition: transform 0.4s ease;
    transform: translateX(0);
    z-index: 0;
}
.appointment:hover::before {
    transform: translateX(100%);
}

.appointment:hover {
    background: var(--lighter);
    color: var(--purple);
    transform: scale(1.1);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.appointment {
    z-index: 1;
    position: relative;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 40px;
    cursor: pointer;
	margin-right: 2rem;
    color: var(--black);
}
/* -----------Slider------------------ */
.slick{
	background-color: #f5f5f5;
	margin-top: 20px;

}
.slider-section {
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #f5f5f5;
}

.slider-container {
	width: 90%;
	height: 500px;
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	padding: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.slide {
	width: 100%;
	height: 100%;
	position: absolute;
	display: flex;
	transition: transform 0.5s ease-in-out;
}

.slide.active {
	transform: translateX(0);
}

.slide:not(.active) {
	transform: translateX(100%);
}

.image-container {
	width: 50%;
	height: 100%;
}

.image-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.text-container {
	width: 50%;
	padding: 20px;
	background-color: white;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.text-content {
	opacity: 1;
	transition: all 0.5s ease-in-out;
}

.text-content.slide-left {
	animation: slideInLeft 0.5s ease-in-out;
}

.text-content.slide-right {
	animation: slideInRight 0.5s ease-in-out;
}

@keyframes slideInLeft {
	from {
		transform: translateX(-100%);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes slideInRight {
	from {
		transform: translateX(100%);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

.slider-buttons {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
}

.slider-btn {
	padding: 8px 16px;
	border: none;
	color: #fff;
	background-color: rgba(58, 49, 138, 0.7);
	cursor: pointer;
	border-radius: 4px;
	transition: background-color 0.3s;
}

.slider-btn:hover {
	background-color: rgba(255, 255, 255, 0.9);
	color: rgba(58, 49, 138, 0.7);
}

/* -------responsiveness--------- */
/* Responsive Design */
@media screen and (max-width: 768px) {
	.slider-container {
		width: 95%;
		height: 900px;
	}

	.slide {
		flex-direction: column;
	}

	.image-container,
	.text-container {
		width: 100%;
		height: 50%;
	}

	.text-container {
		padding: 20px;
	}

	.text-content h2 {
		font-size: 1.5rem;
		margin-bottom: 10px;
	}

	.text-content p {
		font-size: 0.9rem;
	}

	/* Adjust animations for mobile */
	@keyframes slideInLeft {
		from {
			transform: translateY(-50px);
			opacity: 0;
		}
		to {
			transform: translateY(0);
			opacity: 1;
		}
	}

	@keyframes slideInRight {
		from {
			transform: translateY(50px);
			opacity: 0;
		}
		to {
			transform: translateY(0);
			opacity: 1;
		}
	}
}

@media screen and (max-width: 480px) {
	.slider-container {
		height: 700px;
	}

	.text-container {
		padding: 15px;
	}

	.slider-btn {
		padding: 6px 12px;
		font-size: 0.9rem;
	}
}

/* -----------end of slider----- */
/* -------section 1------------ */

.home-section .side{
	display: flex;
	width: 100%;
	gap: 20px;
	flex-wrap: nowrap;
	justify-content: space-between;

}
.content {
	margin-left: 10px;
    display: flex;
	padding: 20px;
    flex-direction: column;
    height: 100vh;
	opacity: 0;
    transform: translateX(-100%);
    animation: slideIn 1s ease-out forwards; /* Keyframe animation */
}
@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.content.aninmate {
	opacity: 1;
    transform: translateX(0)
}

.span{
	font-family: 'Times New Roman', Times, serif;
	font-size: 2rem;
	font-weight: 500;
	color: var(--purple);
	margin: 20px 10px;
}
.hero-text{
	font-family: 'Times New Roman', Times, serif;
	font-size: 3.5vw;
	font-weight: 500;
}
.content p{
	line-height: 28px;
	font-size: 0.5rem;
}
.image-side{
	margin-top: 20px;
	flex: 0 0 700px;

}
.image-side img {
	width: 100%;
	height: auto;
	border-radius: 10px;
}

.btn-hero{
	text-align: center;
	margin-top: 50px;
	flex-wrap: wrap;
}
.button-contact{
	background-color: var(--purple);
	padding: 10px 35px;
	color: var(--lighter);
	font-weight: 300;
	font-size: 16px;
	padding: 10px;
	border-radius: 5px;
	margin-top: 50px;
	text-align: center;
	width: 200px;
}
.button-service{
	background-color: #192a56;
	padding: 15px 25px;
	color: var(--lighter);
	font-weight: 300;
	font-size: 1.2rem;
	border-radius: 5px;
	margin-top: 50px;
}

.content .button-contact:hover{
	background-color: #37285e;
}
.content p{
	font-size: 20px;
	margin-top: 20px;
	line-height: 35px;
}

/* ----------- section-2 --------------- */

.about-section {
	padding: 20px;
}
.hero-text-2{
	font-family: 'Times New Roman', Times, serif;
	text-align: center;
	color: var(--purple);
	font-size: 2.5rem;
	font-weight: 500;
	margin-bottom: 20px;
}

.caring{
	font-family: 'Times New Roman', Times, serif;
	font-size: 1.8rem;
	font-weight: 500;
	color: var(--purple);
	margin: 10px 0;
}

.about-section-div{
	display: flex;
	flex-wrap: nowrap;
	gap: 20px;
	justify-content: space-between;
	align-items: center;
}
.left, .right {
    flex: 1 1 100%; /* Default to full width */
    padding: 20px; /* Add padding */
}


.right {
	border-radius: 20px;
	align-items: center;
	overflow: hidden;
	text-align: center;
}


.left {
	padding: 30px;
    flex-direction: column;

}


.left p{
	font-size: 1rem;
	margin: 10px 10px;
	line-height: 30px;
}

.list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
	justify-content: space-between;
    padding: 0;
}

.list li {
	padding: 10px;
    flex: 1 1 calc(50% - 1.2rem); /* Each item takes half the width, minus the gap */
    display: flex;
    align-items: center;
}
.fa-check {
	margin-right: 20px;
	font-size: 1.2rem;
	color: #5a7f3d;

}


/* -----------------Service Section ------------------ */
.services-section {
    padding: 40px;
    background-color: #f8f8f8; /* Light background */
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-intro {
    text-align: center;
    margin-bottom: 40px;
}

.services-intro h2 {
    color: var(--purple);
    font-size: 2rem;
    margin-bottom: 10px;
}

.services-intro h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
	font-weight: 400;
	text-align: center;

}

.services-intro p {
    max-width: 800px;
    margin: 0 auto 30px;
	text-align: left;
    line-height: 1.6;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
    gap: 20px;
}

.service-card {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center; /* Center content within card */
    display: flex; /* Enable flexbox for vertical alignment */
    flex-direction: column;
    align-items: center;
}

.service-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.service-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
	color: var(--purple);
}

.service-card p {
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1; /* Allows paragraph to take up available space */
	text-align: center;
}

.learn-more-link {
    text-decoration: none;
    color: var(--purple);
    font-weight: bold;
}



/* ---------------------Footer----------------------- */
.footer {
	background-color: #0f172a;
	color: #e5e7eb;
	padding: 40px 20px;
	font-family: Arial, sans-serif;
  }
  
  .footer-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
  }
  
  .footer-column {
	flex: 1;
	min-width: 220px;
  }
  
  .footer-logo {
	display: flex;
	align-items: center;
	gap: 10px;
  }
  
  .footer-logo img {
	width: 40px;
	height: 40px;
  }
  
  .footer h4 {
	margin-bottom: 10px;
	font-size: 18px;
	color: #facc15;
  }
  
  .footer p,
  .footer ul {
	margin: 0;
	line-height: 1.6;
  }
  
  .footer ul {
	list-style: none;
	padding: 0;
  }
  
  .footer ul li {
	margin-bottom: 5px;
  }
  
  .footer ul li a {
	color: #e5e7eb;
	text-decoration: none;
  }
  
  .footer ul li a:hover {
	text-decoration: underline;
  }
  
  .working-hours strong {
	display: block;
	font-weight: bold;
	margin-bottom: 5px;
  }
  
  .social-icons {
	display: flex;
	gap: 15px;
	margin-top: 10px;
  }
  
  .social-icons a {
	color: #e5e7eb;
	font-size: 20px;
	text-decoration: none;
  }
  
  .social-icons a:hover {
	color: #facc15;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
	.footer-container {
	  flex-direction: column;
	  align-items: flex-start;
	  gap: 30px;
	}
  
	.footer-column {
	  min-width: 100%;
	}
  }
  
  @media (max-width: 480px) {
	.footer {
	  padding: 20px 10px;
	  text-align: center;
	}
  
	.footer-container {
	  align-items: center;
	}
  
	.footer-logo h3 {
	  font-size: 20px;
	}
  
	.footer ul li a {
	  font-size: 14px;
	}
  
	.social-icons a {
	  font-size: 18px;
	}
  }








/*--------- Responsivenes-------------- */

@media (max-width: 1250px) {
	.home-section .side {
	  flex-wrap: wrap; /* Stacks items vertically */
	  justify-content: center; /* Centers the content */
	}
  
	.content {
	  margin-left: 0;
	  height: auto; /* Adjust height for smaller screens */
	  text-align: center; /* Center-align text content */
	}
  
	.span {
	  font-size: 20px; /* Reduce font size */
	}
  
	.hero-text {
	  font-size: 7vw; /* Scale down heading font size */
	}
  
	.image-side {
	  flex: 0 0 100%; /* Make the image take full width */
	  text-align: center;
	}
  
	.image-side img {
	  width: 100%; /* Scale image size for smaller screens */
	  margin: 0 auto;
	}
  
	.content .button-contact {
	  margin: 20px auto; /* Center the button */
	  width: 150px; /* Reduce button width */
	}

	.caring {
        font-size: 1.5rem;
    }
	.about-section-div {
        flex-wrap: wrap; /* Stack vertically only on smaller screens */
        justify-content: center; /* Center items for small screens */
        gap: 20px; /* Reduce gap for smaller screens */
    }
	.left, .right {
        flex: 1 1 100%; /* Make each div take the full width on smaller screens */
    }
  }

@media (max-width: 768px) {
	.home-section .side {
	  flex-wrap: wrap; /* Stacks items vertically */
	  justify-content: center; /* Centers the content */
	}
  
	.content {
	  margin-left: 0;
	  height: auto; /* Adjust height for smaller screens */
	  text-align: center; /* Center-align text content */
	}
  
	.span {
	  font-size: 1.5rem; /* Reduce font size */
	}
  
	.hero-text {
	  font-size: 7vw; /* Scale down heading font size */
	}
  
	.image-side {
	  flex: 0 0 100%; /* Make the image take full width */
	  text-align: center;
	}
  
	.image-side img {
	  width: 100%; /* Scale image size for smaller screens */
	  margin: 0 auto;
	}
  
	.content .button-contact {
	  margin: 20px auto; /* Center the button */
	  width: 150px; /* Reduce button width */
	}
	.about-section-div {
        flex-wrap: wrap; /* Stack vertically only on smaller screens */
        justify-content: center; /* Center items for small screens */
        gap: 20px; /* Reduce gap for smaller screens */
    }
	.left, .right {
        flex: 1 1 100%; /* Make each div take the full width on smaller screens */
    }
	.nav-menu {
        display: none;
        flex-direction: column;
		z-index: 1000;
        position: absolute;
        top: 60px;
        background: #FFF;
        box-shadow: var(--box-shadow);
        padding: 10px;
        width: 100%;
        text-align: center;
    }
	.nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }
  }
  
 
  /* Media Query for Extra Small Screens */
  @media (max-width: 480px) {
	.hero-text {
	  font-size: 9vw; /* Further scale down heading font size */
	}
  
	.span {
	  font-size: 1rem; /* Reduce font size for span */
	}
  
	.content .button-contact {
	  width: 120px; /* Reduce button width further */
	  padding: 15px; /* Adjust button padding */
	}
	.caring {
        font-size: 1.2rem;
    }
    .left p {
        font-size: 0.9rem;
    }
    .fa-check {
        font-size: 1rem;
    }
	.about-section-div {
        flex-wrap: wrap; /* Stack vertically only on smaller screens */
        justify-content: center; /* Center items for small screens */
        gap: 20px; /* Reduce gap for smaller screens */
    }
	.left, .right {
        flex: 1 1 100%; /* Make each div take the full width on smaller screens */
        text-align: center; /* Center content for smaller screens */
    }

  }