* {
  margin: 0;
  padding: 0;
}
html{
  scroll-behavior: smooth;
}
body {
  background-image: linear-gradient(
    to left,
    #ff5e00 0%,
    #2a2b2d 13%,
    #000000 50%,
    #2a2b2d 87%,
    #ff5e00 100%
  );
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

/* Scrollbar */
*::-webkit-scrollbar {
  height: 8px;
  width: 8px;
}
*::-webkit-scrollbar-track {
  border-radius: 5px;
  background-color: #000000;
  border: 1px solid #8e8e8e;
}

*::-webkit-scrollbar-track:hover {
  background-color: #000000;
}

*::-webkit-scrollbar-track:active {
  background-color: #000000;
}

*::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #ff5e09;
  border: 1px solid #bc3f00;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: #f35100;
}

*::-webkit-scrollbar-thumb:active {
  background-color: #ff5e00;
}

/* Navbar */
.main-nav {
  /* border: 2px solid #0e7fcf86; */
  /* background: rgba(0,0,0,0.3); */
  background-color: transparent;
  background-image: linear-gradient(-180deg, rgba(255,255,255,0.3), rgba(0,0,0,0.2));
  backdrop-filter: blur(10px);
  font-family: "Arial", sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  height: 6vh;
  display: flex;
  width: 100%;
  align-items: center;
  /* justify-content:space-around ; */
  padding: 20px 0px;
  transition: background-color 0.4s linear;
  
}

/* hover effect on main-nav class */

.main-nav:hover {
  background-color : #2a2b2d65;
  font-family: "Arial", sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  height: 6vh;
  display: flex;
  width: 100%;
  align-items: center;
  /* justify-content:space-around ; */
  padding: 20px 0px;
}

/* .main-nav img */
.logo {
  width: 80px;
  margin-left: 6.5%;
}

.main-nav ul {
  display: flex;
  justify-content: flex-end;
  margin-right: 10%;
}

.main-nav ul.main-menu {
  flex: 1;
  margin-left: 60px;
}

.main-nav ul li {
  padding: 0px 20px;
}

.main-nav ul li a {
  color: #eee;
  text-decoration: none;
  padding-bottom: 2px;
  font-size: 18px;
  font-weight: 600;
}

.main-nav ul li a:hover {
  border-bottom: 2px solid aliceblue;
}

ul {
  list-style: none;
}

/* Navbar Registration Btn */

#reg-btn {
  font-family: verdana;
  color: #ffffff !important;
  font-size: 17px;
  text-shadow: 1px 1px 0px #f55727;
  box-shadow: 1px 2px 4px #f93f2a;
  padding: 12px 22px;
  border-radius: 12px;
  border: 2px solid #f70505;
  background: #db0b0b;
  margin-right: 3%;
  margin-left: -3%;
  background: linear-gradient(to top, #db0b0b, #ff5300);
}

#reg-btn:hover {
  color: #ffffff !important;
  background: #ff5300;
  background: linear-gradient(to top, #ff5300, #db0b0b);
  cursor: pointer;
}

/* Home */
.home {
  display: block;
}

.home::after {
  content: "";
  display: block;
  height: 100vh;
  width: 100%;
  background-image: url("./Images/home-bg.jpg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  filter:blur(5px);
  transition: all 1000ms linear;
}
/* More Blurred on hover. */
.home:hover::after {
  filter: blur(10px);
}

.home:hover .content {
  filter: blur(0px);
}

.content {
  position: absolute;
  z-index: 1;
  top: 40%;
  left: 21%;
  width: 60%;
  text-align: center;
  transition: all 1000ms;
  color: #fff;
}

.content .title h1 {
  font-family: "Raleway", sans-serif;
  font-size: 40pt;
  font-weight: 500;
  color: #9e9d9d;
  text-shadow: 1px -2px 3px #2a2b2d;
}

#orange-h1 {
  color: #ff5e00a8;
}

.content .text {
  line-height: 1.7;
  margin-top: 1rem;
  color: #f4f4f4;
}

/* About */
.main {
  background: linear-gradient(120deg, rgba(255, 94, 0, 0.326), rgba(42, 43, 45, 0.8));
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(255, 94, 0, 0.8);
  backdrop-filter: blur(30px);
}

