
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");

:root {
  --header-height: 2.5rem;
  --black-color: hsl(220, 24%, 12%);
  --black-color-light: hsl(220, 24%, 15%);
  --black-color-lighten: hsl(220, 20%, 18%);
  --white-color: #fff;
  --body-color: hsl(220, 100%, 97%);
  --body-font: "Montserrat", sans-serif;
  --normal-font-size: .938rem;
  --font-regular: 400;
  --font-semi-bold: 600;
  --z-tooltip: 10;
  --z-fixed: 100;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #3b82f6;
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input,
textarea,
select {
    font-family: inherit;
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: .8;
}

p {
    margin-bottom: .8rem;
}




ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--black-color);
  box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);
  z-index: var(--z-fixed);
}

.nav {
  height: var(--header-height);
}

.nav__logo, 
.nav__burger, 
.nav__close {
  color: var(--white-color);
}

.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: .25rem;
  font-weight: var(--font-semi-bold);
}

.nav__logo i {
  font-weight: initial;
  font-size: 1.25rem;
}

.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}

.nav__burger, 
.nav__close {
  position: absolute;
  width: max-content;
  height: max-content;
  inset: 0;
  margin: auto;
  font-size: 1.25rem;
  cursor: pointer;
  transition: opacity .1s, transform .4s;
}

.nav__close {
  opacity: 0;
}

@media screen and (max-width: 1118px) {
  .nav__menu {
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    transition: top .4s, opacity .3s;
  }
  .nav__menu::-webkit-scrollbar {
    width: 0;
  }
  .nav__list {
    background-color: var(--black-color);
    padding-top: 1rem;
  }
}

.nav__link {
  color: var(--white-color);
  background-color: var(--black-color);
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color .3s;
}

.nav__link:hover {
  background-color: var(--black-color-light);
}

.show-menu {
  opacity: 1;
  top: 3.5rem;
  pointer-events: initial;
}

.show-icon .nav__burger {
  opacity: 0;
  transform: rotate(90deg);
}
.show-icon .nav__close {
  opacity: 1;
  transform: rotate(90deg);
}

.dropdown__item {
  cursor: pointer;
}

.dropdown__arrow {
  font-size: 1.25rem;
  font-weight: initial;
  transition: transform .4s;
}

.dropdown__link, 
.dropdown__sublink {
  padding: 1.25rem 1.25rem 1.25rem 2.5rem;
  color: var(--white-color);
  background-color: var(--black-color-light);
  display: flex;
  align-items: center;
  column-gap: .5rem;
  font-weight: var(--font-semi-bold);
  transition: background-color .3s;
}

.dropdown__link i, 
.dropdown__sublink i {
  font-size: 1.25rem;
  font-weight: initial;
}

.dropdown__link:hover, 
.dropdown__sublink:hover {
  background-color: var(--black-color);
}

.dropdown__menu, 
.dropdown__submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease-out;
  max-width: 300px;
}

.dropdown__item:hover .dropdown__menu, 
.dropdown__subitem:hover > .dropdown__submenu {
  max-height: 1000px;
  transition: max-height .4s ease-in;
  max-width: 300px;
  z-index: 10;
}

.dropdown__item:hover .dropdown__arrow {
  transform: rotate(180deg);
}

.dropdown__add {
  margin-left: auto;
}

.dropdown__sublink {
  background-color: var(--black-color-lighten);
}

@media screen and (max-width: 340px) {
  .container {
    margin-inline: 1rem;
  }

  .nav__link {
    padding-inline: 1rem;
  }
}

@media screen and (min-width: 1118px) {
  .container {
    margin-inline: auto;
  }

  .nav {
    height: calc(var(--header-height) + 2rem);
    display: flex;
    justify-content: space-between;
  }
  .nav__toggle {
    display: none;
  }
  .nav__list {
    height: 100%;
    display: flex;
    column-gap: 3rem;
  }
  .nav__link {
    height: 100%;
    padding: 0;
    justify-content: initial;
    column-gap: .25rem;
  }
  .nav__link:hover {
    background-color: transparent;
  }

  .dropdown__item, 
  .dropdown__subitem {
    position: relative;
  }

  .dropdown__menu {
    max-height: initial;
    overflow: initial;
    position: absolute;
    left: 0px;
    top: 6rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, top .3s;
    width: 300px;
  }
  .dropdown__submenu {
    max-height: initial;
    overflow: initial;
    position: absolute;
    left: -300px;
    top: 6rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, top .3s;
    width: 300px;
  }

  .dropdown__link, 
  .dropdown__sublink {
    padding-inline: 1rem 3.5rem;
  }

  .dropdown__subitem .dropdown__link {
    padding-inline: 1rem;
  }

  .dropdown__submenu {
    position: absolute;
    left: -300px;
    top: .8rem;
  }

  .dropdown__item:hover .dropdown__menu {
    opacity: 1;
    top: 4rem;
    pointer-events: initial;
    transition: top .3s;
  }

  .dropdown__subitem:hover > .dropdown__submenu {
    opacity: 1;
    top: 0;
    pointer-events: initial;
    transition: top .3s;
    left: -300px;
  }
}







