@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=Open+Sans:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700&display=swap');


body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  
  background-color: #fff!important;
  color: #0a0a23;
}

/* Headings use Cambria */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', serif;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Paragraphs & sub-headings */
p, span, li, a, small {
  font-family: 'Open sans', sans-serif;
  color: #1b1b1b;
}








/* =========================
   HEADER / NAVBAR SECTION
   ========================= */
.navbar {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: transparent;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

/* When Scrolled */
.navbar.scrolled {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Container Width */
.navbar .container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0px;
  
}

/* === Font Styling === */
/* .navbar,
.navbar * {
  font-family: 'Roboto', sans-serif !important;
  font-weight: 800 !important;
  font-size: 16px;
  
} */

/* === Logo === */
.logo {
  display: flex;
  align-items: center;
  gap: 0px;
}

.logo img {
  width: 239px;
  height: 55px;
}

/* === Nav Menu Base === */
.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  
}

.navbar ul li {
  position: relative;
}



.navbar ul li a {
  color: #555555;
  padding: 5px 13px;
  display: inline-block;
  box-sizing: border-box;
  border: 2px solid transparent; /* prevents movement */
  transition: background 0.3s ease, color 0.3s ease;
  
}



.navbar ul li a {
  font-family: 'Roboto', sans-serif !important;
  font-weight: 600; 
  font-size: 16px;
}





/* === Blue hover for main item === */
.navbar ul li:hover > a {
  background-color: #007bff;
  color: #fff;
  border-color: transparent;
  border-radius: 5px;
}

/* === Dropdown Menu === */
.navbar ul li ul {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%); /* center align under parent */
  background-color: #333333;
  width: 180px;
  border: none;
  z-index: 1000;
  text-align: center;
}



.navbar ul li ul li a{
  font-family: 'Roboto', sans-serif !important;
  font-weight: 600px;
}



.navbar ul li:hover > ul {
  display: block;
}

/* === Dropdown Items === */
.navbar ul li ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.navbar ul li ul li:last-child {
  border-bottom: none;
}

.navbar ul li ul li a {
  color: #fff;
  display: block;
  padding: 12px 20px;
  font-weight: 600;
  background-color: #333333;
}


.navbar ul li a,
.navbar ul li ul li a {
  text-decoration: none !important;
}



.navbar ul li ul li a:hover {
  /* background-color: #007bff; */
  color: #fff;
}

/* === Right Side Elements (Language + Button) === */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}


/* === Language Dropdown Button === */
.language-dropdown {
  position: relative;
}

#language-btn {
  background: transparent;
  border: 2px solid #007bff;
  color: #007bff;
  padding: 8px 14px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#language-btn:hover {
  background: #007bff;
  color: #fff;
}


.ticket-btn {
  background: #dd3333;
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
}

.ticket-btn:hover {
  background: #02002F;
}


/* === Dropdown Items === */
.navbar ul li ul li a {
  color: #a1a1a1;
  display: block;
  padding: 8px 20px;
  font-weight: 600;
  text-transform: capitalize;
  background-color: #333333;
  text-align: center; /* center the text */
  transition: color 0.3s ease;
}

/* === Dropdown Hover (no blue background, just color change) === */
.navbar ul li ul li a:hover {
  background-color: transparent; /* remove blue box */
  color: #FFBE30; /* change text to blue */
}

.navbar ul li ul li a {
  font-family: 'Open sans', sans-serif !important; /* or your preferred font */
  font-weight: 300; /* adjust for readability */
  font-size: 14px;
}



/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  background-color: #FECA16; /* full yellow */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 250px;
  padding-bottom: 100px;
  background-size: contain;
  overflow: hidden;
  
}


.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  mix-blend-mode: multiply; /* show both image + yellow clearly */
  overflow: hidden;
  top: -200px;
  left: -12%; 
   width: calc(100% + 500px); 
  height: calc(100% + 100px);
  object-fit: cover; /* maintain aspect ratio */
  transform: translate(-20px, -20px); 
  z-index: 0;
  
  
}



.hero-content {
  text-align: center;
  color: #000;
  position: relative;
  top: -50px;
  z-index: 1;
}



