
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    background: #fff;
    color: #2f3138;
    font-family: Arial, sans-serif;
}

a {
  color: #f82249;
  text-decoration: none;
  transition: 0.5s;
}

a:hover, a:active, a:focus {
  color: #f8234a;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Arial, sans-serif;
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
    color: #0e1b4d;
}

.main-page {
  margin-top: 70px;
}

/* Prelaoder */
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  overflow: visible;
  background: #fff url("../img/preloader.svg") no-repeat center center;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #f7941d;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #00a34e;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/* Sections Header
--------------------------------*/
.section-header {
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 20px;
}
.section-header::before {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 5px;
  background: #e96220;
  bottom: 0;
  left: calc(50% - 25px);
}
    .section-header h2 {
        font-size: 36px;
        text-align: center;
        font-weight: 700;
        margin-top: 10px;
        margin-bottom: 10px;
    }
.section-header p {
  text-align: center;
  padding: 0;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #9195a2;
}

.section-with-bg {
  background-color: #f6f7fd;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
/*.corousel_slide{margin-top: 100px;}*/

/* ===== HEADER BASE ===== */
#header {
    height: 100px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 997;
    background: #f6f7fd;
    display: flex;
    align-items: center;
    transition: all 0.5s;
}

    #header.header-scrolled,
    #header.header-inner {
        background: #eaebf1;
        height: 90px;
    }

/* ===== LOGO SECTION ===== */
#logo {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
}

    #logo a {
        display: inline-block;
    }

    #logo img {
        height: 45px;
        object-fit: contain;
        transition: height 0.3s ease;
    }

.logo-full {
    display: block;
}

.logo-small {
    display: none;
}

/* ===== RIGHT SIDE LOGOS ===== */
#header .lastlogo img {
    max-height: 70px;
}

.leftborder {
    border-left: solid 1px #fafafa;
    padding-left: 10px;
}

.pr-10 {
    padding-right: 10px;
}

/* ===== NAVBAR ===== */
#navbar {
    display: flex;
    align-items: center;
}

    #navbar ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    #navbar li {
        display: inline-block;
        margin: 0 1px;
    }

/* Submenu hidden by default */
.navbar ul ul {
    display: none;
    position: absolute;
    background: #fff;
    padding: 15px 0; /* increased vertical padding */
    margin-top: 10px; /* adds space below parent menu item */
    list-style: none;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    min-width: 220px; /* wider submenu */
    z-index: 1000;
}

/* Show submenu on hover */
.navbar ul li:hover > ul {
    display: block;
}

/* Submenu items */
.navbar ul ul li {
    position: relative;
    margin: 5px 0; /* space between submenu items */
}

    /* Submenu links */
.navbar ul ul li a {
        padding: 12px 25px; /* increased padding inside submenu links */
        display: block;
        color: #333;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 15px;
        border-radius: 6px;
}

        /* Hover effect */
.navbar ul ul li a:hover {
            background: #f0f0f0;
            color: #007bff;
            transform: translateX(4px);
}

/* ===== MOBILE VIEW ===== */
@media (max-width: 885px) {
    #header {
        flex-direction: column;
        height: 75px !important;
        padding: 1px 0;
    }

    #logo {
        justify-content: center;
    }

        #logo img {
            height: 60px;
        }

        /* Hide extra logos — show only first 3 for clarity */
        #logo a:nth-child(n+4) {
            display: none;
        }

    /* Swap logos */
    .logo-full {
        display: none;
    }

    .logo-small {
        display: block;
    }

    /* Navbar below logos */
    #navbar {
        display: flex;
        align-items: center;
    }

        #navbar ul {
            margin: 0;
            padding: 0;
            list-style: none;
        }

        #navbar li {
            display: inline-block;
            margin: 0 1px;
            width:100%;
        }
        /* Hide last right-side logos */
    .lastlogo, .lastlogo1 {
        display: none !important;
    }
    /* Swap logos */
    .logo-full {
        display: none;
    }

    .logo-small {
        display: block;
    }

}

/* Swap logos */
.logo-full {
    display: block;
}

.logo-small {
    display: block;
}



