@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&family=Open+Sans:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700&display=swap');


body {
  font-family: 'rubik', sans-serif;
  margin: 0;
  
  background-color: #ffffff!important;
  color: #0a0a23;
}

/* Headings use Cambria */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Rubik', serif;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Paragraphs & sub-headings */
p, span, li, a, small {
  font-family: 'lato', sans-serif;
  color: #1b1b1b;
}


:root {
  --primary-color: #00173c !important;    /* Main brand color */
  --secondary-color: #ff5e15; /* Accent / button color */
  --secondary-colorhover: #d4612c; /* Accent / button color */
  --white: #ffffff;
  --menu: #011f4e;
  --text-color: #222;         /* Default text */
  --light-text: #666;         /* Muted text */
  --bg-color: #f4f7ff;        /* Page background */
  
  --border-color: #dddddd;
}


/* =========================================
   ✅ GLOBAL RIGHT-SIDE SPACE FIX (ALL PAGES)
   ========================================= */

/* Never allow horizontal overflow */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}


















.contents {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 30px;
  gap: 30px;
}

/* FIX HEIGHT ISSUE */
.building-top {
  width: 100%;
  background: var(--primary-color);
  color: var(--white);
  position: relative;
  padding: 0px 0 !important;
  min-height: auto !important; /* override old value */
}

/* LEFT LOGO COLUMN */
/* .logo-column {
  width:220px;
  background:#162039;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
  box-shadow: inset 0 -40px 70px rgba(0,0,0,0.2);
  
} */
.building-logo {
  margin: 0 !important;
  padding: 0 !important;
}

.building-logo img {
  display: block; /* removes inline spacing */
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0 !important;
}

/* REMOVE SPACING BELOW HEADER PARTS */
.building-logo,
.building-left,
.building-right,
.building-top .contents {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

/* PREVENT NAV GAP */
.main-nav {
  margin-top: 0 !important;
}

/* LEFT TEXT BLOCK */
.building-left {
  width: 53%;
  margin-left: -20px;
}

.tradition {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
}

.conf-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  margin: 10px 0;
}

.conf-date {
  font-size: 16px;
  display: block;
  padding: 6px 18px;
  color: var(--white);
  border-radius: 2px;
  text-align: center;

  /* Symmetrical gradient (center highlight) */
  background: linear-gradient(
    to right,
    var(--primary-color),
    /* left */ var(--secondary-color),
    /* middle */ #001b46 /* right */
  );
}

.building-logo img {
  width: 160px;
  height: fit-content;
}

/* RIGHT CONTACT BLOCK */

.building-right {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px; /* container width */
}

/* RESIZE IMAGE PROPERLY */
.building-right .right-img {
  width: 150px; /* reduce size here */
  height: auto;
  object-fit: contain;
  display: block;
}







/* CENTER BACKGROUND IMAGE BEHIND THE TEXT */
.building-top::before {
  content: "";
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 650px;     /* adjust size here */
  height: 300px;     /* adjust height */
  background: url("Assests/singapore.png") no-repeat center;
  background-size: contain;
  opacity: 0.18;    /* transparency */
  z-index: 1;
  pointer-events: none;
}

/* ENSURE TEXT AND RIGHT IMAGE STAY ABOVE */
.building-top .contents {
  position: relative;
  z-index: 5;
}


















/* ==========================================
   NAVIGATION
========================================== */

.main-nav {
  width: 100%;
  background: var(--menu);
  position: sticky;
  top: 0;
  z-index: 999;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
 
}

.main-nav .square {
  justify-content: center !important;
  position: relative;
  padding-top: 1px; /* increase or decrease until perfect */
  padding-top: 7px !important;
  padding-bottom: 7px !important;
}

.menu {
  display: flex;
  list-style: none;
  gap: 30px;
  justify-content: center !important;
  margin: 0 !important;
  padding: 0 !important;
}

.menu li a {
  color: var(--white);
  padding: 5px;
  display: block;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

.menu li.highlight a {
  background: #427a76;
  padding: 12px 18px;
  border-radius: 4px;
}

/* ==========================================
   DESKTOP DROPDOWN (MATCHES YOUR IMAGE)
========================================== */

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 48px;
  left: 0;
  min-width: 220px;
  background: var(--menu); /* red background */
  display: none;
  padding: 0;
  z-index: 999;
}

.dropdown-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  list-style: none !important;
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu li a {
  color: var(--white) !important;
  padding: 12px 20px;
  display: block;
  font-size: 15px;
}

@media (min-width: 901px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* ==========================================
   HAMBURGER
========================================== */

.hamburger {
  display: none;
  position: absolute;
  right: 20px;
  top: 15px;
  cursor: pointer;
  z-index: 1000;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--white);
  display: block;
  margin: 5px 0;
}

/* ==========================================
   MOBILE MENU
========================================== */

@media (max-width: 900px) {
  .menu.active {
    display: flex !important;
    flex-direction: column;
    padding: 20px;
    background: #1a1f3c;
  }

  .main-nav {
    background: #1a1f3c !important; /* FORCE NAVBAR BACKGROUND */
    height: 60px;
    position: relative;
  }

  .hamburger {
    display: block;
  }

  .main-nav .square {
    justify-content: flex-end;
    padding: 0 0px;
  }

  .menu {
    display: none;
    width: 100%;
    gap: 0;
  }

  .menu li {
    width: 100%;
    text-align: center;
  }

  .menu.active li {
    margin: 10px 0;            /* vertical gap */
  }

  /* MOBILE DROPDOWN */
  .dropdown-menu {
    width: 100% !important;
    left: 0 !important;
    transform: none !important;
    margin-top: 8px !important;
    background: #232b55 !important;
    border-radius: 6px;
  }

  /* shown state */
  .dropdown-menu.show {
    display: block !important;
  }

  /* ensure items are centered and have consistent vertical spacing */
  

.dropdown-menu li a {
    padding: 14px 0 !important;
    font-size: 14px;
  }

  .dropdown-menu li:not(:last-child) a {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }



  /* remove left padding from links (so centering is perfect) */
  .dropdown-menu li a {
    padding-left: 0 !important;
  }

  .dropdown-toggle {
    position: relative;
    padding-right: 25px;
  }

  .dropdown-toggle::after {
    content: "";
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
  }
}

/* Buttons should only be as wide as the text */
.menu li.highlight a {
  display: inline-block !important; /* key */
  width: auto !important; /* key */
  padding: 10px 15px !important; /* natural button shape */
  border-radius: 5px;
  font-size: 14px;
  text-align: center !important;
}

/* Submit Abstract button */
.menu li.highlight:nth-last-child(2) a {
  background: var(--secondary-color) !important;
  color: var(--white) !important;
}

/* Register button */
.menu li.highlight:last-child a {
  background: var(--secondary-color) !important;
  color: var(--white) !important;
}






/* ================================
   BELOW 1140px — KEEP SAME LAYOUT
================================ */
@media (max-width: 1140px) {

  /* 1️⃣ Hide right-side image (already done, keeping for safety) */
  .building-right {
    display: none !important;
  }

  /* 2️⃣ Make content LEFT aligned instead of centered */
  .building-top .contents {
    align-items: flex-start !important;
    text-align: left !important;
    gap: 12px !important;          /* 🔹 reduce vertical gap */
    padding: 0px 20px !important; /* 🔹 reduce top/bottom padding */
  }

  /* 3️⃣ Logo: remove extra space above & below */
  .building-logo {
    margin: 0 !important;
    padding: 0 !important;
    justify-content: flex-start !important;
  }

  .building-logo img {
    width: 120px;       /* 🔹 slightly smaller logo */
    margin: 0 !important;
    display: block;
  }

  /* 4️⃣ Text block aligns left & sticks closer to logo */
  .building-left {
    width: 100% !important;
    margin-top: 4px !important;   /* 🔹 removes big gap */
    padding-left: 30px !important;
  }

  /* 5️⃣ Reduce title spacing */
  .building-left h1,
  .building-left h2 {
    margin-top: 4px !important;
    margin-bottom: 0px !important;
    font-size: 20px;
  }

  /* 6️⃣ Date ribbon spacing */
  .road-row {
    margin-top: 6px !important;
  }

.building-top::before {
    display: none !important;
  }

/* Main title */
  .building-left h1 {
    font-size: 22px;
    line-height: 1.25;
  }


  .building-left .tradition {
    font-size: 15px;
  }

.building-left .conf-date {
      font-size: 15px;  
}


  
}



