/*
Theme Name: Software Institute
Theme URI: http://example.com/software-institute
Author: Your Name
Author URI: http://example.com
Description: A modern and responsive theme for software education.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: software-institute
Tags: custom-background, custom-logo, custom-menu, featured-images, responsive-layout
*/

/* header sticky */
body {
  padding-top: 80px; /* Adjust height based on navbar height */
}
.fixed-top {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  z-index: 1030;
}

/* Elegant & Sober Navbar Styles */
.navbar {
  background-color: #ffffff;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid #e5e5e5;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
  font-family: 'Segoe UI', sans-serif;
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.25rem;
  color: #1a1a1a;
  text-transform: uppercase;
}

.navbar-nav {
  margin-left: auto;
  display: flex;
  gap: 1.5rem;
}

.navbar-nav a {
  color: #333;
  font-weight: 400;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
}

.navbar-nav a:hover,
.navbar-nav .current-menu-item a {
  background-color: #007bff;
  color: #ffffff !important;
}

.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar .btn-primary {
  background-color: #007bff;
  color: #fff;
  font-weight: 400;
  padding: 6px 18px;
  border-radius: 6px;
  border: none;
  transition: 0.3s ease-in-out;
}

.navbar .btn-primary:hover {
  background-color: #007bff;
}

/* nav bar round */
.navbar.navbar-expand-lg.navbar-light {
  border-radius: 6px;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.navbar.navbar-expand-lg.navbar-light:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Logo */
.custom-logo-link img {
  max-height: 40px;
  width: auto;
  height: auto;
}

/* Contact up Form */
form .form-group {
  margin-bottom: 1.5rem;
}

form label {
  font-weight: 600;
}
/** Slider */
.carousel-item img {
  max-height: 500px;
  object-fit: cover;
}

.carousel-caption h5 {
  font-size: 2rem;
  font-weight: 600;
}

.carousel-caption p {
  font-size: 1rem;
  opacity: 0.9;
}

.carousel-caption {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 15px 20px;
  border-radius: 8px;
  right: 0 !important;
}

/*** Footer style **/

footer ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;

  list-style-type: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

footer i {
  color: #6c63ff;
  margin-right: 8px;
}

footer h5 {
  font-weight: 600;
  margin-bottom: 15px;
}

.dashicons {
  font-size: 20px;
  color: #ffffff;
  vertical-align: middle;
  margin-right: 8px;
}

footer .list-unstyled li a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.2s;
}

footer .list-unstyled li a:hover {
  text-decoration: underline;
  color: #dddddd;
}

.new-list-unstyled ul{
  list-style: none;
  padding: 0 !important;
  margin: 0 !important;
}

footer .new-list-unstyled li a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.2s;
}

footer .new-list-unstyled li a:hover {
  text-decoration: underline;
  color: #dddddd;
}