: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);
}

/* -----------------Contact Session-------------------------------- */

.contact-section {
    padding: 40px;
    background-color: #f8f8f8; /* Light background */
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap; /* Allow wrapping */
    gap: 40px;
    align-items: flex-start; /* Align items to the top */
}

.contact-info {
    flex: 1 1 400px; /* Flexible width with a minimum of 400px */
}

.contact-form {
    flex: 1 1 400px; /* Flexible width with a minimum of 400px */
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
    color: var(--purple);
    font-size: 2rem;
	font-weight: 500;
    margin-bottom: 10px;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact-info p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.address,
.opening-hours {
    flex: 1 1 180px; /* Adjust as needed */
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box; /* Include padding and border in element's total width and height */
}

textarea {
    resize: vertical; /* Allow vertical resizing */
}

.submit-btn {
    background-color: var(--purple);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%; /* Full width button */
}

/* Media Queries */
@media (max-width: 768px) {
    .contact-info {
        text-align: center; /* Center text on smaller screens */
    }
    .contact-details {
        justify-content: center; /* Center contact details */
    }
}

@media (max-width: 480px) {
    .contact-info h2 {
        font-size: 1.8rem;
    }

    .contact-info h3 {
        font-size: 1.3rem;
    }
}



/* ---------------------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;
	}
  }


  

/* ---------------Alert message--------- */
#custom-alert {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s, visibility 0.3s;
}

#custom-alert.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.alert-box {
  background: #fff;
  padding: 20px 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  max-width: 90%;
  width: 400px;
}
.alert-box p {
  margin: 0 0 15px;
  font-size: 16px;
  color: #333;
}
.alert-box button {
  padding: 10px 20px;
  background-color: #22114f;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
}

/*--------- 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 */
	  }

  }
