body {
    font-family: Arial, sans-serif;
}

/* Header Text */
.header-text {
    font-size: 32px;
    font-weight: bold;
    color: #662483;
    text-align: center;
}

@font-face {
    font-family: 'ErasITCBOLD';
    src: url('fonts/Eras Bold ITC.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

/* Apply the font to the logo */
.logo-text {
    font-family: 'ErasITCBOLD', sans-serif;
    font-weight: bold;
    font-size: 36px; /* Adjust size as needed */
    color: #5D3A7A; /* Example color */
}


/* Service Icons Section */
.service-icons {
    text-align: center;
    padding: 20px;
}

.service-icon-img {
    width: 80px; /* Set a fixed width for the icons */
    height: auto;
    margin-bottom: 15px;
}

.service-icons p {
    margin: 0;
    color: #333;
    font-weight: bold;
}

/* Footer */
.footer {
    background-color: #662483;
    color: white;
    padding: 20px 0;
    text-align: center;
    margin-top: 50px;
}

.footer a {
    color: white;
    margin: 0 10px;
    font-size: 24px;
}

.footer a:hover {
    color: #F4C542;
}

.footer a img{
    width: 5%;
}

/* Rating Section */
.rating-system {
    font-size: 40px;
}

.star {
    cursor: pointer;
    color: #ccc; /* Unselected star color */
    transition: color 0.3s ease;
}

.star:hover,
.star.active {
    color: #F4C542; /* Selected star color */
}

.rating-info {
    font-size: 20px;
    margin-top: 20px;
}

/* Image Resizing */
img.img-fluid {
    max-width: 60%;
    height: auto;
    border-radius: 50%;
    margin: auto;
}

#whatsapp {
    z-index: 9999;
    position: fixed;
    bottom: 15px;
    right: 15px;
}


/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .header-text {
        font-size: 24px;
    }
    
    .service-icons {
        padding: 10px;
    }
    
    .footer {
        font-size: 14px;
    }
  	.footer a img{
   	 	width: 20%;
	}
}