@media (max-width: 900px) {

  /* Layout stays horizontal */
  .building-top .contents {
    display: flex;
    align-items: flex-start;   /* 🔑 logo sticks to top */
    gap: 16px;
  }

  /* LOGO — remove all gaps */
  .building-logo {
    padding: 0 !important;
    margin: 0 !important;
    line-height: 0;
    align-self: flex-start;    /* 🔑 force top */
  }

  .building-logo img {
    display: block;
    margin: 0;
    width: 120px;              /* slightly smaller logo */
  }

  /* RIGHT CONTENT ALIGNMENT */
  .building-left {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  /* Main title */
  .building-left h1 {
    font-size: 16px;
    line-height: 1.25;
  }


  .building-left .tradition {
    font-size: 13px;
  }

.building-left .conf-date {
      font-size: 13px;  
}

  /* Date bar */
  .road-row {
    font-size: 13px;
    padding: 6px 10px;
  }
}




@media (max-width: 600px) {

  .building-logo img {
    width: 100px;
  }

  .building-left h1 {
    font-size: 10px;
  }

  .building-left .tradition {
    font-size: 10px;
  }

.building-left .conf-date {
      font-size: 13px;  
}

.building-left .conf-date {
      font-size: 10px;  
}

  .road-row {
    font-size: 12px;
  }
}

@media (max-width: 400px) {

  .building-logo img {
    width: 50px !IMPORTANT;
    height: 40px !IMPORTANT;
  }

  .building-left h1 {
    font-size: 8px;
  }

  .building-left .tradition{
    font-size: 10px;
  }


  .building-left .conf-date {
      font-size: 8px;  
}

  .road-row {
    font-size: 11px;
  }
}









































/* Hero Section *//* Hero Section *//* Hero Section *//* Hero Section *//* Hero Section *//* Hero Section */


/* Full-width section and centered container */
.slider-section {
    position: relative;
    width: 100%;
    /* background: #00173c; */
    padding: 30px 0px;
    overflow: visible;
   
}

/* optional background element (keeps full width if you want image) */
.slider-bg {
    position: absolute;
    inset: 0;
    background: transparent;
    pointer-events: none;
}

/* center content */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    
}
.container h6 {
  font-size: 26px;
    line-height: 1.5;
    margin-top: 0px;
    padding-bottom: 15px;
    text-decoration: none;
    list-style: none;
}

/* carousel wrapper (holds arrows and viewport) */
.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
}







.carousel-viewport {
  position: relative;   /* ✅ VERY IMPORTANT */
  overflow: hidden;
}




/* arrows */
/* ✅ HARD RESET FOR ANY DEFAULT SYMBOLS */
.carousel-arrow,
.carousel-arrow::before,
.carousel-arrow::after,
.carousel-arrow *::before,
.carousel-arrow *::after {
    content: none !important;
    list-style: none !important;
    text-decoration: none !important;
}

/* ✅ YOUR PERFECT BLACK CIRCLE ARROW */
.carousel-arrow.exact {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--secondary-color);

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    padding: 0;
    cursor: pointer;

    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform .2s ease, box-shadow .2s ease;

    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;        /* ✅ ENSURES IT'S ABOVE EVERYTHING */
    pointer-events: auto; /* ✅ ENSURES IT IS CLICKABLE */
}

/* ✅ Positioning */
.carousel-arrow.prev { left: 12px; }
.carousel-arrow.next { right: 12px; }

/* ✅ SVG Chevron */
.carousel-arrow.exact .arrow-icon {
    width: 28px;
    height: 28px;

    fill: none;
    stroke: #fff;
    stroke-width: 4.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ✅ Hover Effect */
.carousel-arrow.exact:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* ✅ KILL ANY SLIDER DEFAULT SYMBOLS */
.swiper-button-prev::after,
.swiper-button-next::after,
.slick-prev::before,
.slick-next::before,
.owl-prev::before,
.owl-next::before {
    display: none !important;
    content: "" !important;
}



.carousel-arrow.prev {
  left: 12px;     /* INSIDE the container */
}

.carousel-arrow.next {
  right: 12px;    /* INSIDE the container */
}






/* viewport with hidden overflow */
.carousel-viewport {
    overflow: hidden;
    flex: 1 1 auto;
}

/* track is a horizontal flex row we will transform */
.carousel-track {
    display: flex;
    gap: 12px;
    transition: transform 520ms cubic-bezier(.22,.9,.32,1);
    will-change: transform;
    align-items: stretch;
}



/* Increase slide width */
.slide {
    min-width: 365px;   /* previously around 420–450px, now increased */
    height: 270px;      /* adjust if needed */
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

/* Image style – increased width */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Bottom overlay box */
.slide-content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 25px;
    background: rgba(0, 0, 0, 0.45);
    color: var(--white);
}







/* image wrapper for rounded corners and relative overlays */
.slide-image-wrap {
    position: relative;
    border-radius: var(--card-radius);
    overflow: hidden;
    background: #222;
    height: 270px;
    display: flex;
    align-items: stretch;
    border-radius: 8px;
}

/* slide image fills area */
.slide-image-wrap img {
    width: 500px;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 420ms cubic-bezier(.22,.9,.32,1);
}

/* date pill top-right */
.date-pill {
    position: absolute;
    right: 0px;
    top: 0px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 12px;
    font-size: 13px;
    border-radius: 4px;
    font-weight: 600;
    box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}

/* overlay bottom-left */
.slide-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 22px;
    background: rgba(0, 0, 0, 0.55);
    color: var(--white);
    z-index: 5
}

/* heading and description inside overlay */
/* .slide-overlay h3 {
    margin: 0 0 8px 0;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
} */



.slide-overlay .desc {
    margin: 0;
    color: rgba(255,255,255,0.95);
    font-size: 16px;
    line-height: 1.18;
    max-width: 100%;
    text-align: left;
    font-weight: 700;
    
}



/* underline effect on hover for the description */
.slide .slide-overlay .desc {
    position: relative;
}

.slide .slide-overlay .desc::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0%;
    height: 3px;
    background: var(--secondary-color);
    transition: width 320ms ease;
    border-radius: 2px;
}

.slide:hover .slide-image-wrap img {
    transform: scale(1.06) translateY(-6px); /* zoom + move up slightly */
}

.slide:hover .slide-overlay .desc::after {
    width: 110px;
}





@media (max-width: 996px) {

  .slide {
    min-width: 360px;
    height: 330px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    flex-shrink: 0;
  }

  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* ✅ KEEP SAME CENTER REFERENCE ON MOBILE */
  .carousel-viewport {
    min-height: 330px;
    padding: 0 55px;
  }

  .carousel-arrow.prev { left: 12px; }
  .carousel-arrow.next { right: 12px; }

}







/* Extra small mobile (portrait) */
@media (max-width: 430px) {


/* Increase slide width */
.slide {
    min-width: 270px;   /* previously around 420–450px, now increased */
    height: 330px;      /* adjust if needed */
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

/* Image style – increased width */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

}






























/* Welcome message *//* Welcome message *//* Welcome message *//* Welcome message *//* Welcome message *//* Welcome message *//* Welcome message *//* Welcome message */


.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px 20px;
  background-color: var(--white);
}