.hero-content h1 {
  font-size: 240px;
  font-weight: 900 !important;
  margin-top: 20px;         /* removed top gap */
  margin-bottom: 50px;
  line-height: 1;
  font-family: 'poppins';
  color: #222222;
  display: inline-block; /* make width fit the text */
  position: relative;
}


.hero-content h1::after {
  content: "";
  position: absolute;
  bottom: -30px; /* space below the text */
  left: 0;
  width: 100%;   /* same width as the text */
  height: 1px;
  background-color: #000;
  border-radius: 2px;
 
  
}



.hero-content h2 {
  font-size: 96px;
  font-weight: 800 !important;
  margin-bottom: 10px;   /* reduced gap */
  line-height: 1.1;      /* tightened spacing */
  font-family: 'poppins';
  color: #222222;
}


.hero h3 {
  font-size: 61px;
  font-weight: 900;
  margin-top: 30px;
  font-family: 'poppins';
  line-height: 69px;
  
}


.hero-content h4 {
  font-size: 32px;
  font-weight: 700 !important;
  margin-top: -10px;  /* reduced gap */
  line-height: 1.1;      /* tightened spacing */
  font-family: 'poppins';
  color: #222222;
}


.hero p {
  margin-top: 25px;
  font-size: 38px;
  font-weight: 300;
  line-height: 38px;
}





/* ============ STEP 1: MOBILE HEADER LAYOUT BELOW 1230PX ============ */


.menu-toggle {
  display: none;
}


@media screen and (max-width: 1240px) {

  
  .nav-right,
  .ticket-btn {
    display: none !important;
  }

  
  .navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }

  
  .logo img {
    width: 160px;
    height: auto;
  }

  .nav-links {
    display: none;
  }
}




/* Hide the mobile menu & hamburger on large screens */
.mobile-menu,
.menu-toggle {
  display: none;
}

/* Show them only below 1240px */
@media (max-width: 1240px) {
  .mobile-menu,
  .menu-toggle {
    display: block;
  }

  /* Hide the desktop nav when on small screens */
  .desktop-menu {
    display: none !important;
  }
}


/* Mobile only */
@media (max-width: 1240px) {
  .menu-toggle {
    display: block;
    align-items: center;     /* centers vertically */
    justify-content: center; /* centers horizontally inside its box */
    position: fixed;
    top: 5px;
    right: 25px;
    font-size: 36px;
    color: #000;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
    transition: left 0.4s ease;
    padding: 60px 20px;
    z-index: 1000;
  }

  .mobile-menu.show {
    left: 0;
  }

  .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    background: none;
    border: 2px solid #000;
    width: 40px;
    height: 40px;
    cursor: pointer;
  }

  .mobile-menu ul {
    list-style: none;
    padding: 0;
    margin-top: 60px;
  }

  .mobile-menu ul li {
    margin-bottom: 15px;
  }

  .mobile-menu ul li a {
    text-decoration: none;
    font-size: 18px;
    color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* Submenu hidden by default */
  .mobile-menu .submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    flex-direction: column;
    margin-top: 5px;
    padding-left: 15px;
    background: #f9f9f9;
  }

  /* Visible submenu */
  .mobile-menu .submenu.show {
    max-height: 500px;
  }

  /* Submenu links */
  .mobile-menu .submenu li a {
    font-size: 16px;
    padding: 8px 0;
  }

  /* Arrow rotation */
  .mobile-menu .arrow {
    transition: transform 0.3s ease;
  }
  .mobile-menu .arrow.rotate {
    transform: rotate(180deg);
  }
}
 
  
@media screen and (max-width: 1000px) {
  .hero {
    height: auto;                 /* let content define height naturally */
    min-height: 100vh;            /* still fills screen */
    padding-top: 50px;           /* reduce top gap */
    padding-bottom: 30px;         /* reduce bottom gap */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .hero-content {
    top: 0;                       /* remove offset */
    padding: 0 20px;              /* side padding for small screens */
  }

  .hero-content h2 {
    font-size: 60px;
  }

  .hero-content h1 {
    font-size: 140px;
    margin-bottom: 30px;
  }

  .hero-content h3 {
    font-size: 36px;
    line-height: 44px;
    margin-top: 20px;
  }

  .hero-content p {
    font-size: 24px;
    line-height: 32px;
    margin-top: 15px;
  }

  .hero-content h4 {
    font-size: 24px;
    margin-top: 10px;
  }
}

@media screen and (min-width: 1300px) {
  .hero {
    padding-top: 200px !important;
    padding-bottom: 100px !important;
  }
}

















































/*  Welcome Message Section  *//*  Welcome Message Section  *//*  Welcome Message Section  *//*  Welcome Message Section  *//*  Welcome Message Section  *//*  Welcome Message Section  */
.welcome-section {
  background-color: #fff;
  padding: 30px 0px;
  padding-right: 0px;
}

.welcome-section .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Grid layout - Desktop */
.welcome-grid {
  display: grid;
  grid-template-columns: 50% 50%; /* equal halves */
  gap: 60px;
  align-items: stretch;
  overflow: hidden;
}

/* Left Side */
.welcome-content .section-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}