/*--------------------------------------------------------------
# Buy Tickets
--------------------------------------------------------------*/
        .buy-tickets {
  color: #fff;
  background: #e96220;
  padding: 7px 22px;
  margin: 0 50px 0px 0;
  border-radius: 50px;
  border: 2px solid #e96220;
  transition: all ease-in-out 0.3s;
  font-weight: 500;
  line-height: 1;
  font-size: 13px;
  white-space: nowrap;
}
.buy-tickets:hover {
  background: none;
  color: #e96220;
}
.buy-tickets:focus {
  color: #fff;
}
.offset-4{margin-left: 33.33333333% !important;}
.offset-1{margin-left: 33.33333333%;}
@media (max-width: 992px) {
  .buy-tickets {
    margin: 0 15px 0 0;
  }
  .offset-4{margin-left: 33.33333333% !important;}
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  margin-right:100px;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar > ul > li {
  white-space: nowrap;
  padding: 10px 0 10px 12px;
}
    .navbar a, .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: rgba(55 56 62 / 80%);
        /* color: rgba(239, 240, 244, 0.8);
        color: rgba(56 81 179 / 80%);*/
        font-family: Arial, sans-serif;
        font-weight: 600;
        font-size: 14px;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
        text-transform: uppercase;
        padding: 6px 4px;
    }
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #f7941d;
  visibility: hidden;
  transition: all 0.3s ease-in-out 0s;
}
.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
  visibility: visible;
  width: 100%;
}
    .navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
        /* color: #fff;*/
        color: #cb7a7a;
        /*color: #852d2d;
        color: #f31e1e;*/
    }
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 12px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #060c22;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #f82249;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1367px) {
  .offset-4{margin-left: 33.33333333% !important;}
  }
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #544d4d;
    font-size: 38px;
    cursor: pointer;
    display: none;
    line-height: 0;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
        position: absolute;
        right: -54px;
        top: 20px;
    }
.offset-md-1{margin-left: 0;}
  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
  width:100%;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile > ul > li {
  padding: 0;
}
.navbar-mobile a:hover:before, .navbar-mobile li:hover > a:before, .navbar-mobile .active:before {
  visibility: hidden;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #060c22;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #f82249;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #f82249;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url(../img/bgevent.jpg) top center;
  background-size: cover;
  overflow: hidden;
  position: relative;
}
@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
#hero:before {
  content: "";
  /*background: rgb(0 24 112 / 80%);*/
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero .hero-container {
  position: absolute;
  bottom: 0;
  left: 0;
  top: 90px;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 15px;
}
#hero .hero-container 
.watchlive {position: relative;}
.watchlive a img{width: 140px !important;
margin-top: 64px; 
float: left;
margin-left: 25px;
position: absolute; top: 20%;
left: 0;}
#hero .hero-container img{width: 50%; max-width: 100%;}
.modiimg{display: none;}
#hero .hero-container p img{width: 70%; max-width: 100%;}
@media (max-width: 991px) {
  #hero .hero-container {
    top: 120px;
  }
}
#hero h1 {
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 56px;
    font-weight: 600;
    text-transform: uppercase;
}
#hero h1 span {
  color: #f7941d;
}
@media (max-width: 991px) {
  #hero h1 {
    font-size: 34px;
  }
}
#hero p {
  color: #ebebeb;
  font-weight: 700;
  font-size: 20px;
}
@media (max-width: 991px) {
  #hero p {
    font-size: 16px;
  }
}
#hero .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#f82249 50%, rgba(101, 111, 150, 0.15) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}
#hero .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
#hero .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 2px solid rgba(163, 163, 163, 0.4);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}
#hero .play-btn:hover::after {
  border-left: 15px solid #f82249;
  transform: scale(20);
}
#hero .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}
#hero .about-btn {
    font-family: Arial, sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    transition: 0.5s;
    line-height: 1;
    margin: 10px;
    color: #fff;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    border: 2px solid #f7941d;
}
#hero .about-btn:hover {
  background: #f7941d;
  color: #fff;
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
#about {
  /*background: url("../img/about-bg.jpg");*/
  background-size: cover;
  overflow: hidden;
  position: relative;
  color: #fff;
  padding: 60px 0 40px 0;
}
@media (min-width: 1024px) {
  #about {
    background-attachment: fixed;
  }
}
#about:before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#about h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #011047;
}
#about h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #011047;
}
#about p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #011047;
}