/* Header Section */
.header-section {
  display: flex;
  justify-content: space-between;
  align-items: center; /* ✅ Keeps left & right in one line */
  border-bottom: 2px dotted var(--primary-color);
  padding: 10px 0 20px 0;
  margin-bottom: 25px;
  flex-wrap: nowrap; /* ✅ Prevents wrapping unless on small screens */
}

.header-left {
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: center; /* ✅ Vertically centers heading + paragraph */
}

.header-left h2 {
  margin: 0 0 5px 0;
  font-size: 26px;
  color: var(--primary-color);
  line-height: 1.2;
}

.header-left p {
  margin: 0;
  font-size: 16px;
  color: #000000;
  line-height: 1.4;
}

.header-right {
  width: 30%;
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: center; /* ✅ Centers vertically to match left side */
}

.header-right h4 {
  margin: 0 0 10px;
  font-weight: 500;
  color: var(--primary-color);
}

.timer {
  display: flex;
  justify-content: flex-end;
  align-items: center; /* ✅ Centers the timer boxes */
  gap: 10px;
  
}

.timer div {
  background: var(--secondary-color);
  padding: 10px 0;
  width: 60px;
  text-align: center;
  border-radius: 6px;
  border-bottom: 3px solid var(--primary-color);
}

.timer span {
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: var(--white);
}

.timer small {
  font-size: 12px;
  color: var(--white);
}




/* Main Section */
.main-section {
    display: grid;
    grid-template-columns: 65% 30%;   /* left 70% + right 30% */
    justify-content: space-between;
    gap: 25px;
    flex-wrap: wrap;
}

.left-content {
    flex: 1 1 70%;
}


.speaker {
    margin-bottom: 15px; 
    display: flex;
  align-items: flex-start;
  gap: 18px;
}



/* ✅ Auto-scaling background wrapper */
.speaker-img-bg {
  display: inline-flex;       /* auto size to image */
  padding: 4px;              /* ✅ space visible on all sides */
  background: var(--secondary-color);        /* ✅ background color */
  border-radius: 90px;        /* ✅ rounded container */
  box-sizing: border-box;
  flex-shrink: 0;             /* ✅ prevents shrinking in flex */
  
}

.speaker-img-bg img {
  display: block;
  width: 150px;               /* ✅ control size here */
  height: 150px;
  border-radius: 100px;        /* ✅ slightly smaller than bg radius */
  object-fit: cover;
  
}


/* ✅ Smooth zoom on hover (image only) */
.speaker-img-bg {
  overflow: hidden;              /* ✅ prevents zoom overflow */
}

.speaker-img-bg img {
  transition: transform 0.4s ease;  /* ✅ smooth animation */
}

.speaker-img-bg:hover img {
  transform: scale(1.08);        /* ✅ gentle zoom */
}


/* The paragraph inside .speaker will now wrap around the floated image */
.speaker p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    text-align: justify;
    
}

.speaker p a {
    color: var(--secondary-color);
    text-decoration: none;
}

.speaker p strong {
  color: var(--primary-color);
  font-size: 17px;
}

.speaker p a:hover {
    text-decoration: underline;
}

/* Key Change 2: Implement the clearfix for the .speaker container */
.speaker::after {
    content: "";
    display: table;
    clear: both; /* Ensures subsequent content below .speaker doesn't flow beside the image */
}

/* Clean up styling for the signature lines */
.best-regards {
    margin: 0;
    padding-top: 5px; /* Add slight separation from the content block */
      color: var(--primary-color);
  font-size: 18px;
}


.signature-line {
    margin: 0;
    padding-bottom: 10px; /* Space before the divider */
}

hr {
    border: none;
    border-bottom: 1px dotted var(--primary-color);
    margin: 15px 0;
}



.right-images {
  flex: 1 1 30%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}


.image-box {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    
    
}

.image-box img {
    width: 400px;
    height: 170px;
    display: block;
    transition: transform 0.4s ease;
}

.image-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
}



.image-box:hover::before {
    opacity: 1; /* overlay appears on hover */
}

.image-box:hover img {
    transform: scale(1.10); /* slight zoom */
    
    
}

.img-text {
    max-width: 75%;        /* LIMITS width of the text block */
    white-space: normal;   /* allows wrapping */
    padding: 0 4px;
}


.img-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 23px;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    padding: 2px 6px;
    z-index: 5;  /* important */
    width: max-content;  /* solves left-right space */
}


.img-text p{
    font-size: 16px;
    text-align: center;
    color: var(--white);
}


/* Responsive Design */

/* BELOW 900px → right images come BELOW left speakers */
@media (max-width: 900px) and (min-width: 601px) {

    /* Stack left and right sections vertically */
    .main-section {
        grid-template-columns: 1fr !important; /* one column */
    }

    /* Left stays normal 100% width */
    .left-content {
        width: 100% !important;
    }

    /* Right images come BELOW left block */
    .right-images {
        width: 100% !important;
        margin-top: 20px;  /* spacing */
    }


    .right-images {
        display: flex;
        flex-direction: column;
        align-items: center;   /* ⭐ KEY FIX */
        justify-content: center;
        gap: 16px;             /* spacing between images */
    }

    .right-images img {
        display: block;
        margin: 0 auto;        /* extra safety */
        max-width: 100%;
    }


    /* Keep small image floating beside text */
    /* .speaker img {
        float: left !important;
        width: 140px !important;
        margin-right: 15px !important;
        margin-bottom: 10px !important;
    } */
}




/* BELOW 600px → same as below 900px except TOP HEADER becomes centered */
@media (max-width: 600px) {

    /* Main layout stays exactly same as 900px */
    .main-section {
        grid-template-columns: 1fr !important;
    }
    .left-content {
        width: 100% !important;
    }







/* Speaker container */
  .speaker {
    display: block;
  }


  /* ⭐ THIS IS THE KEY FIX */
  .speaker-text,
  .speaker-content,
  .speaker-description {
    overflow: hidden;          /* forces extra text below image */
    text-align: left;
  }

  /* Clear float properly */
  .speaker::after {
    content: "";
    display: block;
    clear: both;
  }








    .right-images {
        width: 100% !important;
        margin-top: 20px !important;
    }

     .right-images {
        display: flex;
        flex-direction: column;
        align-items: center;   /* ⭐ KEY FIX */
        justify-content: center;
        gap: 16px;             /* spacing between images */
    }

    .right-images img {
        display: block;
        margin: 0 auto;        /* extra safety */
        max-width: 100%;
    }

    

    /* ⭐ TOP SECTION CHANGES ONLY BELOW 600px */
    .header-section {
        display: block !important;
        text-align: center !important;
    }

    .header-left, 
    .header-left h2, 
    .header-left p {
        text-align: center !important;
        width: 100% !important;
    }

    /* Timer goes under heading and centered */
    .header-right {
        width: 100% !important;
        text-align: center !important;
        margin-top: 15px !important;
    }

    .timer {
        justify-content: center !important;
    }
}

/* Welcome message End*//* Welcome message End*//* Welcome message End*//* Welcome message End*//* Welcome message End*//* Welcome message End*//* Welcome message End*//* Welcome message End*/













/* Speakers Section *//* Speakers Section *//* Speakers Section *//* Speakers Section *//* Speakers Section *//* Speakers Section *//* Speakers Section *//* Speakers Section *//* Speakers Section */

/* --- Keynote Speakers Section Styles --- */

/* Ensures the speaker section uses the full 1300px width */
.keynote-speakers-section {
    max-width: 1300px;
    margin: 40px auto; /* Adds spacing above and below the section */
    padding: 60px 20px; /* Internal padding */
    
}

/* Header Styling */
.header-content {
    text-align: left;
    margin-bottom: 40px;
}

.header-content h1 {
    font-size: 26px;
    color: var(--primary-color);
  line-height: 1.2;
  margin-bottom: 0%;
}

