@font-face {
    font-family: 'a Atmospheric';
    src: url('./fonts/aAtmospheric.eot');
    src: url('./fonts/aAtmospheric.eot?#iefix') format('embedded-opentype'),
        url('./fonts/aAtmospheric.woff2') format('woff2'),
        url('./fonts/aAtmospheric.woff') format('woff'),
        url('./fonts/aAtmospheric.ttf') format('truetype'),
        url('./fonts/aAtmospheric.svg#aAtmospheric') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Codec Pro';
    src: url('./fonts/CodecPro-Regular.eot');
    src: url('./fonts/CodecPro-Regular.eot?#iefix') format('embedded-opentype'),
        url('./fonts/CodecPro-Regular.woff2') format('woff2'),
        url('./fonts/CodecPro-Regular.woff') format('woff'),
        url('./fonts/CodecPro-Regular.ttf') format('truetype'),
        url('./fonts/CodecPro-Regular.svg#CodecPro-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');



html,
body {
    font-family: 'Codec Pro';
    font-weight: normal;
    font-style: normal;
}

p {
    line-height:1.6;
    font-weight: 300;
    margin-bottom: 5px;
    text-align: justify;
}

/*=========Vertical Scroller CSS==========*/
::-webkit-scrollbar {
    width: 6px; // to adjust width
}

::-webkit-scrollbar-track {
    background: #003F7D;
    border: rgba(0, 0, 0, 0.87);
}

::-webkit-scrollbar-thumb {
    background: #FF8C00;
}

::-webkit-scrollbar-thumb:hover {
    background: #003F7D;
}

::-webkit-scrollbar-thumb:active {
    background: #003F7D;
}

.onhover {
    transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -webkit-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s
}

/*=============Margin Layout=============*/
.mar-lg-20 {
    margin: 0px 20px;
}

.mar-lg-30 {
    margin: 0px 30px;
}

.mar-lg-40 {
    margin: 0px 40px;
}

.mar-lg-50 {
    margin: 0px 50px;
}

.mar-lg-60 {
    margin: 0px 60px;
}

.mar-lg-70 {
    margin: 0px 70px;
}

.mar-lg-80 {
    margin: 0px 80px;
}

.mar-lg-l-0 {
    margin-left: 0px !important;
}

/*=============End Margin Layout========*/

 /* Preloader Styles */
    #preloader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #000; /* Background color */
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999; /* Ensure it's above everything */
    }
    #preloader img {
      width: 450px; /* Adjust logo size */
      height: auto;
    }
     /* Hidden Body */
    body.hidden {
      overflow: hidden; /* Prevent scrolling during loading */
    }

    body.hidden > *:not(#preloader) {
      display: none; /* Hide everything except the preloader */
    }
/* ================Header============= */
header {
    position: fixed;
    top: -5px;
    left: 0;
    width: 100%;
    padding: 10px 20px;
    background: #fff;
    color: #323133;
    z-index: 1000;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
header.animation {
/*    background: rgba(1, 35, 72, 0.99);*/
    transform: scaleY(0.95);
}
.top_nav {}

.top_nav ul {
    margin: 0px;
    text-align: right;
}

.top_nav ul li {
    display: inline-block;
    background: #003F7D;
    /* Default blue background */
    padding: 4px 15px;
    border-radius: 3px;
    transition: background-color 0.3s ease;
    /* Smooth transition for background color */
}

.top_nav ul li:nth-child(2) {
    background: #FFA022;
    /* Orange background for the second item */
}

/* Hover effect */
.top_nav ul li:hover {
    background: #FFA022;
    /* Change to orange on hover */
}

.top_nav ul li:nth-child(2):hover {
    background: #003F7D;
    /* Change to blue on hover for the second item */
}

.top_nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px
}

.sp_img img{margin-bottom: 10px;}
/*==============Navbar styles==============*/
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0px;
}

.logo {}

.logo img {
    max-width: 300px;
}

.logo p {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.5s, transform 0.5s;
      text-align: center;font-size: 17px;
    }
.logo p.visible {
      opacity: 1;
      transform: translateY(0);
      border-top: 1px solid rgba(255, 255, 255, .3);
      padding-top: 5px;
/*      margin-top: 5px;*/
    } 
.menu {
    display: flex;
    list-style: none;
    margin: 0 auto;

}

.menu li {
    position: relative;
    text-decoration: none;
    line-height: 2.5;

}

.menu a {
    color: #323133;
    text-decoration: none;
    padding: 10px 10px;
    display: block;
    font-size: 14px;
}
.menu a:hover {
    background: rgba(255, 140, 0, 0.2);
    transition: 0.3s;
}



/* Dropdown styles */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(1, 35, 72, 0.99);
    list-style: none;
    min-width: 200px;
/*    box-shadow: 0 4px 6px rgba(0, 0, 0, 1);*/
    z-index: 1000;
    border-radius: 2px;
    border:none;

}

