﻿@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
  --font1: "Inter", sans-serif;
  --bg-color: #F5FAFF;
  --card-bg: #1e293b;
  --border-color: #003566;
  --primary-accent: #00A6FB;
  --text-main: #f8fafc;
  --text-muted: #23395B;
}

:root {
  --primary: #003566;
  --secondary: #0077CC;
  --accent: #00A6FB;
  --light: #E8F4FF;
  --background: #F5FAFF;
  --text: #23395B;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
      font-family: var(--font1);

  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font1);
  font-weight: 700;
}

p {

  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.6;
}

/* Header Styling */
.header {
  text-align: center;
}

.header h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 12px;
  line-height: 1.2;
}

.header h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-accent);
  border-radius: 2px;
}

.header p {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: #475569;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  padding: 0 15px;
}

/* Mobile */
@media (max-width: 768px) {
  .header h2 {
    padding-bottom: 10px;
  }

  .header h2::after {
    width: 60px;
    height: 3px;
  }

  .header p {

    max-width: 100%;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
 

  .header p {
    font-size: 0.9rem;
  }
}

/* ==========================================
   Navbar Core & Sticky Styles
   ========================================== */
/* Default Glassmorphism Navbar */
.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
}



/* ==========================================
   Navigation Links
   ========================================== */
.navbar-nav .nav-link {
  color: #2c3e50;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: color 0.2s ease-in-out;
}

/* Hover & Active States */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
  color: #0056b3;
  /* Primary accent color */
}

/* Animated Underline Effect on Hover */
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: #0056b3;
  transition: all 0.3s ease-in-out;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 80%;
}

/* Remove bottom underline animation for dropdown toggles */
.navbar-nav .dropdown-toggle::after {
  content: none;
}

/* ==========================================
   Dropdown Menu Styling & Smooth Fade Animation
   ========================================== */
/* ==========================================
   Dropdown Menu Custom Styling
   ========================================== */

/* Main Dropdown Container */
.dropdown-menu {
  border-radius: 0 !important;
  /* Square corners */
  border: 1px solid #e0e0e0;
  /* Clean subtle border */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  padding: 0;
  margin-top: 0;
}

/* Individual Dropdown Items */
.dropdown-item {
  color: #333333;
  font-size: 0.9rem;
  padding: 0.75rem;

  /* Create spacing from the outer border */
  margin: 4px 6px;
  width: calc(100% - 12px);
  /* Adjust width to account for side margins */
  border-radius: 0;

  transition: background-color 0.2s ease, color 0.2s ease;
}

/* Dropdown Item Hover & Focus State */
.dropdown-item:hover,
.dropdown-item:focus {
  background-color: #0056b3;
  /* Brand color */
  color: #ffffff;
  /* Text turns white on hover */
}

/* Dropdown Divider Adjustment */
.dropdown-divider {
  margin: 0;
  border-top: 1px solid #e0e0e0;
}

/* Optional: Main Navigation Link Hover Color (Top level dropdown link) */
.nav-item.dropdown:hover>.nav-link {
  color: #0056b3;
}

/* Desktop Dropdown Smooth Fade Effect */
@media (min-width: 992px) {
  .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  }

  .nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* ==========================================
   Mobile Responsive Adjustments
   ========================================== */
.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    padding-top: 1rem;
    padding-bottom: 0.5rem;
  }

  .navbar-nav .nav-link::after {
    display: none;
    /* Hide hover underline effect on mobile */
  }

  .dropdown-menu {
    box-shadow: none;
    background-color: #f8f9fa;
    border-left: 3px solid #0056b3;
    border-radius: 0;
    margin-left: 1rem;
  }
}


/* Base Layout */
.hero-section {
  position: relative;
  background-image: url('../images/banner/banner.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 40px;
  height: 75vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* Dark ocean gradient to protect text legibility + subtle cyan radial glow */
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.70) 0%, rgba(15, 23, 42, 0.60) 60%, rgba(15, 23, 42, 0.4) 100%);
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 1;
  margin: 0 0 0 5%;
  /* Off-center left alignment for asymmetrical feel */
  text-align: left;
      width: 100%;

}

.hero-title {
  font: 900 clamp(1.5rem, 4.5vw, 4.1rem)/1.1 var(--font1);
  color: var(--text-main);
      max-width: min(800px, 90%);

  margin-bottom: 20px;
}

