* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
body { margin: 0; font-family: "Verdana", Tahoma, sans-serif; font-size: 16px; 
		    background-color: #FFFFFF;
				color: #1A1A1A;
				-webkit-user-select: none;
				-webkit-touch-callout: none;
				-moz-user-select: none;
				-ms-user-select: none;
				user-select: none;
}
	/* HEADER */
    header {
        background-color: #0A2540;
        color: white;
        padding: 10px 20px;
    }

    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    /* FOOTER */
    footer {
        background-color: #0A2540;
        color: white;
        text-align: center;
        padding: 15px 10px;
        margin-top: auto;
    }

    .logo {
				border-radius: 5px;
				padding: 20px;
         background-color: #0A2540;
        color: white;
    }

  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    background-color: #0A2540;
    color: #FFD700;
  }

  .nav-links {
    list-style: none;
    display: flex; 
    gap: 20px;
  }

  .nav-links li a {
  position: relative;
  color: #FFD700;
  text-decoration: none;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background-color: #ffd700;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-links li a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

  /* Burger Icon */
  .menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
  }
  .menu-icon span {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: transform 0.3s, opacity 0.3s;
  }
	
  .responsive {
    width: 100%;
    height: auto;
}

h1{
    text-align: center;
    margin-top: 10px;
    text-align: left;
    opacity: 50%;
  }
h2{
  padding: 20px 0px 25px;
    color:#FFD700;
    text-align: left;
}
  
.content-grid-common {
	overflow: hidden;
  padding: 50px;
  text-align: justify;
	border-style: solid;
	color: #1A1A1A;
  background-color: #FFFFFF;
	border-color: #0A2540; /* Using same header HEX value */
  border-radius: 7px;
	margin-bottom: 5px;
  box-shadow: black 0px 0px 30px -10px;
}
.title-ribbon{
  position:relative;
	color: #FFFFFF;
  line-height: 1.875em;
font-size:15px;
	width: 300px;
  border-radius: 0 0.156em 0.156em 0;
  background: #0A2540;
  box-shadow: -1px 2px 10px rgba(0,0,0,0.5);
transform: skew(-20deg); 
}
/* for live session in 3 columns */
.session-container {
   display: grid;
   grid-template-columns: repeat(3, 1fr); /* Three equal columns */
   gap: 15px; /* Space between columns */
   max-width: 1200px;
   margin: auto;
 }
 .item {
   background-color: #f2f2f2;
   padding: 20px;
   text-align: center;
   border-radius: 5px;
 }

 /* Responsive adjustments */
 @media (max-width: 768px) {
   .session-container { grid-template-columns: repeat(2, 1fr); }
    }
 }
 @media (max-width: 480px) {
   .session-container { grid-template-columns: 1fr; }
 }

  /* aboutUs Page Container */
  .aboutUs-container {
    display: flex;              /* Enables flexbox */
    height: auto;              /* Full viewport height */
  }

  /* Left section - 30% width */
  .aboutUs-left {
    flex: 3;                    /* Ratio part */
    color: white;
    display: flex;
    align-items: top;
    justify-content: center;
  }

  /* Right section - 70% width */
  .aboutUs-right {
    flex: 6;                    /* Ratio part */
    color: black;
/*
    display: flex;
*/
    align-items: top;
/*
    justify-content: left;
    /* font-size: 1.5rem; */
  }

  /* Responsive tweak for small screens */
  @media (max-width: 768px) {
    .aboutUs-container {
      flex-direction: column; /* Stack vertically */
    }
    .aboutUs-left, .right {
      flex: none;
/*
      height: 70vh;
*/
    }
		.aboutUs-right {
		height:900px;
  }
}
.contact-img {
        display: flex;
        justify-content: center;
        align-items: center;
        height: auto;
        transition: transform 0.3s ease; 
        display: block;  
    }

