/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f9fc;
  color: #2c3e50;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #004080;
  padding: 10px 0;
  color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-bar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
}

.logo-title {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  width: 90px;
  height: auto;
  background-color: white;
  padding: 6px 8px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.summit-name {
  font-size: 20px;
  font-weight: 600;
  color: white;
  white-space: nowrap;
}

.navbar {
  display: flex;
  justify-content: flex-end;
  flex-grow: 1;
}

.nav-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 25px;
  padding-left: 0;
  margin: 0;
}

/* Modern Nav Link Styling */
.nav-menu li a {
  position: relative;
  padding: 10px 14px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Hover underline effect */
.nav-menu li a::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: #ffcc00;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-menu li a:hover::before {
  width: 100%;
}

/* Click ripple effect */
.nav-menu li a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.4s, transform 0.4s;
  z-index: 0;
  border-radius: 4px;
}

.nav-menu li a:active::after {
  opacity: 1;
  transform: scale(1.1);
}


.admin-btn {
  background-color: #004080;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.admin-btn:hover {
  background-color: #0066cc;
}

@media (max-width: 768px) {
  .header-bar {
    flex-direction: column;
    align-items: center;
  }

  .logo-title {
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
  }

  .navbar {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }

  .nav-menu {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

/* Keep all your existing styles from Hero Slider downwards unchanged */



/**************** Hero Slider ****************************/
.hero-slider {
  position: relative;
  overflow: hidden;
  height: 500px;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0%;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}

.hero-slide.active {
  left: 0;
  opacity: 1;
  z-index: 1;
}

.hero-slide .overlay {
  text-align: center;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 12px;
}

.hero-slide h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.hero-slide p {
  font-size: 18px;
  margin-bottom: 20px;
}

.hero-slide .btn {
  padding: 12px 25px;
  background: #ff9800;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: background 0.3s;
}

.hero-slide .btn:hover {
  background: #e68a00;
}



/* About Section */
.about-summit {
  background: #ffffff;
  padding: 60px 20px;
}

.about-summit h2 {
  font-size: 28px;
  text-align: center;
  color: #004080;
  margin-bottom: 20px;
}

.about-summit p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  max-width: 800px;
  margin: auto auto 20px;
  text-align: justify;
}

/* --------------------------------Scientific Programme---------------------------- */
/* ===================== Ultra-Modern Scientific Programme Styling ===================== */

.scientific-programme {
  padding: 100px 0;
  background: linear-gradient(to bottom, #f4f9ff 0%, #ffffff 100%);
}

.scientific-programme h2 {
  font-size: 40px;
  text-align: center;
  font-weight: 800;
  color: #0a66c2;
  margin-bottom: 60px;
  position: relative;
}

.scientific-programme h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #0a66c2;
  margin: 12px auto 0;
  border-radius: 3px;
}

.program-day {
  margin-bottom: 60px;
  text-align: center;
}

.program-day h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #333;
  border-left: 5px solid #0a66c2;
  padding-left: 16px;
  display: inline-block;
}

.program-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 36px;
  max-width: 950px;
  margin: 0 auto 40px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e1eaf5;
  position: relative;
}

.program-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
}

.program-box h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0a66c2;
  border-bottom: 2px dashed #d4e3f3;
  padding-bottom: 10px;
  text-align: left;
}

.program-box ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.program-box li {
  display: flex;
  flex-direction: column;
  background: #f1f7fd;
  padding: 18px 20px;
  border-radius: 10px;
  margin-bottom: 15px;
  position: relative;
  border-left: 5px solid #0a66c2;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.program-box li:hover {
  background: #e5f0fa;
}

.program-box li strong {
  font-size: 17px;
  color: #333;
}

.program-box li em {
  font-style: normal;
  font-weight: 500;
  color: #0a66c2;
  font-size: 15px;
}

.program-box li .topic-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
  font-size: 14px;
  color: #555;
  gap: 12px;
}

.topic-meta span {
  background-color: #e0efff;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 500;
  color: #0a66c2;
}