.welcome-content .section-header h2 {
  font-size: 33px;
  font-weight: 600;
  line-height: 40px;
  color: #0a0a23;
}

.welcome-content .section-header h2:hover {
color: #dd3333;
}

.highlight {
  color: #dd3333;
}

.welcome-content p {
  color: #000000;
  line-height: 26px;
  font-weight: 400px;
  font-size: 16px;
  margin-bottom: 15px;
}

/* Right Side - Logos */
.welcome-logos h3 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 600px;
  color: #0a0a23;
  margin-bottom: 20px;
  text-align: left;
}


/* Right Side - Logos */
.welcome-logos {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* ✅ balances logo grid height */
}


.logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px 25px; /* balanced spacing */
  align-items: center;
  justify-items: center;
  width: 90%;
  flex-grow: 1; /* ✅ ensures logos fill the available height */
  box-sizing: border-box;
}

.logo-grid img {
  width: 100%;
  max-width: 100px; /* logo size limit */
  height: auto;
  object-fit: contain;
  opacity: 0.95;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo-grid img:hover {
  transform: scale(1.08);
  opacity: 1;
}

/* =============================== */
/* ✅ RESPONSIVE DESIGN */
/* =============================== */

/* Large Tablets and Small Laptops */
@media (max-width: 1200px) {
  .logo-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 25px;
  }
  .logo-grid img {
    max-width: 100px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .welcome-grid {
    grid-template-columns: 1fr; /* stack vertically */
  }

  .welcome-logos {
    margin-top: 0px;
  }

  .welcome-logos h3 {
    text-align: center;
  }

  .logo-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px 20px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .welcome-content .section-header {
    flex-direction: row;
    justify-content: left;
  }

  .welcome-content .section-header h2 {
    font-size: 1.5rem;
  }

  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .logo-grid img {
    max-width: 90px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .welcome-content .section-header {
    flex-direction: row;
    gap: 10px;
  }

  .welcome-content .section-header .icon {
    width: 45px;
    height: 45px;
  }

  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .logo-grid img {
    max-width: 80px;
  }
}


/*  Welcome Message Section End *//*  Welcome Message Section End *//*  Welcome Message Section End *//*  Welcome Message Section End *//*  Welcome Message Section End *//*  Welcome Message Section End */












/* Speakers Section  *//* Speakers Section  *//* Speakers Section  *//* Speakers Section  *//* Speakers Section  *//* Speakers Section  *//* Speakers Section  *//* Speakers Section  */
.speakers {
  background-color: #fff;
  padding: 30px 0;
  padding-right: 0px;
}

.speakers .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.speakers .section-header {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: nowrap;
  margin-bottom: 40px;
}

.speakers .section-header .icon {
  background-color: #dd3333;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.speakers .section-header .icon img {
  width: 38px;
  height: 38px;
}

.speakers .section-header .icon img:hover {
transform: scale(1.2);
}


.speakers .section-header h2 {
  font-size: 35px;
  font-weight: 600px;
  line-height: 40px;
  color: #0a0a23;
}


.speakers .section-header h2:hover {
 color: #dd3333;
}



/* Speaker Grid */
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  justify-content: center;
  align-items: stretch;
}

/* Speaker Card */
.speaker-card {
  background-color: #ffffff;
  border-radius: 2px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.speaker-img {
  overflow: hidden;
  border-bottom: 1px solid #ddd;
}

.speaker-img img {
  width: 100%;
  height: 370px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.speaker-card:hover .speaker-img img {
  transform: scale(1.08); /* ✅ Zoom effect on hover */
}

.speaker-info {
  background-color: #fff;
  padding: 20px;
}

.speaker-info h3 {
  font-size: 1rem;
  color: #0a0a23;
  font-weight: 700;
  margin-bottom: 5px;
}

.speaker-info p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 8px;
}

.speaker-info span {
  color: #dd3333;
  font-size: 0.85rem;
  font-weight: 500;
}

/* View All Button */
.view-all {
  text-align: center;
  margin-top: 30px;
}

.view-all button {
  background-color: #dd3333;
  color: #fff;
  border: none;
  padding: 12px 28px;
  font-family: 'open sans';
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.view-all button:hover {
  background-color: #02002F;
}

/* Responsive */
@media (max-width: 1200px) {
  .speakers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .speakers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .speakers-grid {
    grid-template-columns: 1fr;
  }
}

/* Speakers Section End *//* Speakers Section End *//* Speakers Section End *//* Speakers Section End *//* Speakers Section End *//* Speakers Section End */










/* scientific sessions *//* scientific sessions *//* scientific sessions *//* scientific sessions *//* scientific sessions */
.sessions {
  width: 100%;
  margin: 30px auto;
  padding: 20px;
  padding-right: 0px;
  text-align: center;
}

.container {
  max-width: 1300px;
  margin: 0 auto; 
  /* margin: 30px auto;
  padding-left: 20px;
  padding-right: 35px; */
}

.section-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.section-header .icon {
  background-color: #dd3333;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-header .icon img {
  width: 40px;
  height: 40px;
}

.section-header .icon img:hover {
 transform: scale(1.2);
}

.section-header h2 {
  font-size: 33px;
  font-weight: 600;
  line-height: 40px;
  color: #0a0a23;
}


.section-header h2:hover{
  color: #dd3333;
}


.sessions-grid li a {
  text-decoration: none;
  color: #0a0a23;
  transition: color 0.3s ease;
  cursor: default; /* no hand pointer for now */
}

/* Only show pointer when link has href */
.sessions-grid li a[href]:not([href="#"]) {
  cursor: pointer;
}

/* Optional hover color — only active when a real link exists */
.sessions-grid li a[href]:not([href="#"]):hover {
  color: #0a0a23;
}


.sessions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.sessions-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sessions-grid li {
  font-size: 16px;
  padding: 8px 0;
  border-bottom: 1px solid #000000;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 8px;
  flex-direction: row;

}


.sessions-grid .arrow {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  background-color: #dd3333; /* red background */
  color: #fff;               /* white arrow */
  border-radius: 50%;
  font-size: 12px;
  font-weight: bold;
  flex-shrink: 0;            /* prevents shrinking in flex layouts */
}









@media (max-width: 992px) {
  .sessions-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .sessions-grid {
    grid-template-columns: 1fr;
    gap: 0px;
  }
  .section-header {
    flex-direction: row;
    align-items: center;
  }
}

/* scientific sessions end*//* scientific sessions end*//* scientific sessions end*//* scientific sessions end*//* scientific sessions end*/










/* Gallery Section *//* Gallery Section *//* Gallery Section *//* Gallery Section *//* Gallery Section *//* Gallery Section *//* Gallery Section */

.gallery-section {
  max-width: 1300px;
  margin: 50px auto;
  padding: 30px ;
  padding-right: 40px;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}


.gallery-section .section-header .icon {
  background-color: #dd3333;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-section .section-header .icon img {
  width: 38px;
  height: 38px;
}

.gallery-section .section-header .icon img:hover {
  transform: scale(1.1);
}


.gallery-section .section-header h2 {
  font-size: 35px;
  font-weight: 600px;
  line-height: 40px;
  color: #0a0a23;
}

.gallery-section .section-header h2:hover {
 color: #dd3333;
}


.gallery-container {
  display: flex;
  gap: 1opx;
  align-items: stretch;
}

.main-image-container {
  flex: 0 0 75%;
  position: relative;
  overflow: hidden;
  border-radius: 0px;
}

.main-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease, transform 0.4s ease;
}

.thumbs-grid {
  flex: 0 0 25%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  overflow-y: auto;
  max-height: 100%;
   overflow-y: auto;
  background-color: #000; /* 🔥 black background for grid box */
  max-height: 614px; 
  padding: 12px;
  border-radius: 0px;
}

.thumbs-grid img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 0px;
  transition: transform 0.3s ease, border 0.3s ease;
}

.thumbs-grid img:hover,
.thumbs-grid img.active {
  transform: scale(1.05);
  border: 2px solid #dd3333;
}

@media (max-width: 992px) {
  .gallery-container {
    flex-direction: column;
  }
  .thumbs-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Gallery Section End*//* Gallery Section End*//* Gallery Section End*//* Gallery Section End*//* Gallery Section End*/








.container {
  max-width: 1300px;
  margin: 0 auto; 
  /* margin: 30px auto;
  padding-left: 20px;
  padding-right: 35px; */
}

.conference-highlights {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.conference-highlights .icon {
  background-color: #dd3333;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.conference-highlights .icon img {
  width: 40px;
  height: 40px;
}

.conference-highlights .icon img:hover {
 transform: scale(1.2);
}

.conference-highlights h2 {
  font-size: 35px;
  font-weight: 600;
  line-height: 40px;
  color: #0a0a23;
}


.conference-highlights h2:hover{
  color: #dd3333;
}














/* Conference highlights *//* Conference highlights *//* Conference highlights *//* Conference highlights *//* Conference highlights *//* Conference highlights */



.tab-section {
  width: 100%;
   /* only top & bottom 5% */
  background-color: #EEEEEE; /* full-width background color */
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-right: 0px;
}


/* ====== MAIN CONTAINER ====== */
.main-container {
  width: min(1300px, 100%);
  background-color: #fff;
  display: flex;
  align-items: stretch;     /* ✅ left & right equal height */
  justify-content: stretch;
  margin: 0;
  overflow: hidden;         /* ✅ prevents page scroll */
  border-radius: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  height: 90vh;             /* ✅ both panels use same viewport height */
  min-height: 30vh;
}





/* ====== SIDEBAR ====== */
.tab-nav {
  flex: 0 0 230px;
  background-color: #1d2328;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 0px 0;
  height: 100%;             /* ✅ fills main container height */
  box-sizing: border-box;
}


/* ====== LOGO ====== */
.logo-container {
  width: 100%;
  background-color: #fff;
  text-align: center;
  padding: 12px 0; /* ✅ reduced space above and below logo */
  box-shadow: rgba(0,0,0,0.12) 0 3px 8px;
  border-bottom: 1px solid #ddd;
  margin: 0;
}

.logo-container img {
  width: 160px;
  height: auto;
  display: inline-block;
}

/* ====== TAB BUTTONS ====== */
.tab-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex-grow: 1;
  justify-content: flex-start;
}

.tab-button {
  width: 100%;
  padding: 38px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #fff;
  border: none;
  border-bottom: 1px solid #343a40;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: background .15s ease;
}

.tab-button i {
  font-size: 22px;
  margin-bottom: 8px;
}

.tab-button:hover {
  background: #dad8d8;
  color: #111;
}

.tab-button.active {
  background: #dad8d8;
  color: #111;
  font-weight: 600;
}

/* ====== TIMER CENTER FIX ====== */
.sidebar-timer {
  padding: 20px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 10px;
  column-gap: 0px;
  justify-items: center;
  width: 90%;
  align-self: center; /* ✅ keeps it centered within sidebar */
}

.time-box {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  background: #d9d9d9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.25);
  color: #111;
}

.time-box span {
  color: #e63946;
  font-size: 24px;
  font-weight: 700;
}

.time-box p {
  margin: 4px 0 0;
  font-size: 13px;
}

/* ====== MAIN CONTENT ====== */
.tab-content-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 30px 36px;
  overflow: hidden;
  box-sizing: border-box;
  
}

.tab-content {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 10px;
  display: none;
  scrollbar-width: thin;
  scrollbar-color: #888 #f1f1f1;
}


.tab-content-area p,
.tab-content-area li,
.tab-content-area span {
  text-align: justify;
  text-justify: inter-word;
}




.tab-content.active {
  display: block;
}

.tab-content::-webkit-scrollbar {
  width: 8px;
}

.tab-content::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 10px;
}