.dropdown-menu li a {
    padding: 10px 15px;
    color: #fff;
}

.dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hamburger menu styles */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    position: relative;
    z-index: 1100;
    /* Ensure toggle is above the menu */
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 4px;
    background: #ffa022;
    border-radius: 2px;
    transition: 0.3s ease;
}

/* Transform into "X" when active */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
    position: absolute;
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 8px;
    position: absolute;
}

/* Responsive menu styles */
@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #333;
        position: absolute;
        top: 100%;
        left: 0;
        margin: 0;
        padding: 0;
    }

    .menu.active {
        display: flex;
    }

    .menu li a {
        padding: 15px;
        border-top: 1px solid #444;
        color: #fff;
    }

    .menu-toggle {
        display: flex;
    }
}

.menu li a.active, .menu li.active > a {
    border-bottom: 1px solid #ffa022;
    color: #ffa022;
}

.menu li.dropdown.active > a {
    border-bottom: 1px solid #ffa022;
    font-weight: bold;
}
.powered_by img{transition: filter 500msease -in-out;transition: width 0.8sease;width: 140px;} /*filter: brightness(0) invert(1);*/
.powered_by p{text-align: center;font-size: 12px;text-transform: uppercase;}
.powered_by_logo {color: #fff;text-align: center;}
.powered_by_logo a img{max-width: 140px;}
/* ================Header============= */

/*========Banner=======*/
.d_slider {
    background: #000;
}

.sheight {
    height: 720px;
}

.spadding {
    padding-top: 390px;
    padding-left: 30px;
    padding-right: 30px;
}

#slider {}

/*.overflow{overflow-y: hidden;}*/

.banner_img1 {
    background: url(../img/slider/banner1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
}

.banner_img2 {
    background: url(../img/slider/banner2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
}

.bnr_txt .date {}

.bnr_txt .date ul {
    margin: 0px 0px 20px;
    padding: 0px;
}

.bnr_txt .date ul li {
    display: inline-block;
    color: #fff;
    padding: 0px;
    font-size: 28px;
    font-weight: bold;
}

.bnr_txt .date ul li:nth-child(2) {
    padding-left: 10px;
}

.bnr_txt .date ul li:not(:last-child) {
    border-right: 1px solid #fff;
    padding-right: 20px;
    padding-left: 0px;
}

.headingfont {
    font-family: 'a Atmospheric';
}

.bnr_txt .welcome h1 {
    font-size: 42px;
    margin: 0;
    color: #fff;
}

.bnr_txt .welcome h2 {
    font-size: 42px;
    margin: 0px 0px 25px;
    padding-bottom: 10px;
    color: #fff;
    font-weight: 400;
    border-bottom: 1px solid #FFA022;
    display: inline-flex;
}

.bnr_txt .welcome p {
    font-size: 28px;
    margin: 0;
    color: #fff;
    font-weight: 400;
    margin-bottom: 15px;
}

.bnr_txt .welcome p span {
    color: #FFA022;
}

.banner_img1 h1,
.banner_img2 h1,
.banner_img3 h2 {
    color: #fff;
    text-align: left;
    font-size: 48px;
    margin: 0px;
    font-weight: 600;
    text-transform: uppercase;
}

.bnr_txt {
    position: relative;
    z-index: 9;
}

.bnr_txt .anchor {
    margin-top:0px;
}

.bnr_txt .anchor a {
    background: #FF8C00;
    padding: 12px 30px;
    font-size: 16px;
    color: #fff;
    display: inline-block;
    border-radius: 5px;
    text-decoration: none;
}

.bnr_txt .anchor a:hover {
    background: #003F7D;
    color: #fff;
}

.banner_img1:after,
.banner_img2:after,
.banner_img3:after {
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.7);
}

.banner_img1:before,
.banner_img2:before,
.banner_img3:before {
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: 4;
    background: url('../img/slider/w_bg.png') no-repeat right;
    background-position: right 80px;
}

.owl-dots {
    text-align: center;
    display: flex;
    flex-direction: column;
    /* Align dots vertically */
    align-items: center;
    /* Center the dots horizontally */
    position: absolute;
    right: 20px;
    margin-top: -200px;
    z-index: 99;
}

.owl-dots button.owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
    /* Make dots block-level to stack them vertically */
    background: #ccc;
    margin: 5px 0;
    /* Adjust the margin to space dots vertically */
}

.owl-dots button.owl-dot.active {
    background-color: #f69221;
}

.owl-dots button.owl-dot:focus {
    outline: none;
}


/*========Header Social CSS==========*/
.social-icons {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: fixed;
    right: -8px;
    bottom: 45px;
    transform: translateY(-50%);
    z-index: 99;
    margin: 0px;
}

.social-icons li {
    color: #fff;
    transition: color 0.3s ease;
}

.social-icons.sticky li {
    color: #FF8C00;
}

.social-icons li a.fb,
.social-icons li a.li {
    padding: 5px;
    color: #fff;
    transition: color 0.3s ease;
}

.social-icons.sticky li a.fb,
.social-icons.sticky li a.li {
    padding: 5px;
    color: #FF8C00;
}

.hyphen {
    font-size: 1rem;
    margin: 5px 0;
    transform: rotate(-90deg);
    transform-origin: center;
}

.follow-us {
    font-size: 1rem;
    margin: 30px 0 0px 0;
    transform: rotate(-90deg);
    transform-origin: center;
}

/*========Header Social CSS==========*/

/*========Counter Section==========*/
#counter_sec {
    position: absolute;
    z-index: 99;
    width: 100%;
    margin-top: -120px;
}