@media (max-width: 768px) {
  .program-box {
    padding: 24px;
  }

  .program-box h4 {
    font-size: 20px;
  }

  .program-box li {
    padding: 14px 16px;
  }

  .program-box li strong {
    font-size: 16px;
  }

  .topic-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------------------------Scientific Programme ended--------------------------- */



/* Forms - Registration & Contact */
.registration-form {
  background: #f4f8fc;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.registration-form .container {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  max-width: 800px;
  width: 100%;
}

.registration-form h2 {
  text-align: center;
  font-size: 28px;
  color: #004080;
  margin-bottom: 30px;
  font-weight: 700;
}

form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group-full {
  grid-column: span 2;
}

label {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

input[type="text"],
input[type="email"],
textarea {
  padding: 10px 14px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  transition: border 0.3s ease;
}

input:focus,
textarea:focus {
  border-color: #004080;
}

textarea {
  resize: none;
  height: 100px;
}

select {
  padding: 10px 14px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: white;
  outline: none;
  transition: border 0.3s ease;
}

select:focus {
  border-color: #004080;
}

select:focus {
  border-color: #004080;
}


.btn {
  grid-column: span 2;
  justify-content: center;
  text-align: center;
  padding: 40px;
  background: #004080;
  color: white;
  font-size: 18px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #003366;
}

/* Admin Login */
/* ========== Admin Login Section ========== */
.admin-login {
  background: linear-gradient(to bottom right, #f4f9fc, #e3f2fd);
  padding: 100px 20px;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.admin-login .container {
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 16px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  animation: fadeIn 0.7s ease both;
}

.admin-login h2 {
  text-align: center;
  color: #0b72b9;
  font-size: 26px;
  margin-bottom: 30px;
  font-weight: 700;
}

/* Form Styling */
#admin-login-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.admin-login .form-group {
  display: flex;
  flex-direction: column;
}

.admin-login label {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.admin-login input[type="text"],
.admin-login input[type="password"] {
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  transition: all 0.3s ease;
}

.admin-login input:focus {
  border-color: #0b72b9;
  box-shadow: 0 0 0 3px rgba(11, 114, 185, 0.1);
}

/* Password Toggle */
.password-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}

.password-wrapper input {
  flex: 1;
}

.toggle-password {
  margin-left: 10px;
  padding: 10px 16px;
  background-color: #0b72b9;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.toggle-password:hover {
  background-color: #095a8d;
}

/* Submit Button */
#admin-login-form .btn {
  background: #0b72b9;
  color: white;
  padding: 14px 0;
  border: none;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#admin-login-form .btn:hover {
  background: #095a8d;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 480px) {
  .admin-login .container {
    padding: 30px 20px;
  }

  .toggle-password {
    padding: 8px 12px;
    font-size: 13px;
  }
}








/* ----------------Admin Dashboard------------------- */
/* ========== Admin Dashboard ========== */
.admin-dashboard {
  background: #f4f9fc;
  padding: 80px 20px;
  min-height: 100vh;
}

.admin-dashboard .container {
  max-width: 1200px;
  margin: auto;
  background: #ffffff;
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.admin-dashboard h2 {
  font-size: 28px;
  font-weight: 700;
  color: #0b72b9;
  text-align: center;
  margin-bottom: 10px;
}

.admin-dashboard p {
  text-align: center;
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

/* Section Cards */
.admin-section {
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.admin-section h3 {
  font-size: 22px;
  margin-bottom: 25px;
  color: #004080;
  border-left: 5px solid #f05aa2;
  padding-left: 15px;
}

/* Button Styles */
.btn,
.btn-download,
.btn-logout {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-right: 10px;
}

.btn {
  background-color: #0b72b9;
  color: white;
}

.btn:hover {
  background-color: #095a8d;
}

.btn-download {
  background-color: #0073e6;
  color: white;
}

.btn-download:hover {
  background-color: #005bb5;
}

.btn-logout {
  background-color: #e74c3c;
  color: white;
}

.btn-logout:hover {
  background-color: #c0392b;
}

/* Table Display for Saved Data */
#program-content,
#registered-members {
  overflow-x: auto;
  margin-top: 20px;
}

#program-content table,
#registered-members table {
  width: 100%;
  border-collapse: collapse;
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

#program-content th,
#program-content td,
#registered-members th,
#registered-members td {
  padding: 12px 15px;
  border: 1px solid #eee;
  text-align: left;
}

#program-content th,
#registered-members th {
  background-color: #0b72b9;
  color: white;
  font-weight: 600;
}

#program-content tr:nth-child(even),
#registered-members tr:nth-child(even) {
  background-color: #f7f7f7;
}

/* Action Buttons in Table Rows */
/* ----------- Admin Table Action Buttons ----------- */
.table-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  color: white;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.table-action-edit {
  background-color: #ffc107;
}

.table-action-edit:hover {
  background-color: #e0a800;
  transform: scale(1.05);
}

.table-action-delete {
  background-color: #e74c3c;
}

.table-action-delete:hover {
  background-color: #c0392b;
  transform: scale(1.05);
}

/* ----------- General Dashboard Buttons (with Icons) ----------- */
.btn,
.btn-download,
.btn-logout {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover,
.btn-download:hover,
.btn-logout:hover {
  transform: translateY(-2px);
}

.btn {
  background-color: #0b72b9;
  color: white;
}

.btn-download {
  background-color: #0073e6;
  color: white;
}

.btn-logout {
  background-color: #e74c3c;
  color: white;
}

.btn i,
.btn-download i,
.btn-logout i,
.table-action-btn i {
  font-size: 16px;
}

/* Search Bar */
.search-input {
  width: 100%;
  max-width: 400px;
  padding: 12px;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
}








/* Footer */
footer {
  background: #004080;
  color: white;
  text-align: center;
  padding: 30px 20px;
  font-size: 15px;
  margin-top: 60px;
  line-height: 1.8;
}

footer a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
}

footer a:hover {
  text-decoration: underline;
}
/* -------------Footer End------------------ */

/* Responsive */
  @media (max-width: 768px) {
    .header-bar {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .navbar {
      width: 100%;
      justify-content: center;
      margin-top: 10px;
    }
  
    .nav-menu {
      flex-direction: column;
      align-items: center;
    }
  }  

 
  .btn {
    grid-column: span 1;
  }

  .logo-title {
    justify-content: center;
  }

  .navbar {
    text-align: center;
    margin-top: 10px;
  }
  


  /* ========== Contact Form Section ========== */
.contactus-section {
  background: linear-gradient(to bottom right, #f4f9fc, #ffffff);
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.contactus-section .container {
  background: #ffffff;
  padding: 50px;
  border-radius: 16px;
  max-width: 800px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contactus-section h2 {
  text-align: center;
  font-size: 30px;
  color: #0b72b9;
  margin-bottom: 30px;
  font-weight: 700;
}

/* Form Structure */
#contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group-full {
  grid-column: span 2;
}

/* Labels and Inputs */
label {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: border 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: #0b72b9;
  box-shadow: 0 0 0 3px rgba(11, 114, 185, 0.1);
}

/* Textarea */
textarea {
  resize: vertical;
  min-height: 120px;
}

/* Submit Button */
#contact-form button[type="submit"] {
  grid-column: span 2;
  padding: 14px 0;
  background: #0b72b9;
  color: white;
  font-size: 17px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#contact-form button[type="submit"]:hover {
  background: #095a8d;
}

/* Responsive Layout */
@media (max-width: 768px) {
  #contact-form {
    grid-template-columns: 1fr;
  }

  .form-group-full {
    grid-column: span 1;
  }

  #contact-form button[type="submit"] {
    width: 100%;
  }
}





  /* ---------- Saved Sessions Styling ---------- */
#saved-sessions {
  margin-top: 20px;
  padding: 15px;
  background-color: #f9f9f9;
  border-radius: 10px;
}

