/* Resetting default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Basic styling for body */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #111;
    color: #fff;
    overflow-x: hidden; /* Disable horizontal scrolling */
}

/* Container class to center content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styling */
header {
    background-color: #333;
    padding: 10px 0;
}

header h1 {
    text-align: center;
    color: #fff;
}

/* Main content section styling */
.main-content {
    padding: 60px 0;
}

.payment-page {
    text-align: center;
}

.payment-page form {
    max-width: 400px;
    margin: 0 auto;
    background-color: #444;
    padding: 20px;
    border-radius: 5px;
    text-align: left;
}

.payment-page form label,
.payment-page form input {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.payment-page form input[type="text"],
.payment-page form button {
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    background-color: #666;
    color: #fff;
}

.payment-page form button:hover {
    background-color: #555;
    cursor: pointer;
}

/* Course details page specific styles */
.course-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.course-info {
    flex: 1;
}

.course-info h2 {
    margin-bottom: 20px;
}

.course-info ul {
    list-style-type: none;
    padding: 0;
    text-align: left;
}

.course-info ul li {
    margin-bottom: 10px;
}

.buy-now-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.buy-now-btn:hover {
    background-color: #45a049;
}

.course-image {
    flex: 1;
    text-align: center;
}

.course-image img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.related-photos {
    margin-top: 40px;
}

.related-photos h2 {
    margin-bottom: 20px;
}


.ads {
    margin-top: 40px;
    text-align: center;
}

.ads h2 {
    margin-bottom: 20px;
}

.ads img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 5px;
}

.container1
{
  max-width: 1000px;
  margin: 100px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.card1
{
  position: relative;
  margin: 20px 0;
  width: 300px;
  height: 400px;
  background: #000000;
  transform-style: preserve-3d;
  transform: perspective(2000px);
  box-shadow: inset 300px 0 50px rgba(0,0,0,.5), 0 20px 20px rgba(0,0,0,.5);
  transition: 1s;
}
.card1:hover
{
  z-index: 10000;
  transform: perspective(2000px) rotate(-10deg);
  box-shadow: inset 20px 0 50px rgba(0,0,0,.5), 0 10px 100px rgba(0,0,0,.5);
}

.card1 .Box
{
  position: relative;
  width: 100%;
  height: 100%;
  border: 1px solid #000;
  box-sizing: border-box;
  position: relative;
  transform-origin: left;
  z-index: 1;
  transition: 1s cubic-bezier(.15,1.7,.84,.58);
  background: #111;
}
.card1 .Box img
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card1:hover .Box
{
  transform: rotateY(-135deg);
}
.card1 .details
{
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  padding: 20px;
  z-index: -1;
}

.quotes {
  width: 80vw;
  min-height: 400px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  z-index: 2;
}

.quotes .box {
  position: relative;
  width: 25vw;
  height: 50vh;
  min-height: 320px;
  background: #f2f2f2;
  overflow: hidden;
  transition: all 0.5s ease-in;
  z-index: 2;
  box-sizing: border-box;
  padding: 30px;
  box-shadow: -10px 25px 50px rgba(0, 0, 0, 0.3);
}

.quotes .box::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 5px;
  width: 100%;
  height: 100%;
  font-size: 120px;
  opacity: 0.2;
  background: transparent;
  pointer-events: none;
}

.quotes .box::after {
  content: '\201D';
  position: absolute;
  bottom: -10%;
  right: 5%;
  font-size: 120px;
  opacity: 0.2;
  background: transparent;
  filter: invert(1);
  pointer-events: none;
}

.quotes .box p {
  margin: 0;
  padding: 10px;
  font-size: 1.2rem;
}

.quotes .box h2 {
  position: absolute;
  margin: 0;
  padding: 0;
  bottom: 10%;
  right: 10%;
  font-size: 1.5rem;
}

.quotes .box:hover {
  color: #f2f2f2;
  box-shadow: 20px 50px 100px rgba(0, 0, 0, 0.5);
}

.quotes .bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  transition: all 0.5s ease-in;
  pointer-events: none;
  width: 100%;
  height: 200%;
  overflow: hidden;
}

.quotes .box.box1:hover,
.quotes .box.box1:hover~.bg {
  opacity: 1;
  background: #e2a9e5;
background: -moz-linear-gradient(-45deg, #e2a9e5 15%, #2b94e5 100%);
background: -webkit-linear-gradient(-45deg, #e2a9e5 15%,#2b94e5 100%);
background: linear-gradient(135deg, #e2a9e5 15%,#2b94e5 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e2a9e5', endColorstr='#2b94e5',GradientType=1 );
}

.quotes .box.box2:hover,
.quotes .box.box2:hover~.bg {
 opacity: 1;
  background: #632c65;
background: -moz-linear-gradient(-45deg, #632c65 15%, #56a5e2 100%);
background: -webkit-linear-gradient(-45deg, #632c65 15%,#56a5e2 100%);
background: linear-gradient(135deg, #632c65 15%,#56a5e2 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#632c65', endColorstr='#56a5e2',GradientType=1 );
}

.quotes .box.box3:hover,
.quotes .box.box3:hover~.bg {
  opacity: 1;
  background: #4b384c;
background: -moz-linear-gradient(-45deg, #4b384c 15%, #da5de2 100%);
background: -webkit-linear-gradient(-45deg, #4b384c 15%,#da5de2 100%);
background: linear-gradient(135deg, #4b384c 15%,#da5de2 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4b384c', endColorstr='#da5de2',GradientType=1 );
}






/* Styling for the footer */
footer {
  background-color: #272727; /* Example background color */
  color: #fff; /* Example text color */
  text-align: center;
  padding: 10px;
  position: relative; /* Needed for absolute positioning */
  bottom: 0%;
  width: 100%;
}

/* Glowing outline effect */
footer::before {
  content: '';
  position: absolute;
  top: -10px; /* Adjust this value to position the glow above the footer */
  left: 0;
  width: 100%; /* Span from left to right */
  height: 5px; /* Thickness of the outline */
  background: linear-gradient(to right, rgba(121, 245, 117, 0.8), rgb(214, 228, 89)); /* Gradient for glowing effect */
  border-radius: 10px; /* Rounded corners for the glow */
  z-index: 1; /* Ensure the glow is above the footer content */
}

/* Additional styling for footer content */
footer p {
  margin: -30;
  /* Additional styles for text within the footer */
}