@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Slab:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    /* Font families */
    --heading-font: 'Roboto Slab', serif;
    --para-font: 'Roboto', sans-serif;

    /* Responsive font sizes using clamp(minimum, preferred, maximum) */
    --fs-h1: clamp(3rem, 5vw + 1rem, 3.6rem);
    --fs-h2: clamp(2rem, 4vw + 1rem, 3.5rem);
    --fs-h3: clamp(1.75rem, 3vw + 1rem, 3rem);
    --fs-h4: clamp(1.5rem, 2.5vw + 1rem, 2.5rem);
    --fs-h5: clamp(1.25rem, 2vw + 1rem, 2rem);
    --fs-h6: clamp(1.1rem, 1.5vw + 1rem, 1.5rem);
    --fs-body: clamp(1rem, 1vw + 0.75rem, 1.25rem);
    --fs-small: clamp(0.875rem, 0.75vw + 0.75rem, 1rem);
    --fs-mini: clamp(0.875rem, 0.75vw + 0.75rem, 1rem);
    --fs-super-mini: clamp(0.775rem, 0.65vw + 0.65rem, 0.8rem);

    /* Color Palette */
    /* Primary colors for main actions and emphasis */
    --wc-red: #a00;
    /* Primary buttons, links, CTAs */
    --wc-orange: #ffba00;
    /* Hover effects, icons, secondary buttons */

    /* Text colors */
    --wc-primary-text: #ffffff;
    /* Text on dark backgrounds */
    --wc-secondary-text: #515151;
    /* Body text, headings in light sections */
    --wc-subtext: #767676;
    /* Captions, tooltips, secondary info */
    --wc-heading-text: #111;

    /* Background colors */
    --wc-secondary: #e9e6ed;
    /* Cards, sections, contrast areas */
    --wc-content-bg: #ffffff;
    /* Main content background */

    /* Highlight colors */
    --wc-highlight: #b3af54;
    /* Badges, highlights, important icons */
    --wc-highlight-text: #ffffff;
    /* Text over highlighted areas */

    --wc-anchor-text: var(--wc-subtext);
    --wc-lightest-shade: #edbaba4a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-padding-top: 80px;
    /* Adjust based on your header height */
}


h1 {
    font-size: var(--fs-h1);
    font-family: var(--heading-font);
    color: var(--wc-heading-text);
}

h2 {
    font-size: var(--fs-h2);
    font-family: var(--heading-font);
    color: var(--wc-secondary-text);
}

h3 {
    font-size: var(--fs-h3);
    font-family: var(--heading-font);
    color: var(--wc-secondary-text);
}

h4 {
    font-size: var(--fs-h4);
    font-family: var(--heading-font);
    color: var(--wc-secondary-text);
}

h5 {
    font-size: var(--fs-h5);
    font-family: var(--heading-font);
    color: var(--wc-secondary-text);
}

h6 {
    font-size: var(--fs-h6);
    font-family: var(--heading-font);
    color: var(--wc-secondary-text);
}

p {
    font-size: var(--fs-small);
    font-family: var(--para-font);
    color: var(--wc-subtext);
    line-height: 1.6;
    white-space: wrap;
}
ul li{
    font-family: var(--para-font);
    font-size: var(--fs-small);
    color: var(--wc-subtext);
    line-height: 1.6;
}
/* Anchor Tag Styles */
a {
    text-decoration: none;
    color: var(--wc-anchor-text);
    font-family: var(--para-font);
    transition: color 0.3s ease;
}

::-webkit-scrollbar {
    width: 12px;  /* Adjust the width of the scrollbar */
    height: 12px; /* Adjust the height of horizontal scrollbar */
}

/* Customize the scrollbar track (background) */
::-webkit-scrollbar-track {
    background-color: #f1f1f1; /* Light gray track, change as needed */
}

/* Customize the scrollbar thumb (the draggable part) */
::-webkit-scrollbar-thumb {
    background-color: var(--wc-red); /* Set thumb color to red */
    border-radius: 6px;  /* Rounded edges for the thumb */
    border: 3px solid #f1f1f1;  /* Optional: add border around thumb */
}

/* Optional: Customize thumb hover effect */
::-webkit-scrollbar-thumb:hover {
    background-color: darkred; /* Darker red on hover */
}

/* Customize scrollbar corner (optional, for both vertical & horizontal scrollbars) */
::-webkit-scrollbar-corner {
    background-color: #f1f1f1; /* Change corner background if desired */
}
/* Large anchor - for main navigation or important links */
a.link-large {
    font-size: var(--fs-h6);
    font-weight: 500;
}

/* Medium anchor - for secondary navigation */
a.link-medium {
    font-size: var(--fs-body);
    font-weight: 400;
}

/* Small anchor - for footer links or auxiliary navigation */
a.link-small {
    font-family: var(--heading-font);
    font-size: var(--fs-mini);
    font-weight: 400;
}

/* Hover states */
a:hover {
    color: var(--wc-red);
}

/* Active state */
a.active {
    color: var(--wc-red);
    font-weight: 600;
}

/* Disabled state */
a.disabled {
    color: var(--wc-subtext);
    pointer-events: none;
    opacity: 0.6;
}

#main-section {
    margin-top: 90px;
    /* Height of navbar (70px) + its padding (32px) */
}

.mobile-navbar-container {
    transform: translateY(-100%);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px auto;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 3rem;
}