#saved-sessions h4 {
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 18px;
  color: #333;
}

#saved-sessions div {
  margin-bottom: 10px;
  padding: 10px;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
}

#saved-sessions button {
  margin-left: 10px;
  padding: 5px 10px;
  font-size: 13px;
  cursor: pointer;
  border: none;
  border-radius: 5px;
  background-color: #0b72b9;
  color: white;
}

#saved-sessions button.btn-logout {
  background-color: #e74c3c;
}

/* ---------- Registered Members Table Styling ---------- */
#program-content {
  overflow-x: auto;
}

#program-content table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  border-radius: 10px;
  overflow: hidden;
}

#program-content th,
#program-content td {
  padding: 12px 15px;
  border: 1px solid #eee;
  text-align: left;
}

#program-content th {
  background-color: #0b72b9;
  color: white;
  font-weight: 600;
}

#program-content tr:nth-child(even) {
  background-color: #f7f7f7;
}

.search-input {
  padding: 8px 12px;
  margin-bottom: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  width: 100%;
  max-width: 400px;
}





/* ---------- Welcome Admin Section ---------- */
.admin-dashboard .container h2 {
  font-size: 28px;
  color: #0b72b9;
  margin-bottom: 5px;
}

.admin-dashboard .container p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.admin-dashboard .container {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  max-width: 1200px;
  margin: 30px auto;
}

.admin-section {
  margin-bottom: 30px;
  border-top: 1px solid #eee;
  padding-top: 20px;
}


/* ---------- Center Welcome Section ---------- */
.admin-dashboard .container h2,
.admin-dashboard .container p {
  text-align: center;
}

.admin-dashboard .container {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  max-width: 1200px;
  margin: 30px auto;
}


/* ---------- Admin Header ---------- */
.admin-header {
  background-color: #0b72b9;
  color: white;
  padding: 15px 30px;
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}



/* ------------------Registered member edit/deletefunction in admin-dashboard------------------- */