.about {
  height: calc(36vh + 4px);
  /* height: 100%; */
  /* display: grid;
  grid-template-columns: repeat(2, 48%);
  justify-content: space-evenly;*/
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-evenly;
  box-sizing: border-box;

  /* Background */
  background: radial-gradient(
    circle,
    rgba(0, 0, 0, 1) 0%,
    rgba(42, 43, 45, 1) 81%,
    rgba(255, 94, 0, 1) 100%
  );
  backdrop-filter: blur(20px);
  /* background: #f3904f; fallback for old browsers */
  /* background: linear-gradient(
    to right,
    #3b4371,
    #f3904f
  ); */
}

.main > h1{
  color: #9e9d9d;
  text-align: center;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 30px;
}

.about .about-right {
  /* border: 2px solid white; */
  overflow: auto;
  height: 35vh;
  width: 48%;
  box-sizing: border-box;
  padding: 12px;
  /* background: #2a2b2d9d; */
  background-color: transparent;
  background-image: linear-gradient(120deg, rgba(0, 0, 0, 0.2),rgba(255, 94, 0, 0.584) );
  backdrop-filter: blur(20px);
  box-shadow: 0px 0px 0px 0px #2a2b2d, 0px 0px 0px 0px #8f8d8d;
  transition: box-shadow 2s ease;
}
.about .about-right:hover {
  /* border: 2px solid white; */
  overflow: auto;
  height: 35vh;
  width: 48%;
  box-sizing: border-box;
  padding: 12px;
  /* background: #2a2b2d9d; */
  box-shadow: 4px 0px 7px 1px #2a2b2d, -4px 0px 7px 1px #8f8d8d;
}

.about .about-left {
  /* border: 2px solid white; */
  overflow: auto;
  height: 35vh;
  width: 48%;
  box-sizing: border-box;
  padding: 12px;
  /* background: #2a2b2d9d; */
  background-color: transparent;
  background-image: linear-gradient(120deg, rgba(255, 94, 0, 0.584), rgba(0, 0, 0, 0.2));
  backdrop-filter: blur(10px);
  box-shadow: 0px 0px 0px 0px #8f8d8d, 0px 0px 0px 0px #2a2b2d;
  /* box-shadow: 4px 0px 20px 0px #2a2b2d,0px 0px 20px 0px #f4f4f4f4; */
  transition: box-shadow 2s ease;
}

.about .about-left:hover {
  /* border: 2px solid white; */
  overflow: auto;
  height: 35vh;
  width: 48%;
  box-sizing: border-box;
  padding: 12px;
  /* background: #2a2b2d9d; */
  box-shadow: 4px 0px 7px 1px #8f8d8d, -4px 0px 7px 1px #2a2b2d;
  /* box-shadow: 4px 0px 20px 0px #2a2b2d,0px 0px 20px 0px #f4f4f4f4; */
}

.about .center {
  text-align: center;
  color: #ff5e00;
  text-transform: uppercase;
  /* text-shadow: -2px 0px 1px rgba(255, 255, 255, 0.76) ; */
  text-shadow: 1px -2px 3px #9e9d9d;
}