#counter_sec .row.bg {
    background: linear-gradient(to bottom, #000000 0%, rgba(0, 0, 0, 0.2) 100%);
}

#counter_sec #counter {
    padding: 10px 0px 0px;
}

#counter_sec .countersec {
    padding: 15px;
}

#counter_sec .countersec .counter-value {
    font-size: 48px;
    font-weight: 600;
    display: inline;
    color: #FF8C00;
    margin: 0px;
    font-family: 'a Atmospheric';
}

#counter_sec .countersec span {
    font-size: 48px;
    font-weight: 600;
    color: #FF8C00;
    line-height: initial;
}

#counter_sec .countersec p {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    font-family: 'a Atmospheric';
}

#counter_sec .countersec.br {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.media {
    display: flex;
    justify-content: center;
    align-items: center;
}

.media-body {
    display: flex;
    align-items: center;
    /* Center items vertically */
    justify-content: center;
    /* Center items horizontally */
    gap: 5px;
    /* Space between elements */
}

.counter-value {
    font-size: 1.5rem;
    font-weight: bold;
}

.media-body p {
    margin: 0;
    /* Remove default margin */
    font-size: 1rem;
    color: #555;
    /* Optional: change color */
}

.media-body span {
    font-size: 1.5rem;
    /* Match the size of the heading */
    font-weight: bold;
}

/*========Counter Section==========*/

/*========About Section==========*/
#about_sec {
    background: #323133;
}

#about_sec .abg {
    background: url(../img/aboutbg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
}

#about_sec .abg:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 165, 0, 0.6);
    z-index: 1;
}

#about_sec .about_heading {
    position: relative;
    z-index: 2;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    height: 100%;
}

#about_sec .about_heading h2 {
    font-family: 'a Atmospheric';
    font-size: 28px;
    text-align: left;
}

#about_sec .about_content {
    padding: 110px 0px 110px 30px;
}

#about_sec .about_content p {
    color: #fff;
    font-size: 16px;
    margin-bottom: 20px;
}

#about_sec .about_content {
    margin-top: 15px;
}

#about_sec .about_content .anchor a {
    background: #003F7D;
    padding: 12px 30px;
    font-size: 16px;
    color: #fff;
    display: inline-block;
    border-radius: 5px;
    text-decoration: none;
}

#about_sec .about_content .anchor a:hover {
    background: #FF8C00;
    color: #fff;
}

.col-md-6.half_border:after {
    content: "";
    position: absolute;
    left: 0;
    width: 73%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

/*========About Section==========*/

/*========Overview Section==========*/
#overview_sec {
    background:
        linear-gradient(to bottom, #323133 70%, #fff 30%),
        url(../img/overviewbg.png) no-repeat right center;
    background-size: cover;
    background-position: center;
    padding: 110px 0px 10px;
}

#overview_sec .overview_sec_content {
    position: relative;
    z-index: 9
}

#overview_sec .overview_sec_content h3 {
    font-family: 'a Atmospheric';
    font-size: 28px;
    text-align: left;
    margin-bottom: 15px;
    color: #fff
}

#overview_sec .overview_sec_content h3 span {
    color: #FFA022;
}

#overview_sec .overview_sec_content p {
    font-size: 16px;
    margin: 0;
    color: #fff;
    font-weight: 300;
    margin-bottom: 25px;
}

#overview_sec .overview_sec_content .anchor a {
    background: #FF8C00;
    padding: 12px 30px;
    font-size: 16px;
    color: #fff;
    display: inline-block;
    border-radius: 5px;
    text-decoration: none;
}

#overview_sec .overview_sec_content .anchor a:hover {
    background: #003F7D;
    color: #fff;
}

#overview_sec .overview_sec_content img {
    position: absolute;
    right: 0;
    top: -50px;
    z-index: 1
}

#overview_sec .dont_miss_it {
    padding: 50px 50px 80px;
    margin-top: 30px;
    border-radius: 10px;
    background: url(../img/datebg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    text-align: center;
    box-shadow: 0px 5px 30px 0px rgb(38 30 0 / 10%);
}