/* ====== GRID (content columns) ====== */
.three-column-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px;
}

.col img {
  width: 100%;
  border-radius: 0px;
  margin-bottom: 0px;
}

/* ====== TAGS ====== */
.tags-box {
  padding: 0px 0px;
  margin-top: 20px;
  font-size: 14px;
  text-align: left;
  
}

.tags-box h3 {
  background: #ffe600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  margin: 0 0 12px 0;
}



/* === List items === */
.tags-box ul {
  
  list-style: none;             /* removes default dots */
  padding: 0;
  margin: 0;
}

.tags-box ul a{
text-decoration: none !important;
}

.tags-box li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 3px 0;
  border-bottom: 1px solid #f2d300; 
  font-weight: 500;
  color: #111;
  
}




.USA ul {
  
  list-style: none;             /* removes default dots */
  padding: 0;
  margin: 0;
}

.USA ul a{
text-decoration: none !important;
}




/* Yellow arrow instead of bullet */
.tags-box li::before {
  content: "➜";                 /* arrow icon */
  color: #f2d300;               /* yellow color */
  font-size: 15px;
  display: inline-block;
  transform: translateY(1px);
}



/* ====== RESPONSIVE (MOBILE / ACCORDION) ====== */
@media (max-width: 992px) {

  .main-container {
    flex-direction: column;
    height: auto;
    box-shadow: none;
  }

  .tab-nav {
    width: 100%;
    background: transparent;
    padding: 0;
    box-shadow: none;
  }

  .logo-container {
    box-shadow: none;
    padding: 10px 0; /* ✅ minimal space for mobile logo */
    margin-bottom: 5px;
  }

  .tab-list {
    display: block;
  }

  .tab-button {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px 18px;
    background: #1d2328;
    color: #fff;
    border-bottom: 1px solid #444;
    text-align: center;
    gap: 8px;
  }

  .tab-button i {
    margin-bottom: 0;
    margin-right: 10px;
    font-size: 18px;
  }

  .tab-content-area {
    padding: 0;
  }

  .tab-content {
    display: none;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: all .35s ease;
    padding: 0 18px;
    background: #fff;
    border-top: 1px solid #eee;
  }

  .tab-content.active {
    display: block;
    max-height: 2000px;
    opacity: 1;
    visibility: visible;
    padding: 18px;
  }

  /* ==== FIX TIMER CROPPING ==== */
  .sidebar-timer {
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    padding: 10px;
    width: 100%;
    margin: 15px 0 20px;
    background: #1d2328;
    justify-content: center;
  }

  .time-box {
    width: 65px;
    height: 65px;
    background-color: #fff;
    color: #111;
    box-shadow: 0 2px 4px rgba(0,0,0,0.25);
    border-radius: 6px;
  }

  .time-box span {
    font-size: 20px;
    font-weight: 600;
  }

  .time-box p {
    font-size: 12px;
    margin: 2px 0 0;
  }

  .three-column-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tab-content {
    overflow-y: visible;
  }
}