.btn-delete {
  background-color: #e74c3c;
  color: white;
  padding: 6px 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.btn-delete:hover {
  background-color: #c0392b;
}


/* ------------------admin password show /hide------------------- */

.password-wrapper {
  display: flex;
  align-items: center;
}

.password-wrapper input {
  flex: 1;
}

.toggle-password {
  margin-left: 10px;
  padding: 6px 12px;
  background-color: #0b72b9;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}



/* ---------- Responsive Design for Mobile & Tablets ---------- */
@media (max-width: 768px) {
  .admin-dashboard .container {
    padding: 15px;
  }

  .form-group,
  .form-group-full {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  input[type="text"],
  input[type="email"],
  input[type="password"],
  select,
  textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
  }

  label {
    font-size: 15px;
  }

  .search-input {
    width: 100%;
    max-width: 100%;
    margin-bottom: 10px;
  }

  .btn,
  .btn-logout,
  .btn-download,
  .btn-delete {
    width: 100%;
    margin-bottom: 10px;
    font-size: 16px;
  }

  table {
    font-size: 14px;
    width: 100%;
    display: block;
    overflow-x: auto;
  }

  th, td {
    white-space: nowrap;
  }
}




/* ---------- Gallery/News Section ---------- */
/* ---------- Shared Gallery Layout ---------- */
.gallery-section {
  padding: 50px 20px;
  text-align: center;
}

.gallery-section h2 {
  font-size: 26px;
  color: #0b72b9;
  margin-bottom: 30px;
  text-transform: running;
  letter-spacing: 1px;
}

.gallery-section h3 {
  font-size: 18px;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #333;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
  padding: 0 10px;
}

/* ---------- Photo Gallery Design ---------- */
.photo-style {
  background: linear-gradient(to right, #f7f7f7, #eef1f5);
}

.photo-grid img {
  width: 270px;
  height: 170px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.photo-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* ----------------Golden Devider Line between 2024 & 2023 gallery------------------ */

.gold-divider {
  width: 1400px;
  height: 4px;
  background: linear-gradient(to right, #d4af37, #ffd700, #d4af37);
  border-radius: 2px;
  margin: 40px auto;
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
}




/* ---------- News Gallery Design ----------
.news-style {
  background: #fffef7;
  border-top: 4px solid #f39c12;
}

.news-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border: 2px dashed #aaa;
  filter: grayscale(100%);
  border-radius: 6px;
  background-color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.news-grid img:hover {
  filter: grayscale(0%);
  transform: scale(1.02);
  border-color: #e67e22;
} */





/* ---------- About Page Styles ---------- */

.site-header {
  background: linear-gradient(to right, #0b72b9, #1458a2);
  color: white;
  padding: 60px 20px;
  text-align: center;
  font-size: 28px;
  letter-spacing: 1px;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-section {
  padding: 60px 20px;
  background-color: #f4f7fb;
  font-family: 'Segoe UI', sans-serif;
}

.about-section .container {
  max-width: 1000px;
  margin: 0 auto;
  background-color: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.about-section h2 {
  font-size: 24px;
  color: #0b72b9;
  margin-bottom: 15px;
  position: relative;
}

.about-section h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #0b72b9;
  margin-top: 5px;
  border-radius: 2px;
}

.about-section p {
  font-size: 16px;
  color: #444;
  margin-bottom: 25px;
}

.about-section ul {
  list-style-type: disc;
  padding-left: 25px;
  color: #444;
  margin-bottom: 25px;
}

.about-section ul li {
  margin-bottom: 10px;
  font-size: 16px;
}

.cta-button {
  text-align: center;
  margin-top: 30px;
}

.cta-button .btn {
  display: inline-block;
  background-color: #0b72b9;
  color: white;
  padding: 12px 25px;
  font-size: 16px;
  text-decoration: none;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.cta-button .btn:hover {
  background-color: #095a8d;
  transform: translateY(-2px);
}




/* ---------- Scientific Committee Section (Modern Style) ---------- */
.committee-section {
  background: linear-gradient(to right, #f2f6fc, #eaf2ff);
  padding: 60px 20px;
  text-align: center;
}

.committee-section h2 {
  font-size: 32px;
  color: #0b72b9;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: bold;
}

.committee-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

.member-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  text-align: center;
}

.member-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}


.member-card img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  border: 2px solid #0b72b9;
}

.member-card p {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0;
  text-transform: capitalize;
}


.committee-section {
  background: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.committee-section h2 {
  font-size: 34px;
  color: #0b72b9;
  font-weight: 700;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.committee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  justify-items: center;
}

.committee-card {
  background: #f4f9fc;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.committee-card:hover {
  transform: translateY(-5px);
}

.committee-card h4 {
  color: #0b72b9;
  font-size: 20px;
  margin-bottom: 8px;
}

.committee-card p {
  font-size: 16px;
  color: #333;
}




/* ---------- Collaboration Section Updated Style ---------- */
/* ---------- Collaboration Section Final Design ---------- */
.collaboration-section {
  background: #fefefe;
  padding: 60px 20px;
  text-align: center;
}

.collaboration-section h2 {
  font-family: 'Great Vibes', cursive;
  font-size: 36px;
  color: #0b72b9;
  margin-bottom: 40px;
}

.collaboration-layout {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.logo-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.square-group {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* Common logo box style */
.logo-box {
  background: #fff;
  padding: 15px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  border: 2px solid #f05aa2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.logo-box:hover {
  transform: scale(1.05);
}

/* Logo sizes */
.logo-box.rectangle {
  width: 300px;
  height: 100px;
}

.logo-box.square {
  width: 210px;
  height: 210px;
}

.logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}



/* ------------------------Animated buttons in hero secion in index file------------------------ */
/* ---------- Animated CTA Buttons ---------- */
.cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.animated-btn {
  text-decoration: none;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Register Now - Pink gradient */
.btn-register {
  color: white;
  background: linear-gradient(45deg, #f05aa2, #f97794);
}

.btn-register::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transition: left 0.5s;
  z-index: 0;
}

.btn-register:hover::before {
  left: 100%;
}

/* View Program - Blue gradient */
.btn-program {
  color: white;
  background: linear-gradient(45deg, #f05aa2, #f97794);
}

.btn-program::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transition: left 0.5s;
  z-index: 0;
}

.btn-program:hover::before {
  left: 100%;
}

.animated-btn:hover {
  transform: translateY(-3px);
}




.btn-case-submission {
  color: white;
  background: linear-gradient(45deg, #34e89e, #0f3443);
}

.btn-case-submission::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transition: left 0.5s;
  z-index: 0;
}

.btn-case-submission:hover::before {
  left: 100%;
}

.animated-btn:hover {
  transform: translateY(-3px);
}






.btn-abstract-submission {
  color: white;
  background: linear-gradient(45deg, #232526, #414345);
}

.btn-abstract-submission::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transition: left 0.5s;
  z-index: 0;
}

.btn-abstract-submission:hover::before {
  left: 100%;
}

.animated-btn:hover {
  transform: translateY(-3px);
}





/* ---------- Hamburger Menu Styles ---------- */
.hamburger {
  display: none;
  font-size: 28px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 1001;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    background: #004080;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    padding: 20px;
    text-align: center;
  }

  .nav-menu.active {
    display: flex;
  }
}
/* --------------Hamburger Menu ended--------------- */




@media (max-width: 500px) {
  .photo-grid img {
    width: 100%;
    height: auto;
  }
}

/* ----------------This forces all your forms to be 1 column, even on desktop — which is not what you want.----------------- */
@media (max-width: 768px) {
  form {
    grid-template-columns: 1fr;
  }

  .btn {
    grid-column: span 1;
  }
}
/* ----------------This forces all your forms to be 1 column, even on desktop — which is not what you want ended.----------------- */



/* ---------- Custom Scrollbar ---------- */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background-color: #0b72b9;
  border-radius: 5px;
}
::-webkit-scrollbar-track {
  background: #f0f0f0;
}
/* ----------Custom Scrollbar ended----------- */





/* ========== Google Form Embed Styling ========== */

.form-embed-wrapper {
  max-width: 900px;
  margin: 60px auto;
  padding: 0;
  background: linear-gradient(145deg, #f0f4f8, #ffffff);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.form-embed-wrapper iframe {
  width: 100%;
  height: 1000px;
  border: none;
  display: block;
}



.btn-edit {
  background-color: #f1c40f;
  color: white;
  border: none;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.btn-edit i {
  margin-right: 6px;
}

.btn-edit:hover {
  background-color: #d4ac0d;
}


/* ====================Table for registration data in admin dashboard===================== */

.registration-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.registration-table th, .registration-table td {
  padding: 10px;
  border: 1px solid #ddd;
  text-align: center;
}

.registration-table th {
  background-color: #0b72b9;
  color: white;
}

.registration-table tr:nth-child(even) {
  background-color: #f7f7f7;
}

.registration-table tr:hover {
  background-color: #e1f0ff;
}

.btn-delete {
  background-color: #e74c3c;
  color: white;
  padding: 6px 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.btn-delete:hover {
  background-color: #c0392b;
}