.navbar-container .logo img {
    height: 70px;
}

.navbar-content {
    display: flex;
    align-items: center
}

.navbar-end-icons {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.navbar-end-icons a {
    padding: 0.1rem;
    border: 2px solid #d1d0d06b;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-container .right-content .humburger {
    display: none;
}

.navbar-end-icons a:hover {
    background-color: var(--wc-red);
    color: #fff;
}

.navbar-content .navbar-end-icons a:hover::after,
.navbar-content .navbar-end-icons a.active::after {
    width: 00%;
    left: 0;
}

/* Navigation specific links */
.navbar-content a {
    font-size: var(--fs-mini);
    font-weight: 500;
    padding: 0.5rem 0.6rem;
    margin: 0 0.2rem;
    position: relative;
}

.readmore-for-trending:hover {
    transition: all 0.3s ease;
    transform: translateY(14px);
    background-color: var(--wc-red);
    color: #fff !important;
}


.time {
    color: var(--wc-red) !important;
}

/* Underline effect for navigation links */
.navbar-content a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--wc-red);
    transition: all 0.3s ease;
}

.navbar-content a:hover::after,
.navbar-content a.active::after {
    width: 100%;
    left: 0;
}

section.hero {
    width: 100%;
    min-height: 70vh;
    background-color: var(--wc-light);
}

.hero .container-fluid {
    padding: 0;
}

.row.hero-container {
    margin: 0;
    min-height: 70vh;
    height: inherit;
    width: 100%;
    padding: 0 4rem;
}
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.lightbox .next {
    right: 20px;
}
.lightbox .prev, .lightbox .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    color: white;
    border: none;
    padding: 10px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 5px;
}
.lightbox .prev, .lightbox .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    color: white;
    border: none;
    padding: 10px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 5px;
}
.lightbox .prev {
    left: 20px;
}
.lightbox .close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

.lightbox iframe{
    max-height: 90vh;
    max-width: 90vw;
    min-width: 700px;
    min-height: 400px;
}

.left-image-with-content {
    background-image: url(../images/Banner-min.png);
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 70vh;
    max-height: 100%;
    padding: 0 !important;
}

.left-image-with-content .content-for-image {
    position: absolute;
    bottom: 40px;
    /* color: var(--wc-highlight-text); */
    /* font-size: var(--fs-h1); */
    font-weight: 700;
    width: 70%;
    left: 60px;
}
.left-image-with-content .content-for-image h1{
    color: var(--wc-highlight-text);
    font-size: var(--fs-h1);
}
.left-image-with-content .content-for-image button{
    color: var(--wc-highlight-text);
    font-size: var(--fs-body);   
    background-color: rgb(248, 0, 0);    
    border: 1px solid var(--wc-highlight-text);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    cursor: pointer;
}
.right-content.col-md-4 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 70vh;
    max-height: 100%;
    padding: 2rem;
}

.hero-content h1 {
    font-size: var(--fs-h1);
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: var(--fs-body);
    margin-bottom: 2rem;
    color: var(--wc-gray);
}

.row.hero-container .right-content {
    height: 100%;
    background-color: var(--wc-lightest-shade);
}