.contact-img:hover {
transform: scale(1.25); /* Enlarges the image by 1.25x */
}
 /* button  for session container*/
  .btn-link {
     display: inline-block;
     padding: 10px 20px;
     background-color: #0A2540; 
     color: white; 
     text-align: center;
     text-decoration: none; 
     font-size: 16px;
     border-radius: 5px;
     transition: background-color 0.3s ease;
}
/* Hover */
  .btn-link:hover {
        background-color: #45a049; /* Darker green */
}
 
.title-ribbon:before, .title-ribbon:after{
  position:absolute;
  content: '';
  display: block;
}

.title-ribbon:before{
  width: 0.469em;
  height: 100%;
  padding: 0 0 0.438em;
  top:0;
  left: -0.469em;
  background:inherit;
  border-radius: 0.313em 0 0 0.313em;
}

.title-ribbon:after{
  width: 0.313em;
  height: 0.313em;
  background: rgba(0,0,0,0.35);
  bottom: -0.313em;
  left: -0.313em;
  border-radius: 0.313em 0 0 0.313em;
  box-shadow: inset -1px 2px 2px rgba(0,0,0,0.3);
}

.content-grid {
	background-color: transparent; 
	overflow: hidden;
  padding: 15px;
  text-align: left;
  font-size: 16px;
  border-radius: 7px;
	margin-bottom: 5px;
  box-shadow: rgb(38, 57, 77) 0px 10px 10px -10px;
}
        form {
            background: #fff;
            padding: 20px;
            max-width: 400px;
            margin: auto;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }
        label {
            display: block;
            margin-top: 10px;
        }
        input, textarea {
            width: 100%;
            padding: 8px;
            margin-top: 5px;
            border: 1px solid #ccc;
            border-radius: 4px;
        }
        .checkbox-container {
            display: flex;
            align-items: center;
            margin-top: 10px;
        }
        .checkbox-container input {
            width: auto;
            margin-right: 8px;
        }
        button {
            margin-top: 15px;
            padding: 10px;
            width: 100%;
            background: #28a745;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }
        button:hover {
            background: #218838;
        }

hr {
	 border: 0;
   height: 5px;
   background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}

/* thumbnail */
   .thumbnail {
    width: 200px;       /* Thumbnail width */
    height: 150px;       /* No aspect ratio */
    cursor: pointer;    /* Show pointer on hover */
    border: 2px solid #ccc;
    border-radius: 5px;
     transition: 0.3s;
 }

 /* thumbnail hover */
    .thumbnail:hover {
     border-color: #666;
     transform: scale(1.05);
}

    /* Cookie consent banner styles */
    .cookie-consent {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #000;
        color: #fff;
        padding: 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-radius: 10px;
        z-index: 1000;
        box-shadow: 0 -2px 5px rgba(0,0,0,0.3);
    }
    .cookie-consent p {
        margin: 0;
				padding: 5px;
/*        font-size: 14px;
        line-height: 1.4; */
    }

  .cookie-consent a {
  color: #FFD700;
  text-decoration: underline;
}
    .cookie-consent button {
        background: #4CAF50;
        color: white;
        border: none;
				width: 100px;
       padding: 10px 10px; */
        cursor: pointer;
        border-radius: 4px;
/*        font-size: 14px; */
    }

    .cookie-consent button:hover {
        background: #45a049;
    }
  /* Responsive*/
  @media (max-width: 768px) {
    .menu-icon {
      display: flex;
    }
    .nav-links {
      flex-direction: column;
      position: absolute;
      top: 150px;
      right: 0px;
      background-color: #0A2540;
      width: 200px;
      transform: translateX(100%);
      transition: transform 0.3s ease-in-out;
      text-align: center;
      padding: 10px 0;
    }
    .nav-links.active {
      transform: translateX(0);
    }
    .nav-links li {
      margin: 5px 0;
    }
.title-ribbon{
  position:absolute;
  padding: 0 0.5em;
  margin: 0 0 0 -0.625em;
	color: #FFFFFF;
  background: #0A2540;
  line-height: 1.875em;
	width: 50%;
  border-radius: 0 0.156em 0.156em 0;
  box-shadow: -1px 2px 10px rgba(0,0,0,0.5);
	}
}
