/* styles.css */

body {
  font-family: Arial, sans-serif;
  background-color: #f8f8f8;
  line-height: 1.6;
  background-image: url(images/wall1.jpg);
}

header {
  background-color: transparent; /* Make the header transparent */
  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;
  margin-bottom: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background: linear-gradient(rgba(0, 0, 255, 0.5), rgba(0, 0, 255, 0.2)), url(images/background.jpg);
  background-blend-mode: overlay;
  color: #fff;
}
h2 {
  margin-top: 0;
  font-size: 24px;
}

p {
  margin-bottom: 15px;
 
}



/* ...existing styles... */

.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 */
}



/* Styles for Super Cards */
.card-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}

.card {
  width: 300px;
  height: 350px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 9px;
  background-color: #f8f8f8;
  border-radius: 0 0 10px 10px;
}

.card-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #333333;
}

.card-content p {
  font-size: 12px;
  color: #666666;
}

/* Additional Styling for Enhancement */
.card-container {
  max-width: 1000px;
  margin: 0 auto;
}

.card-container {
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  position: relative;
  overflow: hidden;
}

.card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover:before {
  opacity: 1;
}

.card-content {
  position: relative;
  z-index: 1;
}

.card-content h3 {
  margin-top: 0;
}

.card-content p {
  margin-bottom: 12px;
}


/*Images Section*/

h3 {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
}

.image-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-container img {
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-right: 20px;
}

p {
  margin-top: 20px;
  text-align: center;
}




/* Features Section */



h2 {
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

h2::before,
h2::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background-color: #333;
  margin: 0 10px;
}


/*

footer {
  background-color: #333;
  color: #fff;
  padding: 10px;
  text-align: center;
  font-size: 14px;
}
*/


/*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;
}