/* styles.css */

body {
  font-family: Arial, sans-serif;
  background-color: #f8f8f8;
  line-height: 1.6;
  background-image: url(images/backgrnd1.jpg);
}

header {
  background-color: transparent; /* Updated background color */
  color: #fff;
  padding: 20px;
  text-align: center;
}

h1 {
  margin: 0;
  font-size: 28px;
}

nav {
  position: absolute;
  top: 36px;
  right: 10px;
  background-color: rgba(255, 255, 255, 0.7); /* Semi-transparent light background */
  padding: 10px;
  border-bottom: none; /* Remove the bottom border */
  border-radius: 10px; /* Add rounded corners */
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  display: inline;
  margin-right: 10px;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  padding: 5px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  background-color: rgba(255, 255, 255, 0.5); /* Add a semi-transparent background color */
}

nav ul li a:hover {
  background-color: rgba(255, 255, 255, 0.8); /* Adjust the transparency on hover */
  background-color: magenta; /* Change the background color on hover */
  color: white; /* Change the text color to white on hover */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Add shadow effect on hover */
}

}



/* ...existing styles... */





nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
   background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent background */
}

nav ul li {
  position: relative;
}

nav ul li ul.dropdown {
  display: none;
  position: absolute;
  top: 155%;
  left: 0;
  background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent background */
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  width: 200px; /* Adjust the width as needed */
}

nav ul li:hover > ul.dropdown {
  display: block;
}

nav ul li ul.dropdown li {
  display: block;
  margin-right: 0;
}

nav ul li ul.dropdown li a {
  display: block;
  padding: 5px;
  font-size: 14px; /* Adjust the font size as desired */
  color: #333;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

nav ul li ul.dropdown li a:hover {
  background-color: magenta; /* Change the background color on hover */
  color: white; /* Change the text color to white on hover */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Add shadow effect on hover */
}



section {
  padding: 20px;
  background-color: rgba(255, 255, 255, 0); /* Set the background color to transparent */
  margin-bottom: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}



h1{
  margin-top: 0;
  font-size: 24px;
}

section {
  padding: 20px;
  background-color: rgba(255, 255, 255, 0); /* Set the background color to transparent */
  margin-bottom: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}



h2 {
  margin-top: 0;
  font-size: 24px;
  text-align: center;
  color: #fff; /* Set the font color to white */
}

h3 {
  color: #fff;
  text-align: center;
}

ul {
  margin-bottom: 15px;
}

footer {
  background-color: #333;
  color: #fff;
  padding: 10px;
  text-align: center;
  font-size: 14px;
}

/* styles.css */


.header-container {
  display: flex;
  align-items: center;
}



.logo {
  margin-right: 10px;
}

.logo {
  margin-right: 10px;
  width: 125px; /* Adjust the width as needed */
  height: 120px; /* Set the height to the same value as the width */
  border-radius: 20px; /* Use a smaller value to create a more rounded shape */
  object-fit: cover; /* Maintain aspect ratio */
}

/*
.logo {
  width: 100px;  Adjust the width as needed 
  height: 100px; Set the height to the same value as the width 
  border-radius: 50%; /* Use border-radius to create a circular shape 
  object-fit: cover;  Maintain aspect ratio and fill the circular shape 

}
*/



.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.service-card {
  width: 350px;
  margin: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  overflow: hidden;
  background-color: #fff;
  position: relative;
  animation: pulsate 2s infinite;
  transition: box-shadow 0.3s; /* Add transition for smoother hover effect */
}

.service-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Adjust the box shadow on hover */
  z-index: 1; /* Add a higher z-index value */
}

@keyframes pulsate {
  0% {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  50% {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  100% {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-info {
  padding: 20px;
}

.service-info h4 {
  margin-top: 10px;
  font-size: 18px;
}

.service-info p {
  margin-bottom: 0;
  font-size: 14px;
  color: #555;
}


/*FOOTER*/
@font-face {
  font-family: "SpecialFont";
  src: url("path/to/font.woff2") format("woff2"),
       url("path/to/font.woff") format("woff");
  /* Add additional font formats if necessary */
}

footer {
  padding: 20px;
  background-color: ghostwhite;
  color: #333;
  text-align: center;
  font-family: "SpecialFont", Arial, sans-serif;
}

.corner-info {
  display: flex;
  align-items: center;
}

.corner-info img {
  width: 65px;
  height: 65px;
  margin-right: 5px;
  border-radius: 50%;
}

.corner-info p {
  margin: 0;
}
.info-text {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
}

.social-icons {
  margin-bottom: 10px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: royalblue;
  font-size: 20px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: dodgerblue;
}

p {
  margin-bottom: 10px;
}

a {
  color: #333;
}

a:hover {
  text-decoration: underline;
}