.hero-subtitle {
  font: 700 clamp(1rem, 2vw, 1.875rem)/1.3 var(--font1);
  color: var(--text-main);
}

/* Grid-style Meta Row */
.hero-meta {
  display: flex;
  gap: 32px;
  margin-bottom: 20px;

  padding: 24px 0;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font1);
  font-size: 1rem;
  color: var(--text-main);
}

.meta-item i {
  font-size: 1.1rem;
}


.hero-actions{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    flex-wrap: wrap;
}

.organized-by{
    display: flex;
    flex-direction: column;
  align-items: flex-end;
    text-align: right;
    margin-right: 50px;
  }

.organized-by span{
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.organized-by img{
    height: 8vh;
    width: auto;
    object-fit: contain;
     filter: brightness(0) invert(1);
}

@media (max-width:768px){
    .hero-actions{
        flex-direction: column;
        align-items: flex-start;
    }

    .organized-by{
        align-items: flex-start;
        margin-top: 15px;
    }
}
/* ==========================
   Mobile (375px and below)
========================== */
@media (max-width: 375px) {

    .hero-section{
        height: auto;
        min-height: 75vh;
        padding: 70px 20px 40px;
    }

    .hero-container{
        margin: 0;
        width: 100%;
    }

    .hero-title{
        font-size: 1.8rem;
        line-height: 1.15;
        max-width: 100%;
        margin-bottom: 12px;
    }

    .hero-subtitle{
        font-size: 0.95rem;
        line-height: 1.45;
    }

    .hero-meta{
        gap: 12px;
        padding: 18px 0;
        margin-bottom: 16px;
        flex-direction: column;
        align-items: flex-start;
    }

    .meta-item{
        font-size: 0.85rem;
        gap: 8px;
    }

    .meta-item i{
        font-size: 0.9rem;
    }

    .hero-actions{
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .organized-by{
        align-items: flex-start;
        text-align: left;
        margin: 0;
    }

    .organized-by span{
        font-size: 11px;
        letter-spacing: .8px;
        margin-bottom: 6px;
    }

    .organized-by img{
        height: 34px;
        width: auto;
    }

   
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  padding: 14px 32px;
  border: none;
  border-radius: 100px;

  background: var(--primary-accent);
  color: #fff;

  font-family: var(--font1);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;

  transition: all .5s;
}

.btn-primary:hover {
  background: #6fc5ff;
  color: #fff;
  box-shadow: 0 0 20px rgba(111, 197, 255, .5);
  transform: scale(1.08);
}

.btn-primary:active {
  background: #3d94cf;
  transform: scale(.98);
  box-shadow: none;
  transition: all .25s;
}

.btn-primary i {
  transition: transform .3s ease;
}

.btn-primary:hover i {
  transform: translateX(5px);
}

.btn-primary:hover i {
  transform: translateX(4px);
}


.forum-content .header {
  text-align: left;
}

.forum-content .header h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: #0f172a;
  font-weight: 700;
  position: relative;
  padding-bottom: 12px;
  line-height: 1.2;
}

.forum-content .header h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  transform: none;
  width: 80px;
  height: 4px;
  background-color: var(--primary-accent);
  border-radius: 2px;
}

.forum-section p {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 18px;
  /* Adjust to 20px, 24px, or 30px as needed */
  text-align: justify;
    text-justify: inter-word;

}

.forum-content p:last-child {
  margin-bottom: 0;
}
.read-more-text {
    display: inline-block;
    color: var(--primary-accent);
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: color .3s ease;
}

.read-more-text:hover {
    color: #0056b3; /* or a darker shade of your accent */
    text-decoration: underline;
}
/* Tablet */
@media (max-width: 768px) {


  .forum-content .header h2::after {
    width: 60px;
    height: 3px;
  }
}

/* Mobile */
@media (max-width: 480px) {
 
  .forum-content .header h2::after {
    width: 50px;
  }
}


/* Section Layout & Background Image */
#people_attending {
  position: relative;
  padding: 30px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:

    url('../images/banner/gradent.jpg') center center / cover no-repeat;
}

#people_attending .header {
  text-align: center;
  margin-bottom: 20px;
}

#people_attending .header h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 16px;
  line-height: 1.2;
}