/* Hero Slider Container */
#heroSlide {
  position: relative;
  width: 100%;
  height: 720px; /* adjust height as needed */
  overflow: hidden;
  margin-top: 70px;
}

/* Slides */
#heroSlide .splide__slide {
    position: relative;
    height: 720px;
}

/* Slide Images */
#heroSlide .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6); /* darken for text readability */
}

/* Slide Text Overlay */
.slide-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  padding: 20px;
}

/* Slide Title */
.slide-text h2 {
  font-size: 3rem;
  margin-bottom: 25px;
  font-weight: bold;
  line-height: 1.2;
}

/* Slide Paragraph */
.slide-text p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}



/* Responsive */
@media (max-width: 768px) {
  #heroSlide {
    height: 350px;
  }

  .slide-text h2 {
    font-size: 2rem;
  }

  .slide-text p {
    font-size: 1rem;
  }

  .slide-text .btn {
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  #heroSlide {
    height: 250px;
  }

  .slide-text h2 {
    font-size: 1.5rem;
  }

  .slide-text p {
    font-size: 0.9rem;
  }
}

/* Hero Slider Only */



/* Logo Slider Only */
.logo-slider {
  overflow: hidden;
  width: 80%;
  background: transparent;
  margin: 0 auto;
}

.slider-track {
  display: flex;
  width: calc(200%); /* enough for looping */
  animation: scroll 30s linear infinite;
}

.slide {
  flex: 0 0 auto;
  width: 200px; /* width of each logo */
  margin: 0 ;
}

.slide img {
  max-width: 100%;
  max-height: 150px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.slide img:hover {
  filter: grayscale(0%);
}

/* Animation */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* scroll half width because we duplicated logos */
}








.page-wrap {
  max-width: 1100px;
  margin: 40px auto;
  padding: 20px;
}

.container1 {
  display: flex;
  gap: 28px;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  align-items: stretch;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

/* left image */
.container1__image {
  flex: 0 0 48%;
  min-width: 260px;
  position: relative;
}

.container1__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 320ms ease;
}

/* right content */
.container1__content {
  flex: 1;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.container1__title {
  margin: 0 0 8px;
  font-size: 1.5rem;
  line-height: 1.3;
}

.container1__desc {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.5;
}

.container1__list {
  margin: 0 0 20px;
  padding-left: 20px;
  color: var(--muted);
}

.container1__list li {
  margin: 8px 0;
}

.container1__actions {
  margin-top: auto;
}

.container1__list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.container1__list li {
  margin: 10px 0;
}

.container1__list a {
  text-decoration: none;
  color: var(--muted);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}

.container1__list a:hover {
  color: var(--accent);
}

.container1__list i {
  color: var(--accent);
  min-width: 18px; /* keeps icons aligned */
}
.container1__list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.container1__list li {
  margin: 10px 0;
}

.container1__list a {
  text-decoration: none;
  color: #555555;   /* normal link color */
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.container1__list i {
    color: #0f62fe;   /* icon color */
    min-width: 18px;  /* keeps icons aligned */
    transition: 0.3s;
}


/* Hover effect */
.container1__list a:hover {
    color: #0f62fe;          /* text turns blue */
    transform: translateX(5px); /* slight slide right */
    transition: 0.3s;
}

.container1__list a:hover i {
    color: #0f62fe;          /* icon turns blue */
    transform: scale(1.2);   /* icon grows slightly */
    transition: 0.3s;
}
.btn {
  display: inline-block;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
}

.btn-primary {
  background: linear-gradient(90deg, var(--accent), #2563eb);
  color: white;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.18);
}

/* hover effects */
.container1__image img:hover {
  transform: scale(1.03);
}

.container1:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 22, 39, 0.12);
}

/* responsive */
@media (max-width: 880px) {
  .container1 {
    flex-direction: column;
  }

  .container1__image {
    flex-basis: auto;
  }
}

@media (max-width: 480px) {
  .container1__title {
    font-size: 1.125rem;
  }

  .container1__content {
    padding: 18px;
  }

  .container1__list {
    padding-left: 18px;
  }
}
















