@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Saira+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap');


* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family:Saira Condensed;
}
a{
  text-decoration: none;
}

:root {
  --bg-color: #0d0d0d;
  --snd-bf-color: #141414;
  --text-color: #fff;
  --main-color:#59B2F4;
}

body{
    background-color: var(--bg-color);
    display: flex;
    align-items: center;
}

.schedule-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }

  @font-face {
    font-family: 'Zuume Black';
    font-style: normal;
    font-weight: normal;
    src: local('Zuume Black'), url('../fonts/Zuume\ Black.woff') format('woff');
}



.heading {
    background-clip: text;
    -webkit-background-clip: text;
    background-image: url(https://media2.giphy.com/media/HkEDr0jVekaZO/giphy.gif); /* Fixed the URL */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover; /* Ensure image covers text area */
    color: transparent;
    font-size: 120px;
    font-weight: 900;
    letter-spacing: .02em;
    line-height: 1.1; /* Ensure enough height for text */
    font-family: 'Zuume Black', sans-serif; /* Correct font family */
    text-align: center;
    padding: 50px 20px; /* Added padding for better visual spacing */
    width: fit-content; /* Adjust width to fit content */
}

/* General stylings */
section {
  padding: 3vw 5vw;
  color: var(--snd-bf-color);
}

section h1 {
  font-size: 4rem;
  margin-bottom: 3rem;
}

section .lead {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

section code {
  background-color: var(--main-color);
  color: red;
  padding: 2px;
}

section .container {
  display: flex;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

section .container .card {
  background-color: var(--text-color);
  padding: 2rem;
  width: 50%;
}



  .card {
    margin: 30px auto; /* Centered within the parent container */
    padding: 2em;
    width: 1200px; /* Adjusted size to match header */
    height: 365px; /* Same height as header for consistency */
    background-color: black;
    text-align: center;
    background-size: cover;
    border-radius: 10px;
    position: relative;
  }
  
  @property --angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
  }
  
  .card::after,
  .card::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-image: conic-gradient(from var(--angle), #187BFF, #0d0d0d, #fff,#187BFF, #0d0d0d, #fff);
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    z-index: -1;
    padding: 3px;
    border-radius: 10px;
    animation: 3s spin linear infinite;
  }
  
  .card::before {
    filter: blur(1.5rem);
    opacity: 0.5;
  }
  
  @keyframes spin {
    from {
        --angle: 0deg;
    }
    to {
        --angle:360deg;}
  }
  
  
  /* Header Section with Image */
  header {
    position: relative;
    height: 300px;
    background-color: transparent;
    overflow: hidden;
    width: 100%; /* Full width of the container */
  }
  
  header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(50%); /* Darken the image */
    transition: transform 0.5s ease-in-out, filter 0.3s ease-in-out;
  }
  
  
  header h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color:var(--main-color);
    margin: 0;
  }


    header h1 {
        font-size: 1.5rem;
    }

    section h1 {
        font-size: 1.8rem;
    }

    section .lead {
        font-size: 1rem;
    }

    section .container {
        flex-direction: column;
        gap: 1rem;
    }

    section .container .card {
        width: 100%;
        padding: 1rem;
    }

  