.header-content p {
    font-size: 1.1em;
    color: #000000;
    position: relative;
    display: inline-block;
    
}

.header-content p::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;   /* distance BELOW paragraph */
    width: 180px;    /* underline length (make shorter) */
    height: 2px;     /* line thickness */
    background: var(--secondary-color);  /* your highlight color */
    border-radius: 2px;
}

/* SECOND underline */
.header-content p::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -22px;      /* further below second */
    width: 120px;        /* shorter than first */
    height: 2px;
    background: var(--secondary-color);
    border-radius: 2px;
}






/* Grid Layout (4 columns) */
.speakers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 equal columns */
    gap: 20px;
}

.speaker-card {
    text-align: left;
}

/* --- Image and Hover Effect --- */

.speaker-image-container {
    position: relative;
    overflow: hidden; /* Ensures the overlay stays inside the image area */
    margin-bottom: 15px;
    cursor: pointer;
}

.speaker-image-container img {
    width: 350px;
    height: 300px;
    display: block;
    transition: transform 0.3s ease;
}

/* The Black Fade Overlay */
.speaker-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 50% transparent black */
    opacity: 0; /* Hidden by default */
    transition: opacity 0.3s ease;
    
}

/* Hover Effect: Show the overlay and slightly zoom the image */
.speaker-image-container:hover .speaker-overlay {
    opacity: 1; /* Fade in the black overlay */
    background: rgba(0, 50, 120, 0.4); /* Fade in the black overlay */
}

.speaker-image-container:hover img {
    transform: scale(1.08) translateY(-8px); /* Slight zoom on hover */
}





/* --- Speaker Text Styling --- */

/* First line: Less font size */
.speaker-info .role {
    font-size: 0.9em; 
    color: var(--secondary-color);
    margin: 0;
    
}

/* Second line: Bold and Border */
.speaker-info .name {
    font-size: 1.0em;
    font-weight: bold;
    margin: 5px 0 10px 0;
    display: inline-block; /* Crucial for border width */
    color: var(--primary-color);
    
    /* Custom border that only spans the text width */
    border-bottom: 1px solid var(--primary-color); /* Example border color */
    padding-bottom: 2px;
}

/* Description text */
.speaker-info .description {
    font-size: 0.9em;
    color: #000000;
    margin-top: 5px;
}



/* ---------- DEFAULT (1300px and above) ---------- */
.keynote-speakers-section {
    max-width: 1300px;
    margin: 40px auto;
    padding: 0 20px;
    
}

/* Already centered as required */
.header-content {
    text-align: left;
    margin-bottom: 40px;
}

/* 4 Columns Default */
.speakers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.speaker-image-container {
    width: 100%;
    max-width: 300px;
    height: 300px;
    overflow: hidden; /* Prevent ANY right-side expansion */
}

/* Make images responsive — remove hard fixed size */
.speaker-image-container img {
    width: 300px;
    height: 300px;
    max-width: 300px;
    object-fit: cover;
    transform: none !important;
}

/* Keep card text same */
.speaker-card {
    text-align: left;
}



.speaker-overlay {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.speaker-image-container:hover .speaker-overlay {
    opacity: 1;
}


/* ---------- BELOW 1300px ---------- */
@media (max-width: 1300px) {

    .keynote-speakers-section {
        padding: 0 15px; /* Equal left-right spacing */
    }

    .speaker-card {
        text-align: left; /* TEXT centered only */
    }

    .speaker-info .name,
    .speaker-info .role,
    .speaker-info .description {
        text-align: left;
        margin-left: auto;
        margin-right: auto;
    }

    .speaker-image-container img {
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        max-width: 300px;
        height: 300px;
    }
}


/* ---------- BELOW 900px (3 speakers per row) ---------- */
@media (max-width: 900px) {
    .speakers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* ---------- BELOW 600px (2 speakers per row) ---------- */
@media (max-width: 600px) {
    .speakers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ---------- BELOW 400px (1 speaker per row) ---------- */
@media (max-width: 400px) {

    /* FORCE 1 COLUMN */
    .speakers-grid {
        grid-template-columns: 1fr !important;
    }

    /* Center the whole card */
    .speaker-card {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100%;
    }

    /* Image size control */
    .speaker-image-container {
        width: 100%;
        max-width: 260px;  /* your image width */
        margin: 0 auto;
    }

    /* Text container matches image width */
    .speaker-info {
        width: 100%;
        max-width: 260px; /* EXACT SAME as image */
        text-align: left;
        margin-top: 10px;
    }

    .speaker-info .role,
    .speaker-info .name,
    .speaker-info .description {
        text-align: left !important;
        width: 100%;
    }
}








/* View More Button *//* View More Button *//* View More Button *//* View More Button *//* View More Button *//* View More Button *//* View More Button *//* View More Button */

.view-more-container {
    text-align: center;
    margin-top: 40px;
    padding-bottom: 40px;
}

/* Blue button */
.view-more-btn {
    display: inline-flex;
    align-items: center;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 26px 10px 14px; /* Left padding reduced to bring circle close */
    border-radius: 35px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    gap: 12px; /* Space between circle and text */
    transition: 0.3s;
}

/* Circle */
.icon-circle {
    width: 38px;
    height: 38px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: -2px;  /* Pull circle closer to blue edge EXACTLY like image */

    position: relative;
}

/* Arrow inside circle */
.arrow {
    color: var(--white);
    font-size: 16px;
    font-weight: bold;
    position: relative;
    left: -3px; /* Move arrow slightly LEFT like your image */
}

/* Text */
.btn-text {
    letter-spacing: 0.5px;
    color: var(--white)
}

/* Hover effect */
.view-more-btn:hover {
    background-color: var(--secondary-colorhover);
}


/* Speakers Section End *//* Speakers Section End *//* Speakers Section End *//* Speakers Section End *//* Speakers Section End *//* Speakers Section End *//* Speakers Section End *//* Speakers Section End */















/* Scientific Sessions section *//* Scientific Sessions section *//* Scientific Sessions section *//* Scientific Sessions section *//* Scientific Sessions section *//* Scientific Sessions section */
body {
    overflow-x: hidden;
}


.topics-section {
    background: #00173c;
    padding: 60px 20px;
    background-image: url("Assests/bg-map2.png");
    
}

.topics-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 30% 68%;
    gap: 2%;
}

/* LEFT & RIGHT BOXES */

.topics-right {
    background: var(--white);
    padding: 5px 35px;
    border-radius: 0px;
    height: 550px; /* FIXED HEIGHT – both same */
    overflow-y: auto;
    
}



.topics-left {
    background: var(--white);
    padding: 0px 0px;
    border-radius: 0px;
    height: 560px; /* FIXED HEIGHT – both same */
    overflow-y: auto;
    
    
}



.sticky-title {
    background: var(--secondary-color);
    padding: 15px 25px;
    position: relative;   /* stays fixed inside box */
    z-index: 10;
}

.sticky-title h2 {
    color: var(--white);
    font-size: 26px;
  line-height: 1.2;
    margin: 0;
}


.scroll-area {
    height: calc(550px - 105px); /* subtract title height */
    overflow-y: auto;
    padding: 10px 35px;
}


/* Smooth anchor scrolling inside right box */
.topics-right {
    scroll-behavior: smooth;
}

.topics-left h2
 {
    color: var(--white);
    margin-bottom: 0px;
    font-size: 26px;
    font-weight: 600;
    text-align: center;
}


/* Tick Icon UPDATED */
.check-icon {
    width: 30px;
    height: 30px;
    background-image: url("Assests/scientific\ sessions\ icon.png");
    background-size: cover;
    background-repeat: no-repeat;
    display: inline-block;
    margin-right: 10px;
}


.left-list {
    list-style: none;
    padding: 0;
    margin: 0;
    
}

.left-list li {
    font-size: 18px;
    padding: 8px 0;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-align: left;
    
}


/* Make anchor links look like normal list items */
.left-list li a {
    text-decoration: none;
    color: #222;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
}


/* Hover effect like reference */
.left-list li a:hover {
    color: #174143;
}

/* Smooth scrolling on RIGHT SIDE */
.topics-right {
    scroll-behavior: smooth;
}


.left-list li span {
    color: #174143;
    font-weight: bold;
    margin-right: 10px;
}

.left-list li:hover {
    color: #174143;
}


.circle-check {
    width: 20px;
    height: 20px;
    border: 2px solid #174143;   /* circle border */
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #333;              /* tick color */
    flex-shrink: 0;
    padding: 2px;             /* tiny padding inside */
}

/* SCROLLBAR STYLE */
.scroll-area::-webkit-scrollbar,
.topics-right::-webkit-scrollbar {
    width: 6px;
}

.scroll-area::-webkit-scrollbar-thumb,
.topics-right::-webkit-scrollbar-thumb {
    background: #174143;
    border-radius: 0px;
}

.scroll-area::-webkit-scrollbar-track,
.topics-right::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .topics-container {
        grid-template-columns: 1fr;
    }
}


 



 

/* FORM TITLE */
.form-title {
    text-align: center;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 6px;
}

.underline {
    width: 120px;
    height: 3px;
    background: #000;
    margin: 0px auto 13px;
}

/* DOWNLOAD BOX */
.download-box {
    background: var(--white);
    padding: 5px 20px;
    border: 1px solid #ccc;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 35px;
}

.download-btn {
    background: #0d2a4d;
    color: var(--white);
    padding: 6px 15px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 15px;
    
}

/* FORM STRUCTURE */
.abstract-form {
    margin-top: 15px;
    border-radius: 0px;
}






/* ROW FORMAT (2 columns) */
.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

/* FORM GROUP STYLING */
.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group.full {
    width: 100%;
    margin-bottom: 15px;
}

/* LABEL */
label {
    font-size: 13px;
    margin-bottom: 6px;
    font-weight: 500;
}

label span {
    color: red;
}

/* INPUTS + SELECTS SAME SIZE */
input,
select {
    height: 28px !important;
    border-radius: 0px;
    border: 1px solid #ccc;
    padding: 10px 12px;
    font-size: 15px;
}

textarea {
    height: 2px !important;
    border-radius: 0px;
    border: 1px solid #ccc;
    padding: 12px;
    font-size: 15px;
    resize: none;
}

.form-group select,
.form-group input {
    height: 42px;
    font-size: 13px;
    padding: 2px 12px;
    border: 1px solid #dcdcdc;
    border-radius: 0px;
    color: #333;
}

/* Reduce padding ONLY for normal input & textarea */
input[type="text"],
input[type="email"],
input[type="number"],
textarea {
    padding: 13px 10px !important;   /* Reduced padding */
    height: 17px !important;        /* Keep height uniform */
}

/* Keep SELECT (dropdown) SAME as before */
select {
    padding: 2px 6px !important;  /* Original padding */
          /* Same height as inputs */
}


/* SUBMIT */
.submit-center {
    text-align: center;
    margin-top: 10px;
    padding-bottom: 0px;
}

.submit-btn {
    background: #0d2a4d;
    color: var(--white);
    padding: 7px 40px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    
}



@media (max-width: 900px) {
    .form-row {
        flex-direction: column;
    }
}



/* Scientific Sessions section End *//* Scientific Sessions section End *//* Scientific Sessions section End *//* Scientific Sessions section End *//* Scientific Sessions section End */


















/* Gallery Section *//* Gallery Section *//* Gallery Section *//* Gallery Section *//* Gallery Section *//* Gallery Section *//* Gallery Section *//* Gallery Section *//* Gallery Section *//* Gallery Section */

/* MAIN SECTION */
.gs-gallery-section {
    width: 100%;
    overflow: hidden;
    margin-top: 0px;
    /* padding-bottom: 30px; */
    
    
}

.gs-gallery-container {
    max-width: 1300px;
    margin: auto;
    text-align: center;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;   /* Align left for desktop */
    gap: 30px;
    padding-bottom: 30px;
}


/* Left side: title + description */
.gs-left-content {
    /* flex: 1; */
    display: flex;
    flex-direction: column;   /* Forces title ABOVE description */
    text-align: left !important;
}

.gs-gallery-title {
    font-size: 26px;
    color: var(--primary-color);
  line-height: 1.2;
}

.gs-gallery-description {
    max-width: 900px;
    margin: 0px auto;
    font-size: 18px;
    opacity: 0.8;
    position: relative;
    display: inline-block;
    
}

.gs-gallery-description::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;   /* distance BELOW paragraph */
    width: 180px;    /* underline length (make shorter) */
    height: 2px;     /* line thickness */
    background: var(--secondary-color);  /* your highlight color */
    border-radius: 2px;
}