#overview_sec .dont_miss_it:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 35, 72, 0.8);
    z-index: 1;
    border-radius: 10px;
}

#overview_sec .dont_miss_it h3 {
    font-family: 'a Atmospheric';
    font-size: 28px;
    text-align: center;
    margin-bottom: 15px;
    color: #fff;
    position: relative;
}

#overview_sec .dont_miss_it h3 span {
    color: #FFA022;
}

.countdown-container {
    z-index: 99;
    position: relative;
}

.countdown {
    display: inline-block;
}

.countdown div {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #fff;
    border-radius: 8px;
    margin: 0 10px;
    min-width: 100px;
}

.countdown div span {
    display: block;
    font-size: 14px;
    color: #FF8C00;
}

.countdown div p {
    margin: 0;
    font-size: 42px;
    font-weight: bold;
    color: #fff;
    line-height: 1
}

#message {
    font-size: 20px;
    font-weight: bold;
    color: #FFA500;
    margin-top: 20px;
}

.btnleft {
    float: left;
    position: relative;
    z-index: 99;
}

.btnright {
    float: right;
    position: relative;
    z-index: 99;
}

.btnleft a i,
.btnright a i {
    font-size: 18px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.btnleft a,
.btnright a {
    background: #FF8C00;
    padding: 12px 30px;
    font-size: 16px;
    color: #fff;
    display: inline-block;
    border-radius: 5px;
    text-decoration: none;
}

.btnleft a:hover,
.btnright a:hover,
.btnleft a:hover i,
.btnright a:hover i {
    background: #003F7D;
    color: #fff;
}

.btnleft a:hover i,
.btnright a:hover i {
    transform: scale(1.2);
}

/*========Overview Section==========*/

/*========Venue======*/
.the_venue_banner {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    width: 100%;
    height:280px; /* Adjust as per your requirement */
    overflow: hidden;
    border-radius: 10px;
    background-attachment: fixed; /* Fix the background image */
  }

  .the_venue_banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transform: translateZ(0);
    will-change: transform;
    transition: transform 0.5s ease-out;
  }

  .the_venue_banner:hover img {
    transform: scale(1.1); /* Parallax zoom effect */
  }

  .the_venue_banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1;
  }

  .the_venue_content {
    position: relative;
    z-index: 2;
    padding: 20px;
    color: #fff;
  }

  .the_venue_content h4 {
    font-family: 'a Atmospheric';
    font-size: 28px;
    text-align: left;
    margin-bottom: 15px;
    color: #fff;
  }

  .the_venue_content h4 span {
    color: #FFA022;
  }

  .the_venue_content p {
    margin: 0 0 15px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .the_venue_content.anchor a {
    background: #003F7D;
    padding: 12px 30px;
    font-size: 16px;
    color: #fff;
    display: inline-block;
    border-radius: 5px;
    text-decoration: none;
  }

  .the_venue_content .anchor a:hover {
    background: #FF8C00;
    color: #fff;
  }

/*========Speaker Section==========*/
#speaker_sec {
    background: url('../img/sp_bg.png') no-repeat left;
    background-position: 200px 100px;
    padding: 80px 0px
}

#speaker_sec .speaker_heading {}

#speaker_sec .speaker_heading p {
    margin-bottom: 10px;
}

#speaker_sec .speaker_heading h4 {
    font-family: 'a Atmospheric';
    font-size: 28px;
    margin-bottom: 15px;
    color: #323133;
    position: relative;
}

#speaker_sec .speaker_heading h4 span {
    color: #FFA022;
    display: block;
}

#speaker_sec .anchor a {
    background: #003F7D;
    padding: 12px 30px;
    font-size: 16px;
    color: #fff;
    display: inline-block;
    border-radius: 5px;
    text-decoration: none;
}

#speaker_sec .anchor a:hover {
    background: #FF8C00;
    color: #fff;
}

#speaker_sec #speaker {}

#speaker_sec #speaker .owl-nav {
    margin-top: 25px;
}

#speaker_sec #speaker .blue {
    background: #012348;
}

#speaker_sec #speaker .orange {
    background: #FFA022;
}

.speaker-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.speaker-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the image covers the container while maintaining aspect ratio */
    transition: transform 0.3s ease;
}

.speaker-card:hover img {
    transform: scale(1.1);
    /* Zoom effect on hover */
}

.content {
    padding: 20px;
    text-align: center;
}

.content h3 {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.content .company {
    font-size: 18px;
    color: #fff;
    margin: 0;
    line-height: 1;
    text-align: center;
}

.content .designation {
    font-size: 16px;
    color: #fff;
    margin: 0;
   text-align: center;
}

/*========Speaker Section==========*/

/*========Why Section==========*/
#why_sec {
    background: #323133 url(../img/why.png) no-repeat;
    padding: 110px 0px 90px;
    position: relative;
}

