: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;
}

.title {
	text-align: center;
	font-weight: 500;
	font-size: 4rem;
	color: var(--purple);
	margin: 30px 0;
}
.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: 2.5rem;
    color: var(--black);
}

/* ------------------------------------------------- */

.content {
	margin-left: 10px;
    display: flex;
	padding: 20px;
    flex-direction: column;
    justify-content: center;
	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)
}

.home-section .side{
	display: flex;
	width: 100%;
	flex-wrap: nowrap;
	justify-content: space-between;

}
.span{
	font-family: 'Times New Roman', Times, serif;
	font-size: 2vw;
	font-weight: 500;
	color: var(--purple);
	margin: 20px 10px;
}
.hero-text{
	font-family: 'Times New Roman', Times, serif;
	font-size: 2vw;
	font-weight: 500;
	color: var(--purple); /* Purple accent color */

}
.header-4{
	color: var(--purple);
	font-size: 4rem;
	font-size: 18px;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.image-side{
	flex: 0 0 500px;
	max-height: 480px;

}
.image-side img {
	width: 100%;
	padding: 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: var(--purple);
	padding: 10px 25px;
	color: var(--lighter);
	font-weight: 300;
	font-size: 16px;
	padding: 10px;
	border-radius: 5px;
	margin-top: 50px;
	text-align: center;
}

.content .button-contact:hover{
	background-color: #37285e;
}
.content p{
	font-size: 1.1rem;
	margin-top: 20px;
	line-height: 35px;
}



/* ------------------section 2----------------------------- */
.why-choose-us {
	padding: 40px 20px;
	background-color: #f6f0ff; /* Light purple background */
}
  
  .why-choose-us .container {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
  }
  
  /* .why-choose-us h4 {
	color: #9c27b0; 
	font-size: 18px;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 1px;
  } */
  
  .why-choose-us h2 {
	color: #2c2c2c;
	font-size: 32px;
	margin-bottom: 20px;
  }
  
  .why-choose-us p {
	color: #666;
	margin-bottom: 40px;
	font-size: 16px;
  }
  
  .why-choose-us .content {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	align-items: center;
  }
  
  .why-choose-us .image {
	flex: 1 1 100%;
	max-width: 600px;
  }
  
  .why-choose-us .image img {
	width: 100%;
	border-radius: 8px;
  }
  
  .why-choose-us .cards {
	flex: 1 1 100%;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
  }
  
  .why-choose-us .card {
	background-color: #fff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	text-align: left;
  }
  
  .why-choose-us .card img.icon {
	width: 50px;
	height: 50px;
	margin-bottom: 10px;
  }
  
  .why-choose-us .card h3 {
	color: #333;
	font-size: 20px;
	margin-bottom: 10px;
  }
  
  .why-choose-us .card p {
	color: #666;
	font-size: 14px;
  }

/* ---------------------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: 768px) {
	.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;
    }
    .title {
        font-size: 4rem;
    }
	.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;
	  }
	  .home-section .side {
		flex-wrap: wrap; /* Stacks items vertically */
		justify-content: center; /* Centers the content */
	  }
	
	  .content .button-contact {
		margin: 20px auto; /* Center the button */
		width: 150px; /* Reduce button width */
	  }
	  .why-choose-us .content {
		flex-direction: column;
	  }
	  .why-choose-us .image {
		margin-bottom: 20px;
	  }
}
  
 
  /* Media Query for Extra Small Screens */
  @media (max-width: 480px) {
	.hero-text {
	  font-size: 9vw; /* Further scale down heading font size */
	}
  
	.span {
	  font-size: 18px; /* Reduce font size for span */
	}
  
    .title {
        font-size: 2rem;
    }
	.hero-text {
		font-size: 9vw; /* Further scale down heading font size */
	  }
	
	  .span {
		font-size: 18px; /* Reduce font size for span */
	  }
	  .home-section .side {
		flex-wrap: wrap; /* Stacks items vertically */
		justify-content: center; /* Centers the content */
	  }
	  .content .button-contact {
		width: 120px; /* Reduce button width further */
		padding: 15px; /* Adjust button padding */
	  }

  }