/* SECOND underline */
.gs-gallery-description::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -22px;      /* further below second */
    width: 120px;        /* shorter than first */
    height: 2px;
    background: var(--secondary-color);
    border-radius: 2px;
    
}













/* ROWS */
.gs-slider-row {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 0;
    padding: 0;
}

.gs-slider-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: scroll 50s linear infinite;
}

.gs-slider-track.reverse {
    animation: scroll-reverse 50s linear infinite;
}

/* IMAGE WRAPPER */
.gs-img-wrap {
    position: relative;
    display: inline-block;
    flex: 0 0 auto;
    overflow: hidden;

    /* FINAL IMAGE SIZE CONTROL */
    width: 450px;
    height: 300px;
}

/* IMAGE INSIDE WRAPPER */
.gs-img-wrap .gs-slide-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.35s ease, filter 0.35s ease;
    z-index: 1;
    position: relative;
}

/* HOVER EFFECTS */
.gs-img-wrap .gs-slide-img:hover {
    filter: brightness(40%);
}

/* BLUE OVERLAY */
.gs-img-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 92, 255, 0.55);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 2;
    pointer-events: none;
}

/* BIG WHITE + ICON */
.gs-img-wrap::after {
    content: "+";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    font-size: 120px;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.35s ease;
    z-index: 3;
    pointer-events: none;
    text-align: center;
    font-weight: 400;
    letter-spacing: 4px;
}

/* OVERLAY + ICON ON HOVER */
.gs-img-wrap:hover::before,
.gs-img-wrap:focus-within::before {
    opacity: 1;
}

.gs-img-wrap:hover::after,
.gs-img-wrap:focus-within::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.gs-img-wrap:hover .gs-slide-img,
.gs-img-wrap:focus-within .gs-slide-img {
    transform: scale(1.04);
    filter: brightness(0.6) saturate(0.9);
}

/* STOP SLIDER ON HOVER */
.gs-slider-row:hover .gs-slider-track {
    animation-play-state: paused;
}

/* POPUP */
.gs-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.gs-popup-overlay img {
    width: 70%;
    max-width: 900px;
    border-radius: 6px;
}

.gs-close-btn {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 50px;
    color: var(--white);
    cursor: pointer;
}



/* SCROLL ANIMATIONS */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scroll-reverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}



.gs-view-more-container {
    text-align: right;
    margin-top: 50px;
    padding-bottom: 0px;
}

/* Blue button */
.gs-view-more-btn {
    display: inline-flex;
    align-items: center;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 26px 10px 14px; /* Left padding reduced to bring circle close */
    border-radius: 35px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    gap: 12px; /* Space between circle and text */
    transition: 0.3s;
}


.gs-btn-text {
  color: var(--white);
}


/* Circle */
.gs-icon-circle {
    width: 38px;
    height: 38px;
    background: #0B214D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: -2px;  /* Pull circle closer to blue edge EXACTLY like image */

    position: relative;
}

/* Arrow inside circle */
.gs-arrow {
    color: var(--white);
    font-size: 16px;
    font-weight: bold;
    position: relative;
    left: -3px; /* Move arrow slightly LEFT like your image */
}