#why_sec .img_overlay {
    position: absolute;
    z-index: 1;
    top: 40%;
    left: 28%;
}

#why_sec .why_content h4 {
    font-family: 'a Atmospheric';
    font-size: 28px;
    margin-bottom: 5px;
    color: #fff;
    position: relative;
}

#why_sec .why_content h4 span {
    color: #FF8C00;
}

#why_sec .why_content p {
    color: #fff;
    font-size: 18px;
}

#why_sec .why_nav {}

#why_sec .anchor {
    margin-top: 25px;
}

#why_sec .anchor a {
    background: #FF8C00;
    padding: 12px 30px;
    font-size: 16px;
    color: #fff;
    display: inline-block;
    border-radius: 5px;
    text-decoration: none;
}

#why_sec .anchor a:hover {
    background: #003F7D;
    color: #fff;
}

#why_sec .why_nav ul {
    margin: 0px;
    padding: 0
}

#why_sec .why_nav ul li {
    display: block;
    list-style: none;
    padding: 10px 0px;
    border-left: 2px solid #ff8c00;
    padding-left: 15px;
    margin-bottom: 10px;
}

#why_sec .why_nav ul li a {
    color: #fff;
    font-size: 22px;
    text-decoration: none;
}

#why_sec .why_card {
    display: none;
}

#why_sec .why_card.active {
    display: block;
}

#why_sec .why_card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

#why_sec .why_card .card-img {
    width: 100%;
    height: auto;
}

#why_sec .why_card .card-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 63, 125, 0.9) 50%, rgba(0, 63, 125, 0) 100%);
    /* Gradient from #003F7D to transparent */
    color: white;
    padding: 20px;
    text-align: left;
    /* Center the text */
    z-index: 1;
    /* Ensure it's above the image */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Align content to the bottom */
}

#why_sec .why_card .card-body {
    position: relative;
    z-index: 0;
}

#why_sec .why_card .card-img-overlay .card-title {
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
    padding-bottom: 15px;
}

/*========Why Section==========*/


/*========Sponsor Section==========*/
#sponsor_sec {
    padding: 80px 0px
}

#sponsor_sec .sponsor_sec_left h5 {
    font-family: 'a Atmospheric';
    font-size: 28px;
    margin-bottom: 15px;
    color: #323133;
    position: relative;
}

#sponsor_sec .sponsor_sec_left h5 span {
    color: #FFA022;
    display: block;
}

#sponsor_sec .sponsor_content {
    background: #323133;
    padding: 30px;
    border-radius: 10px;
}

#sponsor_sec .sponsor_content h5 {
    font-family: 'a Atmospheric';
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
    position: relative;
    margin-bottom: 55px;
}

#sponsor_sec .sponsor_content h5 span {
    color: #FFA022;
}

#sponsor_sec .sponsor_content p {
    color: #fff;
    line-height: 1.3;
    margin-bottom: 55px;
}

#sponsor_sec .sponsor_content .anchor a {
    background: #003F7D;
    padding: 12px 30px;
    font-size: 16px;
    color: #fff;
    display: inline-block;
    border-radius: 5px;
    text-decoration: none;
}

#sponsor_sec .sponsor_content .anchor a:hover {
    background: #FF8C00;
    color: #fff;
}

.why_attend {
    border-radius: 5px;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.05);
    margin: 20px 0;
}

.question {
    font-size: 18px;
    font-weight: 400;
    padding: 20px 80px 20px 20px;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #323133;
    border: 1px solid #cbcbcb;
    transition: background-color 0.3s, color 0.3s;
}

.question::after {
    content: "\002B";
    font-size: 2.2rem;
    position: absolute;
    right: 20px;
    transition: transform 0.2s;
    z-index: 999;
}

.question.active {
    background-color: #003F7D;
    color: #fff;
    border: none;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1px;
}

.question.active::after {
    transform: rotate(45deg);
}

.answercont {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, background-color 0.3s;
    background-color: transparent;
}

.question.active+.answercont {
    background-color: #003F7D;
    color: #fff;
}

.answer {
    padding: 10px 20px 20px;
    line-height: 1.5rem;
    color: #fff;
}


/*========Sponsor Logo Section==========*/
#sponsor_logo_sec {
    padding: 60px 0px;
    background: #F1F2F2;
}
#sponsor_logo_sec .sponsor_logo_heading{text-align: center;}
#sponsor_logo_sec .sponsor_logo_heading p{text-align: center;}
#sponsor_logo_sec .sponsor_logo_heading h5 {
    font-family: 'a Atmospheric';
    font-size: 28px;
    margin-bottom:35px;
    color: #323133;
    position: relative;
}

#sponsor_logo_sec .sponsor_logo_heading h5 span {
    color: #FFA022;
}
.splogo p{text-align: center;text-transform: uppercase;font-size: 22px;font-weight: 500;}
/*========Sponsor Logo Section==========*/


