body {
  background-color: #e2e3e4;
}

body nav {
  background: linear-gradient(135deg, #001f4d, #003c8f); /* dark blue gradient */
  background-repeat: repeat;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* depth */
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar .d-flex {
  margin-left: auto; /* Pushes it to the extreme right */
  margin-right: 0.5vw;
}

/* showing activeness of the button */
.navbar .nav-link.active {
  border-bottom: 2px solid white;
}

.navbar .nav-link:hover {
  border-bottom: 2px solid white;
}

.hero svg {
  display: block;
  margin-top: -1px; /* removes tiny gap */
}

.background-container {
  background-image: url("../images/Backgroundimage.png"); /* relative path from CSS folder */
  background-repeat: repeat;
  background-position: center center;
  background-size: cover;
  /* height: 400vh; */
  margin: 0;
  /* height: 100vh; */
}
.footer-img {
  background-image: url("../images/Backgroundimage.png"); /* relative path from CSS folder */
  background-repeat: repeat;
  margin: 0;
}
.left-image {
  width: 100%; /* fill the column width */
  height: auto; /* maintain aspect ratio */
  max-width: 600px; /* optional: prevents image from being too wide on large screens */
  display: block;
  margin: 0 auto; /* center if smaller than column */
}

/* this is adding for the about page */
footer{
  background-image: url("../images/Backgroundimage.png"); /* relative path from CSS folder */
    background-repeat: repeat;
    color: #fff;
}
.about-bg-img {
  background-image: url("../images/Backgroundimage.png"); /* relative path from CSS folder */
    background-repeat: repeat;
    color: #fff;
}
.hero-section {
    /* background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url("{% static 'images/about-bg.jpg' %}") center/cover no-repeat; */
    background-image: url("../images/Backgroundimage.png"); /* relative path from CSS folder */
    background-repeat: repeat;
  color: #fff;
  padding: 30px 20px;
  text-align: center;
}
.hero-section h1 {
  font-size: 3rem;
  font-weight: bold;
}
.info-section {
  padding: 30px 20px;
}
.info-section p {
  font-size: 1.2rem;
  line-height: 1.8;
}
.card img {
  height: 220px;
  object-fit: cover;
}

.carousel-item img{
    height: 300px;
}

/* feedback cards about page*/
.feedback-section {
  text-align: center;
  padding: 30px 0;
  background: linear-gradient(to bottom right, #002b6b, #0048b5);
  color: #fff;
  overflow: hidden;
}

.feedback-section h2 {
  font-weight: bold;
  margin-bottom: 20px;
}

.feedback-slider {
  position: relative;
  width: 90%;
  margin: 0 auto;
  overflow: hidden;
}

.feedback-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.feedback-card {
  flex: 0 0 30%;
  margin: 0 1.5%;
  background: #fff;
  color: #000;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  text-align: center;
  min-height: 200px;
}

.feedback-card .stars {
  color: gold;
  font-size: 20px;
  margin-bottom: 10px;
}

.feedback-card .message {
  font-style: italic;
  margin-bottom: 10px;
}

.feedback-card .user {
  font-weight: bold;
  color: #0048b5;
}

.feedback-btn {
  background: linear-gradient(135deg, #0d6efd, #00c6ff);
  border: none;
  color: white;
  padding: 8px 18px;
  font-size: 0.9rem;
  border-radius: 10px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.feedback-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 123, 255, 0.5);
  background: linear-gradient(135deg, #0b5ed7, #0096c7);
}

.slider-controls {
  margin-top: 20px;
}

.slider-controls button {
  background-color: white;
  color: #0048b5;
  border: none;
  font-size: 22px;
  margin: 0 10px;
  border-radius: 50%;
  cursor: pointer;
  padding: 10px 14px;
  transition: background 0.3s;
}

.slider-controls button:hover {
  background-color: #0048b5;
  color: white;
}

/* ===============================
   RESPONSIVE FOOTER OPTIMIZATION
================================ */

/* Tablet */
@media (max-width: 992px) {

    footer h3 {
        font-size: 1.4rem;
    }

    footer h5 {
        font-size: 1rem;
    }

    footer p,
    footer li,
    footer a {
        font-size: 0.9rem;
    }

    footer .fs-4 {
        font-size: 1.3rem !important;
    }

}

/* Mobile */
@media (max-width: 576px) {

    footer {
        padding-top: 2rem !important;
        padding-bottom: 1.5rem !important;
    }

    footer h3 {
        font-size: 1.2rem;
    }

    footer h5 {
        font-size: 0.95rem;
    }

    footer p,
    footer li,
    footer a {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    footer .fs-4 {
        font-size: 1.1rem !important;
    }

    footer .py-1 {
        padding-top: 4px !important;
        padding-bottom: 4px !important;
    }

    footer .pt-2 {
        padding-top: 8px !important;
    }

    footer .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    footer .d-flex {
        text-align: center;
    }

}
.btn-outline-light {
  opacity: 1 !important;
  color: #fff !important;
  border: 1px solid #fff !important;
}

.btn-outline-light:hover {
  background-color: #fff !important;
  color: #001f4d !important;
}