#people_attending .header h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-accent);
  border-radius: 2px;
}

#people_attending .header p {
  font-size: 1rem;
  color: #0f172a;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  padding: 0 15px;
}

/* Tablet */
@media (max-width: 768px) {
 

  #people_attending .header h2 {
    padding-bottom: 12px;
  }

  #people_attending .header h2::after {
    width: 60px;
    height: 3px;
  }

  #people_attending .header p {
    font-size: 0.93rem;
    max-width: 100%;
  }
}

/* Mobile */
@media (max-width: 480px) {


  #people_attending .header h2 {
  }

  #people_attending .header h2::after {
    width: 50px;
  }

  #people_attending .header p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}


/* ===============================
   Desktop (Default)
================================= */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.audience-card {
    position: relative;
    overflow: hidden;
    padding: 18px;
    border: 1px solid #d9e8ff;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0, 60, 120, .08);
    transition: .35s ease;
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 60, 120, .15);
}

.card-content {
    position: relative;
    z-index: 2;
    width: 90%;
}

.card-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0b3b82;
    margin-bottom: 6px;
}

.card-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #5c6b80;
    margin: 0;
}

.bg-icon {
    position: absolute;
    right: -8px;
    bottom: -20px;
    font-size: 5rem;
    color: var(--primary);
    opacity: .12;
    transition: .35s;
    pointer-events: none;
}

.audience-card:hover .bg-icon {
    transform: scale(1.05) rotate(-8deg);
    opacity: .35;
}

/* ===============================
   Tablet (992px)
================================= */

@media (max-width:992px) {

  .audience-grid {
    gap: 24px;
  }

  .audience-card {
    padding: 28px;
  }


 

  .bg-icon {
    font-size: 6rem;
    right: -10px;
    bottom: -18px;
  }

}



/* Responsive Breakpoint for Mobile Devices */
@media (max-width: 768px) {
  .audience-grid {
    grid-template-columns: 1fr;
  }

}



/*----------------Agenda section css---------------- */


.agenda-heading h2 {
  font-family: var(--font-main);
  font-size: 1.3rem;
  color: #000;
  font-weight: 800;
  margin-bottom: 10px;
  text-align: center;
  position: relative;
  margin-top: 20px
}



.timeline__item {
  padding: 0 0 20px 40px;
  position: relative
}

.timeline__items {
  list-style: none;
  margin-left: 13em
}

.timeline__item:before {
  border-radius: 50%;
  top: .25em;
  width: 12px;
  height: 12px;
  transform: translateX(-50%) scale(0);
  z-index: 1
}

.timeline__item-in:before {
  transform: translateX(-50%) scale(1)
}

.timeline__item:after,
.timeline__item:before {
  background-color: var(--primary-accent);
  content: "";
  display: block;
  position: absolute;
  left: 0
}
/* Remove vertical line after the last item */
.timeline__item:last-child::after {
    display: none;
}


.timeline__item:after {
  top: .75em;
  width: .125em;
  height: 100%;
  transform: translateX(-50%);
  background-color: #d2d2d2
}

.timeline__item-time {
  position: absolute;
  top: 0;
  right: calc(100% + 2.5rem);
  text-align: right;
  width: 17rem;
  transform: translateX(.75em);
  color: var(--color-primary);
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 16px
}

.agenda-schedule-content h2 {
  font-size: 1.3rem;
  font-family: var(--font-main);
  margin: 0 0 10px;
  line-height: 30px;
  font-weight: 700;
  color: var(--color-primary);
}

.agenda-schedule-content p {
  font-size: 1rem;
  font-family: var(--font-main);
  color: var(--color-primary);
  margin-bottom: 12px;
  line-height: 1.6;
  font-weight: 400
}

.agenda-schedule-content {
  border-bottom: 1px dotted #d2d2d2;
  padding-bottom: 20px
}

.timeline__items li:last-child .agenda-schedule-content {
  border-bottom: 0;
  padding-bottom: 0
}
.agenda-schedule-content p em {
    display: block;
    position: relative;
    padding-left: 22px;
    font-style: italic;
    color: #424242;
    line-height: 1.6;
}

.agenda-schedule-content p em::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #424242; /* Change to your theme color */
    font-size: 18px;
    font-weight: bold;
}
.agenda-list {
    margin: 0 0 20px 1.5rem;
    padding: 0;
}

