/* =====================================
   GLOBAL BODY STYLE
===================================== */
body {
  background: #f4f4f4;
  font-family: Georgia, serif;
}

/* =====================================
   NAVBAR + TOGGLER ANIMATION
===================================== */
.navbar-toggler {
  border: none;
  outline: none !important;
  box-shadow: none !important;
}

/* Custom 3-line animated toggler (BLACK for white navbar) */
.navbar-toggler-icon-custom {
  width: 30px;
  height: 3px;
  background: #000;
  display: block;
  position: relative;
  transition: 0.4s;
}

.navbar-toggler-icon-custom::before,
.navbar-toggler-icon-custom::after {
  content: "";
  width: 30px;
  height: 3px;
  background: #000;
  position: absolute;
  left: 0;
  transition: 0.4s;
}

.navbar-toggler-icon-custom::before {
  top: -8px;
}

.navbar-toggler-icon-custom::after {
  top: 8px;
}

/* Animation when opened */
.navbar-toggler.collapsed .navbar-toggler-icon-custom {
  transform: rotate(0deg);
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon-custom {
  background: transparent;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon-custom::before {
  transform: rotate(45deg);
  top: 0;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon-custom::after {
  transform: rotate(-45deg);
  top: 0;
}

/* Nav hover */
.nav-link {
  font-weight: 500;
  transition: 0.3s;
}

.nav-link:hover {
  color: #dc3545 !important;
}

/* =====================================
      MAIN PAPER CONTAINER
===================================== */
.paper-container {
  max-width: 1100px;
  margin: 20px auto;
  background: #fff;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* LOGO */
.logo {
  font-size: 35px;
  font-weight: bold;
  color: #dc3545;
}

/* =====================================
            CARDS
===================================== */
.portrait-card,
.info-card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #ddd;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: 0.3s;
  margin-bottom: 25px;
}

.portrait-card:hover {
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  transform: translateY(-3px);
}

/* Card Image */
.portrait-card img {
  height: 380px;
  object-fit: cover;
  border-radius: 5px;
}

.paper-img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* =====================================
            BUTTONS
===================================== */
.view-btn {
  display: inline-block;
  padding: 8px 18px;
  background: #dc3545;
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
  text-decoration: none;
}

.view-btn:hover {
  background: #b02a37;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  color: #fff;
}

.download-btn {
  background: #dc3545;
  color: #fff;
  font-weight: bold;
}

/* =====================================
         ABOUT PAGE SECTION
===================================== */
.header-section {
  background: #dc3545;
  color: #fff;
  padding: 50px 0;
  text-align: center;
}

.section-title {
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.editor-box {
  border-left: 4px solid #dc3545;
  padding: 15px 20px;
  background: #fff5f5;
  border-radius: 8px;
}

/* =====================================
             FOOTER
===================================== */
footer {
  background: #222;
  color: #ccc;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}

/* =====================================
          LATEST NEWS BOX
===================================== */
.latest-news-box {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
  border-left: 5px solid #dc3545;
}

.latest-img {
  object-fit: cover;
  border-radius: 10px;
}

.highlight-list {
  padding-left: 20px;
  margin-top: 10px;
  color: #555;
  font-size: 15px;
}

.highlight-list li {
  margin-bottom: 6px;
}

/* =====================================
            CAROUSEL SLIDER
===================================== */
.slider-img {
  height: 430px;
  border-radius: 8px;
}
@media (min-width: 1024px) {
  .slider-img {
    object-fit: cover;
  }
}

.carousel-item {
  transition: transform 0.7s ease-in-out;
}

.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* Responsive */
@media (max-width: 768px) {
  .slider-img {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .slider-img {
    height: 220px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 25px;
    height: 25px;
  }
}

/* =====================================
          IMAGE MODAL ZOOM
===================================== */
.modal-body img {
  transition: transform 0.3s ease;
}

.modal-body img:active {
  transform: scale(1.2);
}

/* =====================================
            CONTACT PAGE
===================================== */
.contact-box {
  background: #fff;
  border-radius: 10px;
}

.contact-btn {
  font-size: 18px;
  padding: 10px;
  border-radius: 8px;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #0d6efd;
  transform: scale(1.02);
}

.badge {
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 6px;
}

.contact-details p {
  font-size: 16px;
  line-height: 1.6;
}

.contact-details i {
  font-size: 20px;
}

/* =====================================
            ABOUT IMAGE
===================================== */
.about-img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  .about-img {
    margin-top: 15px;
  }
}


/* zomm  */