.about p {
  margin: 12px 0px 0px 0px;
  line-height: 1.7;
  word-spacing: 2px;
}
.about span {
  font-weight: bold;
  color: #eee;
}
.about span:hover {
  color: #ff5e00;
}
.about .about-right .right-span {
  color: #f4f4f4;
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

/* Speakers */
.speakers {
  padding: 2px;
  text-align: center;
  background: linear-gradient(120deg, rgba(255, 94, 0, 0.326), rgba(42, 43, 45, 0.8));
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(71, 67, 65, 0.8);
  backdrop-filter: blur(25px);
}

.container {
  background-color: transparent;
  background-image: linear-gradient(110deg, #ff5e002b, rgba(0, 0, 0, 0.2));
  backdrop-filter: blur(28px);
  border-radius: 5px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 1fr 0.125fr;
  row-gap: 20px;
  margin: 20px 25px;
  grid-template-areas:
    "   speaker-iad      speaker-iad-2       speaker-im        speaker-im-2 speaker-sa-2       speaker-sa   "
    "   .      .       btn      btn        .       . ";
  position: relative;
}

/* All the three divs with class .speaker */

.container .speaker {
  position: relative;
  z-index: 1;
  justify-content: center;
  min-width: 310px;
  min-height: 330px;
}
.speakers > h1 {
  color: #9e9d9d;
  text-align: center;
  text-transform: uppercase;
  margin-top: 20px;
  font-weight: bold;
  font-size: 30px;
}

.speakers .speaker-info h1 {
  color: #ff5e00;
  text-shadow: 1px -2px 2px #9e9d9d;
}

.speakers .speaker-info h3 {
  color: #9e9d9d;
  /* text-shadow: 1px -2px 3px rgba(255, 255, 255, 0.46); */
}

/* All of these are of same class .speaker */

/* Imran Ali Dina */
.container .speaker-iad {
  grid-area: speaker-iad;
}

/* Imran Malik */
.container .speaker-im {
  grid-area: speaker-im;
}

/* Saqib Azhar */
.container .speaker-sa {
  grid-area: speaker-sa;
}

/* image */
.speaker-iad img, 
.speaker-im img {
  object-position: 0px 0px;
  object-fit: cover;
  box-shadow: 0px 0px 0px 0px #2a2b2d, 0px 0px 0px 0px #8f8d8d;
  transition: box-shadow 1s ease;
  /* width: 312px; */
  width: 100%;
  /* height: 326px; */
  height: 100%;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
}

/* image on hover of Imran Ali Dina and Imran Malik */
.speaker-iad:hover img ,
.speaker-im:hover img {
  box-shadow: 4px 0px 7px 1px #ff5e00, -4px 0px 7px 1px #8f8d8d;
}

/* info class for Imran Ali Dina and Imran Malik */
.speaker-iad .speaker-iad-2 ,
.speaker-im .speaker-im-2 {
  background-color: transparent;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.2),
    rgba(0, 0, 0, 0.3)
  );
  backdrop-filter: blur(20px);
  height: calc(100% - 2px);
  text-align: justify;
  line-height: 1.3;
  padding: 5px;
  box-sizing: border-box;
  justify-items: center;
  position: absolute;
  top: 0;
  left: 0;
  /* z-index: 0; */
  overflow: auto;
  /* grid-area: speaker-iad-2; */
  transform: translateX(0); /* Initial position */
  transition: transform 1000ms ease; /* Smooth transition */
}

/* Transition of info classes of the above two */
.speaker-iad:hover .speaker-iad-2,
.speaker-im:hover .speaker-im-2   {
  transform: translateX(100%);
}

/* image (Saqib Azhar) */
.speaker-sa img {
  object-position: -90px 0px; /*Object position is different than others.*/
  object-fit: cover;
  box-shadow: 0px 0px 0px 0px #2a2b2d, 0px 0px 0px 0px #8f8d8d;
  transition: box-shadow 1s ease;
  /* width: 312px; */
  width: 100%;
  /* height: 326px; */
  height: 100%;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
}

.speaker-sa:hover img{
  box-shadow: 4px 0px 7px 1px #ff5e00, -4px 0px 7px 1px #8f8d8d;
}

/* info class for Saqib Azhar */
.speaker-sa .speaker-sa-2 {
  background-color: transparent;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.2),
    rgba(0, 0, 0, 0.3)
  );
  backdrop-filter: blur(0px);
  height: calc(100% - 2px);
  text-align: justify;
  line-height: 1.3;
  padding: 5px;
  box-sizing: border-box;
  justify-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  overflow: auto;
  /* grid-area: speaker-iad-2; */
  transform: translateX(0); /* Initial position */
  transition: transform 1000ms ease; /* Smooth transition */
}

.speaker-sa:hover .speaker-sa-2{
  transform: translateX(-100%);
}

/* Button : See More  */
.btn {
  background-color: transparent;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.2),
    rgba(0, 0, 0, 0.3)
  );
  backdrop-filter: blur(20px);
  border: 2px outset #ff5e00;
  border-radius: 5px;
  grid-area: btn;
  align-self: center;
  justify-self: center;
  max-height: 35px;
  max-width: 50%;
  cursor: pointer;
  box-shadow: 1px 1px 2px #FF5E00;
  text-shadow: 1px 1px 0px #393939;
  padding: 10px 40px;
  margin-bottom: 12px ;
  background: transparent;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
  color:  #e3e3e3 !important;
}

.btn i{
  width: 30px;
  padding: 10px;
  box-sizing: border-box;
}

.btn:hover i{
  width: 30px;
  padding-left: 15px;
  box-sizing: border-box;
}

/* SCHEDULE */