.agenda-list li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.agenda-list li::marker {
    font-weight: 700;
    color: #424242;
}
/* Responsive */
@media (max-width: 991px) {

  .timeline__items {
    margin-left: 0;
    padding-left: 20px;
  }

  .timeline__item {
    padding: 0 0 30px 30px;
  }

  .timeline__item-time {
    position: static;
    width: 100%;
    transform: none;
    text-align: left;
    /* Time on right */
    margin-bottom: 12px;
    /* Space before agenda */
    font-size: 15px;
    display: block;
    color: var(--color-primary);
  }

  .agenda-schedule-content {
    padding-top: 0;
  }
}




/* Background color for middle details panel */
.venue-info-box {
  background-color: var(--primary-accent);
  /* Matches the green theme */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.venue-info-box a:hover {
  text-decoration: underline !important;
}

/* Venue Section Button */
.venue-info-box .hero-actions {
  margin-top: 30px;
}

.venue-info-box .hero-actions .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #fff;
  color: #0b5ed7;
  border: 2px solid #fff;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .15);
}

.venue-info-box .hero-actions .btn-primary i {
  transition: transform .3s ease;
}

.venue-info-box .hero-actions .btn-primary:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
  transform: translateY(-3px);
  text-decoration: none;
}

.venue-info-box .hero-actions .btn-primary:hover i {
  transform: translateX(5px);
}

.venue-info-box .hero-actions .btn-primary:focus {
  box-shadow: none;
}

/* Maintain equal row height on desktop */
@media (min-width: 992px) {
  .venue-banner {
    min-height: 320px;
  }
}

/* Ensure mobile map displays properly when stacked */
@media (max-width: 991.98px) {
  .venue-img-container img {
    min-height: 250px;
  }
}





/* footer */
/* Custom Styles */

.theme-footer-two {
  background-color: #0D151E;
  color: #ffffff;
  padding-top: 40px;
}

/* Social Icons Styles */
.top-social-icon-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.top-social-icon-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Layout styling for the list */
.top-social-icon-list.footerIc {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Base button styling */
.top-social-icon-list.footerIc a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  transition: transform 0.2s ease, opacity 0.2s ease;
  gap: 20px;
}

.top-social-icon-list.footerIc a:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

/* Brand Background Colors */
.top-social-icon-list.footerIc .fbIocn {
  background-color: #1877F2;
  /* Facebook */
}

.top-social-icon-list.footerIc .twIcon {
  background-color: #000000;
  /* X / Twitter */
  border: 1px solid #333333;
}

.top-social-icon-list.footerIc .linkIcon {
  background-color: #0A66C2;
  /* LinkedIn */
}

.top-social-icon-list.footerIc .insaIcon {
  /* Instagram Gradient */
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aebe6 90%);
}

.top-social-icon-list.footerIc .ytIcon {
  background-color: #FF0000;
  /* YouTube */
}

.top-social-icon-list a:hover {
  background-color: #0d6efd;
  color: #ffffff;
}

/* Footer Links List */
.linkFtr ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.linkFtr li {
  margin-top: 10px;
  display: flex;
  align-items: center;
}

.linkFtr li a {
  color: #cccccc;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.2s ease;
}

.linkFtr li a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.linkFtr li:not(:last-child)::after {
  content: "|";
  color: #6c757d;
  margin: 0 10px;
}

/* CSS Marquee Animation (Modern replacement for <marquee>) */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  padding: 8px 0;
}

.marquee-content {
  display: inline-block;
  padding-left: 100%;
  animation: marquee-scroll 25s linear infinite;
  font-size: 14px;
  color: #dddddd;
}

.marquee-container:hover .marquee-content {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-100%, 0);
  }
}

/* Bottom Footer */
.bottom-footer {
  background-color: #0D151E;
  padding: 20px 0;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bottom-footer p {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
}




/* sponsor section on home page */
.sponsors {
  background: url("../images/banner/gradient02.jpg") center center/cover no-repeat;
  position: relative;
}

.sponsors::before {
  content: "";
  position: absolute;
  inset: 0;
}

.sponsors-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--accent);
  border-radius: 18px;
  text-decoration: none;
  transition: .3s ease;
  height: 180px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

}