/*========Do not miss Section==========*/
/*#do_not_miss_sec {
    padding: 80px 0px 10px;
}*/
#do_not_miss_sec {
    padding: 80px 0px 10px;
}

#do_not_miss_sec .do_not_miss_sec_heading h5 {
    font-family: 'a Atmospheric';
    font-size: 28px;
    margin-bottom: 0px;
    color: #323133;
    position: relative;
}

#do_not_miss_sec .do_not_miss_sec_heading h5 span {
    color: #FFA022;
}

/*========Do not miss Section==========*/


/*========Subscribe Section==========*/
#subscribe_sec {}

#subscribe_sec .subscribe-box {
    background: #000;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    margin: 0px 0px -80px;
    padding: 50px 30px;
    position: relative;
    z-index: 99;
}

#subscribe_sec .subscribe-left {
    flex: 1;
}

#subscribe_sec .subscribe-title {
    font-family: 'a Atmospheric';
    font-size: 28px;
    margin-bottom: 0px;
    color: #FFA022;
    position: relative;
}

#subscribe_sec .subscribe-title span {
    color: #fff;
}

#subscribe_sec .subscribe-text {
    font-size: 18px;
    color: #fff;
}

#subscribe_sec .subscribe-right {
    flex: 1;
}

#subscribe_sec .input-group {
    max-width: 100%;
}

#subscribe_sec .form-control {
    border-radius: 50px 0 0 50px;
    border: 1px solid #ced4da;
    padding: 10px 20px;
}

#subscribe_sec .btn {
    border-radius: 0 50px 50px 0;
    padding: 10px 30px;
    background-color: #003F7D;
    color: white;
    border: none;
    transition: background-color 0.3s ease;
}

#subscribe_sec .btn:hover {
    background-color: #0056b3;
}

/*========Subscribe Section==========*/

/*========footer Section==========*/
footer {
    padding: 110px 0px 0px;
    background: url(../img/footerbg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    color: white;
    /* Optional: Adjust text color for visibility */
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(50, 49, 51, 0.9);
    /* Semi-transparent gray overlay */
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 2;
    /* Ensure content is above the overlay */
}

footer .flogo img {
    max-width: 300px;
}

footer .rlogo {
    margin-top: 0px;
}
footer .rlogo img{filter: brightness(0) invert(1);transition: filter 500msease -in-out;transition: width 0.8sease;width: 170px;margin: 0px 15px;}
footer .rlogo img {
    max-width: 350px;
}

footer .footer_link {}

footer .footer_link ul {}

footer .footer_link ul li {
    display: block;
    padding: 8px 0px;
}

footer .footer_link ul li a {
    color: #fff;
    text-decoration: none;
}
footer .footer_link ul li a:hover {
    color: #FFA022;
    text-decoration: none;
}

footer .footer_link_btn {}

footer .footer_link_btn ul {}

footer .footer_link_btn ul li {
    display: block;
    padding: 12px 20px;
    border: 1px solid #fff;
    margin-bottom: 10px;
    border-radius: 5px;
}

footer .footer_link_btn ul li a {
    color: #fff;
    text-decoration: none;
}

footer .footer_link_btn ul li:hover {
    background: #FF8C00;
    color: #fff;
}

footer .footertext p {
    margin-bottom: 15px;
}

footer .contact_person {
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 5px;
    padding: 30px;
    min-height: 190px;
}

footer .contact_person h6 {
    color: #FF8C00;
    font-size: 20px;
}

footer .contact_person p {
    margin: 0px;
}

.social-linkdin{color: #fff;font-size: 20px;padding-left: 30px;}
.social-media-icons {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    align-items: center;
    margin-top: 20px;
  }

  .social-media-icons a {
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .social-media-icons a:hover {
    color: #FFA022;
  }
/*========footer Section==========*/

/*========copyright Section==========*/
#copyright {
    padding: 10px;
    background: #000;
}

#copyright p {
    color: #fff;
    margin: 0px;
}

/*========copyright Section==========*/

#backToTop {
    position: fixed;
    bottom: 20px;
    right: 5px;
    width: 50px;
    height: 50px;
    background-color: #003F7D;
    color: white;
    border: none;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 24px;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 99;
}

#backToTop.show {
    visibility: visible;
    opacity: 1;
}

#backToTop:hover {
    background-color: #0056b3;
}

#progress-bar {
      position: fixed;
      bottom: 0;
      left: 0;
      height: 4px;
      background-color: #FF8C00;
      width: 0%; /* Start with zero width */
      z-index: 1000;
    }

 /*=========Inner Pages=======*/   

 #banner {
    position: relative;
    overflow: hidden;
    height: 400px;
}

#banner img {
    width: 100%;
    height: auto;
    display: block;
}

#banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Align content to the bottom */
}

#banner .content {
    color: white;
    text-align: left;
    padding: 20px;
    margin: 0px 40px;
}

#banner .content p {
    margin: 0px 0px 10px;
    font-size:16px;
}
#banner .content h1 {
    font-family: 'a Atmospheric';
    font-size: 28px;
    text-align: left;
    margin-bottom:0px;
    color: #fff
}
#banner .content h1 span {
    color: #FFA022;
}
#banner .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

#banner .breadcrumb .breadcrumb-item a {
    color: white;
    text-decoration: none;
}

#banner .breadcrumb .breadcrumb-item.active {
    color: white;
}


/*========Sponsor Section==========*/
#inner_section{padding: 80px 0px;margin-bottom: 60px;background: linear-gradient(to bottom, black 60%, #FFA022 100%);position: relative;
}
#inner_section.notmargin{margin-bottom: 0px !important}
#inner_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 1px;
  background-color: #FFA022;
}
#inner_section .inner_content{}
#inner_section .source{font-size: 12px;text-align: right;}
#inner_section .inner_content p{font-size: 16px;margin-bottom: 20px;color: #fff;}
#inner_section .inr_img img{border-radius: 10px;box-shadow: 0px 5px 30px 0px rgb(38 30 0 / 10%);inset: 10px 20px 30px 40px;}
#inner_section .heading h2{font-family: 'a Atmospheric';font-size: 22px;text-align: left;margin-bottom:20px;color: #fff;}
#inner_section .heading h2 span {color: #FFA022;}
#inner_section .heading p{color: #fff;}

#forecast_section {padding:110px 0;margin-bottom: 60px;position: relative;background-image: url('../img/forcast.jpg');background-size: cover;background-attachment: fixed;background-position: center;background-repeat: no-repeat;color: #fff;overflow: hidden;}
#forecast_section::before {content: '';position: absolute;top: 0;left: 0;width: 100%;height: 100%;background: rgba(0, 0, 0, 0.7);z-index: 1;}
#forecast_section .container-fluid {position: relative;z-index: 2;}
#forecast_section .heading h3{font-family: 'a Atmospheric';font-size: 22px;text-align: left;margin-bottom:10px;color:#fff;}
#forecast_section .heading h3 span {color: #FFA022;}
#forecast_section .source{font-size: 12px;text-align: right;}


#inner_section .heading h3 {
    font-family: 'a Atmospheric';
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
    position: relative;
}

#inner_section .heading h3 span {
    color: #FFA022;    
}
#inner_section .why_warehouse{}
#inner_section .why_warehouse h5 {
    color: #FFA022;  
    font-family: 'a Atmospheric';
    font-size: 18px;
    margin-bottom: 10px;  
}
#inner_section .sticky-top {position: sticky;top: 20px;z-index: 10;}
#inner_section .about_waretech p{color: #fff;}
#inner_section .why_warehouse p{color: #fff;}
#inner_section .why_warehouse_img{box-shadow: 0px 5px 30px 0px rgb(38 30 0 / 10%);}
#inner_section .why_warehouse_img img{border-radius: 10px;}

#inner_section .why_attent{}
#inner_section .why_attent_img{box-shadow: 0px 5px 30px 0px rgb(38 30 0 / 10%);}
#inner_section .why_attent_img img{border-radius: 10px;}
#inner_section .why_attent ul{margin: 0;padding: 0px 10px;}
#inner_section .why_attent ul li {padding: 14px 10px;border-bottom: 1px solid transparent;text-align: justify;color: #fff;
}
#inner_section .why_attent ul li span{color:#FFA022}
#inner_section .why_attent ul li{border-bottom: 1px solid rgba(255, 255, 255, .1);transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -webkit-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s}
#inner_section .why_attent ul li:hover{background: #fff;color: #000;border-radius: 5px;}

#inner_section .who-should-attend{}
#inner_section .who-should-attend ul{margin: 0;padding: 0px 0px;}
#inner_section .who-should-attend ul li{list-style: none;padding: 10px 10px;background: #323133;
    border: 1px solid #505050;margin-bottom: 10px;border-radius: 5px;box-shadow: 0px 5px 20px 0px rgb(38 30 0 / 10%);color: #fff;transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -webkit-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s}
#inner_section .who-should-attend ul li:hover{background: #fff;color: #000;border-radius: 5px;}

#inner_section .sponsorship-opportunities{}
#inner_section .sponsorship-opportunities p{color: #fff;margin-bottom: 20px;}
#inner_section .sponsorship-opportunities .black{background: #323133;padding: 20px;border-radius: 10px;box-shadow: 0px 5px 30px 0px rgb(38 30 0 / 10%);margin-bottom: 20px;}
#inner_section .sponsorship-opportunities .black p{color: #fff;margin: 0px;}