@media (min-width: 1300px) {
  /* Adjust main container proportions */
  .main-container {
    display: flex;
    max-width: none;
    height: 60vh;
    margin: 0;
    box-shadow: none;
  }

  /* Sidebar takes 25% of width */
  .tab-nav {
    flex: 0 0 20%;
    max-width: 80%;
    height: 100%;
  }

  /* Main content takes 75% of width */
  .tab-content-area {
    flex: 0 0 80%;
    max-width: 80%;
    height: 100%;
    overflow: hidden;
  }

  /* Keep tab content scrollable inside */
  .tab-content {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 15px;
  }
}



































/* About IDAMR Section *//* About IDAMR Section *//* About IDAMR Section *//* About IDAMR Section *//* About IDAMR Section *//* About IDAMR Section */

.about-idamr {
  background-color: #fff;
  padding: 30px 0;
  padding-right: 0px;
}

.about-idamr .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header (icon + title) */
.about-idamr .section-header {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: nowrap;
  margin-bottom: 40px;
}

.about-idamr .section-header .icon {
  background-color: #dd3333;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-idamr .section-header .icon img {
  width: 28px;
  height: 28px;
}


.about-idamr .section-header .icon img:hover {
  transform: scale(1.2);
}


.about-idamr .section-header h2 {
  font-size: 33px;
  font-weight: 600px;
  line-height: 40px;
  color: #0a0a23;
}