.sponsors-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 5px 15px var(--accent);
}

.sponsors-box img {
  max-width: 250px;
  max-height: 110px;
  width: auto;
  height: auto;
  object-fit: contain;
}


/* this is sponsor.php css */

.partners-list {
  max-width: 900px;
  margin: auto;
}

.partner-card {
  display: flex;
  align-items: center;
  gap: 30px;
  background: #fff;
  border: 1px solid #e5edf7;
  border-radius: 18px;
  padding: 28px;
  margin-bottom: 25px;
  transition: .35s;
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.partner-logo {
  flex: 0 0 180px;
  display: flex;
  justify-content: center;
  align-items: center;

}

.partner-logo img {
  max-width: 160px;
  max-height: 80px;
  object-fit: contain;
}

.partner-content {
  flex: 1;
}

.partner-type {
  display: inline-block;
  background: #eaf3ff;
  color: #0d6efd;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.partner-content p strong {
  font-weight: 700;
}

.partner-content p {
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

@media(max-width:768px) {

  .partner-card {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }

  .partner-logo {
    flex: unset;
  }
}

.breadcrumb-banner {
  position: relative;
  width: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  background: url("../images/banner/breadcrumb.jpg") center/cover no-repeat;
  overflow: hidden;
}

.breadcrumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(4, 15, 40, 0.95) 0%,
      rgba(4, 15, 40, 0.85) 25%,
      rgba(4, 15, 40, 0.65) 50%,
      rgba(4, 15, 40, 0.35) 75%,
      rgba(4, 15, 40, 0) 100%);
}

.breadcrumb-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 700px;
  text-align: left;
}

.breadcrumb-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.breadcrumb {
  background: transparent;
  padding: 0;
}

.breadcrumb-item,
.breadcrumb-item a {
  color: rgba(255, 255, 255, .9);
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb-item.active {
  color: #4fc3ff;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, .6);
}

@media (max-width: 768px) {
  .breadcrumb-banner {
    min-height: 220px;
  }

  .breadcrumb-content h1 {
    font-size: 2rem;
  }
}



/* Card & Outer Container */
.registration-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 30px;
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

/* Form Labels */
.registration-card .form-label {
  font-weight: 600;
  font-size: 15px;
  font-family: var(--font1);
  color: #1a1a1a;
  margin-bottom: 8px;
}

.registration-card .form-label span {
  color: #e53e3e;
  margin-left: 2px;
}

/* Form Inputs & Select Controls */
.registration-card .form-control,
.registration-card .form-select {
  height: 44px;
  border: 1px solid #9E9E9E;
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 1rem;
  color: #334155;
  box-shadow: none !important;
}

.registration-card .form-control:focus,
.registration-card .form-select:focus {
  border-color: var(--accent);
}


/* Dropdown Option Items */
.registration-card .form-select option,
.registration-card select.form-control option {
  padding: 10px 14px;
  font-size: 14px;
  color: #1e293b;
  background-color: #ffffff;
}

.registration-card .form-select option:hover,
.registration-card .form-select option:focus,
.registration-card select.form-control option:hover,
.registration-card select.form-control option:focus {
  background-color: #f1f5f9;
  color: var(--accent);
}

/* Dropdown Optgroup Styling */
.registration-card .form-select optgroup,
.registration-card select.form-control optgroup {
  font-weight: 700;
  font-style: normal;
  color: var(--accent);
  background-color: #f8fafc;
  padding: 8px 10px 4px 10px;
  text-transform: uppercase;
  font-size: 11px;
  font-family: var(--font1);

  letter-spacing: 0.5px;
}

.registration-card .form-select optgroup option,
.registration-card select.form-control optgroup option {
  padding-left: 20px;
  font-weight: 400;
  text-transform: none;
  font-size: 14px;
  font-family: var(--font1);

  color: #334155;
  background-color: #ffffff;
}

/* Checkboxes & Links */
.registration-card .check_box {
  margin-top: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.registration-card .check_box input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}

.registration-card .privacy-text {
  font-size: 1rem;

  color: #475569;
  line-height: 1.7;
  font-weight: normal;
  margin-bottom: 0;
}

.registration-card .privacy-text a {
  color: var(--accent);
  text-decoration: underline;
}

/* Footer Help Text */
.registration-card .form-content {
  margin-top: 20px;
  font-size: 1rem;
  color: #64748b;
}

.registration-card .form-content a {
  color: var(--accent);
}

.form_auth .iti__selected-country-primary {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.07);
    border-right: 1px solid #c5c5c5;
}
.iti__selected-country {
    height: 40px;
}
.form_auth .iti__search-input {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #c5c5c5;
    border-radius: .25rem;
    margin-bottom: 10px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.07);
    border-radius: 0.5rem;
    font-family: var(--font-main);
}
.form_auth .iti__search-input:focus {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #c5c5c5;
    border-radius: .25rem;
    margin-bottom: 10px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.07);
    border-radius: 0.5rem;
    font-family: var(--font-main);
    font-weight: 500;
}
.form_auth .iti__dropdown-content {
    padding: 10px;
    border-radius: 0.5rem;
}
#registform .error {
    color: #f14247 !important;
    margin-top: 5px;
}
.iti__selected-country {
height: 40px !important;
}