/*about*/


    .about {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 80px;
      padding: 60px 10%;
      flex-wrap: wrap;
      width: 80%;
      margin: 0 auto;
    }

    .about img {
      width: 300px;  
      max-width: 100%;
      /* border-radius: 20px; */
      /* box-shadow: 0 10px 25px rgba(0,0,0,0.15); */
      transition: transform 0.3s ease;
    }

    .about img:hover {
      transform: scale(1.05);
    }

    .about-text {
      max-width: 500px;
    }

    .about-text h2 {
      font-size: 2.2rem;
      margin-bottom: 15px;
      color: #222;
    }

    .about-text p {
      font-size: 1rem;
      line-height: 1.6;
      color: #555;
      margin-bottom: 25px;
    }

    .btn {
      display: inline-block;
      padding: 12px 28px;
      border-radius: 30px;
      font-size: 1rem;
      font-weight: 600;
      text-decoration: none;
      background: linear-gradient(135deg, #6a11cb, #2575fc);
      color: #fff;
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
      transition: all 0.3s ease;
    }

    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 25px rgba(0,0,0,0.2);
    }
    .btn1 {
      display: inline-block;
      padding: 12px 28px;
      border-radius: 30px;
      font-size: 1rem;
      font-weight: 600;
      text-decoration: none;
      color: #fff;
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
      transition: all 0.3s ease;
    }

    .btn1:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 25px rgba(0,0,0,0.2);
    }


/* contact */


    .containerC {
      width: 90%;
      max-width: 1200px;
      margin: 100px auto;
    }

    h1 {
      text-align: center;
      margin-bottom: 20px;
      font-size: 2rem;
      color: #222;
    }

    .contact-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
    }

    /* Contact Form */
    .contact-form {
      background: #fff;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .contact-form h2 {
      margin-bottom: 15px;
      font-size: 1.5rem;
    }

    .contact-form label {
      display: block;
      margin: 10px 0 5px;
      font-weight: bold;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 10px;
      margin-bottom: 15px;
      border: 1px solid #ddd;
      border-radius: 6px;
      font-size: 1rem;
    }

    .contact-form textarea {
      resize: none;
      height: 120px;
    }




    /* Contact Info */
    .contact-info {
      background: #fff;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .contact-info h2 {
      margin-bottom: 15px;
      font-size: 1.5rem;
    }

    .info {
      margin-bottom: 15px;
    }

    .info p {
      margin: 5px 0;
    }

    iframe {
      width: 100%;
      height: 250px;
      border: none;
      border-radius: 8px;
      margin-top: 15px;
    }

    .info i {
        color: #007BFF;
        margin-right: 8px;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .contact-wrapper {
        grid-template-columns: 1fr;
      }
    }

.containerP {
    max-width: 1400px;
    margin: 0 auto;

}