.content-of-main h4 {
    color: var(--wc-heading-text);
    font-size: var(--fs-h5);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.content-of-main .line {
    position: relative;
    width: 100%;
    background-color: #0000001c;
    height: 4px;
}

.content-of-main .line span {
    position: absolute;
    width: 10%;
    height: 100%;
    background-color: var(--wc-red);
}

.content-of-main p {
    font-size: var(--fs-small);
    color: var(--wc-subtext);
}

.content-of-right-insider {
    margin: 0 auto;
}

.read-more {
    margin-bottom: 2rem;
}

.read-more a {
    color: var(--wc-red);
    font-weight: 500;
    font-size: var(--fs-body);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.read-more a .text {
    display: inline-block;
    transition: transform 0.3s ease;
}

.read-more a .icon-container {
    position: relative;
    width: 20px;
    height: 20px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
}

.read-more a .icon-container i {
    position: absolute;
    left: 0;
    transition: transform 0.3s ease;
}

.read-more a .icon-container .static-icon {
    transform: translateX(0);
}

.read-more a .icon-container .hover-icon {
    transform: translateX(-100%);
    color: transparent;
}

.read-more a:hover .text {
    transform: translateX(-4px);
}

.read-more a:hover .icon-container .static-icon {
    transform: translateX(100%);
}

.read-more a:hover .icon-container .hover-icon {
    transform: translateX(0);
    transition: all ease-in-out 0.3s;
    color: var(--wc-red);
}

.first-col-hero,
.second-col-hero {
    min-height: 19vh;
    max-height: 20vh;
    padding: 0px !important;
}

.time-content {
    padding: 0 4rem;
    display: flex;
    align-items: center;
    /* justify-content: center */
    width: 100%;
    height: 100%;
    background: rgb(138, 7, 7);
    background: linear-gradient(90deg, rgba(138, 7, 7, 1) 0%, rgba(147, 7, 7, 1) 2%, rgba(190, 10, 10, 1) 30%, rgba(200, 3, 3, 1) 62%, rgba(213, 15, 15, 1) 100%);
}

.search-content {
    /* padding: 0px !important; */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 0 4rem;
    /* padding: 3rem; */
    background-color: #1B1B1B;
}

.search-content .para-content{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    color: white;
}
.search-content .heading .content p{
    color: var(--wc-highlight-text);
    font-size: var(--fs-body);
}
.search-content .heading h3,
.search-content .heading h4 {
    /* padding: ; */
    margin-bottom: 0px;
    /* padding: 0rem 3rem; */
    color: var(--wc-primary-text);
    /* font-size: var(--fs-h5); */
}
.search-content .heading h4{
    font-size: var(--fs-h5);
}
.search-content .heading h3{
    font-size: var(--fs-h4);
}

.countdown-container {
    /* text-align: center; */
    color: white;
}

.countdown-container h2 {
    color: white;
    font-size: var(--fs-h6);
    /* margin-bottom: 1rem; */
    margin-bottom: 0px;
}

.countdown {
    display: flex;
    gap: 1rem;
    /* justify-content: center; */
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-block span {
    display: block;
}

.time-block span:first-child {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: -10px;
}

.time-block .label {
    font-size: var(--fs-body);
    text-transform: uppercase;
    opacity: 0.8;
}

.m-div{
    display: none !important;
}


/* .search-content .search-box {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
    position: relative;
    height: 40px;
}

.search-content .search-box input {
    background-color: transparent;
    width: 100%;
    height: 100%;
    border: none;
    border-bottom: 1px solid #ffffff9d;
    padding-right: 40px;
    color: #fff;
    font-size: var(--fs-body);
}

.search-content .search-box input::placeholder {
    color: rgba(255, 255, 255, 0.397);
}

.search-content .search-box input:focus {
    outline: none;
}

.search-content .search-box button {
    position: absolute;
    right: 0;
    top: 0%;
    background: transparent;
    border: none;
    color: #ffffff7e;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-content .search-box button:hover {
    color: rgba(255, 255, 255, 0.8);
}

.search-content .search-box button i {
    font-size: 1.2rem;
} */

.row.trending-section {
    height: 100%;
    width: 100%;
    padding: 3rem;
}

.main-trending-section {
    display: block;
    align-items: center;
    height: 100%;
    padding: 4rem;
}

.main-trending-section .heading {
    display: flex;
    align-items: center;
}

.main-trending-section .heading-of-trending {
    width: 100%;
    margin-bottom: 2rem;
}

.main-trending-section .contents {
    width: 100%;
    display: block;
}

.main-trending-section .card {
    width: 100%;
    margin-top: 1rem;
}

.trending-content {
    height: 100%;
}

.content-of-main.heading-of-trending {
    width: 100%;
}

.content-of-main.heading-of-trending h4 {
    font-size: var(--fs-h5);
    color: var(--wc-heading-text);
}

.title-container {
    border-left: 2px solid var(--wc-red);
    padding: 0rem 1rem;
}

.content-contaiener {
    border-left: 2px solid transparent;
    padding: 0rem 1rem;
}

.card {
    /* margin: 20px; */
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    transition: 0.3s;
    margin-bottom: 1rem;
}

.card .row {
    margin: 0;
    width: 100%;
    /* max-height: 370px; */
    overflow: hidden;
}



.card .row>[class*='col-'] {
    padding: 0;
}

.card-body {
    padding: 2rem 1rem !important;
}

.card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-title {
    font-size: 1.5em;
    margin-bottom: 15px;
}

.card-text {
    font-size: 1em;
    color: #555;
}

.card .row img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.first-card-body {
    background-color: var(--wc-lightest-shade);
}
.row.trending-section .case-studies-section{
    
    padding: 4rem;
}
.fellowship-program{
    border-radius: 10px;
    background-color: #1B1B1B;   
    color: var(--wc-highlight-text);
    margin-bottom: 2rem;
}
.fellowship-program .contents{
    display: flex;
    /* align-items: center; */
    justify-content: center;
    flex-direction: column;
    padding: 1rem;
    overflow: hidden;
}
.fellowship-program .contents h4{
    font-size: var(--fs-h6);
    color: var(--wc-highlight-text);
    margin-bottom: 1rem;
}
.card-title a{
    color: var(--wc-heading-text);
    font-family: var(--heading-font);
    cursor: pointer;
}
.card-title a:hover{
    color: var(--wc-red);
}
.fellowship-program .contents img{
    min-height: 150px;
    max-height: 250px;
    width: auto;
}
.case-studies .heading-of-trending {
    margin-bottom: 2rem;
}

.case-studies .contents .borderless-cards .cards {
    border: none;
    margin-top: 1rem;
}

.case-studies .contents .borderless-cards .cards a {
    font-size: var(--fs-body);
    font-weight: 500;
    color: var(--wc-heading-text);
    font-family: var(--heading-font);
}

.case-studies .contents .borderless-cards .cards p {
    font-size: var(--fs-mini);
}

.case-studies .contents .borderless-cards .cards .hightlight-text {
    display: flex;
    gap: 5px;
    font-size: var(--fs-super-mini);
    color: var(--wc-red);
}

.case-studies .contents .borderless-cards .cards .hightlight-text p {
    color: var(--wc-red);
    font-size: var(--fs-super-mini);
}

.venue {
    padding: 3rem;
}

.venue .container {
    padding: 0px;
    margin: 0px;
    height: 100%;
    min-width: 100%;
}
.play-icon svg{
    height: 50px;
    width: 50px
}
.venue .col-md-3 h4 {
    color: var(--wc-red);
    margin: 0px;
}

.venue .col-md-3 h1 {
    margin: 0px;
    margin-bottom: 2.5rem;
}

.venue .col-md-3 p {
    width: 60%;
    margin: 0px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: -2px;
}

.venue .col-md-3 p a {
    color: var(--wc-heading-text);
    font-weight: 600;
}

.second-para span {
    visibility: hidden;
}

.venue .col-md-3 .list-format {
    margin-bottom: 1rem;
}

.venue .col-md-3 .list-format p span {
    background-color: var(--wc-red);
    display: inline-block;
    height: 7px;
    width: 7px;
    border-radius: 50%;
}

.direction-btn {
    background-color: var(--wc-red);
    color: var(--wc-highlight-text);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: var(--fs-mini);
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease
}

.col-md-5 .map {
    width: 100%;
    object-fit: cover;
    height: 100%;
    object-position: center;
    border: 10px solid var(--wc-lightest-shade);
}

.col-md-5 .map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

p.second-para {
    font-size: var(--fs-mini);
}

.gallery {
    background-color: var(--wc-lightest-shade);
}

.gallery .heading-content-of-gallery {
    padding: 4rem;
    width: 100%;
}

.gallery .gallery-image {
    padding: 0px !important;
}

.row {
    --bs-gutter-x: 0 !important;
}

.gallery .img-container .gallery-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    overflow: hidden;
}

.event-schedule {
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.heading-of-event-schedule {
    margin-bottom: 3rem;
}

@media (max-width: 1200px) {
    .navbar-container .right-content .navbar-end-icons {
        display: none;
    }
}

.schedule-container {
    width: 70%;
    /* margin: auto; */
}

.tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    /* gap: 10px; */
}

.tab {
    padding: 15px 20px;
    /* background: #007bff; */
    color: var(--wc-red);
    font-size: var(--fs-h6);
    cursor: pointer !important;
    border: none;
    background-color: transparent;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.tab.active {
    background: var(--wc-red);
    color: var(--wc-highlight-text);
}

.tab.active h6 {
    color: var(--wc-highlight-text);
}

.hidden {
    display: none;
}

.event {
    border: 1px solid #ddd;
    /* margin: 10px 0; */
    padding: 1rem 2rem;
}

.event-header {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    padding: 10px;
}

.event-details {
    display: none;
    padding: 10px;
    background: #f1f1f1;
}

.col-md-7 p {
    font-size: var(--fs-mini);
}

.col-md-7 h4.title,
.col-md-4.time,
.toggle {
    font-size: var(--fs-h5);
    color: var(--wc-heading-text);
}

.col-md-7 h4.title {
    font-size: var(--fs-h6);
}

.toggle {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.toggle h4 {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    border-radius: 50%;
    margin: 0;
    transition: all 0.3s ease;
}

.toggle:hover h4 {
    background-color: #e0e0e0;
}

.toggle-active h4 {
    background-color: var(--wc-red);
    color: var(--wc-highlight-text);
    height: 30px;
    width: 30px;
    font-size: var(--fs-h6);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.toggle h4 {
    /* background-color: var(--wc-red); */
    color: var(--wc-heading-text);
    height: 30px;
    width: 30px;
    font-size: var(--fs-h5);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.event p {
    transition: all 0.3s ease;
}

.theme-close-button {
    position: absolute;
    z-index: 2;
    top: 25%;
    left: 25%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    -webkit-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}

.theme-close-button:hover {
    transform: rotate(90deg);
}

.close-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--wc-heading-text);
    top: 50%;
    left: 0;
}

.close-line-1 {
    transform: rotate(45deg);
}

.close-line-2 {
    transform: rotate(-45deg);
}

.theme-close-button.active {
    transform: rotate(180deg);
}

.speakers {
    padding: 4rem 3rem;
    margin: 0 auto;
    padding-bottom: 0px;
}

.speaker-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    background-color: var(--wc-lightest-shade);
}

.speaker-container .row .col-md-4 {
    padding: 2rem;

}

a.highlight-link {
    color: var(--wc-red);
    text-decoration: underline;
}

.speaker-container .row .col-md-4 h4 {

    font-size: var(--fs-h5);
    color: var(--wc-heading-text);
}

.speaker-container .row .col-md-4 img {
    width: 100%;
    height: auto;
    max-width: 250px
}

.speakers-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.speakers-content a {
    margin-bottom: 3rem;
}

.speaker-container .row .col-md-8 {
    padding: 2rem;
}

.col-md-8 .row .col-md-4 {
    padding: 1rem !important;
    position: relative;
    min-height: 370px;
    /* width: auto; */
}

.col-md-8 .row .col-md-4 img {
    height: 100%;
    border-radius: 10px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.col-md-8 .row .col-md-4 .img-content {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    height: 50%;
    display: flex;
    padding: 1rem;
    background: linear-gradient(0deg, rgba(121, 0, 0, 0.7) 0%, rgba(255, 100, 100, 0.3) 60%, rgba(255, 100, 100, 0) 100%);
    border-radius: 0 0 10px 10px;
    color: white;
    align-items: center;
    flex-direction: column;
    justify-content: flex-end;
}

.mobile-navbar-container {
    display: none;
    animation: none;
}

.mobile-navbar-container.show {
    display: flex;
    animation: slideDown 0.9s ease-in-out forwards;
}

.mobile-navbar-container.hide {
    animation: slideUp 0.9s ease-in-out forwards;
}

.col-md-8 .row .col-md-4 .img-content h4,
.col-md-8 .row .col-md-4 .img-content p {
    color: white;
    margin: 0;
    text-align: center;
}

.col-md-8 .row .col-md-4 .img-content h4 {
    font-size: var(--fs-h5);
}

.col-md-8 .row .col-md-4 .img-content p {
    font-size: var(--fs-mini);
}

.gallery-image img:hover {
    transform: scale(1.1);
    transition: all 0.3s ease;
}

/* Fullscreen Modal */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.lightbox .prev,
.lightbox .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    color: white;
    border: none;
    padding: 10px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 5px;
}

.lightbox .prev {
    left: 20px;
}

.lightbox .next {
    right: 20px;
}

.text-shadow{
    text-shadow: 2px 3px 3px black;
}

.lightbox .close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}
section.footer{
    margin-top: 2rem;
    background-color: var(--wc-lightest-shade);
    margin-bottom: 0rem;
    overflow: hidden;
}
section.footer .container{
    margin-bottom: 0px;
}
section.footer .container{
    display: flex;
    padding: 4rem 0rem;
    margin: 0 auto;
    gap: 2rem;
    margin: 0px;
    margin: 0rem 4rem;
    width: 100vw;
    max-width: 100%;
}
section.footer .container .col-md-3 {
    /* width: 50%; */
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}
section.footer .container .col-md-3 img{
    width: 300px;
}
ul{
    list-style: none;
    margin: 0px;
    padding: 0px;
}

@media (min-width:1600px) and (max-width:2200px) {
    .card .row img{
        height: 100%;
        max-height: 370px;
        width: 100%;
        object-fit: cover;
        object-position: center;
    }
}
@media (max-width:1500px) {
    .clearance2 {
        padding: 0 !important;
        display: none;
    }

    .col-md-3.case-studies-section {
        min-width: 30%;
    }

    .col-md-8 .row .col-md-4 {
        padding: 1rem !important;
        position: relative;
        min-height: 270px;
        /* width: auto; */
    }

    /* .venue .container .clearance1{
        display: none;
    } */
    .venue .container .clearance3 {
        display: none;
    }

    .venue .container .col-md-3 {
        min-width: 30%;
    }

    .venue .container .col-md-5 {
        min-width: 50%;
    }

    .venue .col-md-3 h1 {
        margin: 0px;
        margin-bottom: 2.5rem;
        font-size: var(--fs-h3);
    }

    .venue .col-md-3 h4 {
        font-size: var(--fs-h5);
        color: var(--wc-red);
        margin: 0px;
    }

    .schedule-container {
        width: 80%;
    }
}

@media (max-width:1300px) {
    .hero-container {
        padding: 0px !important;
        min-height: 60vh;
    }

    .left-image-with-content h1 {
        width: 55%;
        font-size: var(--fs-h3);
    }

    .trending-section {
        padding: 0px !important;
    }

    .speaker-container .speakers-content img {
        width: 100%;
        height: auto;
        max-width: 190px !important;
    }

    .event-schedule,
    .venue {
        padding: 3rem 0rem !important;
    }

    .venue .container .col-md-3 {
        min-width: 35%;
    }
}

@media (max-width:1200px) {
    .hero-container {
        padding: 0px !important;
    }

    .left-image-with-content h1 {
        width: 55%;
        font-size: var(--fs-h3);
    }

    .content-of-main h4 {
        font-size: var(--fs-h6) !important;
    }

    .speakers {
        padding: 4rem 1rem;
        padding-bottom: 0px;
    }

    .speaker-container .speakers-content img {
        width: 100%;
        height: auto;
        /* max-width: 198px !important; */
    }

    .schedule-container {
        width: 90%;
    }

    /* .col-md-7 h4.title, .col-md-4.time, .toggle {
        font-size: var(--fs-h6);
    } */
}

@media (max-width:1150px) {
    .left-image-with-content {
        min-height: 60vh;
        width: 100%;
    }

    .left-image-with-content h1 {
        width: 50%;
        font-size: var(--fs-h2);
    }

    .hero-container .right-content {
        width: 100%;
        max-height: 400px;
        min-height: 300px;
    }

    .hero-container .right-content .content-of-right-insider {
        /* width: 100%; */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .right-content .content-of-main h4 {
        font-size: var(--fs-h6) !important;
    }

    .hero-container .right-content .content-of-main {
        padding: 2rem;
    }

    .trending-section .clearance1 {
        display: none;
    }

    .trending-section .main-trending-section {
        width: 70%;
    }

    .trending-section .case-studies-section {
        padding: 4rem 2rem !important;
    }

    .speakers {
        padding: 4rem 0rem;
        padding-bottom: 0px;
    }

    .speaker-container .speakers-content img {
        width: 100%;
        height: auto;
        max-width: 178px !important;
    }
}

@media (max-width:1100px) {
    .venue .col-md-3 h1 {
        margin: 0px;
        margin-bottom: 2.5rem;
        font-size: var(--fs-h4);
    }

    .right-content .content-of-main h4 {
        font-size: var(--fs-body) !important;
    }

    .right-content .content-of-main p {
        font-size: var(--fs-super-mini) !important;
    }

    .read-more a {
        font-size: var(--fs-small);
        margin-bottom: 0rem;
    }

    .read-more {
        margin-bottom: 0rem;
    }

    .hero-container .right-content {
        width: 100%;
        max-height: 230px;
        min-height: 200px;
    }
    .left-image-with-content .content-for-image{
        width: 90%;
    }
    .left-image-with-content .content-for-image h1{
        font-size: var(--fs-h1);
        width: 100%;
    }
    .left-image-with-content .content-for-image button {
        color: var(--wc-highlight-text);
        font-size: var(--fs-body);
        background-color: rgb(248, 0, 0);
        border: 1px solid var(--wc-highlight-text);
        padding: 0.5rem 0.9rem;
        border-radius: 30px;
        cursor: pointer;
    }
}
.video-thumbnail {
    position: relative;
    cursor: pointer;
    display: inline-block;
}

.video-thumbnail img {
    width: 100%;
    display: block;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    /* color: white; White triangle */
    /* background: red; YouTube red */
    padding: 15px 20px;
    border-radius: 50%;
    /* box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3); */
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
}


@media (max-width:950px) {
    .hero-container .right-content {
        width: 100%;
        max-height: 100%;
        min-height: 100%;

    }

    .hero-container .right-content .content-of-right-insider {
        width: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        max-height: 100%;
        min-height: 100%;
    }

    .hero-container .right-content .content-of-main {
        width: 100%;
        padding: 1rem;
    }

    .right-content .content-of-main p {
        font-size: var(--fs-mini) !important;
    }

    .second-col-hero {
        width: 100%;
        min-height: 19vh;
        max-height: 20vh;
        padding: 0px !important;
    }

    .first-col-hero,
    .second-col-hero {
        width: 100%;
    }

    .time-content {
        justify-content: center;
    }

    .trending-section .main-trending-section {
        width: 100%;
    }

    .trending-section .case-studies-section {
        /* width: 60%; */
        padding: 0rem 4rem;
        padding: 4rem;
        flex-direction: row;
        display: flex;
        justify-content: space-between;
        width: 100%;
        gap: 4rem;
    }

    .gallery .gallery-image {
        padding: 0px !important;
    }

    .gallery {
        margin: 4rem 0rem;
    }

    .content-of-main h2 {
        font-size: var(--fs-h3);
    }

    .col-md-7 h4.title,
    .col-md-4.time,
    .toggle {
        font-size: var(--fs-h6);
    }

    .toggle h4 {
        font-size: var(--fs-h6);
    }

    .speaker-container .row .col-md-8 {
        padding: 3rem 0rem;
    }

    .second-col-hero,
    .first-col-hero {
        min-height: 14vh;
    }

    .time-block span:first-child {
        font-size: var(--fs-h6);
        margin-bottom: -8px;
    }

    .countdown-container h2 {
        color: white;
        font-size: var(--fs-h6);
        margin-bottom: 0.4rem;
    }

    .time-block .label {
        font-size: var(--fs-body);
        text-transform: uppercase;
        opacity: 0.8;
    }

    .speaker-container .row .col-md-4 h4 {
        font-size: var(--fs-h6);
        color: var(--wc-heading-text);
    }

    p {
        font-size: var(--fs-mini);
    }

    .venue .col-md-3 h1 {
        margin: 0px;
        margin-bottom: 1.5rem;
        font-size: var(--fs-h5);
    }

    .venue .col-md-3 h4 {
        font-size: var(--fs-h6);
    }

    .col-md-7 p {
        font-size: var(--fs-super-mini);
    }

    .gallery .gallery-image {
        max-width: 35px;
    }
}

@media (max-width:900px) {
    .left-image-with-content .content-for-image{
        left: 15px;
        width: 90%;
        bottom: 25px;
    }
    .left-image-with-content .content-for-image h1{
        font-size: var(--fs-h2);
        width: 100%;
    }
    .left-image-with-content .content-for-image button {
        color: var(--wc-highlight-text);
        font-size: var(--fs-mini);
        background-color: rgb(248, 0, 0);
        border: 1px solid var(--wc-highlight-text);
        padding: 0.3rem 0.7rem;
        border-radius: 30px;
        cursor: pointer;
    }
    .navbar-container .right-content .humburger {
        display: block;
    }

    .navbar-container .right-content .humburger i {
        font-size: var(--fs-h5);
        font-weight: 900;
        color: var(--wc-anchor-text);
    }

    .navbar-content {
        display: none;
    }

    .mobile-navbar-container {
        display: flex;
        align-items: center;
        margin: 0px auto;
        background-color: #ffffff;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        height: 100vh;
        overflow: hidden;
        justify-content: center;
    }

    .mobile-navbar-container .container-fluid {
        position: relative;
        display: flex;
        height: 100vh;
    }

    .right-corner {
        position: absolute;
        top: 0;
        right: 0;
        z-index: 1;
        height: 50px;
        width: 50px;
        font-size: var(--fs-h2);
        color: var(--wc-highlight-text);
    }

    .upper-content {
        width: 100%;
        display: flex;
        height: 150px;
        align-items: center;
        justify-content: center;
    }

    .upper-content .left {
        width: 100%;
        display: flex;
        max-height: 150px;
    }

    .upper-content img {
        max-height: 100%;
        object-fit: cover;
        object-position: center;
        max-width: 70%;
    }

    .center-content {
        text-align: center;
        height: 100%;
        width: 100%;
        padding: 2rem 0rem;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .navbar-mobile-content {
        display: flex;
        justify-content: flex-start;
        margin-left: 70px;
        flex-direction: row;
        height: 80%;
        width: 100%;
    }

    .navbar-content-mobile {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        height: 100%;
        width: 100%;
        gap: 2rem;
        padding: 3rem 0rem;
    }

    .navbar-content-mobile a.link-small {
        font-family: var(--heading-font);
        font-size: var(--fs-h6);
        font-weight: 400;
    }

    .navbar-content a {
        font-size: var(--fs-h6);
        font-weight: 500;
        padding: 0.5rem 0.6rem
    }

    .mobile-navbar-container {
        display: flex;
        animation: slideDown 0.5s ease-out forwards;
    }

    .theme-close-button {
        position: absolute;
        z-index: 2;
        top: 25%;
        left: 25%;
        width: 30px;
        height: 30px;
        cursor: pointer;
        -webkit-transition: transform 0.3s ease;
        transition: transform 0.3s ease;
    }

    .theme-close-button:hover {
        transform: rotate(90deg);
    }

    .close-line {
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: var(--wc-heading-text);
        top: 50%;
        left: 0;
    }

    .close-line-1 {
        transform: rotate(45deg);
    }

    .close-line-2 {
        transform: rotate(-45deg);
    }

    .theme-close-button.active {
        transform: rotate(180deg);
    }

    .mobile-navbar-container {
        display: none;
    }

    .navbar-end-icons {
        width: 85%;
        justify-content: center;
        gap: 2rem;
    }

}

@media (max-width:800px) {
    .left-image-with-content .content-for-image{
        left: 15px;
        width: 90%;
        bottom: 25px;
    }
    .left-image-with-content .content-for-image h1{
        font-size: var(--fs-h3);
        width: 100%;
    }
    .left-image-with-content .content-for-image button {
        color: var(--wc-highlight-text);
        font-size: var(--fs-mini);
        background-color: rgb(248, 0, 0);
        border: 1px solid var(--wc-highlight-text);
        padding: 0.3rem 0.7rem;
        border-radius: 30px;
        cursor: pointer;
    }
    .viewmore-section .row .col-md-3 {
        /* width: 100%; */
        width: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .viewmore-section .row {
        width: 100%;
    }

    .viewmore-section .row .col-md-4 {
        width: 25%;
    }

    .speakers .speaker-container .row .speakers-content {
        flex-direction: row;
    }

    .speaker-container .row .col-md-8 .row {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
    }

    .col-md-8 .row .col-md-4 {
        width: auto;
    }

    .speaker-container .row {
        display: flex;
        flex-direction: column;
    }

    .speaker-container .row .col-md-8 {
        display: flex;
    }

    .venue {
        padding: 3rem !important;
    }

    .venue .container .row {
        gap: 2rem;
    }

    .speakers {
        padding-bottom: 0px;
    }

    .left-image-with-content {
        min-height: 40vh;
        width: 100%;
    }

    .left-image-with-content h1 {
        max-width: 100%;
        font-size: var(--fs-h2);
        min-width: 60%;
    }

    .speakers-content .cotnent {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .speakers-content a {
        margin-bottom: 0px;
    }

    .speaker-container .row .col-md-4 {
        padding: 2rem 1rem;
    }

    .speaker-container .row .col-md-4 h4 {
        margin-bottom: 20px;
    }
    section.footer .container{
        flex-direction: column;
        align-items: center;
    }
    section.footer .container .col-md-3 img{
        margin-left: -15px;
    }
    section.footer .container .col-md-3{
        width: 100%;
        margin: 0 auto;
    }
    section.footer .container{
        display: flex; 
        padding: 4rem 0rem;
        gap: 2rem;  
       
    }
    section.footer .container .col-md-3 {
        width: 50%;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
    }
    section.footer .container .col-md-3 img{
        width: 300px;
    }
    #main-section {
        margin-top: 70px;
    }
    
    /* .speaker-container .row .col-md-8 .row .col-md-4{
    max-width: 33.33%;
} */

}

@media (max-width:700px) {
    .trending-section .case-studies-section {
        width: 100%;
        padding: 0rem 4rem;
    }
    section.gallery .img-container{
        flex-direction: column;
        padding: 0rem 1rem !important;
    }
    .img-container .align-items-center{
        flex-direction: column;
        gap: 1rem;
    }
    .img-container .align-items-center .gallery-image {
        min-width: 250px !important;
        max-width: 350px !important;
    }
    .speaker-container .row .col-md-4 {
        padding: 2rem 2rem;
    }
    section{
        overflow: hidden;
    }
    section.gallery .img-container {
        display: flex;
    }
    .play-icon svg{
        height: 20px;
        width: 20px
    }
    .search-content {
        padding: 0 1.5rem;
    }
    .navbar-container .logo img {
        height: 50px;
    }
    .lightbox iframe {
        max-height: 90vh !important;
        max-width: 70vw !important;
        min-width: 500px !important;
        min-height: 300px !important;
    }
}

@media (max-width:800px) {
    .trending-section .case-studies-section {
        width: 100%;
        padding: 0rem 4rem;
    }

    .speaker-container .row .col-md-4 {
        padding: 2rem 2rem;
    }
    .lightbox img {
        max-width: 80%;
        max-height: 90%;
        border-radius: 10px;
        margin: 0 auto;
    }
    .upper-content .left {
        justify-content: center;
    }
    .lightbox iframe {
        max-height: 90vh !important;
        max-width: 70vw !important;
        min-width: 400px !important;
        min-height: 260px !important;
    }
}

@media (max-width:500px) {
    .lightbox iframe {
        max-height: 90vh !important;
        max-width: 70vw !important;
        min-width: 300px !important;
        min-height: 200px !important;
    }
    .gallery-image{
        max-width: 150px !important;
    }
    .img-container{
        flex-direction: column;
        gap: 1rem;
    }
    .img-container .align-items-center{
        flex-direction: column;
        gap: 1rem;
    }
    .navbar-container {
        padding: 1rem 2rem;
    }
    .upper-content .left {
        justify-content: center;
    }

    .main-trending-section,
    .col-md-3.case-studies-section {
        padding: 4rem 1rem;
    }

    .col-md-3.case-studies-section {
        width: 100%;
        padding-top: 0px;
    }

    .gallery .heading-content-of-gallery {
        padding: 4rem 1.5rem;
    }

    .cotnent p {
        font-size: var(--fs-super-mini);
    }

    .cotnent .hightlight-link {
        font-size: var(--fs-mini);
    }

    .speakers-image {
        display: flex;
        align-items: flex-end;
        justify-content: flex-end;
        width: 50%;
    }

    .speaker-container .row .col-md-8 {
        display: block !important;
    }

    .venue {
        padding: 2rem !important;
    }

    .left-image-with-content h1 {
        left: 5%;
        font-size: var(--fs-h3);
        width: 80%;
    }

    .right-content.col-md-4 {
        padding: 1.5rem 0.2rem;
    }

    .col-md-3.case-studies-section {
        padding: 0rem 1rem;
    }

    .speakers-image {
        width: 80%;
    }

    .event-schedule {
        padding: 0px !important;
    }

    .heading-of-event-schedule {
        margin-bottom: 2rem;
    }

    .tab h6 {
        font-size: var(--fs-body);
    }

    .time {
        font-size: var(--fs-body);
    }
    .upper-content .left{
        justify-content: center;
    }
    .venue .col-md-3 h1 {
        margin: 0px;
        margin-bottom: 1.5rem;
        font-size: var(--fs-h3);
    }

    .viewmore-section .row .col-md-3 {
        /* width: 100%; */
        width: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .viewmore-section .row {
        width: 100%;
    }

    .viewmore-section .row .col-md-4 {
        width: 25%;
    }

    .time {
        color: var(--wc-red) !important;
    }
    .row.trending-section .case-studies-section {
        padding: 4rem;
        flex-direction: column;
        padding: 1rem 0.5rem !important;
        gap: 1rem;
    }    
    .trending-section .main-trending-section {
        width: 100%;
        padding: 2rem 0.5rem;
    }
    .left-image-with-content .content-for-image{
        left: 15px;
        width: 90%;
        bottom: 25px;
    }
    .left-image-with-content .content-for-image h1{
        font-size: var(--fs-h5);
        width: 100%;
    }
    .left-image-with-content .content-for-image button {
        color: var(--wc-highlight-text);
        font-size: var(--fs-mini);
        background-color: rgb(248, 0, 0);
        border: 1px solid var(--wc-highlight-text);
        padding: 0.3rem 0.7rem;
        border-radius: 30px;
        cursor: pointer;
    }
    .speaker-container .row .col-md-4 {
        padding: 2rem 1rem;
    }
    .lightbox img {
        max-width: 80%;
        max-height: 90%;
        border-radius: 10px;
        margin: 0 auto;
    }
}

@media (max-width:350px) {
    .speakers-image {
        width: 100%;
    }
    .lightbox img {
        max-width: 80%;
        max-height: 90%;
        border-radius: 10px;
        margin: 0 auto;
    }
}

@media (max-width: 800px) {
    section.footer .container .col-md-3 img {
        width: 200px;
        margin-left: -15px;
    }
}

/* 
   animation platform or animation code started from here 

*/

@keyframes slideDown {
    0% {
        transform: translateX(0%);
        width: 0;
    }

    100% {
        transform: translateX(0%);
        /* width: 100%; */
    }
}


@keyframes slideUp {
    0% {
        transform: translateX(00%);
        opacity: 1;
    }

    100% {
        transform: translateX(-100%);
        width: 0;
    }
}
/* @keyframes slideDown {
    0% {
      transform: translateY(0%);
      height: 0;
    }
    100% {
      transform: translateY(0%);
    }
  }
  
  
@keyframes slideUp {
    0% {
        transform: translateY(00%);
        opacity: 1;
    }
    100% {
        transform: translateY(-100%);
        height: 0;
    }
} */
@media (max-width: 500px) {
    .upper-content .left {
        justify-content: left;
        margin-left: 40px;
    }
    .time-content {
        justify-content: left;
        padding: 0 1.5rem;
    }
    .search-content .para-content {
        display: flex;
        width: 100%;
        align-items: flex-start !important;
        justify-content: space-between;
        color: white;
        flex-direction: column;
    }
    .window-div{
        display: none !important;
    }
    .m-div{
        display: flex !important;
    }
}