.schedule {
  padding: 20px;
  margin-top: 1px;
  text-align: center;
  background: linear-gradient(120deg, rgba(255, 94, 0, 0.326), rgba(42, 43, 45, 0.8));
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(255, 94, 0, 0.8);
  backdrop-filter: blur(30px);
  color: #fff;
}
/* MAIN TITLE */
.schedule > h1{
  color: #9e9d9d;
  text-align: center;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 30px;
}

.main-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: auto;
  font-family: 'Roboto' ,sans-serif;
}

/* Each day Schedule */
.day-schedule {
  padding: 15px;
  background: linear-gradient(120deg, rgba(42, 43, 45, 0.8), rgba(255, 94, 0, 0.8));
  backdrop-filter: blur(20px);
  border-radius: 20px;
  box-shadow: 0 0 5px rgba(255, 94, 0, 0.5);
}

.day-schedule:hover{
  background: linear-gradient(-120deg, rgba(42, 43, 45, 0.8), rgba(255, 94, 0, 0.8));
  backdrop-filter: blur(10px);
}

.day-schedule > h2{
  color: #f97300;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

td, th {
  padding: 10px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* applied transition on background position */

th {
  background: linear-gradient(120deg, #ff5e00e6, #2a2b2de6);
  background-size: 150% 100%;
  transition: background-position 1s ease-in-out;
}

th:hover {
  background-position: 100% 10%;
}

td {
  background: rgba(42, 43, 45, 0.7);
  transition: transform 0.3s ease-in-out;
}

td:hover {
  transform: scale(1.05);
  background: rgba(255, 94, 0, 0.9);
}

/* Venue */


#venue {
  background-color: transparent;
  background-image: linear-gradient(110deg, #ff5e002b, rgba(0, 0, 0, 0.2));
  backdrop-filter: blur(28px);
  display: flex;
  height: 100%;
}

#venue-details{
  display: flex;
  flex: 0 1 50vw;
  height: 50vh;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#venue-image {
  background: url('./Images/venue.jpg');
  background-position: right;
  background-size: cover;
  background-repeat: no-repeat;
  height: 50vh;
  flex: 0 1 50vw;
  margin: 0;
}

#venue h1 {
  font-size: 2.3rem;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  margin-bottom: 1rem;
  color:#9e9d9d; 
}

#venue p {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color:#eee;
}
#venue Strong{
  color: #ff5e00;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 1.1rem;
}

#venue .btn {
  background-color: transparent;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.2),
    rgba(0, 0, 0, 0.3)
  );
  backdrop-filter: blur(2px);
  border: 2px outset #ff5e00;
  box-shadow: 1px 1px 2px #FF5E00;
  text-shadow: 1px 1px 0px #393939;
  padding: 1rem 2rem;
  display: inline-block;
  margin: 2rem 0 0 0;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  color: #888;
  transition: background 300ms ease-in ;
}
#venue .btn:hover{
  background-color: #f59218d9;
}

/* Registration */

#Register {
  background-color: transparent;
  background-image: linear-gradient(110deg, #ff5e002b, rgba(0, 0, 0, 0.2));
  backdrop-filter: blur(28px);
  justify-items: center;
  box-sizing: border-box;
  margin: auto;
  padding: 1%;
}

#regh1{
  padding: 0.5% 0.3%;
  margin-top: 1%;
  color: #ff5e20;
  width: fit-content;
  height: fit-content;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 30px;
  text-shadow: 1px -2px 3px #a4a2a2bb;
}

#regh1  span{
  color:#9e9d9d;  
  text-shadow: 1px -2px 3px #6d6d6ec8;
}

#registration-form{
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  border-radius: 7px;
  column-gap: 15px;
  margin-top: 1%;
  /* padding: 10px; */
  flex-wrap: wrap;
  /* width: 33%; */
  /* justify-content: space-evenly; */
  box-shadow: 2px 4px 12px rgb(168, 166, 166) , -2px -4px 12px grey;
}

/* trying to change the color of border when in focus */
input:focus, textarea:focus, select:focus {
  outline: none; /* Removes the default browser outline */
  border-color: #ff5e00; /* Change this to any color you prefer */
  box-shadow: 0 0 5px #ff5e00; /* Optional: Adds a glow effect */
}

.row {
  box-sizing: border-box;
  display: flex;
  width: 100%;
  gap: 10px;
  flex: 1;
}

.item{
  box-sizing: border-box;
  display: flex;
  align-items: center;
  width: 100%;
  /* justify-content: space-between; */
}