/*--------------------------------------------------------------
# Speakers Section
--------------------------------------------------------------*/
#speakers {
  padding: 60px 0 30px 0;
}
#speakers .speaker {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
#speakers .speaker .details {
  background: rgba(6, 12, 34, 0.76);
  position: absolute;
  left: 0;
  bottom: -117px;
  right: 0;
  text-align: center;
  padding-top: 10px;
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
}
#speakers .speaker .details h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
}
#speakers .speaker .details p {
  color: #fff;
  font-size: 15px;
  margin-bottom: 10px;
  font-style: italic;
}
#speakers .speaker .details .social {
  height: 40px;
}
#speakers .speaker .details .social i {
  line-height: 0;
  margin: 0 2px;
}
#speakers .speaker .details a {
  color: #fff;
}
#speakers .speaker .details a:hover {
  color: #f7941d;
}
#speakers .speaker:hover .details {
  bottom: 0;
}

#speakers-details {
  padding: 60px 0;
}
#speakers-details .details h2 {
  color: #112363;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}
#speakers-details .details .social {
  margin-bottom: 15px;
}
#speakers-details .details .social a {
  background: #e9edfb;
  color: #112363;
  line-height: 1;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#speakers-details .details .social a:hover {
  background: #f82249;
  color: #fff;
}
#speakers-details .details .social a i {
  font-size: 16px;
  line-height: 0;
}
#speakers-details .details p {
  color: #112363;
  font-size: 15px;
  margin-bottom: 10px;
}

#presentation{ padding: 60px 0 60px 0;}
#presentation h2{font-weight: 600;
    margin-bottom: 4px;
    margin-top: 15px;
}

#presentation .daybypresentation a{
color: #FFF;
    background: #0e1b4d;
    padding: 10px;
    margin: 10px;
    overflow: hidden;
   word-break: break-all;
    font-size: 14px;
    border-radius: 10px;}
#presentation .daybypresentation a:hover{color: #f7941d;}
#presentation .daybypresentation a:hover{color: #f7941d;}
#presentation .daybypresentation a:hover, a:active, a:focus{color: #f7941d;}
/*--------------------------------------------------------------
# Schedule Section
--------------------------------------------------------------*/
#schedule {
  padding: 60px 0 60px 0;
}
#schedule .nav-tabs {
  text-align: center;
  margin: auto;
  display: block;
  border-bottom: 0;
  margin-bottom: 30px;
}
#schedule .nav-tabs li {
  display: inline-block;
  margin-bottom: 0;
}
#schedule .nav-tabs a {
  border: none;
  border-radius: 50px;
  font-weight: 600;
  background-color: #0e1b4d;
  color: #fff;
  padding: 10px 40px;
}
@media (min-width: 1921px) and (max-width: 3840px){
.watchlive a img{
margin-top: 0;
margin-left: 50px;
left: 4%;
position: absolute;
top: 147px;
width: 500px !important;}
}
@media (max-width: 991px) {
  #schedule .nav-tabs a {
    padding: 8px 60px;
  }
}
 #presentation .daybypresentation .daypc {
      display:flex;
      }
      .Parallel_box{
        display: flex;
        justify-content: center;
      }
      .divsheu{
        float: left;
            margin-left: 5px;
    margin-right: 5px;
    width: 130px;
      }
       .divsheu1{
        float: left;
            margin-left: 5px;
    margin-right: 5px;
    width: auto;
      }
