.about-section-two {
  padding: 0px !important;
}

.certification-container {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 800px;
  margin: 0 auto;
  margin-top: 50px;
}

.certificate-display {
  gap: 20px;
  flex-wrap: wrap;
}

.certificate-display img {
  transition: all 0.3s ease;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.certificate-display img:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.main-certificate {
  width: 35%;
  margin-top: 10px;
  margin-bottom: 6px;
  margin-right: 3px;
  min-width: 200px;
}

.cpd-logo {
  max-width: 400px;
  max-height: auto;
  min-width: 200px;
}

.main-heading {
  text-align: center;
  color: #333;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 30px;
  position: relative;
}

.main-heading::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  border-radius: 2px;
}

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

  .main-certificate,
  .cpd-logo {
    width: 80%;
    max-width: 300px;
    margin: 10px 0;
  }

  .main-heading {
    font-size: 1.5rem;
  }
}

.slide-up {
  animation: slideUp 1s ease-in;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 2nd section */
@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0.5;
  }
}

.cpd-credit-highlight {
  color: #0e3a80;
  font-size: 19px;
  animation: blink 1s linear infinite;
  font-weight: 700;
  margin-right: 8px;
}

.info-popover-btn {
  position: relative;
  top: -6px;
  width: 30px !important;
  height: 30px !important;
  z-index: 1;
  border-radius: 50%;
}

.certificate-link {
  background: linear-gradient(135deg, #39b8e9, #104aac);
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(14, 58, 128, 0.3);
}

.certificate-link:hover {
  background: linear-gradient(135deg, #1e5aa8, #2e6ab8);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 58, 128, 0.4);
}

.cpd-credit-container {
  margin: 20px 0;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 15px;
  border: 2px solid #dee2e6;
  /* display: flex; */
}

.partner-card {
  background: #eaf6fb;
  /* light blue background */
  border: 1px solid #d1e3ea;
}

.partner-header {
  background: #0a3b52;
  /* dark blue top bar */
}

.partner-body h5 {
  font-size: 1.2rem;
  line-height: 1.5;
}
/* Heading */
.visit-heading {
  text-align: center;
  margin: 50px auto;
}

.visit-heading h1 {
  font-size: 48px;
  color: #f15b43;
}

/* Row Layout */
.visit-row {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Reverse Row */
.visit-row.reverse {
  flex-direction: row-reverse;
}

/* Content */
.visit-content {
  flex: 1;
  transition: transform 0.4s ease;
}

.visit-content:hover {
  transform: translateY(-10px);
}

.visit-content h2 {
  font-size: 30px;
  color: #284966;
}

.visit-content p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-top: 12px;
  text-align: justify;
}

/* Image */
.visit-image {
  flex: 1;
  text-align: center;
  transition: transform 0.4s ease;
}

.visit-image:hover {
  transform: translateY(-10px);
}

.visit-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .visit-row,
  .visit-row.reverse {
    flex-direction: column;
    text-align: center;
    margin: 40px auto;
  }

  .visit-heading h1 {
    font-size: 36px;
  }

  .visit-content h2 {
    font-size: 24px;
  }

  .visit-content p {
    text-align: justify;
  }
}

.scopus-section {
  padding: 60px 0;
}

.scopus-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  color: #0a0a3c;
}

.scopus-title span {
  color: #e91e63;
}

.scopus-desc {
  text-align: center;
  max-width: 900px;
  margin: 15px auto 40px;
  color: #444;
}

/* Card Styling */
.scopus-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  height: 100%;
}

.journal-name {
  color: #29b6f6;
  font-weight: 700;
  font-size: 18px;
}

.paper-title-label {
  color: #29b6f6;
  font-weight: 600;
  margin-top: 15px;
  display: block;
}

.paper-title {
  font-weight: 600;
  color: #000;
}