/* products */
.container {
    max-width: 1200px;
    margin: 0 auto;

}
.section-title {
    font-family: var(--body-font);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.3px;
    margin: 25px 0 0 0;
    position: relative;
    display: inline-block;
}
.section-subtitle {
    font-family: var(--body-font);
    font-size: clamp(1rem, 2vw, 1.8rem);
    font-weight: 500;
    margin: 50px 0 ;
    color: #0223b6;
}
.section-title::after {
    content: "";
    display: block;
    width: 52px;
    height: 3px;
    margin-top: 8px;
    background: linear-gradient(90deg, #111 0%, #777 100%);
    border-radius: 2px;
}

/* #loadMoreBtn {
    margin-top: 30px;
    padding: 10px 25px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
} */

/* #loadMoreBtn:hover {
    background: #0056b3;
} */

/* .hidden {
    display: none;
} */

/* Responsive */
@media screen and (max-width: 992px) {
    .product-card {
        width: calc(50% - 20px);
    }
}

@media screen and (max-width: 600px) {
    .product-card {
        width: 100%;
    }
}

/*about*/

  /* Hero Section */
  .aboutBG{
    background: url('/storage/images/about.png') center/cover no-repeat;
    margin-top: 45px;
  }  
  .OccupationalHealthCenterSetup{
    background: url('/storage/images/slides/slider1.png') center/cover no-repeat;
  }  
  .ICUEquipments{
    background: url('/storage/images/slides/slider2.png') center/cover no-repeat;
  }  
  .AmbulanceModificationService{
    background: url('/storage/images/slides/slider3.png') center/cover no-repeat;
  }  
  .hero {
      color: #fff;
      text-align: center;
      padding: 300px 200px;
      position: relative;
    }
    .hero::after {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.5);
    }
    .hero-content {
      position: relative;
      z-index: 1;
    }
    .hero h1 {
      font-size: 3rem;
      margin-bottom: 10px;
      color: #ddd;
    }
    .hero p {
      font-size: 1.2rem;
    }

    /* About Section */
    .containerAbout {
      width: 90%;
      max-width: 1400px;
      margin: 40px auto;
    }
    .about-text {
        text-align: center;
        margin: 40px auto;
    }
    .about-text h2 {
      font-size: 2rem;
      margin-bottom: 15px;
    }
    .about-text p {
      font-size: 1rem;
      color: #555;
    }

    /* Services & Products */
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-bottom: 50px;
    }
    .card {
      background: #fff;
      padding: 20px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      transition: transform 0.3s;
    }
    .card:hover {
      transform: translateY(-5px);
    }
    .card i {
      font-size: 2rem;
      color: #007BFF;
      margin-bottom: 10px;
    }
    .card h3 {
      font-size: 1.2rem;
      margin-bottom: 10px;
    }
    .card p {
      font-size: 0.95rem;
      color: #666;
    }

    /* Mission Section */
    .mission {
      background: #007BFF;
      color: #fff;
      padding: 50px 20px;
      border-radius: 10px;
      text-align: center;
    }
    .mission h2 {
      font-size: 2rem;
      margin-bottom: 20px;
    }
    .mission p {
      font-size: 1.1rem;
      max-width: 800px;
      margin: auto;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2rem;
      }
      .hero p {
        font-size: 1rem;
      }
    }

    /* products */

    .product-container {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin: 0 auto;
      margin-top: 150px;
      margin-bottom: 100px;
    }

    .product-card {
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    
    .product-card:hover {
      transform: translateY(-8px);
      transition: transform 0.3s ease;
    }
    
    .product-image {
      position: relative;
      overflow: hidden;
      transition: transform 0.3s ease;
    }
    
    .product-image img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    
    .product-card:hover img {
      transform: scale(1.1);
      transition: transform 0.3s ease;
    }

    .product-desc {
      padding: 15px;
      text-align: center;
      font-size: 18px;
      margin-bottom: 0;
      color: #333;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .product-container {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .product-container {
        grid-template-columns: 1fr;
      }
    }




.client-logo-title {
  margin: 0 0 8px;
  font-size: 1.5rem;
  line-height: 2;
  text-align: center;
}

/* FOOTER */
footer {
      background: #222;
      color: #fff;
      padding: 40px 20px;
    }

    .footer-container {
      display: flex;
      justify-content: space-between;
      max-width: 1400px;
      margin: auto;
      flex-wrap: wrap;
      gap: 30px;
    }

    /* Left Section */
    .footer-left {
      flex: 1;
      min-width: 250px;
    }
    .footer-left img {
      width: 120px;
      margin-bottom: 10px;
    }
    .footer-left p {
      font-size: 14px;
      color: #ccc;
    }

    /* Center Section */
    .footer-center {
      flex: 2;
      display: flex;
      justify-content: space-around;
      min-width: 300px;
    }
    .footer-links {
      list-style: none;
      padding: 0;
    }
    .footer-links h4 {
      margin-bottom: 10px;
      font-size: 16px;
      border-bottom: 2px solid #007BFF;
      display: inline-block;
      padding-bottom: 5px;
    }
    .footer-links li {
      margin: 8px 0;
    }
    .footer-links a {
      color: #ccc;
      text-decoration: none;
      transition: 0.3s;
    }
    .footer-links a:hover {
      color: #fff;
    }

    /* Right Section */
    .footer-right {
      flex: 1;
      min-width: 250px;
    }
    .footer-right p {
      margin: 8px 0;
      font-size: 14px;
    }
    .social-icons {
      margin-top: 15px;
    }
    .social-icons a {
      display: inline-block;
      color: #fff;
      margin-right: 10px;
      font-size: 18px;
      transition: 0.3s;
    }
    .social-icons a:hover {
      color: #007BFF;
    }

    /* Bottom */
    .footer-bottom {
      text-align: center;
      padding: 15px;
      border-top: 1px solid #444;
      margin-top: 20px;
      font-size: 13px;
      color: #aaa;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        text-align: center;
      }
      .footer-center {
        flex-direction: column;
      }
    }
    
    
    
    
    
/*21-sep-2025*/
  .EventsBG{
    background: url('/storage/images/events.jpg') center/cover no-repeat;
    margin-top: 45px;
  }  