@media (max-width: 767px) {
  .modiimg{display: block;}
  .Parallel_box{
    display: block !important;
    padding-left: 35px;
  }
  .divsheu{margin-bottom: 40px;}
  /*.corousel_slide{margin-top: 184px;}*/
  #schedule .nav-tabs a {
    padding: 8px 50px;
  }
  #presentation .daybypresentation .daypc {
      display:block;
      }
      #presentation .daybypresentation a
      {          float:left;}
    .offset-1{margin-left: 0 !important;}
  .offset-2{margin-left: 0 !important;}
  .offset-3{margin-left: 0 !important;}
  .offset-4{margin-left: 0 !important;}
  .offset-5{margin-left: 0 !important;}
  .offset-6{margin-left: 0 !important;}
  #schedule .nav-tabs li{margin-bottom: 15px !important;}
  
  #header .lastlogo img{position: absolute; right: 5%; top: 76%;}
    #hero .hero-container img{width: 100%;}
    #header #logo img{ margin-top: 10px;}
    #header{height: 76px !important;
    display: block !important;}
    .watchlive a img{
    margin-top: 0;
    position: relative;
    margin-left: 0;
    left: -85%;
    top: 23px;}
}
@media (max-width: 480px) {
  #schedule .nav-tabs a {
    padding: 8px 30px;
  }
  .offset-1{margin-left: 0 !important;}
  .offset-2{margin-left: 0 !important;}
  .offset-3{margin-left: 0 !important;}
  .offset-4{margin-left: 0 !important;}
  .offset-5{margin-left: 0 !important;}
  .offset-6{margin-left: 0 !important;}
  #schedule .nav-tabs li{margin-bottom: 15px !important;}
  #header .lastlogo1 img{
  position: absolute !important;
  left: 71% !important;
  top: 56% !important;}
  #header .lastlogo img{position: absolute; left: 5%; top: 56%;
    height: 65px;}
  #hero .hero-container img{width: 100%;}
  #header #logo img{width: 100% !important; margin-top: 10px;}
  #header{height: 84px !important;
    display: block !important;}
}
@media (max-width: 375px) {
.watchlive a img{
    margin-top: 0;
position: relative;
margin-left: 0;
left: -55%;
top: 13px;}
}
.btn-our{    border: none;
    border-radius: 50px;
    font-weight: 600;
    background-color: #0022a5;
    box-shadow: 0px 2px 8px #888;
    color: #fff;
    padding: 10px 40px;
margin-bottom: 20px;}
.btn-our:hover{
  color: #FFF;
  text-align: center;
background: #e96220;
margin-bottom: 20px;}
.btn-our.active{
  background-color: #e96220;
  color: #fff;
}
.btn-our a:hover, a:active, a:focus{
  color: #fff;
  box-shadow: none !important;
}
#schedule .nav-tabs a.active {
  background-color: #e96220;
  color: #fff;
}
#schedule .sub-heading {
  text-align: center;
  font-size: 18px;
  font-style: italic;
  margin: 0 auto 30px auto;
}
@media (min-width: 991px) {
  #schedule .sub-heading {
    width: 75%;
  }
}
#schedule .tab-pane {
  transition: ease-in-out 0.2s;
}
#schedule .schedule-item {
  border-bottom: 1px solid #cad4f6;
  padding-top: 15px;
  padding-bottom: 15px;
  transition: background-color ease-in-out 0.3s;
}
#schedule .schedule-item:hover {
  background-color: #fff;
}
#schedule .schedule-item time {
  padding-bottom: 5px;
  display: inline-block;
}
#schedule .schedule-item .speaker {
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
  float: left;
  margin: 0 10px 10px 0;
}
#schedule .schedule-item .speaker img {
  height: 100%;
  transform: translateX(-50%);
  margin-left: 50%;
  transition: all ease-in-out 0.3s;
}
#schedule .schedule-item-head h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
    font-family: Arial, sans-serif;
}
#schedule .schedule-item-head h3 time{
font-size: 20px;
}
#schedule .schedule-item-head h3 span{
font-size: 20px;
font-weight: 400;
}
#schedule .schedule-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}
#schedule .schedule-item h4 span {
  font-style: italic;
  color: #19328e;
  font-weight: normal;
  font-size: 16px;
}
#schedule .schedule-item p {
  font-style: italic;
  color: #152b79;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Venue Section
--------------------------------------------------------------*/
#venue {
  padding: 60px 0 40px 0px;
}
#venue .container-fluid {
  margin-bottom: 3px;
}
#venue .venue-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
}
#venue .venue-info {
  background: url("../img/venue-info-bg.jpg") top center no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}
#venue .venue-info:before {
  content: "";
  background: rgba(13, 20, 41, 0.8);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#venue .venue-info h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 574px) {
  #venue .venue-info h3 {
    font-size: 24px;
  }
}
#venue .venue-info p {
  color: #fff;
  margin-bottom: 0;
}
#venue .venue-gallery-container {
  padding-right: 12px;
}
#venue .venue-gallery {
  overflow: hidden;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}
#venue .venue-gallery img {
  transition: all ease-in-out 0.4s;
}
#venue .venue-gallery:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Hotels Section
--------------------------------------------------------------*/
#hotels {
  padding: 60px 0;
}
#hotels .hotel {
  border: 1px solid #e0e5fa;
  background: #fff;
  margin-bottom: 30px;
}
#hotels .hotel:hover .hotel-img img {
  transform: scale(1.1);
}
#hotels .hotel-img {
  overflow: hidden;
  margin-bottom: 15px;
}
#hotels .hotel-img img {
  transition: 0.3s ease-in-out;
}
#hotels h3 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 5px;
  padding: 0 20px;
}
#hotels a {
  color: #152b79;
}
#hotels a:hover {
  color: #f82249;
}
#hotels .stars {
  padding: 0 20px;
  margin-bottom: 5px;
}
#hotels .stars i {
  color: #ffc31d;
}
#hotels p {
  padding: 0 20px;
  margin-bottom: 20px;
  color: #060c22;
  font-style: italic;
  font-size: 15px;
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
#gallery {
  padding: 60px;
  overflow: hidden;
}
#gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
#gallery .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #f82249;
}
#gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #f82249;
}
#gallery .swiper-slide-active {
  text-align: center;
}
@media (min-width: 992px) {
  #gallery .swiper-wrapper {
    padding: 40px 0;
  }
  #gallery .swiper-slide-active {
    border: 5px solid #f82249;
    padding: 4px;
    background: #fff;
    z-index: 1;
    transform: scale(1.15);
    margin-top: 6px;
  }
}

