 body { line-height: 1.6; }
    .hero {
      background: linear-gradient(rgba(0,0,0,.3), rgba(0,0,0,.3)), url(../images/banner1.jpg) center/cover no-repeat;
      color: #fff;
      padding: 160px 0;
    }
    .hero h1 { font-weight: 700; }
    .section-title {
      margin-bottom: 40px;
    }
   
	
	.navbar{background: radial-gradient(circle at center, #2f3f8f, #1e275f);}
	.nav-link{color:#FFFFFF;}
	.nav-link:hover{color:#ffc107;}
	
	
	.logo img {
    width: 170px; position:absolute; top:4px;
}
.KP .logo img {
    width: 60px;
    position: absolute;
    top: 0px;
}



.animated-btn {
    position: relative;
    padding: 12px 40px;
    font-size: 25px; font-weight:700;
    color: #fff;
    background: linear-gradient(45deg, #ff4d4d, #ff9900);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;

    /* Auto animation */
    animation: float 2s ease-in-out infinite,
               glow 1.5s ease-in-out infinite alternate;
}

/* Floating up-down animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Glow animation */
@keyframes glow {
    from {
        box-shadow: 0 0 10px rgba(255, 100, 0, 0.4);
    }
    to {
        box-shadow: 0 0 25px rgba(255, 150, 0, 0.9);
    }
}

/* Shine effect (continuous) */
.animated-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
    animation: shine 2s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Click effect */
.animated-btn:active {
    transform: scale(0.95);
}



/*VISION &amp; MISSION*/
.vision-mission { background:rgba(248, 249, 250);
  margin: 60px auto;
  padding: 30px 15px;
}

.vm-card {
  position: relative;
  margin-bottom: 40px;
}

/* Icon */
.vm-icon {
  position: absolute;
  top: 2px;
  left: 20px;
  font-size: 34px;
  background: #fff;
  border-radius: 50%;
}

/* Title pill */
.vm-title {
  display: inline-block;
  background: #0b3a75;
  color: #ffc107;
  padding: 10px 30px;
  border-radius: 30px;
  font-size: 20px;
  font-weight: 700;
  margin-left: 60px;
  margin-bottom: -20px;
  position: relative;
  z-index: 2;
}

/* Content box */
.vm-content {
  background: linear-gradient(135deg, #083c6d, #1f9d7a);
  color: #ffffff;
  padding: 35px 30px 30px;
  border-radius: 12px;
  font-size: 16px;
  line-height: 1.6;
  margin-top: -10px;
}

/* Responsive */
@media (max-width: 576px) {
  .vm-title {
    font-size: 18px;
    padding: 8px 22px;
  }

  .vm-content {
    font-size: 15px;
    padding: 30px 20px;
  }
}


/*End VISION &amp; MISSION*/

/*Objective*/
.objective-diagram {
  display: flex;
  justify-content: center;
  padding: 60px 15px;
}

.diagram {
  position: relative;
  width: 900px;
  height: 400px;
}

.box {
  position: absolute;
  width: 360px;
  padding: 25px;
  background: #fff;
  border-radius: 28px;
  text-align: center;
  font-size: 18px;
  line-height: 1.5; min-height:160px;
}

/* Box positions */
.red   { top: 0; left: 0; border: 4px solid #b30000; }
.green { top: 0; right: 0; border: 4px solid #2fa37c; }
.blue  { bottom: 0; left: 0; border: 4px solid #0b3a75; }
.orange{ bottom: 0; right: 0; border: 4px solid #ea7b45; }

/* Center circle */
.center-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  background: #ffffff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

/* Labels */
.label {
  position: absolute;
  padding: 8px 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 30px;
  text-align: center; min-width:100px;
}

.red-label {
  background: #b30000;
  top: 115px;
  left: 292px;
  transform: rotate(-45deg);
}

.green-label {
  background: #2fa37c;
  top: 115px;
  right: 310px;
  transform: rotate(45deg);
}

.blue-label {
  background: #0b3a75;
  bottom: 120px;
  left: 290px;
  transform: rotate(45deg);
}

.orange-label {
  background: #ea7b45;
  bottom: 130px;
  right: 305px;
  transform: rotate(-45deg);
}

/* Responsive */
@media (max-width: 992px) {
  .diagram {
    width: 100%;
    height: auto;
  }

  .box {
    position: static;
    width: 100%;
    margin-bottom: 20px;
  }

  .center-circle,
  .label {
    display: none;
  }
}




.btn-container {
  display: grid;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 40px 0;
}

.btn {
  position: relative;
  padding: 8px 36px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  border-radius: 40px;
  overflow: hidden;
  transition: all 0.4s ease;
}

/* Button Colors */
.btn-1 { background: #0b3a75; }
.btn-2 { background: #198754; }
.btn-3 { background: #fd7e14; }
.btn-4 { background: #dc3545; }

/* Hover Animation Effect */
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.25);
  transition: left 0.4s ease;
}

.btn:hover::before {
  left: 0;
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* Mobile */
@media (max-width: 576px) {
  .btn {
    width: 100%;
    text-align: center;
  }
}





/*Footer*/
 footer {
      background: #0f172a;
      color: #fff;
    }
    footer a { color: #cbd5f5; text-decoration: none; }
	.cnsi-footer {
  background: radial-gradient(circle at center, #2f3f8f, #1e275f);
  padding: 40px 0;
  font-size: 15px;
}

.cnsi-footer a {
  color: #ffd966;
  text-decoration: none;
}

.cnsi-footer a:hover {
  text-decoration: underline;
}

.footer-title {
  font-weight: 700;
  margin-bottom: 8px;
  color: #ffffff;
}

.footer-logo {
  max-width: 160px;
}

.sub-foot h3 {
    font-size: 19px;
    text-transform: uppercase;
    width: 100%;
    padding-bottom: 10px;
}
.sub-foot p {
    float: left;
    width: 100%;
    line-height: 27px;
    font-size: 15px;
    color: #FFFFFF;
}

.footer-bot {
    padding: 8px 0 5px !important;
    background: #230461;
    margin-top: 1px;
}
.footer-bot h4 {
    color: #FFFFFF;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}
.footer-bot h5 {
    color: #FFFFFF;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}
.footer-bot a{color:#ffd966; text-decoration:underline;}
.footer-bot a:hover{color:#fff; text-decoration:underline;}

@media (max-width: 768px) {
  .cnsi-footer {
    text-align: center;
  }

  .cnsi-footer .text-lg-end {
    text-align: center !important;
  }
}

/* Scroll to Top Button */
#scrollTopBtn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: none;
  z-index: 9999;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

#scrollTopBtn:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, #1e40af, #2563eb);
}

.social-media {
  display: inline-block;
  gap: 14px;
  justify-content: center;
  margin-top: 20px;
}

.social-media a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  transition: all 0.35s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}

/* Brand Colors */
.social-media .facebook { background: #1877f2; }
.social-media .twitter  { background: #000; }
.social-media .instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}
.social-media .linkedin { background: #0a66c2; }
.social-media .youtube  { background: #ff0000; }

/* Hover Effect */
.social-media a:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
}

/*End Footer*/



/*INNER PAGE*/
.page-banner {
      background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)), url(../images/conf-banner.jpg) center/cover no-repeat;
      color: #fff;
      padding: 120px 0;
    }

    .breadcrumb {
      background: transparent;
      margin-bottom: 0;
    }

    .breadcrumb a {
      text-decoration: none;
      color: #0d6efd;
    }

	.chairman-message {
  background: linear-gradient(to bottom, #ffffff 70%, #eef6fb);
  padding: 60px 15px 40px;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #222;
}

/*.container {
  max-width: 900px;
  margin: auto;
}*/

.title {
  font-family: "Brush Script MT", cursive;
  font-size: 30px;
  color: #1e5aa8;
  margin-bottom: 25px;
}

.chairman-message p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.closing {
  margin-top: 30px;
}


.wlcm-msg{box-shadow:3px 5px 25px 1px; padding:20px 25px;}



/* Responsive */
@media (max-width: 576px) {
  .title {
    font-size: 24px;
  }

  .chairman-message p {
    font-size: 15px;
  }
}
/*END Inner Page*/



/*COMMITTEE*/
 .committee-card {
      background: #fff;
      border-radius: 14px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 10px 30px rgba(0,0,0,.08);
      transition: all .35s ease;
      height: 100%;
    }

    .committee-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 18px 45px rgba(0,0,0,.15);
    }

    .committee-photo {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      object-fit: cover;
      border: 4px solid #2563eb;
      margin-bottom: 15px;
    }

    .committee-name {
      font-weight: 700;
      color: #1e293b;
      margin-bottom: 4px;
    }

    .committee-designation {
      color: #2563eb;
      font-size: 14px;
      font-weight: 600;
    }

    .committee-location {
      font-size: 13px;
      color: #64748b;
      margin-top: 5px;
    }

/*End Committee*/