.toggle-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    margin-top: 20px;
  }
  
  .toggle {
    display: flex;
    align-items: center;
    background-color: var(--snd-bf-color);
    border: 4px solid #251fcd;
    padding: 10px 20px;
    border-radius: 10px;
  }
  
  .option {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    padding: 5px 10px;
    position: relative; /* Needed for positioning the pseudo-element */
  }
  
  .option::after {
    content: '';
    position: absolute;
    bottom: -5px; /* Position the underline slightly below the text */
    left: 0;
    width: 0; /* No underline initially */
    height: 2px; /* Thickness of the underline */
    background: linear-gradient(90deg, #59B2F4, #187BFF 85%); /* Gradient colors */
    transition: width 0.3s ease-in-out; /* Smooth animation */
  }
  
  .option.active {
    font-weight: 700;
    color: #187BFF;
  }
  
  .option.active::after {
    width: 100%; /* Animate the underline to full width */
  }
  
  .divider {
    height: 2px;
    width: 50px;
    background:#59B2F4
  }
  .content {
    display: none;
    text-align: center;
  }
  
  .content.active {
    display: block;
  }



  .main {
    width: 100%;
    height: auto;
    display: grid;
    place-items: center;
    padding: 50px 0;
  }
  
  /* Heading styles */
  .main .head, .main .head1 {
    font-size: 29px;
    color: #187BFF;
    position: relative;
    margin-bottom: 80px;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
  /* Hover effect on headings */
  .main .head:hover,
  .main .head1:hover {
    color: var(--text-color); 
    transform: scale(1.1); 
  }
  
  /* Underline effect */
  .main .head::after,
  .main .head1::after {
    content: " ";
    position: absolute;
    width: 50%;
    height: 3px;
    left: 50%;
    bottom: -5px;
    transform: translateX(-50%);
    background-image: linear-gradient(to right, #187BFF, #59b2f4);
    transition: width 0.3s ease-in-out; 
  }
  
  .main .head:hover::after,
  .main .head1:hover::after {
    width: 80%;
  }
  
  /* Container styling */
  .container {
    width: 70%;
    height: auto;
    margin: auto;
    position: relative;
    margin-bottom: 50px; /* Ensures consistent spacing between containers */
  }
  
  /* Container list styling */
  .container ul {
    list-style: none;
  }
  
  /* Vertical line separating list items */
  .container ul::after {
    content: " ";
    position: absolute;
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    background-image: linear-gradient(to bottom, #59b2f4, #187BFF 85%);
  }
  
  /* Styling individual list items inside the container */
  .container ul li {
    width: 50%;
    height: auto;
    padding: 15px 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.218);
    position: relative;
    margin-bottom: 50px; /* Consistent spacing between list items */
    z-index: 99;
  }
  
  /* Image styling */

 
  /* Hover effect on list items */
  .container ul li:hover {
    background: linear-gradient(120deg, #187BFF, #59b2f4);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); 

  }
  
  .container ul li:hover .heading_l,
  .container ul li:hover .heading_r {
    font-size: 20px;
    color: var(--text-color);
  }
  
  /* Circle element inside each list item */
  .container ul li .circle {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #187BFF;
    top: 0;
    display: grid;
    place-items: center;
  }
  
  .circle::after {
    content: ' ';
    width: 12px;
    height: 12px;
    background-color: #0d0d0d;
    border-radius: 50%;
  }
  
  /* Adjust positions for odd and even list items */
  ul li:nth-child(odd) .circle {
    transform: translate(50%, -50%);
    right: -30px;
  }
  
  ul li:nth-child(even) .circle {
    transform: translate(-50%, -50%);
    left: -30px;
  }
  
  /* Time element inside each list item */
  ul li .time {
    position: absolute;
    width: 130px;
    height: 33px;
    background-image: linear-gradient(to right, #187BFF, #59b2f4 85%);
    border-radius: 15px;
    top: -45px;
    display: grid;
    place-items: center;
    color: var(--snd-bf-color);
    font-weight: bold;
    font-size: 17px;
    box-shadow: 1px 2px 12px rgba(0, 0, 0, 0.318);
  }
  
  ul li:nth-child(odd) .time {
    right: 20px;
  }
  
  .container ul li:nth-child(odd) {
    float: left;
    clear: right;
    text-align: right;
    transform: translateX(-30px);
  }
  
  ul li:nth-child(even) {
    float: right;
    clear: left;
    transform: translateX(30px);
  }
ul li .heading_r {
	font-size: 20px;
	color: var(--snd-bf-color);
    text-align-last: left;
}

ul li .heading_l {
	font-size: 20px;
	color: var(--snd-bf-color);
    text-align-last: right;
}

ul li p {
	font-size: 17px;
	color: #000000;
	line-height: 18px;
	margin: 6px 0 4px 0;
}

.p_r{
	font-size: 17px;
	color: #000000;
	line-height: 18px;
	margin: 6px 0 4px 0;
  text-align-last: left;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .heading {
      background-clip: text;
      -webkit-background-clip: text;
      background-image: url(https://media2.giphy.com/media/HkEDr0jVekaZO/giphy.gif); 
      background-position: center center;
      background-repeat: no-repeat;
      background-size: cover;
      color: transparent;
      font-size: 100px;
      font-weight: 900;
      letter-spacing: 0.02em;
      line-height: 1.2;
      font-family: 'Zuume Black', sans-serif;
      text-align: center;
      padding: 30px 20px;
      width: fit-content;
      margin: 0 auto;
  }
  .container {
      width: 80%;
      margin: 0 auto;
      padding-left: 20px;
  }
  .heading {
      font-size: 50px;
  }
  .container ul li {
      margin-bottom: 50px; /* Adjusted spacing */
  }
  .container ul li:hover {
      background: #187BFF !important; /* Ensure hover effect applies correctly */
  }
  /* Fix active and focus states to prevent black color on click */
  .container ul li:active,
  .container ul li:focus {
      background-color: transparent !important; /* Prevent unwanted black background */
      outline: none !important; /* Remove focus outline */
  }
  .container ul li .circle {
    display: none;}
  .container ul li:hover {
      background-color: #187BFF; /* Explicitly disable hover effects */
  }
  .main .head, .main .head1 {
      transition: none !important; /* Remove hover effects */
  }
  .main .head:hover,
  .main .head1:hover {
      transform: none !important;
      color: #187BFF !important;
  }
  .main .head::after,
  .main .head1::after {
      transition: none !important;
  }
  .main .head:hover::after,
  .main .head1:hover::after {
      width: 50% !important;
  }
}

/* Small screens (below 768px) */
@media only screen and (max-width: 768px) {
  header {
      height: 180px;
  }
  .heading {
    background-clip: text;
    -webkit-background-clip: text;
    background-image: url(https://media2.giphy.com/media/HkEDr0jVekaZO/giphy.gif);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: transparent;
    font-size: 50px;
    font-weight: 900;
    letter-spacing: 0.02em;
    line-height: 1.1;
    font-family: 'Zuume Black', sans-serif;
    text-align: center;
    padding: 50px 20px;
    width: fit-content;
    padding-bottom: 100px;
}
ul li .heading_l {
	font-size: 20px;
	color: var(--snd-bf-color);
    text-align-last: left;
}
  .card {
      width: 90%;
      max-width: 760px;
      margin: 0 auto;
      height: 250px;
  }
  .container {
      width: 90%;
      margin: 0 auto;
      padding-left: 20px;
  }
  .container ul li {
      width: 100%;

      margin-bottom: 60px; /* Increased spacing */
  }
  .container ul li .circle {
    display: none;}

  .container ul li:nth-child(odd) {
		transform: translateX(0px);
		text-align: left;
	}
	.container ul li:nth-child(even) {
		transform: translateX(0px);
	}
  .container ul::after{
		left: -10px;
	}

  .container ul li .date {
      left: 50px;
  }
  .container ul li:hover {
      background-color:#187BFF /* Explicitly disable hover effects */
  }

  /* Fix active and focus states to prevent black color on click */
  .container ul li:active,
  .container ul li:focus {
      background-color: transparent !important; /* Prevent unwanted black background */
      outline: none !important; /* Remove focus outline */
  }

  .main .head, .main .head1 {
      transition: none !important; /* Remove hover effects */
  }
  .main .head:hover,
  .main .head1:hover {
      transform: none !important;
      color: #187BFF !important;
  }
  .main .head::after,
  .main .head1::after {
      transition: none !important;
  }
  .main .head:hover::after,
  .main .head1:hover::after {
      width: 50% !important;
  }
}

/* Very small screens (below 550px) */
@media only screen and (max-width: 550px) {
  header {
      height: 180px;
      align-items: center;
  }

  .container ul li:nth-child(odd) {
		transform: translateX(0px);
		text-align: left;
	}
	.container ul li:nth-child(even) {
		transform: translateX(0px);
	}
  .container ul li .circle {
    display: none;}
  .card {
      width: 90%;
      max-width: 400px;
      margin: 0 auto;
      height: 180px;
  }
  ul li .heading_l {
    font-size: 20px;
    color: var(--snd-bf-color);
      text-align-last: left;
  }
  .heading {
      background-clip: text;
      -webkit-background-clip: text;
      background-image: url(https://media2.giphy.com/media/HkEDr0jVekaZO/giphy.gif);
      background-position: center center;
      background-repeat: no-repeat;
      background-size: cover;
      color: transparent;
      font-size: 40px;
      font-weight: 900;
      letter-spacing: 0.02em;
      line-height: 1.1;
      font-family: 'Zuume Black', sans-serif;
      text-align: center;
      padding: 50px 20px;
      width: fit-content;
      padding-bottom: 100px;
  }
  .container {
      width: 95%;
      margin: 0 auto;
      padding-left: 20px;
  }
  .container ul li {
      margin-bottom: 70px; /* Increased spacing */
  }

  .container ul::after{
		left: -10px;
	}
  .container ul li .date {
      left: 40px;
  }
  .container ul li:hover {
      background-color: #187BFF; /* Explicitly disable hover effects */
  }

  /* Fix active and focus states to prevent black color on click */
  .container ul li:active,
  .container ul li:focus {
      background-color: transparent !important; /* Prevent unwanted black background */
      outline: none !important; /* Remove focus outline */
  }

  .main .head, .main .head1 {
      transition: none !important; /* Remove hover effects */
  }
  .main .head:hover,
  .main .head1:hover {
      transform: none !important;
      color: #187BFF !important;
  }
  .main .head::after,
  .main .head1::after {
      transition: none !important;
  }
  .main .head:hover::after,
  .main .head1:hover::after {
      width: 50% !important;
  }
}