/*--------------------------------------------------------------
# Sponsors Section
--------------------------------------------------------------*/
#supporters {
  padding: 60px 0;
}
#supporters .supporters-wrap {
  border-top: 1px solid #e0e5fa;
  border-left: 1px solid #e0e5fa;
  margin-bottom: 30px;
}
#supporters .supporter-logo {
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #e0e5fa;
  border-bottom: 1px solid #e0e5fa;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.5);
  height: 160px;
}
#supporters .supporter-logo:hover img {
  transform: scale(1.2);
}
#supporters img {
  transition: all 0.4s ease-in-out;
}

/*--------------------------------------------------------------
# F.A.Q Section
--------------------------------------------------------------*/
#faq {
  padding: 60px 0;
}
#faq .faq-list {
  padding: 0;
  list-style: none;
}
#faq .faq-list li {
  border-bottom: 1px solid #e9eaed;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
    #faq .faq-list .question {
        display: block;
        position: relative;
        font-family: Arial, sans-serif;
        font-size: 18px;
        line-height: 24px;
        font-weight: 400;
        padding-left: 25px;
        cursor: pointer;
        color: #e0072f;
        transition: 0.3s;
    }
#faq .faq-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -2px;
}
#faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
}
#faq .faq-list .icon-show {
  display: none;
}
#faq .faq-list .collapsed {
  color: black;
}
#faq .faq-list .collapsed:hover {
  color: #f82249;
}
#faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}
#faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

/*--------------------------------------------------------------
# Subscribe Section
--------------------------------------------------------------*/
#subscribe {
  padding: 60px;
  background: url(../img/subscribe-bg.jpg) center center no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
}
#subscribe:before {
  content: "";
  background: rgba(6, 12, 34, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
@media (min-width: 1024px) {
  #subscribe {
    background-attachment: fixed;
  }
}
#subscribe .section-header h2, #subscribe p {
  color: #fff;
}
#subscribe input {
  background: #fff;
  color: #060c22;
  border: 0;
  outline: none;
  margin: 0;
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 14px;
}
@media (min-width: 767px) {
  #subscribe input {
    min-width: 400px;
  }
  
  .offset-1{margin-left: 0 !important;}
  .offset-2{margin-left: 0 !important;}
  .offset-3{margin-left: 0 !important;}
  .offset-4{margin-left: 0 !important;}
  .offset-5{margin-left: 0 !important;}
  .offset-6{margin-left: 0 !important;}
}
#subscribe button {
  border: 0;
  padding: 9px 25px;
  cursor: pointer;
  background: #f82249;
  color: #fff;
  transition: all 0.3s ease;
  outline: none;
  font-size: 14px;
  border-radius: 50px;
}
#subscribe button:hover {
  background: #e0072f;
}
@media (max-width: 460px) {
  #subscribe button {
    margin-top: 10px;
  }
}

/*--------------------------------------------------------------
# Buy Tickets Section
--------------------------------------------------------------*/
#buy-tickets {
  padding: 60px 0;
}
#buy-tickets .card {
  border: none;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 10px 25px 0 rgba(6, 12, 34, 0.1);
}
#buy-tickets .card:hover {
  box-shadow: 0 10px 35px 0 rgba(6, 12, 34, 0.2);
}
#buy-tickets .card hr {
  margin: 25px 0;
}
#buy-tickets .card .card-title {
  margin: 10px 0;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: bold;
}
#buy-tickets .card .card-price {
  font-size: 48px;
  margin: 0;
}
#buy-tickets .card ul li {
  margin-bottom: 20px;
}
#buy-tickets .card .text-muted {
  opacity: 0.7;
}
#buy-tickets .card .btn {
  font-size: 15px;
  border-radius: 50px;
  padding: 10px 40px;
  transition: all 0.2s;
  background-color: #f82249;
  border: 0;
  color: #fff;
}
#buy-tickets .card .btn:hover {
  background-color: #e0072f;
}
#buy-tickets #buy-ticket-modal input, #buy-tickets #buy-ticket-modal select {
  border-radius: 0;
}
#buy-tickets #buy-ticket-modal .btn {
  font-size: 15px;
  border-radius: 50px;
  padding: 10px 40px;
  transition: all 0.2s;
  background-color: #f82249;
  border: 0;
  color: #fff;
}
#buy-tickets #buy-ticket-modal .btn:hover {
  background-color: #e0072f;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
