body {
    color: #333;
    
}
.navigation-section {
    width: 100%;
    background-color: #f8f9fa;
    
}

.navbar {
    background: #f8f9fa;
    padding: 10px;
}
.nav-logo {
    height: 60px;  /* Adjust based on your logo */
    width: auto;
}

.nav-link {
    white-space: nowrap;
  }


   /* Slider */
.iioc-slider {
  width: 100%;
  height: 350px;
}

@media (max-width: 991px) {
  .iioc-slider {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .iioc-slider {
    height: 250px;
  }
}

.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}




/* Conference Hero Section */
.conference-hero {
    text-align: center;
    padding: 100px 20px;
    background: url('../images/background-1.jpg') no-repeat center center/cover;
    color: rgb(56, 55, 55);
}

/* Hero Content */
.hero h1 {
    font-size: 4rem;
    font-weight: bold;
}

.hero h2 {
    font-size: 2rem;
}

.hero p {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Side Menu 
.side-menu {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.side-menu a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background:  #0e4f95;
    color: white;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    text-decoration: none;
    text-align: center;
    font-size: 10px;
    padding: 5px;
}

.side-menu a i {
    font-size: 18px;
    margin-bottom: 3px;
}

.side-menu a:hover {
    background: #022d5c;
    transition: background 0.3s ease-in-out;
}*/


/* Side Menu */
.side-menu {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

.side-menu a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #0e4f95, #0a3d73);
    color: #fff;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    text-decoration: none;
    text-align: center;
    font-size: 10px;
    padding: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.side-menu a i {
    font-size: 20px;
    margin-bottom: 5px;
    transition: transform 0.3s;
}

.side-menu a:hover {
    background: linear-gradient(145deg, #022d5c, #011d3a);
    transform: scale(1.05);
}

.side-menu a:hover i {
    transform: translateY(-2px);
}



/* Bottom Menu */
.bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%; /* Full width */
    background: rgba(0, 0, 0, 0.9); /* Full black background */
    z-index: 1050; /* must be higher than overlapping elements */
    padding: 15px;
    display: flex;
   /* justify-content: center;*/
    justify-content: space-around;
    gap: 20px;
   /* border-radius: 0; /* No rounded edges */
    border-top: 1px solid #ccc;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}


/* Bottom Menu Items */
.bottom-menu a {
    color: white;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    position: relative;
}

.white-bg-section {
    padding-bottom: 80px; /* or more if needed */
}

/* Tooltip Hover Text Above Icons */
.bottom-menu a span {
    display: none;
    position: absolute;
    top: -30px; /* Position above the icon */
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 8px;
    border-radius: 5px;
    white-space: nowrap;
    font-size: 12px;
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
}

.bottom-menu a:hover span {
    display: block;
    opacity: 1;
}

/* Icons */
.bottom-menu a i {
    font-size: 24px;
}

/* FLASH Updates */

/* Full-width background */
 .flash-container-fluid {
    background-color: #e6e6fd;
    color: rgb(241, 15, 7);
    padding: 10px 0;
}
/* Flash updates container */
.flash-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.flash-title {
    font-size: 16px;
    font-weight: bold;
}

.update-container {
    height: 30px;
    overflow: hidden;
    width: 70%;
}
.update-text {
    position: relative;
    animation: scrollText 4s linear infinite;
}
.update-text a {
    color: rgb(2, 1, 53);
    text-decoration: none;
}
.update-text a:hover {
    text-decoration: underline;
}
@keyframes scrollText {
    0% { transform: translateY(100%); }
    100% { transform: translateY(-100%); }
}



/*About Section */
.white-bg-section {
    background-color: white;
    padding: 40px 0;
}

/*Background Section */
.background-bg-section {
    background-color: white;
    padding: 40px 0;
}

.content-box {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    height: 400px; /* Fixed height for all columns */
    overflow: hidden;
}

/* Image Slider */
.carousel-inner img {
    height: 350px; /* Adjust image height */
    object-fit: cover;
    border-radius: 5px;
}

/* Important Updates List */
.update-list {
    list-style-type: none;
    padding: 0;

}

.update-list li {
    margin-bottom: 10px;
    font-size: 16px;
}

.update-list a {
    text-decoration: none;
    color: #000000;
   
    
}

.update-list a:hover {
   
    color: #061424;
}

.update-list i {
    margin-right: 8px;
    color: #000000;
}
.update-container {
    transition: opacity 0.5s ease-in-out;
}


/* SPONERS, */

.image-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.image-box img {
    width: 60%;  /* Adjust for uniform size */
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.image-box img:hover {
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .image-box img {
        width: 50%; /* Smaller images for mobile */
    }
}


/*Footer*/
.footer {
    background-color: #222;  /* Dark background */
    color: #fff;
    padding: 15px 0;
    font-size: 14px;
    text-align: center;
}

.footer img {
    width: 20px;
    margin: 0 5px;
    transition: transform 0.3s ease-in-out;
}

.footer img:hover {
    transform: scale(1.1);
}

.footer-menu a {
  color: white;
  text-decoration: none;
}

.footer-menu a:hover {
  text-decoration: underline; /* Optional: shows underline on hover */
}

#goTopBtn {
  background-color: #0e4f95;
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  display: none;
  position: fixed;
  bottom: 40px;
  right: 20px;
  z-index: 1000;
  cursor: pointer;
}

/*.innerpage {
    height: 100vh;
}*/


/* Hide Side Menu for Mobile */
@media (max-width: 768px) {
    .side-menu {
        display: none;
    }

    .bottom-menu {
        display: flex;
    }
}




/* Contact Us CSS is here */
    .contact-section {
      max-width: 1200px;
      margin: auto;
    }

    .contact-title {
      font-size: 28px;
      font-weight: bold;
      margin-bottom: 20px;
      color: #003366;
    }

    .contact-boxes {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
    }

    .box {
      flex: 1;
      min-width: 250px;
      background: #1976d2;
      color: white;
      padding: 20px;
      border-radius: 4px;
      position: relative;
    }

    .box i {
      font-size: 24px;
      margin-right: 10px;
    }

    .box h3 {
      margin: 0 0 10px;
      font-size: 20px;
    }

    .box p {
      margin: 5px 0;
    }

    .urgent-contact {
      margin: 20px 0;
      font-weight: bold;
      color: #222;
    }

    .urgent-contact span {
      font-weight: normal;
      color: #000;
    }

    form {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    form input, form textarea {
      width: 100%;
      padding: 10px;
      border: 1px solid #aaa;
      border-radius: 2px;
    }

    form textarea {
      grid-column: span 2;
      height: 120px;
      resize: vertical;
    }

    .submit-btn {
      grid-column: span 2;
      background-color: #d32f2f;
      color: white;
      padding: 12px;
      border: none;
      font-weight: bold;
      cursor: pointer;
    }

    .submit-btn:hover {
      background-color: #b71c1c;
    }
	


 