
.navbar-nav .nav-link {
    margin: 8px;
    color:  hsl(53, 80%, 4%) !important;
}
.navbar-nav .nav-link:hover {
    font-size: 15px;
    border-bottom: 2px solid white;
}
.carousel-inner img {
    width: 100%; /* Set the desired width (e.g., 80% of the container) */
    height: auto; /* Set a fixed height or use a percentage */
    object-fit: cover; /* Ensures the image scales properly without distortion */
    margin-top: 30px;
    margin-bottom: 50px;
  
}
.btn{
    background-color: yellow;
}
.navbar-toggler-icon {
    filter: invert(1);
}
.mycards{
    background-color: white;
    border-radius: 10px;
    margin-top: 10px;
}

.height{
    height: 400px;
}



body {
    background-color: #111;
    color: white;
}
.logo {
    font-size: 2.5rem;
    font-weight: bold;
}
.tag-btn {
    margin: 5px;
    font-size: 0.9rem;
}
.icons{
font-size: 1.3rem;
line-height: 45px;
border-radius: 5rem;
width: 45px;
padding: 5px;
aspect-ratio: 1;
transition: 1s ease-in-out;
    
}
.icons:hover{
    background-color: white;
    color: #122908;
    transform: translateY(-30%);



}
.gradient{
background: rgb(29, 29, 31);
background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(2,37,7,1) 7%, rgba(31,190,97,1) 35%, rgba(236,5,75,0.9809173669467787) 100%, rgba(12,178,246,1) 100%, rgba(0,212,255,1) 100%);
}
.glass {
   width: 250px;
   border-radius: 10px;
   background-color: rgba(206, 169, 169, 0.032);
   border: 1px solid rgb(227, 204, 204);
   backdrop-filter: blur(10px);
   padding: 20px;
  }

  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
  }
  
  .gallery-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
  }

  .gallery-item:hover img {
    transform: scale(1.1);
  }

  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
  }

  .gallery-item:hover .overlay {
    opacity: 1;
  }

  .overlay-text {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
  }

/* Background color */
body {
    background: #f4f4f9; /* Soft light gray */
    color: #333; /* Dark text for readability */
}

/* Classic Effect Card */
.classic-effect {
    background: #ffffff; /* White background */
    border: 1px solid #e0e0e0; /* Soft border for card */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    padding: 20px;
}

/* Title and paragraph styles */
h2, p {
    font-family: 'Georgia', serif; /* Elegant serif font for the title */
    color: #2c3e50; /* Classic dark blue */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1); /* Soft text shadow for elegance */
}

/* Form labels and input fields */
.form-label {
    color: #2c3e50; /* Dark blue for labels */
    font-size: 1.1rem;
    font-weight: 600;
}

/* Input Fields */
.form-control {
    background-color: #f9f9f9; /* Light gray for input fields */
    border: 1px solid #ccc; /* Soft border color */
    color: #333;
    border-radius: 5px; /* Rounded corners */
    transition: all 0.3s ease; /* Smooth transition for focus effects */
}

.form-control:focus {
    background-color: #fff; /* White background when focused */
    border-color: #3498db; /* Blue border color on focus */
    outline: none; /* Remove outline */
}

/* Select Dropdown */
.form-select {
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    color: #333;
    border-radius: 5px;
}

.form-select:focus {
    background-color: #fff;
    border-color: #3498db;
    outline: none;
}

/* Button Styles */
.btn-dark {
    background-color: #2c3e50; /* Dark blue button */
    color: #fff; /* White text */
    border: 1px solid #2c3e50; /* Dark blue border */
    border-radius: 5px;
    transition: all 0.3s ease; /* Smooth transition on hover */
}

.btn-dark:hover {
    background-color: #34495e; /* Darker shade of blue on hover */
    border-color: #34495e; /* Match border color with button */
}

/* Error messages */
.invalid-feedback {
    font-size: 0.875rem;
    color: #e74c3c; /* Red color for error */
    font-style: italic;
}

/* Card shadow effect */
.card {
    border: none; /* Remove default card border */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft, classic shadow */
}

/* Add some space between inputs */
.mb-3 {
    margin-bottom: 1.5rem;
}

/* Styling for text areas */
textarea.form-control {
    resize: vertical; /* Allow vertical resizing */
}



  

  /* Responsive Styles */
  @media (max-width: 768px) {
    .gallery-item {
      margin-bottom: 20px;
    }
  }


  .footer {
    padding: 40px 0;
}
.footer .btn {
    background-color: #28a745;
    border: none;
}
.footer .btn:hover {
    background-color: #218838;
}
.footer .tag {
    margin: 5px;
}
.social-icons a {
    color: #fff;
    font-size: 1.5rem;
    margin-right: 10px;
}
.social-icons a:hover {
    color: #ccc;
}
.navbar {
      background-color: hsl(210, 15%, 5%); /* Classic dark blue-gray */
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    }
    .navbar-brand {
      font-size: 1.5rem;
      font-weight: bold;
      color: #f8f9fa !important; /* White text */
      display: flex;
      align-items: center;
    }
    .navbar-brand i {
      margin-right: 8px;
      color: #f39c12; /* Gold icon for a modern look */
    }
    .navbar-text {
      font-size: 1.25rem;
      font-weight: 600;
      color: #ecf0f1 !important; /* Light text */
    }
    #visitor-count {
      font-size: 1.5rem;
      font-weight: bold;
      color: #f39c12; /* Gold for contrast */
    }