#contact {
  padding: 60px 0;
  background: url(../img/contact.jpg); */
    background-size: cover;
    overflow: hidden;
    position: relative;
    color: #fff;
    
}
#contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
}
#contact .section-header {margin-bottom: 20px;
padding-bottom: 10px;}
#contact .section-header h2{
  color: #FFFF;
}
#contact .contact-info .contact-email{padding-bottom: 0;}
#contact .contact-info i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 10px;
  color: #FFF;
}
#contact .contact-info address, #contact .contact-info p {
  margin-bottom: 0;
  color: #112363;
}
/*.contact-email .social a i{
border: solid 5px #e96220;;
    padding: 5px 15px;
    border-radius: 50%;
    margin: 20px 10px;
  color: #e96220 !important;}*/
.contact-email .social a i {
    border: solid 5px #FFFFFF;
    padding: 5px 15px;
    border-radius: 50%;
    margin: 20px 10px;
    color: #FFFFFF !important;
}
.contact-email .social a img {
    border: solid 5px #FFFFFF;
    padding: 17px 15px 21px 20px;
    border-radius: 50%;
    margin: 0px 10px 18px 10px;
    color: #FFFFFF !important;
}

#contact .contact-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fafafa;
}
#contact .contact-info a {
  color: #4869df;
}
#contact .contact-info a:hover {
  color: #e96220;
}
#contact .contact-address, #contact .contact-phone, #contact .contact-email {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  #contact .contact-address, #contact .contact-phone, #contact .contact-email {
    padding: 20px 0;
  }
}
@media (min-width: 768px) {
  #contact .contact-phone {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
}
#contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
#contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
#contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
#contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
#contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
#contact .php-email-form input, #contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}
#contact .php-email-form input:focus, #contact .php-email-form textarea:focus {
  border-color: #f82249;
}
#contact .php-email-form input {
  padding: 10px 15px;
}
#contact .php-email-form textarea {
  padding: 12px 15px;
}
#contact .php-email-form button[type=submit] {
  background: #f82249;
  border: 0;
  padding: 10px 40px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
  cursor: pointer;
}
#contact .php-email-form button[type=submit]:hover {
  background: #e0072f;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    background: #101522;
    border-top: 1px solid #eee;
    color: #fff;
    font-size: 15px;
    font-family: Arial, sans-serif;
}

    .footer h5, .footer h6 {
        font-weight: 600;
        color: #fff;
    }

    .footer .footer-link {
        color: #fff;
        text-decoration: none;
        display: inline-block;
        margin-bottom: 6px;
    }

        .footer .footer-link:hover {
            color: #fff;
            text-decoration: underline;
        }

    .footer .social-icons a {
        color: #fff;
        font-size: 32px;
        transition: all 0.3s ease;
    }

        .footer .social-icons a:hover {
            color: #fff;
        }

    .footer .powered-by img {
        vertical-align: middle;
        margin-top: 10px;
    }
    .footer .copyright {
        text-align: center;
        padding-top: 30px;
    }

@media (max-width: 768px) {
    .footer {
        text-align: center;
    }

        .footer .powered-by img {
            display: block;
            margin: 10px auto;
        }
}