.pdf-wrapper {
    display: flex;
    justify-content: center;   /* center horizontally */
    align-items: flex-start;   /* align at top */
    min-height: 100vh;
    background: #f4f4f4;
    padding: 20px;
}

#pdf-viewer {
    display: flex;
    flex-direction: column;    
    align-items: center;       
    gap: 20px;                 
    width: 100%;
    max-width: 900px;          
    background: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    border-radius: 8px;
}




/* Event card */
.event-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Hover effect */
.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Event image */
.event-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* Event title */
.event-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
    margin-bottom: 14px;
}

/* Event date and location */
.event-date,
.event-location {
    color: #777;
    margin-bottom: 8px;
}

/* Event description */
.event-description {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Register button */
.event-button {
    padding: 10px 25px;
    font-size: 16px;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.event-button:hover {
    background-color: #0056b3;
}


/* 22-sep-2025 */

.login-container {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
    margin: 150px auto 50px auto;
}

.login-container h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #333;
}

.login-container form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.login-container form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.login-container form input:focus {
    border-color: #007BFF;
    outline: none;
}

.login-container form button {
    width: 100%;
    padding: 12px;
    background-color: #007BFF;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}

.login-container form button:hover {
    background-color: #0056b3;
}


h2 {
    color: #333;
    margin-bottom: 10px;
}

h3 {
    margin-top: 30px;
    color: #444;
}

form {
    margin-top: 20px;
}

label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
    color: #555;
}

input[type="text"],
input[type="file"],
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 14px;
}

textarea {
    resize: vertical;
    min-height: 80px;
}

button {
    display: inline-block;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}

.save-btn {
    background-color: #28a745;
    color: #fff;
}

.save-btn:hover {
    background-color: #218838;
}

.logout-btn {
    background-color: #dc3545;
    color: #fff;
    float: right;
    margin-top: -40px;
}

.logout-btn:hover {
    background-color: #c82333;
}

.alert.success {
    background: #d4edda;
    color: #155724;
    padding: 12px;
    border-radius: 5px;
    margin-bottom: 15px;
    border: 1px solid #c3e6cb;
}

/* 23-sep-2025 */

        .event-container {
            width: 80%;
            margin: auto;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
        }
        .event-card {
            border: 1px solid #ddd;
            border-radius: 10px;
            background: #fff;
            overflow: hidden;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        }
        .event-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        .event-card .content {
            padding: 15px;
        }
        .event-card h3 {
            margin: 0 0 10px;
            font-size: 20px;
        }
        .event-card p {
            margin: 5px 0;
        }
        .event-card .location {
            font-weight: bold;
            color: #007BFF;
        }
        .gallery-btn {
            display: inline-block;
            margin-top: 10px;
            padding: 8px 12px;
            background: #007BFF;
            color: #fff;
            border-radius: 5px;
            cursor: pointer;
            text-decoration: none;
        }

        .modal {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.8);
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }
    .modal-content {
        position: relative;
        width: 80%;
        max-width: 1000px;
    }
    .modal-content img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }
    .close-btn {
        position: absolute;
        top: 20px;
        right: 30px;
        font-size: 30px;
        color: #fff;
        cursor: pointer;
    }
    .nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        font-size: 40px;
        color: #fff;
        cursor: pointer;
        user-select: none;
        padding: 10px;
    }
    .nav-btn.prev { left: 10px; }
    .nav-btn.next { right: 10px; }

.dashboard-container {
    width: 80%;
    margin: 150px auto;
    font-family: Arial, sans-serif;
}

/* Heading */
h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    margin: 2px;
}

.btn-primary { background-color: #007BFF; }
.btn-success { background-color: #28A745; }
.btn-warning { background-color: #FFC107; color: #333; }
.btn-danger  { background-color: #DC3545; }

/* Table styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table th, table td {
    padding: 10px;
    text-align: left;
    border: 1px solid #ddd;
}

table th {
    background-color: #f4f4f4;
    color: #333;
}

table img {
    max-width: 60px;
    border-radius: 5px;
}

/* Form inputs */
input[type="text"],
textarea,
input[type="file"] {
    width: 100%;
    padding: 8px 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

/* Labels */
label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

/* Pagination */
.pagination {
    margin-top: 15px;
    text-align: center;
}

.pagination .page-link {
    padding: 6px 12px;
    margin: 0 3px;
    border: 1px solid #ddd;
    border-radius: 3px;
    color: #007BFF;
    text-decoration: none;
}

.pagination .active .page-link {
    background-color: #007BFF;
    color: #fff;
    border-color: #007BFF;
}

/* Image previews in edit form */
.form-control img {
    margin-bottom: 5px;
    border-radius: 5px;
}