#inner_section .sponsorship-opportunities .orange{background:#FFA022;padding: 20px;border-radius: 10px;box-shadow: 0px 5px 30px 0px rgb(38 30 0 / 10%);}
#inner_section .sponsorship-opportunities .orange p{color: #000;margin: 0px;}
#inner_section .sponsorship-opportunities .anchor a {
    background: #003F7D;
    padding: 12px 30px;
    font-size: 16px;
    color: #fff;
    display: inline-block;
    border-radius: 5px;
    text-decoration: none;
}
#inner_section .sponsorship-opportunities .anchor a:hover {
    background: #FF8C00;
    color: #fff;
}


#inner_section .heading h4{font-family: 'a Atmospheric';font-size: 20px;text-align: left;margin-bottom:0px;color: #fff;}
#inner_section .heading h4 span {color: #FFA022;}

#inner_section .heading h6{font-family: 'a Atmospheric';font-size: 20px;text-align: left;margin-bottom:0px;color: #fff;margin-top: 20px;}
#inner_section .heading h6 span {color: #FFA022;}

#inner_section .google_map{}
#inner_section .google_map iframe{border-radius: 10px;}

#inner_section .heading h5{font-family: 'a Atmospheric';font-size: 20px;text-align: left;margin-bottom:0px;color: #fff;}
#inner_section .heading h5 span {color: #FFA022;}
#inner_section .heading address{margin-top: 15px; color: #fff; }
#inner_section .heading address a{color: #fff;text-decoration: none;}
#inner_section .heading address a:hover{color: #323133;}

#inner_section .contact-card {
      background: #ffffff;
      border-radius: 10px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      width: 100%;
      text-align: center;
      padding: 40px 20px 10px;
      min-height:250px;  
    }
.linkdin{margin: 0px;}
.linkdin .fa-linkedin{color: #0A66C2!important;padding: 10px;font-size: 24px;}
#inner_section .contact-card img {
      width: 130px;
      height: 130px;
      padding: 5px;
      border-radius: 50%;
      border: 15spx solid #d1d1d1;
      box-shadow: 0px 5px 30px 0px rgb(38 30 0 / 45%);
    }

#inner_section .contact-card h3 {
      font-size:20px;
      color: #333;
      margin: 15px 0 5px;
      font-weight: 600;
    }
#inner_section .contact-card p {
      font-size: 16px;
      margin: 5px 0;
      text-align: center;
    }
#inner_section .contact-card .info {
      margin-top: 15px;
    }
#inner_section .contact-card .info i {
      color: #04264a;
      margin-right: 10px;
    }
#inner_section .contact-card .info div {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 10px;
      font-size: 14px;
    }

#call_to_action{text-align: center;margin-top: 30px;}
#call_to_action ul {
  list-style-type: none;
  padding: 0;
  margin: 0px;
}

#call_to_action ul li {
  display: inline-block;
  margin: 10px 10px 0px 0px;
}

#call_to_action ul li a {
  display: inline-block;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 5px;
  color: white;
  background-color: #003F7D; /* Default background for the first anchor */
  transition: background-color 0.3s ease, color 0.3s ease;
}

#call_to_action ul li:nth-child(2) a {
  background-color: #FFA022; /* Second anchor background */
}

#call_to_action ul li:nth-child(3) a {
  background-color: #003F7D; /* Third anchor background */
}

/* Hover effect */
#call_to_action ul li a:hover {
  background-color: #FFA022; /* Background color on hover */
  color: white;
}

#call_to_action ul li:nth-child(2) a:hover {
  background-color: #003F7D; /* Second anchor background on hover */
}

#call_to_action ul li:nth-child(3) a:hover {
  background-color: #FFA022; /* Third anchor background on hover */
}

.inner_content form{background: #fff;padding: 30px;border-radius: 5px;}
.error {
      border-color: red !important;
    }
    .form-control {
      border-radius: 3px;
      border: 1px solid #888;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    .form-label {
      font-size: 12px;
    }
    .form-label::after {
      content: " *";
      color: red;
    }
    /* Styling for CAPTCHA */
    #captchaContainer {
      margin-top: 0px;
      text-align: center;
    }
    #captchaQuestionText {
      font-weight: bold;
      margin-bottom: 10px;
    }
   #captchaAnswer-error{text-align: left;}

.inner_content form button {
    background: #FF8C00;
    padding: 12px 30px;
    font-size: 16px;
    color: #fff;
    display: inline-block;
    border-radius: 5px;
    text-decoration: none;
    border:none;
}

.inner_content form button:hover {
    background: #003F7D;
    color: #fff;
}

#inner_section .inner_content p#captchaQuestion {
    font-size: 24px;
    margin-bottom: 5px;
    color: #000;
}
#inner_section .inner_content p#captchaQuestionText{
    font-size: 16px;
    margin-bottom: 5px;
    color: #000;
}