/*#footer {
  background: #101522;
  padding: 0 0 25px 0;
  color: #eee;
  font-size: 14px;
}
#footer .footer-top {
  background: #040919;
  padding: 60px 0 30px 0;
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
}
    #footer .footer-top .footer-info h3 {
        font-size: 26px;
        margin: 0 0 20px 0;
        padding: 2px 0 2px 0;
        line-height: 1;
        font-family: Arial, sans-serif;
        font-weight: 700;
        color: #fff;
    }
#footer .footer-top .footer-info img {
  height: 40px;
  margin-bottom: 10px;
}
    #footer .footer-top .footer-info p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 0;
        font-family: Arial, sans-serif;
        color: #fff;
    }
#footer .footer-top .social-links a {
  display: inline-block;
  background: #222636;
  color: #eee;
  line-height: 1;
  margin-right: 4px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#footer .footer-top .social-links a i {
  line-height: 0;
  font-size: 16px;
}
#footer .footer-top .social-links a:hover {
  background: #f82249;
  color: #fff;
}
#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
  border-bottom: 2px solid #f82249;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 5px;
  color: #f82249;
  font-size: 18px;
}
#footer .footer-top .footer-links ul li {
  border-bottom: 1px solid #262c44;
  padding: 10px 0;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #eee;
}
#footer .footer-top .footer-links ul a:hover {
  color: #f82249;
}
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}
#footer .footer-top .footer-contact p {
  line-height: 26px;
}
#footer .footer-top .footer-newsletter {
  margin-bottom: 30px;
}
#footer .footer-top .footer-newsletter input[type=email] {
  border: 0;
  padding: 6px 8px;
  width: 65%;
}
#footer .footer-top .footer-newsletter input[type=submit] {
  background: #f82249;
  border: 0;
  width: 35%;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}
#footer .footer-top .footer-newsletter input[type=submit]:hover {
  background: #e0072f;
}
#footer .copyright {
  text-align: center;
  padding-top: 30px;
}
#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #ddd;
}*/
.mt-20{margin-top: 20px;}


/*.koo-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #f4c430;
    color: #000;
    font-weight: bold;
    font-size: 16px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

.koo-btn:hover {
    background: #e6b800;
    transform: translateY(-2px);
}

.koo-btn img {
    height: 26px;
    width: 26px;
}*/
/* Section background (About, Schedule, etc.) */
.about-section {
    background-color: #E7ECEF; /* very light pastel blue */
    padding: 60px 20px;
    border-radius: 8px;
}

    .about-section h2 {
        color: #004080; /* dark blue */
        font-weight: 700;
        margin-bottom: 20px;
    }

    .about-section p {
        text-align: left;
        color: #002147; /* navy text */
        font-size: 16px;
        line-height: 1.7;
}

#about .aboutbox_1 {
    box-shadow: 0px 3px 11px #100f0f;
    background-color: #FFF;
    text-align: center;
    border-radius: 6px;
    padding: 10px;
    min-height: 240px;
}

#about .aboutbox_1 img {
        margin-bottom: 15px;
        width: 80px;
    }

#about .aboutbox_1 p {
        color: #000;
        margin: 0;
    }

.card-container {
    /*display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;*/
    max-width: 1200px;
    margin: auto;
}

.card {
    /*background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-radius: 12px;

}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    .card img {
        max-width: 80px;
        margin-bottom: 15px;
        /*height: 70px;
        margin: 1px 110px 15px 110px !important;*/
    }

    .card p {
        font-size: 16px;
        color: #002147;
        line-height: 1.5;
    }

/* Tablet View (3 per row) */
@media (max-width: 10234px) {
    .card-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet View (2 per row) */
@media (max-width: 992px) {
    .card-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile View (1 per row) */
@media (max-width: 576px) {
    .card-container {
        grid-template-columns: 1fr;
    }
}

.container1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.cardfull {
    background: #DEEDF2;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.cardfull:hover {
    transform: translateY(-5px);
}

.cardfull-icon {
    font-size: 30px;
    margin-bottom: 15px;
    color: #444;
}

.cardfull h3 {
    margin: 0 0 10px;
    font-size: 20px;
    color: #222;
}

.cardfull p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.feature-bar {
    display: flex;
    align-items: center;
    justify-content: space-between; /* pushes items to left/right edges */
    padding: .5rem 1rem;
}

    .feature-bar h3 {
        margin: 0;
        color: #444;
        font-size: 1.125rem;
        font-weight: 600;
    }

    .feature-bar svg {
        width: 50px;
        height: 50px;
        fill: #444;
    }

/* container that centers and limits width */
.hero {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    text-align: center;
    gap: 51px;
    padding: 18px 10px;
}
.hero h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #011047;
}


        /* emphasize the quoted phrase with same styling (optional) */
        .hero h1 .quote {
            font-style: normal;
        }

/* button */
.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    padding: 14px 26px;
    border-radius: 999px;
    background: linear-gradient(180deg,#4b24e6,#3d1fd6);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 6px 18px rgba(75,36,230,0.16);
    width: 230px;
}
/* Mobile Centering */
@media (max-width: 768px) {
    .cta {
        width:230px;
        display: inline-flex;
        margin: 15px auto; /* Centers it */
        text-align: center;
        justify-content: center;
    }

    header.hero {
        text-align: center; /* Ensures heading & button align well */
    }
}
.cta svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
}