/* Base Section Styling */
.speaker-section {
    background: var(--bg-color);
    font-family: var(--font1);
}



/* ==========================
   Speaker Grid
========================== */
.speaker-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, max-content));
    justify-content: center;
    gap: 30px;
}

/* ==========================
   Speaker Card
========================== */
.speaker-card {
    width: 320px;
    background: #fff;
    border: 1px solid rgba(0, 53, 102, .08);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 35px rgba(0, 53, 102, .08);
    transition: transform .35s ease, box-shadow .35s ease;
    cursor: pointer;
        height: 100%;           /* Makes all cards equal height */

}

.speaker-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 53, 102, .15);
}

/* ==========================
   Image
========================== */

.speaker-img {
    width: 320px;
    height: 320px;
    overflow: hidden;
    position: relative;
  display: inline-block;
}


.speaker-label.inverted-tri-rect {
  position: absolute;
  bottom: 8px;
  right: 0;
  background: #f1b94c;
  color: #fff; /* Accent text color */
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px 5px 18px; /* Extra left padding for the inner triangle notch */
  /* Clips an inverted triangle cutting into the left side */
  clip-path: polygon(10px 50%, 0% 0%, 100% 0%, 100% 100%, 0% 100%);
  pointer-events: none;
}
.speaker-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    background: radial-gradient(
        ellipse at center,
        #FFFFFF 0%,
        #F8FCFF 15%,
        #EAF7FE 30%,
        #DCEFFB 50%,
        #A9DCF9 75%
    );
    transition: transform .35s ease;
}

.speaker-card:hover .speaker-img img {
    transform: scale(1.08);
}

/* ==========================
   Content
========================== */
.speaker-content {
  
    flex: 1;                /* Takes remaining space */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    text-align: center;
}

.speaker-content h3 {
    color: var(--border-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.speaker-line {
    width: 70px;
    height: 4px;
    background: var(--primary-accent);
    border-radius: 50px;
    margin: 0 auto 18px;
}

.designation {
    font-size: .95rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.company {
    color: #6b7280;
    font-size: .875rem;
    margin: 0;
}

/* ==========================
   Responsive
========================== */
@media (max-width:768px){

    .speaker-grid{
        grid-template-columns:repeat(auto-fit,minmax(280px,320px));
        justify-content:center;
        gap:20px;
    }

    .speaker-card,
    .speaker-img{
        width:100%;
    }

    .speaker-img{
        height:320px;
    }
}

@media (max-width:480px){

    .speaker-card{
        max-width:320px;
    }

    .speaker-img{
        height:280px;
    }

    .speaker-content h3{
        font-size:1.3rem;
    }
}

.speaker-card.cursor-pointer {
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.speaker-card.cursor-pointer:hover {
    transform: translateY(-5px);
}
/* Restrict left-side image height and keep aspect ratio */
.modal-small-img {
  background: radial-gradient(
    ellipse at center,
    #FFFFFF 0%,
    #F8FCFF 15%,
    #EAF7FE 30%,
    #DCEFFB 50%,
    #A9DCF9 75%
);
    max-height: 300px; /* Adjust this value to make it smaller/larger */
    width: auto;
    object-fit: contain;
    display: block;
}


/* Optional container styling */
.modal-img-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}