/* Text */
.gs-btn-text {
    letter-spacing: 0.5px;
}

/* Hover effect */
.gs-view-more-btn:hover {
    background-color: var(--secondary-colorhover);
}



/* ========= MOBILE BELOW 750px ========= */
@media (max-width: 750px) {

    .gs-gallery-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center !important;   /* FULL FORCE center */
    }

    .gs-gallery-title,
    .gs-gallery-description {
        text-align: center !important;   /* FIX LEFT ALIGN ISSUE */
        margin-left: auto;
        margin-right: auto;
        
    }

    .gs-view-more-container {
        width: 100%;
        display: flex;
        justify-content: center;         /* center button */
        margin-top: 10px;
        
        
    }

}




 /* Gallery Section End */ /* Gallery Section End */ /* Gallery Section End */ /* Gallery Section End */ /* Gallery Section End */ /* Gallery Section End */ /* Gallery Section End */ /* Gallery Section End */

























/* Conference Highlights *//* Conference Highlights *//* Conference Highlights *//* Conference Highlights *//* Conference Highlights *//* Conference Highlights *//* Conference Highlights */

/* ===============================
   GLOBAL RESET
================================ */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

/* ===============================
   SECTION
================================ */
.highlights-section {
  background: #deeaff url(Assests/bg-map-white.png);
  /* padding: 60px 20px; */
  padding-right: 50px;
  padding-left: 20px;
  padding-top: 60px;
  padding-bottom: 60px;
}

/* ===============================
   FIXED HEIGHT (LAPTOP SAFE)
================================ */
:root {
  --highlights-height: 680px; /* 🔑 FIXED HEIGHT FOR ALL SCREENS */
}

/* ===============================
   CONTAINER (70 / 30)
================================ */
.highlights-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 70% 30%;
  gap: 30px;
  height: var(--highlights-height); /* SAME HEIGHT */
}

/* ===============================
   LEFT SIDE (70%)
================================ */
.highlights-left {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden; /* prevents page scroll */
}

/* Header */
.left-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 12px;
  border-bottom: 1px solid #0B214D;
}

.left-header h2 {
  font-size: 26px;
  margin: 0;
}

/* Tabs */
.insights-tabs {
  display: flex;
  gap: 10px;
}

.tab-btn {
  padding: 10px 25px;
  border: 1px solid #000;
  background: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.tab-btn.active {
  background: #00173c;
  color: #fff;
}

/* ===============================
   LEFT CONTENT (SCROLL)
================================ */
.content-box {
  flex: 1;                 /* takes remaining height */
  margin-top: 20px;
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  overflow-y: auto;
  border-radius: 6px;
}

/* Scrollbar */
.content-box::-webkit-scrollbar {
  width: 6px;
}
.content-box::-webkit-scrollbar-thumb {
  background: #00173c;
  border-radius: 4px;
}

/* Text */
.content-item h3 {
  font-size: 20px;
  margin: 10px 0 5px;
}

.content-item p {
  font-size: 16px;
  text-align: justify;
  margin: 6px 0;
}

.content-item.hidden {
  display: none;
}

/* ===============================
   TAGS
================================ */
.tags-wrapper {
  margin-top: 0px;
}

.tags-title {
  background: var(--secondary-color);
  color: #fff;
  padding: 8px 12px;
  font-size: 14px;
  border-radius: 4px;
  font-weight: 600;
  margin-bottom: 12px;
  margin-top: 12px;
  display: inline-block;
}

.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 14px;
  padding-bottom: 15px;
}

.tag-item {
  text-decoration: none;
  color: var(--primary-color);
}

.tag-arrow {
  font-size: 22px;
  color: var(--secondary-color);
  margin-right: 4px;
}

.tag-separator {
  color: #888;
  margin: 0 6px;
}

/* ===============================
   RIGHT SIDE (30%)
================================ */
.highlights-right {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Right Box */
.right-box {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 16px 24px;
}

/* Titles */
.right-title {
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
}

/* List */
.right-list {
  display: flex;
  flex-direction: column;
}

/* Rows */
.demo-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1.5px solid #000;
  font-size: 15px;
  font-weight: 600;
}

.demo-row span:last-child {
  min-width: 40px;
  text-align: right;
}

.demo-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

/* ===============================
   AUDIENCE DEMOGRAPHICS (SCROLL)
================================ */
.highlights-right .right-box:first-child .right-list {
  max-height: 240px; /* show ~5 rows */
  overflow-y: auto;
  padding-right: 6px;
}

.highlights-right .right-box:first-child .right-list::-webkit-scrollbar {
  width: 6px;
  
}

.highlights-right .right-box:first-child .right-list::-webkit-scrollbar-thumb {
  background: #00173c;
  border-radius: 4px;
}

/* ===============================
   GEOGRAPHICAL REGION (STATIC)
================================ */
.highlights-right .right-box:last-child {
  flex-shrink: 0;
}

/* ===============================
   MOBILE (STACK)
================================ */
@media (max-width: 900px) {
  .highlights-container {
    grid-template-columns: 1fr;
    height: auto;
  }

  .highlights-left,
  .highlights-right {
    height: auto;
  }

  .content-box {
    max-height: 90vh;
  }

  .highlights-section {
    padding-right: 20px;
  }

.left-header h2 {
  font-size: 16px;
  margin: 0;
}



}






















/* Conference Highlights End*//* Conference Highlights End*//* Conference Highlights End*//* Conference Highlights End*//* Conference Highlights End*//* Conference Highlights End*//* Conference Highlights End*/




























 /* Expert Picks-Top Trending Abstracts */ /* Expert Picks-Top Trending Abstracts */ /* Expert Picks-Top Trending Abstracts */ /* Expert Picks-Top Trending Abstracts */ /* Expert Picks-Top Trending Abstracts */

.blog-heading {
    max-width: 1300px;
    margin: 0 auto 30px auto;  /* center + spacing below */
    padding: 0 0px;
}

.blog-heading h1 {
    font-size: 26px;
    color: var(--primary-color);
  line-height: 1.2;
  margin-bottom: 0%;
}

.blog-heading p {
    font-size: 18px;
    color: #383b47;
    position: relative;
    display: inline-block;   /* underline stays under text */
    padding-bottom: 12px;    /* spacing above underline */
}

/* First underline */
.blog-heading p::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 180px;
    height: 2px;
    background: var(--secondary-color);  /* same orange color */
}

/* Second underline – slightly below the first */
.blog-heading p::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -22px;
    width: 120px;            /* slightly shorter */
    height: 2px;
    background: var(--secondary-color);
}





.blog-section {
    width: auto;
    padding: 60px 20px;
}

.blog-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.blog-card {
    width: 100%;
}

.blog-card img {
    width: 100%;
    transition: transform 0.5s ease;
}

.blog-card:hover img {
    transform: scale(1.08);
}

.blog-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 0px;
}

.blog-image-wrapper img {
    width: 120%;
    height: auto;
    transform: translateX(-30px); /* shifts image left like reference */
}

/* Category Box  */
.category-box {
    position: absolute;
    bottom: 0px;
    left: 0px;
    background: var(--secondary-color);
    padding: 25px 15px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    align-items: center;            /* center vertically */
    justify-content: center;
    
    
}

/* White spacing above & left of label */
.category-box::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 15px;
    background: var(--white);
    text-align: center;
}

.category-box::after {
    content: "";
    position: absolute;
    left: 45px;
    top: 0;
    width: 15px;
    height: 100%;
    background: var(--white);
}

/* Date & comments */
.blog-meta {
    margin-top: 15px;
    font-size: 14px;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}


.blog-meta span{
    font-size: 15px;
    color: var(--secondary-color);
    font-weight: 600;
    
}

.blog-meta .dot {
    font-weight: bold;
    
}