/* keep layout compact on small screens */
@media (max-width: 720px) {
    .hero {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .hero h1 {
        max-width: 100%;
    }
}


/*header {
    background: #fff;
    padding: 10px 0;
}*/

.bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .5rem 1rem;
}

.Eventfull {
    border: 1px solid #DEEDF2;
    background-color: #eff7f9;
    border-radius: 3px;
    padding: 20px 20px 10px 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
    margin-bottom: 5px;
}
.objectives-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .objectives-list li {
        display: flex;
        align-items: center;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        padding: 15px;
        margin-bottom: 15px;
    }

    .objectives-list img {
        width: 50px;
        height: 50px;
        margin-right: 15px;
        object-fit: contain;
    }

    .objectives-list span {
        font-size: 1rem;
        color: #333;
    }


/* Common Table Styles */
/*.table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
}

    .table th, .table td {
        border: 1px solid #ccc;
        padding: 8px;
        vertical-align: top;
    }

    .table th {
        background: #f0f0f0;
        text-align: center;
    }

    .table .text-center {
        text-align: center;
    }*/

.nav-tabs {
    background-color: #EAEBF1;
    border: none;
    border-radius: 10px 10px 0 0;
    padding: 2px;
}

    .nav-tabs .nav-link {
        color: #555;
        font-weight: 600;
        border: none;
        margin-right: 8px;
        border-radius: 8px;
        background-color: transparent;
        transition: all 0.2s ease;
    }

        /*.nav-tabs .nav-link.active {
            background-color: white;
            color: #000;
            border: 1px solid #ddd;
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
        }*/
        .nav-tabs .nav-link.day1 {
            background-color: #e9f4f7;
            color: #000 !important;
            border: 1px solid #B1E8F3;
        }
        .nav-tabs .nav-link.day2 {
            background-color: #e7f0e9;
            color: #000 !important;
            border: 1px solid #96CFA3;
        }
        .nav-tabs .nav-link.day3 {
            background-color: #f5e9ea;
            color: #000 !important;
            border: 1px solid #FD7E14;
        }

        /* Day 1 colors */
        .nav-tabs .nav-link.day1:hover,
        .nav-tabs .nav-link.day1.active {
            background-color: #e9f4f7;
            color: #000 !important;
        }

        /* Day 2 colors */
        .nav-tabs .nav-link.day2:hover,
        .nav-tabs .nav-link.day2.active {
            background-color: #e7f0e9;
            color: #000 !important;
        }

        /* Day 3 colors */
        .nav-tabs .nav-link.day3:hover,
        .nav-tabs .nav-link.day3.active {
            background-color: #f5e9ea;
            color: #000 !important;
        }
.tab-content {
    background-color: #F6F7FD;
    border: 0px solid #dee2e6;
    border-top: none;
    padding: 0px;
    border-radius: 0;
}

/* Schedule Grid */
.schedule-container {
    display: flex;
    flex-direction: column;
    border: 1px solid #dee2e6;
    font-family: Arial, sans-serif;
}

.schedule-row {
    display: grid;
    grid-template-columns: 14% 30% 28% 28%;
    border-bottom: 1px solid #a6a8ab;
    font-size: 16px;
}

.schedule-header,
.schedule-cell {
    border-right: 1px solid #a6a8ab;
    padding: 10px;
    vertical-align: middle;
    font-size:16px;
}

.schedule-header {
    font-weight: bold;
    background: #f8f9fa;
}

.schedule-row:last-child {
    border-bottom: none;
}

.schedule-cell:last-child,
.schedule-header:last-child {
    border-right: none;
}

.day-header {
    text-align: center;
    background-color: #e9ecef;
    font-weight: bold;
    padding: 5px;
    border-top: 1px solid #dadde0;
    border-bottom: 1px solid #000;
}

.day1 {
    background-color: #e9f4f7;
}

.day2 {
    background-color: #e7f0e9;
}

.day3 {
    background-color: #f5e9ea;
}

.text-center {
    text-align: center;
}

.custom-bold-borders {
    border: 1px solid #E9F4F5 !important;
}

.schedule-row p {
    margin: 0;
}

.schedule-row strong {
    display: inline-block;
    margin-bottom: 4px;
}