.about-idamr .section-header h2:hover {
color: #dd3333;
}


/* Grid Layout */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

/* Black header bars */
.about-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background-color: #1b1b1b;
  color: #fff;
  padding: 12px 20px;
  font-weight: 600;
  border-radius: 0px 0px 0 0;
}

.about-title img {
  width: 60px;
  height: 60px;
}


.about-title img:hover {
transform: scale(1.2);
}


/* ✅ Add white gap between title and content box */
.content-box {
  background-color: #EAEAEA;
  margin-top: 20px; /* This creates the clean white space */
  /* padding: 10px; */
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 0 0 0px 0px;
  height: auto;
}

/* Progress bars */
.progress-box p {
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 5px;
  display: flex;
  justify-content: space-between;
  color: #0a0a23;
}

.progress {
  background-color: #000000;
  height: 6px;
  border-radius: 0px;
  margin-bottom: 16px;
  overflow: hidden;
}

.progress div {
  background-color: #e84118;
  height: 100%;
  transition: width 0.6s ease;
}

/* Right-side image */
.geo-map {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%; /* ✅ removes forced stretch */
  width: 100%;
  padding: 0;   /* ✅ no extra gap inside */
}

.geo .content-box {
  background-color: #f6f6f6;
  margin-top: 20px;
  padding: 0px;           /* ✅ removes padding */

  border-radius: 0 0 0px 0px;
  height: 100%;
  overflow: hidden;     /* ✅ ensures image fills area neatly */
}