/* Make each label bold */
.item > #fN-label, .item > #lN-label, .item> #plabel, .item > #email-label , .item > #addr-label , .item > #qualifi-label,.item > #status-label, .item > #terms-label{
  font-weight: bold;
  margin-right: 5px;
}


/* Items with .item class */

/* First name and Last name , phone - email , edu */
#names ,#ph-em,#edu {
  padding: 10px 5px;
}

/* Items with .row class other than the above ones. */
/* status , terms */
.item > #status-label,#addr-label,#terms-label {
  padding: 10px 5px;
}

/* first name */
#firstname{
  background-color: #494949;
  color: #d8d6d6;
  width: 60%;
  padding: 5px 5px 5px 5px;
  border-radius: 7px;
}

/* Placeholders */
::placeholder{
  color:#d8d6d6;
}

/* last name */
#lastname{
  background-color: #494949;
  color: #d8d6d6;
  width: 68%;
  padding: 5px 5px 5px 5px;
  border-radius: 7px;
}

/* Phone */
#phone{
  background-color: #494949;
  color: #d8d6d6;
  width: 54%;
  padding: 5px 5px 5px 5px;
  border-radius: 7px;
}

/* Email */
#email{
  background-color: #494949;
  color: #d8d6d6;
  width: 80%;
  padding:5px;
  border-radius: 7px;
}

/* Address */
#address{
  background-color: #494949;
  color:#d8d6d6;
  padding: 5px;
  border-radius: 7px;
  width: 85%;
}

/* Education / Qualification */
#qualification{
  background-color: #494949;
  color:#d8d6d6;
  width:25%;
  padding: 4px;
  border-radius: 7px;
}

/* Others */
#Others{
  background-color: #494949;
  color: #d8d6d6;
  width: 35%;
  margin-left: 2%;
  border-radius: 7px;
  padding:5px;
}

/* Status */
#status{
  border-radius: 7px;
}
#status >option{
  background-color: #494949;
  color:#d8d6d6;
  border-radius: 5px;
  padding: 5px;
}

/* Others2 */
#Others2{
  color: #d8d6d6;
  background-color: #494949;
  width: 22.5%;
  margin-left: 10px;
  height: 13px;
  border-radius: 7px;
  padding: 5px;

}

/* Checkbox */
#terms{
  accent-color: #ff5e00; /* Change to any color you want */
}
#terms-label{
  justify-content: center;
  margin: auto;
}

/* center class */
.center{
  justify-content: center;
  align-self: center;
}

/* Submit button */

#submit {
  color: #EEEEEE !important;
  box-shadow: 0px 0px 5px #FF5E00;
  padding: 10px 0px;
  width: 20%;
  margin-bottom: 20px;
  border-radius: 9px;
  border: 2px outset #FF5E00;
  background: linear-gradient(to top, #E64B00, #FF5E00);
  align-self: center;
  letter-spacing: 2px;
  font-size: 0.9rem;
  font-weight: bold;
  text-transform: uppercase;  
}
#submit:hover {
  color: #d8d6d6 !important;
  border: 2px inset #FF5E00;
  background: linear-gradient(to top, #FF5E00, #E64B00);
}

/* Contacts */
#contacts{
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding: 10px 0px 30px 0px;
  background-color: transparent;
  background-image: linear-gradient(110deg, #ac480e48, rgba(0, 0, 0, 0.2));
  backdrop-filter: blur(35px);
}

#title{
  text-align: center;
  width: 100%;
  padding: 20px;
  margin: 10px 0px ;
  align-self: flex-start;
  justify-self: center;
}

#title h3{
  font-size: 2.5rem ;
}

/* Cards */
.cards{
  width: 25%;
  text-align: center;
  color:#eee;
  font-family: "Raleway", sans-serif;
}
/* icons */
.cards i{
  font-size: 50px;
  color: #9e9d9d;
  margin-bottom: 10px;
}
/* h1 inside cards */
.cards h1{
  color: #ff5e00;
  font-weight: bold;
  margin: 10px 0px;
}

.cards a {
  text-decoration: none;
  color:#eee;
}


footer{
  color: #eee;
  padding: 10px 0px;
  font-family: 'Raleway', sans-serif;
  text-align: center;
  background-color: transparent;
  background-image: linear-gradient(110deg, #ff5e0062, rgba(103, 98, 98, 0.2));
  backdrop-filter: blur(35px);
  margin: 2px;
}