.view-btn {
  margin-top: 25px;
  background: linear-gradient(135deg, #c2185b, #0d47a1);
  color: #fff;
  border-radius: 10px;
  padding: 10px 30px;
  border: none;
}

/* Carousel buttons */
.carousel-control-prev,
.carousel-control-next {
  width: auto;
  position: static;
}

.carousel-nav {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.carousel-nav button {
  border-radius: 30px;
  padding: 8px 20px;
  border: 1px solid #ccc;
  background: #fff;
}

@media (max-width: 768px) {
  .scopus-title {
    font-size: 28px;
  }
}

.cta-section1 {
  background: beige;
  position: relative;
  text-align: center;
  z-index: 1;
  padding: 50px 0px 50px;
}

.sdg {
  display: flex;
  justify-content: space-between;
}

.mb-5 {
  margin-bottom: 0px !important;
}

@media screen and (min-width: 320px) and (max-width: 768px) {
  .sdg {
    display: block;
  }

  .sdg img {
    height: 132px !important;
    width: auto !important;
    margin: 10px;
  }
}

.page-title {
  height: 144px;
}

h2 {
  text-align: center;
  padding: 10px;
  color: #00405a;
}

p {
  text-align: justify;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.faq-header p {
  color: #666;
  font-size: 1.1rem;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item {
  border: 2px solid #e1e5e9;
  border-radius: 12px;
  background: white;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  border-color: #667eea;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.accordion-item button {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  transition: all 0.3s ease;
}

.accordion-item button:hover {
  background: #f8f9ff;
}

.accordion-item button[aria-expanded="true"] {
  background: #1132b2;
  color: white;
}

.accordion-title {
  flex: 1;
  margin-right: 1rem;
}

.icon-faq {
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform 0.3s ease;
}

.icon-faq::before,
.icon-faq::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.icon-faq::before {
  width: 20px;
  height: 3px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.icon-faq::after {
  width: 3px;
  height: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.accordion-item button[aria-expanded="true"] .icon-faq {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item button[aria-expanded="true"] + .accordion-content {
  max-height: 500px;
}

.accordion-content p {
  padding: 0 1.5rem 1.5rem;
  color: #555;
  line-height: 1.7;
  font-size: 1rem;
}

@media (max-width: 768px) {
  body {
    padding: 1rem;
  }

  .faq-container {
    padding: 1rem;
  }

  .faq-header h1 {
    font-size: 2rem;
  }

  .accordion-item button {
    padding: 1.25rem;
    font-size: 1rem;
    height: 100%;
  }

  .accordion-content p {
    padding: 0 1.25rem 1.25rem;
  }
}

.header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.header::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  border-radius: 2px;
}

.title {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1.1rem;
  color: #666;
  font-weight: 300;
}

.guidelines {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.guideline-item {
  display: flex;
  align-items: flex-start;
  padding: 25px;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.05),
    rgba(118, 75, 162, 0.05)
  );
  border-radius: 15px;
  border-left: 5px solid transparent;
  background-clip: padding-box;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}

.guideline-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 0 5px 5px 0;
  transition: width 0.3s ease;
}

.guideline-item:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.guideline-item:hover::before {
  width: 8px;
}

.icon-plag {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 20px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.content {
  flex: 1;
}

.guideline-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  font-weight: 500;
}

.warning-item {
  background: linear-gradient(
    135deg,
    rgba(255, 59, 48, 0.05),
    rgba(255, 149, 0, 0.05)
  );
}

.warning-item::before {
  background: linear-gradient(135deg, #ff3b30, #ff9500);
}

.warning-item .icon-plag {
  background: linear-gradient(135deg, #ff3b30, #ff9500);
  box-shadow: 0 5px 15px rgba(255, 59, 48, 0.3);
}

.payment-item {
  background: linear-gradient(
    135deg,
    rgba(52, 199, 89, 0.05),
    rgba(48, 209, 88, 0.05)
  );
}

.payment-item::before {
  background: linear-gradient(135deg, #34c759, #30d158);
}

.payment-item .icon-plag {
  background: linear-gradient(135deg, #34c759, #30d158);
  box-shadow: 0 5px 15px rgba(52, 199, 89, 0.3);
}

@media (max-width: 768px) {
  .container {
    padding: 30px 20px;
    margin: 10px;
  }

  .title {
    font-size: 2rem;
  }

  .guideline-item {
    flex-direction: column;
    text-align: center;
  }

  .icon-plag {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

.fade-in {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.fade-in:nth-child(1) {
  animation-delay: 0.1s;
}

.fade-in:nth-child(2) {
  animation-delay: 0.2s;
}

.fade-in:nth-child(3) {
  animation-delay: 0.3s;
}

.fade-in:nth-child(4) {
  animation-delay: 0.4s;
}

.fade-in:nth-child(5) {
  animation-delay: 0.5s;
}

.fade-in:nth-child(6) {
  animation-delay: 0.6s;
}

.fade-in:nth-child(7) {
  animation-delay: 0.7s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.venue p {
  color: black;
  font-weight: 600;
}
.title-text {
  left: 5px !important;
  transform: translate(0%, -50%);
  padding: 10px 10px;
}
.section-title .title-text h2 {
  color: #252525;
  font-size: 24px;
  line-height: 45px;
  font-weight: 600;
  text-transform: capitalize;
  position: relative;
  display: inline-block;
}
.contact-us-area .icon-box {
  display: flex;
  padding-top: 19px;
}
.contact-us-area .icon-box {
  display: flex;
  padding-top: 19px;
}
.contact-us-area .icon-box .box-icons {
  margin-right: 20px;
  width: 10px;
  line-height: 30px;
}
.contact-us-area .icon-box .box-icons i {
  color: #333;
  font-size: 18px;
}
.contact-us-area .icon-box .inner-content h3 {
  color: #333;
  font-size: 16px;
  line-height: 25px;
  font-weight: 600;
  margin-bottom: 5px;
  text-transform: capitalize;
}
.contact-us-area iframe {
  width: 100%;
  height: 378px;
}
.preview_imag {
  height: 376px !important;
}
.fa-map-marker:before {
  content: "\f041";
  position: relative;
  left: 10px;
}

#advisory {
  /* float: left; */

  width: 350px;

  height: auto;

  -moz-box-shadow: 0 0 7px #888;

  -webkit-box-shadow: 0 0 7px #888;

  box-shadow: 0 0 7px #888;

  background: #ffffff;

  text-align: center;

  border-radius: 5px;

  margin-bottom: 20px;

  margin-right: 10px;

  margin-top: 10px;
}

#advisory:hover {
  -moz-box-shadow: 0 0 7px blue;

  -webkit-box-shadow: 0 0 7px blue;

  box-shadow: 0 0 25px black;

  background: #96d2e7;

  text-align: center;

  border-radius: 5px;

  margin-bottom: 20px;

  margin-right: 10px;

  margin-top: 10px;
}

.cont_adv {
  font-family: Arial, Helvetica, sans-serif;

  font-size: 14px;

  color: #333333;

  line-height: 26px;

  padding-left: 20px;

  padding-right: 9px;
}

.advisory_pic {
  padding: 10px;

  width: 250px;

  height: 230px;
}

a.adv_name {
  font-family: calibri, arial, verdana;

  font-size: 16px;

  color: #9a0101;

  text-align: left;

  line-height: 19px;

  padding-right: 9px;

  text-decoration: none;

  font-weight: bold;
}

.committee {
  height: 350px !important;
}

.card {
  margin: 30px 0 0;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}

.linee {
  width: 35px;
  height: 5px;
  background: #ee3173;
  text-align: center;
  margin-top: 6px;
  margin-left: 25px;
  margin-bottom: 14px;
}

ul.listt {
  padding-left: 48px;
}

.listt li {
  color: #000;
  font-size: 17px;
  line-height: 35px;
  list-style: disc;
}

.container .heading {
  width: 85%;
  margin: auto;
  text-align: center;
}

.container .heading h1 {
  color: #f15b43;
  font-size: 50px;
  margin-top: 50px;
}

.wrapper {
  width: 69%;
  margin: 50px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.content {
  width: 50%;
  margin: 0px 25px;
  transition: 0.4s ease;
}

.content:hover {
  transform: translateY(-10px);
}

.content h2 {
  font-size: 30px;
  color: #284966;
}

.content p {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
  margin-top: 10px;
  text-align: justify;
}

.image {
  width: 50%;
  transition: 0.4s ease;
}

.image:hover {
  transform: translateY(-10px);
}

.content .btn {
  position: relative;
  margin-top: 30px;
  text-decoration: none;
  border: 2px solid #f15b43;
  font-size: 19px;
  color: #f15b43;
  padding: 13px 16px;
  display: inline-block;
  letter-spacing: 1px;
  cursor: pointer;
}

.content .btn::before {
  position: absolute;
  content: "";
  border: 1px solid transparent;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #f15b43;
  z-index: -1;
  transition: transform 0.7s;
  transform-origin: 0 0;
  transition-timing-function: cubic-bezier(0.5, 1.5, 0.4, 0.7);
  transform: scaleX(0);
}

.content .btn:hover {
  color: #fff;
}

.content .btn:hover::before {
  transform: scaleX(1);
}

.image img {
  width: 100%;
  height: 400px;
}

.img-sec {
  height: 400px !important;
}

@media screen and (max-width: 768px) {
  .wrapper {
    flex-direction: column;
    margin-top: 0px;
    width: 85%;
  }

  .container .heading H1 {
    font-size: 40px;
  }

  .content,
  .image {
    width: 100%;
    margin-top: 30px;
  }

  .content h2 {
    font-size: 25px;
  }

  .content .btn {
    font-size: 16px;
    padding: 12px 14px;
  }

  .content p {
    text-align: justify;
  }
}

.schedule-time {
  background-color: #100d28;
  display: block;
  width: 100%;
  padding: 14px 50px 14px;
  border-radius: 10px;
  position: absolute;
  top: -24px;
  font-size: 18px;
  color: #ffffff;
  font-weight: 500;
}

.schedule-list-tab {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.schedule-list-tab .tab_content {
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  background-color: #ffffff;
  border-radius: 5px;
  padding: 100px 35px 20px;
  position: relative;
}

.tab .tabs_item:first-child {
  display: block;
}

.schedule-list-tab .tab_content .tabs_item .schedule-time {
  position: relative;
  transition: 0.5s;
}

.schedule-list-tab .tab_content .tabs_item .schedule-time span {
  background-color: #100d28;
  display: block;
  width: 100%;
  padding: 14px 50px 14px;
  border-radius: 10px;
  position: absolute;
  top: 26px;
  font-size: 18px;
  color: #ffffff;
  font-weight: 500;
}

.schedule-list-tab .tab_content .tabs_item .schedule-content {
  text-align: center;
  position: relative;
  margin-bottom: 17px;
  font-size: 13px;
}

.schedule-list-tab .tab_content .tabs_item .schedule-content::before {
  position: absolute;
  content: "";
  height: 65px;
  border-right: 1px solid #100d28;
  width: 100%;
  left: 16px;
  right: 0;
  margin: auto;
  bottom: 0;
}

.schedule-list-tab .tab_content .tabs_item .schedule-content span {
  font-size: 16px;
  font-weight: 500;
  display: block;
  padding-top: 20px;
}

.schedule-list-tab .tab_content .tabs_item .schedule-content::after {
  position: absolute;
  content: "";
  background-color: #d30366;
  height: 20px;
  width: 20px;
  right: -24px;
  top: 19px;
  border-radius: 50px;
}

.schedule-list-tab .tab_content .tabs_item .schedule-faq {
  position: relative;
}

.schedule-list-tab .tab_content .tabs_item .schedule-faq::before {
  content: "";
  position: absolute;
  border-bottom: 1px solid #100d2840;
  height: 100%;
  width: 100%;
  left: -35px;
  right: 0;
  margin: auto;
  bottom: -6px;
}

.schedule-list-tab
  .tab_content
  .tabs_item
  .schedule-faq
  .faq-accordion
  .accordion {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.schedule-list-tab
  .tab_content
  .tabs_item
  .schedule-faq
  .faq-accordion
  .accordion
  .accordion-item:last-child {
  margin-bottom: 0;
}

.schedule-list-tab
  .tab_content
  .tabs_item
  .schedule-faq
  .faq-accordion
  .accordion
  .accordion-item {
  border-radius: 5px;
  display: block;
  margin-bottom: 15px;
  border: none;
}

.schedule-list-tab
  .tab_content
  .tabs_item
  .schedule-faq
  .faq-accordion
  .accordion
  .accordion-title {
  padding: 3px 55px 8px 8px;
  color: #100d28;
  text-decoration: none;
  position: relative;
  display: block;
  font-family: "Roboto";
  font-size: 18px;
  font-weight: 400;
}

.schedule-list-tab
  .tab_content
  .tabs_item
  .schedule-faq
  .faq-accordion
  .accordion
  .accordion-title
  i {
  display: none;
  position: absolute;
  right: 25px;
  top: 12px;
  font-size: 25px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.bx {
  font-family: boxicons !important;
  font-weight: 400;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  display: inline-block;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.sample {
  width: -webkit-fill-available;
  height: 252px;
}

/* p {
            text-align: justify;
        } */

p {
  color: var(--bodyColor);
  margin-bottom: 10px;
  line-height: 1.8;
  hyphens: auto;
}

.conference-container {
  /* max-width: 1200px; */
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.header-gradient {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.header-gradient::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.conference-title {
  color: white;
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.conference-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1em;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

.content-wrapper {
  display: flex;
  gap: 30px;
  padding: 0px;
  align-items: flex-start;
}

.main-content {
  flex: 2;
}

.info-card {
  background: white;
  border-radius: 15px;
  padding: 12px;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(0, 0, 0, 0.05); */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  /* transform: translateY(-5px); */
  /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15); */
}

.date-location {
  display: flex;
  gap: 30px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.date-item,
.location-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(240, 147, 251, 0.4);
}

.location-item {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  box-shadow: 0 5px 15px rgba(79, 172, 254, 0.4);
}

.info-section {
  margin-bottom: 20px;
}

.info-label {
  font-weight: 700;
  color: #0c329d;
  margin-bottom: 8px;
  font-size: 1.5em;
}

.info-value {
  color: #2c3e50;
  line-height: 1.6;
  font-size: 1em;
}

.topics-grid {
  /* display: grid; */
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
  margin-top: 15px;
}

.topic-item {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9em;

  font-weight: 500;
  color: #2c3e50;
  text-align: left;
  transition: all 0.3s ease;
  /* border: 1px solid rgba(255, 255, 255, 0.3); */
  margin-top: 11px;
}

.topic-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.register-button {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  color: white;
  border: none;
  padding: 18px 40px;
  font-size: 1.2em;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
  margin-top: 25px;
}

.register-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 107, 107, 0.6);
  text-decoration: none;
  color: white;
}

.image-section {
  flex: 1;
  text-align: center;
  margin-top: 82px;
}

.conference-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  height: 249px;
  margin-top: -24px;
}

.conference-image:hover {
  transform: scale(1.05);
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.floating-icon {
  position: absolute;
  color: rgba(255, 255, 255, 0.1);
  font-size: 2em;
  animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: -0.5s;
}

.floating-icon:nth-child(2) {
  top: 60%;
  right: 20%;
  animation-delay: -2s;
}

.floating-icon:nth-child(3) {
  bottom: 30%;
  left: 20%;
  animation-delay: -3.5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
    padding: 20px;
  }

  .conference-title {
    font-size: 1.8em;
  }

  .date-location {
    flex-direction: column;
    gap: 15px;
  }

  .topics-grid {
    grid-template-columns: 1fr;
  }
}

/* 

    dropdown */

.journal-container {
  /* max-width: 800px; */
  margin: 0 auto;
  background-color: white;
  border-radius: 8px;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
  overflow: hidden;
}

.topic-item {
  background: linear-gradient(90deg, #b31e2e, #00489a);
  color: white;
  padding: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* color: white;
    padding: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    } */

.topic-item:hover {
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.journal-title {
  font-size: 1.2em;
  font-weight: bold;
  line-height: 1.4;
}

.dropdown-arrow {
  font-size: 1.5em;
  transition: transform 0.3s ease;
  margin-left: 20px;
}

.dropdown-arrow.open {
  transform: rotate(180deg);
}

.content-section {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: #f8f9fa;
}

.content-section.open {
  max-height: 1000px;
}

.content-inner {
  padding: 30px;
}

.journal-image {
  width: 150px;
  height: 239px;
  border-radius: 11px;
  object-fit: contain;
  float: left;
  margin-right: 20px;
  margin-bottom: 5px;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
}

.journal-info {
  text-align: justify;
  line-height: 1.6;
  color: #333;
}

.journal-info h3 {
  color: #667eea;
  margin-bottom: 15px;
  font-size: 1.3em;
}

.journal-info p {
  margin-bottom: 15px;
}

.journal-details {
  /* background-color: white; */
  padding: 6px;
  border-radius: 8px;
  margin-top: -8px;
  /* border-left: 4px solid #667eea; */
  width: 153px;
}

.detail-item {
  margin-bottom: 10px;
}

.detail-label {
  font-weight: bold;
  color: #667eea;
  display: inline-block;
  width: 120px;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

@media (max-width: 600px) {
  .journal-image {
    width: 100%;
    float: none;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .content-inner {
    padding: 20px;
  }

  .journal-title {
    font-size: 1em;
    font-weight: bold;
    line-height: 1.4;
  }

  .text-para {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
    text-align: center;
  }

  .image-section {
    flex: 1;
    text-align: center;
    margin-top: -7px;
    /* justify-content: center; */
    /* position: relative; */
    /* text-align: center; */
    margin-left: 27px;
  }

  .button-container {
    /* text-align: center; */
    margin: 20px 0;
    text-align: left;
  }
}

.decorative-button {
  background: linear-gradient(90deg, #b31e2e, #00489a);
  color: white;
  font-weight: 600;
  padding: 6px 69px;
  border: none;
  border-radius: 7px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.decorative-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.button-container {
  /* text-align: center; */
  margin: 20px 0;
}

.img-fluid {
  max-width: 100%;
  height: auto;
  height: 204px !important;
}

.paragraph {
  text-align: justify;
}

.custom-list li::before {
  content: "\2605";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
  color: #ac2037;
}

.custom-list li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 10px;
  font-size: 16px;
}

.testimonials-wrap {
  padding: 40px 0;
}

.heading-section {
  text-align: center;
}

.sub-heading {
  font-family: "Lato", sans-serif;
  font-size: 12px;
  display: block;
  font-weight: 600;
  color: #2e9ca1;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.heading-section h2 {
  font-size: 28px;
  font-weight: 600;
  padding-top: 10px;
  padding-bottom: 15px;
}

.testimonial-box {
  display: block;
  position: relative;
  padding: 30px 20px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.03);
  border-radius: 24px;
  box-shadow: 1px 1px 4px 4px #49505759;
}

.user-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: relative;
  min-width: 80px;
  background-size: 100%;
}

.carousel-testimonial .item {
  padding: 30px 10px;
}

.quote {
  position: absolute;
  top: -23px;
  color: #2e9da1;
  font-size: 27px;
}

.name {
  margin-bottom: 0;
  line-height: 14px;
  font-size: 17px;
  font-weight: 500;
}

.position {
  color: #adadad;
  font-size: 14px;
}

.carousel-testimonial .owl-nav {
  text-align: center;
}

.carousel-testimonial .owl-nav button.owl-next,
.carousel-testimonial .owl-nav button.owl-prev {
  padding: 0 12px !important;
}

.carousel-testimonial .owl-nav button {
  outline: none;
  padding: 0;
}

.carousel-testimonial .owl-nav button.owl-next span,
.carousel-testimonial .owl-nav button.owl-prev span {
  display: block;
  font-size: 40px;
  width: 25px;
  height: 25px;
  vertical-align: 0px;
  line-height: 16px;
}

.carousel-testimonial .owl-nav button.owl-next.disabled,
.carousel-testimonial .owl-nav button.owl-prev.disabled {
  opacity: 0.5;
}

.paragrapgh_2 {
  text-align: center;
}

.testimonials-wrap {
  padding: 40px 0;
  /* background: #dbe7f9; */
  padding: 21px;
}

.owl-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.owl-nav div {
  background: #ffffff;
  border: 2px solid #ccc;
  color: #333;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-size: 20px;
}

.owl-nav div:hover {
  background: #007bff;
  border-color: #007bff;
  color: #fff;
  transform: scale(1.1);
}

.owl-nav .disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
  background: #f1f1f1;
}

.paragraph_3 {
  text-align: justify;
}

.testimonial-box {
  display: block;
  position: relative;
  padding: 30px 20px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.03);
  border-radius: 24px;
  box-shadow: 1px 1px 4px 4px #49505759;
  height: 242px;
}

.button_111 {
  text-align: center;
  padding: 3px;
  border-radius: 3px;
  margin-top: 19px;
}

.btn_1 {
  color: #fff;
  /* border: 1px solid #357ebd; */
  height: 41px;
  width: 142px;
  border-radius: 6px;
  background: linear-gradient(90deg, #e91e63, #0d47a1);
}

.paragraph_3 {
  text-align: justify;
  height: 68px;
  color: black;
  margin-top: 33px !important;
  hyphens: auto;
  font-size: 14px;
}

.name {
  margin-bottom: 0;
  line-height: 14px;
  font-size: 17px;
  font-weight: 800;
  height: 28px;
  line-height: 22px;
  color: #003d73;
}

.content_1 {
  color: #003d73;
}

@media (max-width: 768px) {
  .testimonials-wrap {
    padding: 20px 10px;
  }

  .heading-section h2 {
    font-size: 22px;
  }

  .sub-heading {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .testimonial-box {
    padding: 20px 15px;
    height: auto;
  }

  .user-img {
    width: 60px;
    height: 60px;
    min-width: 60px;
  }

  .carousel-testimonial .item {
    padding: 20px 5px;
  }

  .name {
    font-size: 15px;
    line-height: 20px;
    height: auto;
  }

  .position {
    font-size: 12px;
  }

  .paragraph_3 {
    font-size: 13px;
    height: auto;
    margin-top: 20px !important;
  }

  .btn_1 {
    width: 100%;
    height: 38px;
    font-size: 14px;
  }

  .owl-nav {
    gap: 10px;
    margin-top: 15px;
  }

  .owl-nav div {
    padding: 8px 10px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .heading-section h2 {
    font-size: 20px;
  }

  .sub-heading {
    font-size: 9px;
  }

  .testimonial-box {
    padding: 15px 10px;
  }

  .btn_1 {
    width: 100%;
    font-size: 13px;
  }

  .paragraph_3 {
    font-size: 12px;
  }
}

cta-section1 {
  background: beige;
  position: relative;
  text-align: center;
  z-index: 1;
  padding: 50px 0px 50px;
}

.sdg {
  display: flex;
  justify-content: space-between;
}

.mb-5 {
  margin-bottom: 0px !important;
}

@media screen and (min-width: 320px) and (max-width: 768px) {
  .sdg {
    display: block;
  }

  .sdg img {
    height: 132px !important;
    width: auto !important;
    margin: 10px;
  }
}
