body { margin:0; padding:2px; font-family: Arial, sans-serif;}
h1 { color:#132d7a; }
h2 { color:#004a73; }
p {font-weight:bold;}
button { background:#00629B; color:#fff; border:none; padding:10px 20px; margin:5px; cursor:pointer; }
button:hover { background:#004a73; }
.website-counter {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}


/* Glimpses
#glimps{ text-align:center; padding:20px; background:#f4f4f4; }  */



/* Styles for website counter container */
.website-counter {
  position: fixed; 
  bottom: 15px; 
  right: 45px;
  background-color: #ff4957;
  height: 50px;
  width: 80px;
  color:white;
  border-radius: 30px;
  font-weight: 700;
  font-size: 25px;
  margin-top: 10px;
  margin-left: 10px;
}

/* Styles for reset button */
.reset {
  position: fixed; 
  bottom: 100px; 
  right: 15px;
  margin-top: 20px;
  background-color: #008cba;
  cursor: pointer;
  font-size: 18px;
  padding: 8px 20px;
  color: #f4f4f4;
  border: 0;
}

/*Logo Left*/
.logo {
        position: absolute;
        left: 10px;
        top:115px;
        width: 100px;
        height: 100px;
}

/*IEEE Logo Left*/
.ieeelogo {
        position: absolute;
        right: 10px;
        top:100px;
        width: 250px;
        height: 100px;
}

/* === Responsive Enhancements (appended) === */
* { box-sizing: border-box; }
img { max-width: 100%; height: auto; display: block; }
button { border-radius: 8px; }

/* Layout helpers */
.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }

/* Tweak absolute logos for small screens */
@media (max-width: 992px) {
  .logo, .ieeelogo { position: relative; top: auto; left: auto; right: auto; width: 40vw; height: auto; margin: 12px auto; }
}
@media (max-width: 600px) {
  body { padding: 8px; }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.3rem; }
  p  { font-weight: normal; font-size: 1rem; }
  button { width: 100%; max-width: 420px; padding: 12px 16px; font-size: 1rem; }
}

/* Counter positioning & sizing on mobile */
@media (max-width: 768px) {
  .website-counter { bottom: 10px; right: 10px; width: 64px; height: 42px; font-size: 18px; border-radius: 12px; }
  #reset { bottom: 60px; right: 10px; font-size: 14px; padding: 6px 12px; }
}

/* Prefer reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
}


/* Slideshow container */

/* * {box-sizing:border-box} */


.slideshow-container {
  max-width: 1000px;
  max-height:300px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f1f1f1;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/*Collipsible Menu */
.collapsible {
  background-color: #777;
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}

.active, .collapsible:hover {
  background-color: #555;
}

.content {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: #f1f1f1;
}

/*section ID */
#about{padding:20px; margin:10px;}

/* Modern Navigation Bar */
.modern-nav {
    background: #0068a0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px;
  }

.modern-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modern-nav ul li {
    margin: 0 15px;
}

.modern-nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background 0.3s ease, color 0.3s ease;
}

.modern-nav ul li a:hover {
    background: #0025a0;
    color: #ffffff;
}

.modern-nav ul li a.active {
    background: #ffffff;
    color: #004a73;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-nav ul {
        flex-direction: column;
        padding: 10px 0;
    }

    .modern-nav ul li {
        margin: 10px 0;
    }
}
/*Welcome Heading Animation*/
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*Button Styles*/
.modern-button {
  background: linear-gradient(to right, #004a73, #00629B);
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.modern-button:hover {
  background: linear-gradient(to right, #33030f, #3d0315);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.modern-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


/*Div Hover Style*/


/* Default styles for the div */
.cfpDiv {
  background: #ffffff; padding: 10px; border-radius: 10px; box-shadow: 0 2px 4px rgba(0, 0, 0, 1);
}

/* Styles to apply when the user hovers over the div */
.cfpDiv:hover {
  background-color: rgb(167, 194, 245);
  color: white;
  /* You can change many properties, e.g., border, size, shadow, etc. */
  border-color: white; 
}