/* Blog title */
.blog-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 12px 0 15px;
    line-height: 1.3;
    padding-bottom: 20px;
    border-bottom: 1px solid #d4d4d4;
}

/* Read More link */
.read-more {
    font-size: 15px;
    font-weight: 600;
    color: #F36C21;
    text-decoration: none;
}








.blog-card .btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  z-index: 10;

  background: var(--secondary-color);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  pointer-events: none;

  transition: all 0.35s ease;
}


/* Show button only on image hover */
.blog-card:hover .btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

/* Dark overlay on hover */
.blog-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: 0.35s ease;
  z-index: 5;
}

.blog-card:hover .blog-image-wrapper::after {
  opacity: 1;
}










/* Responsive */
/* ----- BELOW 996px → SHOW 2 CARDS PER ROW ----- */
@media (max-width: 996px) {
    .blog-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .blog-card {
        margin-bottom: 30px;
    }

    .blog-label {
        left: 15px;   /* adjust label position for smaller width */
    }
}

/* ----- BELOW 770px → SHOW 1 CARD PER ROW ----- */
@media (max-width: 770px) {
    .blog-container {
        grid-template-columns: 1fr;
    }

    .blog-card {
        width: 100%;
    }

    .blog-label {
        left: 20px;
        font-size: 14px;
        padding: 10px 8px;
    }
}

/* ----- EXTRA CLEANUP FOR VERY SMALL SCREENS ----- */
@media (max-width: 480px) {
    .blog-label {
        font-size: 13px;
        padding: 8px 6px;
    }

    .blog-card img {
        height: auto;
    }
}









/* ===== POPUP MODAL FIXED BUTTON ===== */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-box {
  background: var(--white);
  border-radius: 5px;
  width: 90%;
  max-width: 700px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* ensures button stays at bottom */
  overflow-y: auto;
  padding: 25px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  animation: fadeIn 0.3s ease;
  position: relative;
}

/* Title and content styling */
.popup-title {
  font-size: 1.3rem;
  text-align: left;
  color: #111;
  font-weight: 700;
  margin-top: 0;
}

.popup-content {
  text-align: justify;
  line-height: 1.6;
  color: #333;
  flex-grow: 1;
}

hr {
  border: 0;
  border-top: 1px solid #ddd;
  margin: 15px 0;
}


/* Close button alignment */
.close-btn {
  background: var(--secondary-color);
  color: var(--white);
  border: none;
  padding: 10px 25px;
  border-radius: 6px;
  cursor: pointer;
  align-self: flex-end; 
  margin-top: 10px;
}

.close-btn:hover {
  background: #000;
}

/* Smooth fade animation */
@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.95);}
  to {opacity: 1; transform: scale(1);}
}

/* Responsive adjustments */


@media (max-width: 1240px) {
  .popup-box {
    position: relative;
    overflow-y: auto;  /* enable scroll */
    padding-bottom: 20px; /* spacing below last line */
  }

  /* Make sure the last HR and button are visible together */
  .popup-box hr:last-of-type {
    margin-bottom: 0px;
  }

  .close-btn {
    position: relative;  
    display: block;
    margin-bottom: 25px;      
    bottom: auto;
    left: auto;
    right: auto;
    transform: none;     
  }
}

.close-btn {
  font-size: 16px;         /* consistent readable text size */
  font-weight: 500;        /* medium weight for clarity */
  white-space: nowrap;     /* prevent text wrapping */
  width: auto;             /* adjusts to text width */
  min-width: 90px;         /* ensures full text fits comfortably */
  padding: 10px 25px;      /* same padding on all screens */
  text-align: center;      /* centers text inside */
  background: var(--secondary-color);
  color: var(--white);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.close-btn:hover {
  background: #dd6d31;;
}



@media (max-width: 600px) {
  .popup-box {
    width: 95%;
    padding: 18px;
  }

  .popup-title {
    font-size: 1.1rem;
  }

  .popup-content {
    font-size: 0.9rem;
  }

  .close-btn {
    padding: 8px 20px;
  }
}










 /* Expert Picks-Top Trending Abstracts End*//* Expert Picks-Top Trending Abstracts End*//* Expert Picks-Top Trending Abstracts End*//* Expert Picks-Top Trending Abstracts End*//* Expert Picks-Top Trending Abstracts End*/














/* Proceedings & insights Section  *//* Proceedings & insights Section  *//* Proceedings & insights Section  *//* Proceedings & insights Section  *//* Proceedings & insights Section  */
.proceedings {
  background-color: var(--white);
  padding: 30px 0;
  padding-right: 0px;
}

.proceedings .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.proceedings .section-header {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: nowrap;
  margin-bottom: 30px;
  margin-top: -20px ;
}


.proceedings .section-header h2 {
  font-size: 26px;
    color: var(--primary-color);
  line-height: 1.2;
  position: relative;
    display: inline-block;   /* underline stays under text */
    padding-bottom: 2px;    /* spacing above underline */
}


/* First underline */
.proceedings .section-header h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 180px;
    height: 2px;
    background: var(--secondary-color);  
}

/* Second underline – slightly below the first */
.proceedings .section-header h2::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -22px;
    width: 120px;            /* slightly shorter */
    height: 2px;
    background: var(--secondary-color);
    margin-bottom: 0px;
}




/* ===== Slider Styles ===== */
.slider-container {
  position: relative;
  overflow: hidden;
}

.slider {
  display: flex;
  gap: 0px;
  transition: transform 0.5s ease-in-out;
}

.slider12 {
  flex: 0 0 25%;           /* exactly 4 per row */
  max-width: 25%;          /* lock width */
  box-sizing: border-box;
   padding: 0 7px; /* small side padding to create spacing */
}

.slider12 img {
  width: 100%;
  border-radius: 0px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.slider12 img:hover {
  transform: scale(1.03);
}

/* ===== Arrows ===== */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--secondary-color);
  color: var(--white);
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 10;
}

.slider-btn:hover {
  background-color: #c73210;
}

.slider-btn.previous {
  left: 0px;
}

.slider-btn.nextes {
  right: 0px;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .slider12 {
    min-width: calc(33.333% - 10px); /* 3 per row */
  }
}

@media (max-width: 768px) {
  .slider12 {
    min-width: calc(50% - 10px); /* 2 per row */
  }
}

@media (max-width: 480px) {
  .slider12 {
    min-width: 100%; /* 1 per row */
  }

  .slider-btn.previous {
    left: 5px;
  }

  .slider-btn.nextes {
    right: 5px;
  }
}

/* Proceedings & insights Section End *//* Proceedings & insights Section End *//* Proceedings & insights Section End *//* Proceedings & insights Section End */

























 /* SPONSOR SECTION *//* SPONSOR SECTION *//* SPONSOR SECTION *//* SPONSOR SECTION *//* SPONSOR SECTION *//* SPONSOR SECTION *//* SPONSOR SECTION *//* SPONSOR SECTION *//* SPONSOR SECTION *//* SPONSOR SECTION */

.sponsor-section {
    max-width: 1300px;
    margin: 60px auto;
    display: grid;
    grid-template-columns: 40% 57%;
    gap: 40px;
    align-items: center;
    padding-left: 20px;   /* same as other sections */
    padding-right: 20px;  /* same as other sections */
}

/* LEFT SIDE */
.sponsor-left h2 {
    font-size: 26px;
    color: var(--primary-color);
  
    line-height: 1.2;
}

.sponsor-left p {
    margin: 15px 0;
    font-size: 16px;
    color: #444;
    text-align: justify;
}

.view-more-logos-container {
    text-align: left;
    margin-top: 40px;
}

/* Blue button */
.view-more-btn-logos {
    display: inline-flex;
    align-items: center;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 26px 10px 14px; /* Left padding reduced to bring circle close */
    border-radius: 35px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    gap: 12px; /* Space between circle and text */
    transition: 0.3s;
}