.geo-map img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

/* Responsive Design */
@media (max-width: 1100px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .geo-map img {
    height: auto;
  }
}

/* About IDAMR Section End */ /* About IDAMR Section End *//* About IDAMR Section End *//* About IDAMR Section End *//* About IDAMR Section End *//* About IDAMR Section End */
















/* Expert Picks-Top Trending Abstracts *//* Expert Picks-Top Trending Abstracts *//* Expert Picks-Top Trending Abstracts *//* Expert Picks-Top Trending Abstracts */

.abstracts {
  background-color: #fff;
  padding: 30px 0;
  padding-right: 0px;
}

.abstracts .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.abstracts .section-header {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: flex-start;
  flex-wrap: nowrap;
}

.abstracts .section-header .icon {
  background-color: #dd3333;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.abstracts .section-header .icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.abstracts .section-header .icon img:hover {
transform: scale(1.2);
}

.abstracts .section-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0a0a23;
}

.abstracts .section-header h2:hover {
color: #dd3333;
}

.abstracts .subtitle {
  margin-top: 10px;
  margin-bottom: 40px;
  color: #555;
  font-size: 1rem;
  max-width: 800px;
  line-height: 1.5;
  text-align: left;
}

/* Grid of Abstract Cards */
.abstracts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 20px;
}

.abstract-card {
  background-color: #f9f9f9;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.abstract-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.abstract-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.abstract-card .content {
  padding: 20px;
  text-align: left;
}

.abstract-card h3 {
  font-size: 1rem;
  color: #111;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}

.abstract-card p {
  color: #555;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.abstract-card .btn {
  display: inline-block;
  background-color: #dd3333;
  color: #fff;
  padding: 10px 18px;
  border-radius: 3px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.abstract-card .btn:hover {
  background-color: #333333;
}

/* Responsive */

/* Default: 3 cards per row (until 992px) */
.abstracts .abstracts-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

/* ≤ 992px: 2 cards per row */
@media (max-width: 992px) {
  .abstracts .abstracts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* ≤ 600px: 1 card per row (mobile) */
@media (max-width: 600px) {
  .abstracts .abstracts-grid {
    grid-template-columns: 1fr !important;
  }
}

/* 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: #fff;
  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;
}

.proceedings .section-header .icon {
  background-color: #dd3333;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.proceedings .section-header .icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}


.proceedings .section-header .icon img:hover {
transform: scale(1.2);
}


.proceedings .section-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0a0a23;
}

.proceedings .section-header h2:hover {
color: #dd3333;
}


/* ===== Slider Styles ===== */
.slider-container {
  position: relative;
  overflow: hidden;
}

.slider {
  display: flex;
  gap: 0px;
  transition: transform 0.5s ease-in-out;
}

.slide {
  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 */
}

.slide img {
  width: 100%;
  border-radius: 0px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.slide img:hover {
  transform: scale(1.03);
}

/* ===== Arrows ===== */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #e84118;
  color: #fff;
  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.prev {
  left: 0px;
}

.slider-btn.next {
  right: 0px;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .slide {
    min-width: calc(33.333% - 10px); /* 3 per row */
  }
}

@media (max-width: 768px) {
  .slide {
    min-width: calc(50% - 10px); /* 2 per row */
  }
}

@media (max-width: 480px) {
  .slide {
    min-width: 100%; /* 1 per row */
  }

  .slider-btn.prev {
    left: 5px;
  }

  .slider-btn.next {
    right: 5px;
  }
}

/* Proceedings & insights Section End *//* Proceedings & insights Section End *//* Proceedings & insights Section End *//* Proceedings & insights Section End */















/* Partners & clients  *//* Partners & clients  *//* Partners & clients  *//* Partners & clients  *//* Partners & clients  *//* Partners & clients  */

.partners {
  background-color: #fff;
  padding: 30px 0;
  margin-bottom: 50px;
  padding-right: 0px;
}

.partners .container {
  max-width: 1300px;     /* ✅ keeps section centered within 1300px */
  margin: 0 auto;
  padding: 0 20px;       /* small inner padding for sides */
}

.partners .section-header {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 15px;
  text-align: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.partners .section-header .icon {
  background-color: #dd3333 !important;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.partners .section-header .icon img {
  width: 28px;
  height: 28px;
}

.partners .section-header .icon img:hover {
  transform: scale(1.2);
}

.partners .section-header h2 {
  font-size: 33px;
  font-weight: 600;
  color: #0a0a23;
  max-width: 1200px;
  line-height: 1.4;
  text-align: left;
  padding-left: 30px;
  line-height: 40px;
  
}

.partners .section-header h2:hover{
color: #dd3333;
}

/* ✅ Keep icon & heading inline (side by side) for all widths */
.partners .section-header {
  flex-wrap: nowrap !important;
  flex-direction: row !important;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* ✅ Make sure the heading text wraps nicely instead of pushing icon down */
.partners .section-header h2 {
  flex: 1;
  min-width: 0;
  word-wrap: break-word;
}


/* ✅ Centered grid inside 1300px */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
  justify-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.partner-box {
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-box img {
  max-width: 100%;
  height: 100px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.partner-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.partner-box:hover img {
  transform: scale(1.08);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .partners-grid {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .partners .section-header {
    flex-direction: column;
    text-align: center;
  }
  .partners-grid {
    gap: 10px;
  }
}


/* Partners & clients end *//* Partners & clients end *//* Partners & clients end *//* Partners & clients end *//* Partners & clients end *//* Partners & clients end */










/* FOOTER  *//* FOOTER  *//* FOOTER  *//* FOOTER  *//* FOOTER  *//* FOOTER  *//* FOOTER  *//* FOOTER  *//* FOOTER  *//* FOOTER  *//* FOOTER  */
.main-footer {
  background-color: #333333;
  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 #36A8F8;
  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: #36A8F8;
  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: #2c2c2c;
  border-bottom: 1px solid #333;
  margin-bottom: 10px;
  color: #f39c12;
}

.icon-link {
  display: flex;
}

.icon-box {
  background: #3B3B3B;
  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: #2c2c2c;
  color: #f39c12 !important;
  font-weight: 600;
  padding: 0 20px;
  height: 70px;
  display: flex;
  align-items: center;
}

.contact-info p {
  color: #FFBE30; /* bright yellow */
  font-weight: 600;
  margin: 0;
}


.contact-info p a{
  color: #FFBE30; /* bright yellow */
  font-weight: 600;
  margin: 0;
  text-decoration:none;
}


/* Map */
.footer-right iframe {
  width: 100%;
  height: 250px;
  border: none;
}

/* Bottom Bar */
.footer-bottom-bar {
  background-color: #2E2E2E;
  padding: 15px 0;
  margin-top: 30px;
}

.footer-bottom-bar p{
color: #899999;
}

.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: #899999;
  font-weight: 600;
}

.footer-bottom-inner span:hover {
  color: #FFBE30;
}

.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;
  }
}


/* FOOTER END */ /* FOOTER END *//* FOOTER END *//* FOOTER END *//* FOOTER END *//* FOOTER END *//* FOOTER END *//* FOOTER END *//* FOOTER END *//* FOOTER END */








html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: clip;  
}