/* Circle */
.icon-circle1 {
    width: 38px;
    height: 38px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: -2px;  /* Pull circle closer to blue edge EXACTLY like image */

    position: relative;
}

/* Arrow inside circle */
.arrow {
    color: var(--white);
    font-size: 16px;
    font-weight: bold;
    position: relative;
    left: -3px; /* Move arrow slightly LEFT like your image */
}

/* Text */
.btn-text1 {
    letter-spacing: 0.5px;
    color: var(--white);
}

/* Hover effect */
.view-more-btn-logos:hover {
    background-color: var(--secondary-colorhover);
    
}



/* RIGHT LOGO GRID */
.sponsor-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0px;
}

.logo-box {
    background: var(--white);
    border: 1px solid #0d1b39;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-box img {
    width: 120px;
    opacity: 0.9;
    object-fit: contain;
    transition: transform 0.4s ease, filter 0.3s ease;
}


/* Zoom-in Effect */
.logo-box:hover img {
  transform: scale(1.35);   /* smooth zoom */
  filter: brightness(1.05); /* optional slight highlight */
}


/* ================================
   RESPONSIVE
================================= */

/* BELOW 900px → Stack vertical */
@media (max-width: 900px) {
    .sponsor-section {
        grid-template-columns: 1fr;
        text-align: center !important;
        
    }

     .view-more-logos-container {
        text-align: center !important;
    }

    .sponsor-left {
        width: 100%;
        text-align: center !important;   /* ⭐ MUST ADD */
    }

    .sponsor-right {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 20px;
    }

    .view-more-btn-logos {
        margin: 0 auto;
        text-align: center !important;
        
    }
}

/* BELOW 600px → 1 column logos */
@media (max-width: 600px) {
    .sponsor-right {
        grid-template-columns: 1fr;
    }

    .sponsor-left h2 {
        font-size: 30px;
    }
}

/* SPONSOR SECTION End*//* SPONSOR SECTION End*//* SPONSOR SECTION End*//* SPONSOR SECTION End*//* SPONSOR SECTION End*//* SPONSOR SECTION End*//* SPONSOR SECTION End*//* SPONSOR SECTION End*//* SPONSOR SECTION End*/














/* Footer *//* Footer *//* Footer *//* Footer *//* Footer *//* Footer *//* Footer *//* Footer *//* Footer *//* Footer *//* Footer *//* Footer *//* Footer */


/* .footer-section {
    background: var(--primary-color);
    background-image: url(Assests/bg-map2.png);
    padding: 60px 0 30px;
    color: #ddd;
}


.footer-container {
    max-width: 1300px;
    margin: auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
}


.footer-logo {
    width: 160px;
    margin-bottom: 20px;
}


.footer-about p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: var(--white);
}


.footer-heading {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 15px;
    position: relative;
}

.footer-heading::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #dd3333;
    position: absolute;
    bottom: -8px;
    left: 0;
}




.footer-social a {
    width: 38px;
    height: 38px;
    background: #dd3333;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 8px;
    border-radius: 2px;
}


.footer-social a img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}


.footer-social a:hover {
    background: #b92727;
}





.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
}

.footer-links a:hover {
    color: #dd3333;
}


.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    
}

.footer-contact li {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--white);
}

.footer-contact i {
    color: #dd3333;
    margin-right: 0px;
}


.footer-bottom {
    text-align: center;
    padding: 20px 0 0;
    color: #ccc;
    font-size: 14px;
    border-top: 1px solid #444;
    margin-top: 40px;
}


@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social a {
        margin: 5px;
    }
} */

/* Footer End*//* Footer End*//* Footer End*//* Footer End*//* Footer End*//* Footer End*//* Footer End*//* Footer End*//* Footer End*//* Footer End*//* Footer End*//* Footer End*/














/* FOOTER  *//* FOOTER  *//* FOOTER  *//* FOOTER  *//* FOOTER  *//* FOOTER  *//* FOOTER  *//* FOOTER  *//* FOOTER  *//* FOOTER  *//* FOOTER  */
.main-footer {
  background: var(--primary-color);
    background-image: url(Assests/bg-map2.png);
  color: #fff;
  font-family: "Open Sans", sans-serif;
  padding-top: 40px;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top 4 Columns */
.footer-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 35px;
}

.footer-col {
  flex: 1 1 23%;
  min-width: 250px;
}

.footer-col h4 {
  border-bottom: 1px solid #deeaff;
  padding-bottom: 8px;
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 6px;
  font-size: 14px;
  padding-bottom: 3px;
  color: #ccc;
}

.footer-col ul li a {
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s;
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--secondary-color);
  transform: translateX(8px);
}

/* Bottom Section */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-left,
.footer-right {
  flex: 1 1 48%;
}

/* Contact Boxes */
.contact-box {
  display: flex;
  align-items: center;
  background: #deeaff;
  border-bottom: 1px solid #333;
  margin-bottom: 10px;
  color: #f39c12;
}

.icon-link {
  display: flex;
}

.icon-box {
  background: var(--menu);
  color: #fff;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  transition: background 0.3s;
}

.icon-box img {
  width: 30px;     /* Adjust size as needed */
  height: 30px;
  object-fit: contain;
  display: block;
}

.contact-info {
  flex: 1;
  background: #deeaff;
  color: #000000 !important;
  font-weight: 600;
  padding: 0 20px;
  height: 0px;
  display: flex;
  align-items: center;
}

.contact-info p {
  color: #000000; /* bright yellow */
  font-weight: 600;
  margin: 0;
}


/* Map */
.footer-right iframe {
  width: 100%;
  height: 250px;
  border: none;
}

/* Bottom Bar */
.footer-bottom-bar {
  background-color: var(--menu);
  padding: 15px 0;
  margin-top: 30px;
}

.footer-bottom-bar p{
color: #ffffff;
}

.footer-bottom-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  color: #ccc;
}

.footer-bottom-inner span {
  color: var(--secondary-color);
  font-weight: 600;
}

.footer-bottom-inner span:hover {
  color: var(--secondary-colorhover);
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  margin-left: 20px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #f39c12;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-bottom {
    flex-direction: column;
  }

  .footer-left,
  .footer-right {
    flex: 1 1 100%;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}


/* ---------- Mobile Responsive (below 400px) ---------- */
@media (max-width: 480px) {
  .footer-columns {
    flex-direction: column;
    gap: 0px;
  }

  .footer-col {
    min-width: 100%;
  }

  .footer-col h4 {
    font-size: 16px;
    text-align: left;
  }

  .footer-col ul li {
    text-align: left;
    font-size: 14px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
    gap: 15px;
  }

  .footer-left,
  .footer-right {
    flex: 1 1 100%;
    width: 100%;
  
  }

  .contact-box {
    flex-direction: row;
    width: 100%;
  }

  .icon-box {
    width: 55px;
    height: 55px;
    font-size: 18px;
  }

  .icon-box img {
    width: 22px;
    height: 22px;
  }

  .contact-info {
    font-size: 14px;
    padding: 0 10px;
    height: 55px;
  }

  .footer-right iframe {
    height: 200px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-links a {
    margin: 5px;
    display: inline-block;
  }
}

/* ---------- Fix small screen overflow (below 350px) ---------- */
@media (max-width: 350px) {
  html, body {
    overflow-x: hidden;
  }

  .footer {
    width: 100%;
    overflow-x: hidden;
  }

  .footer-columns,
  .footer-bottom {
    flex-direction: column;
    align-items: left;
    gap: 20px;
    width: 100%;
    margin: 0 auto;
  }

  .footer-col,
  .footer-left,
  .footer-right {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .footer-right iframe {
    width: 100%;
    height: 180px;
  }

  .contact-box {
    width: 100%;
  }

  .icon-box {
    min-width: 45px;
    width: 45px;
    height: 45px;
  }

  .contact-info {
    font-size: 13px;
    padding: 10px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}
