/* Navbar styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 60px;
    /* background-color: #f6f5ef; */
    color: #1d237a;
    height: 60px;
}

.navbar-logo h2 {
    border: 3px solid #1d237a;
    padding: 3px 8px;
    font-family: "Sedgwick Ave Display", cursive;
}

.navbar-links a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    border: 1px solid #00848c;
    padding: 8px 20px;
    border-radius: 13px;
    background-color: #00848c;
    font-weight: 600;
}

/* Circle container styles */
.circle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #edebd9;
}

.big-circle {
    position: relative;
    width: 500px;
    height: 500px;
    background-color: #f6f5ef;
    border-radius: 50%;
}

.circle {
    width: 250px;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: black;
    border-radius: 50%;
    position: absolute;
    padding: 20px; /* Added padding */
    text-align: center;
}

.circle h2 {
    font-size: 20px; /* Adjusted font size */
    
  }
  
  .circle p {
    font-size: 16px; /* Adjusted font size */
    margin-top: -5px;
  }
/* Circle specific styles */
.circle-1 {
    background-color: #fccf17;
    top: 22%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle-2 {
    background-color: #C23616;
    top: 35%;
    bottom: 0;
    left: -5%;
   
}

.circle-3 {
    background-color: #0ABDE3;
    top: 35%;
    bottom: 0;
    right: -5%;
}

/* Rest of your CSS remains the same */

.main-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #edebd9;
    padding: 0px 70px; /* Added padding */
  }
  
  .guidelines {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px; /* Added padding */
    text-align: left;
    width: 40%; /* Adjusted width */
    height: 70%;
    
    color: white;
    border-radius: 40px;
  }
  .guide{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 40px; /* Added padding */
    text-align: left;
    color: white;
    border-radius: 40px;
    background-color: #037272; /* Match background color */
    border: 3px solid white;
  }
  .guidelines h2 {
    font-size: 24px;
    font-weight: 600; /* Adjusted font size */
  }
  
  .guidelines p {
    font-size: 18px; /* Adjusted font size */
    margin-top: 10px;
  }

  .explore {
    margin-top: 20px; /* Added margin top */
    padding: 10px 20px; /* Added padding from all sides */
    text-align: center;
    /* background-color: #1c1f4c; */
    border: 3px solid #1c1f4c; /* Added white border */
    border-radius: 10px;
    display: inline-block; /* Display as inline block */
  }
  
  .explore a {
    font-size: 20px;
    color: #1c1f4c; /* Text color */
    text-decoration: none;
    font-weight: bold;
    position: relative;
    display: inline-block;
  }
  
  .explore a::after {
   /* Unicode character for right arrow */
    position: absolute;
    opacity: 0; /* Initially hidden */
    transform: translateX(-10px); /* Move to the left */
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  }
  
  .explore {
    animation: moveRight 1s infinite alternate; /* Apply animation on hover */
  }
  
  .explore:hover a::after {
    opacity: 1;
  }
  
  /* Added shadow effect to the text */
  .explore a {
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.7);
  }

  .hidden {
    display: none;
}

/* Center the webcam feed */
#webcam-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

  @keyframes moveRight {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(20px);
    }
  }
  
  
  @media (max-width: 768px) {
    .navbar {
        padding: 10px 20px; /* Adjusted padding */
    }

    .navbar-logo h2 {
        font-size: 24px; /* Adjusted font size */
    }

    .navbar-links a {
        font-size: 14px; /* Adjusted font size */
        margin-left: 10px; /* Adjusted margin */
    }

    .circle-container {
      /* width: 100px; */
        height: auto; /* Adjusted height */
        display: flex;
        justify-content: center;
    align-items: center;
    }
    .circle{
      width: 130px;
      height: 130px;
      
    }
    .circle p{
      font-size: 8px;
    }
    .big-circle {
      position: relative;
      width: 300px;
      height: 300px;
      background-color: #f6f5ef;
      border-radius: 50%;
      margin-top: 50px;
  }

  .main-container {
    display: grid;
    grid-template-columns: (1,1fr);
    justify-content: center;
    align-items: center;
  }
  .circle-1 {
    background-color: #fccf17;
    top: 22%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle-2 {
    background-color: #C23616;
    top: 35%;
    bottom: 0;
    left: -5%;
   
}

.circle-3 {
    background-color: #0ABDE3;
    top: 35%;
    bottom: 0;
    right: -5%;
}
.guidelines {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px; /* Added padding */
  text-align: left;
  width: 100%; /* Adjusted width */
  height: 70%;
  
  color: white;
  border-radius: 40px;
}
.guide{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px 40px; /* Added padding */
  text-align: left;
  color: white;
  border-radius: 40px;
  background-color: #037272; /* Match background color */
  border: 3px solid white;
}
.guidelines h2 {
  font-size: 24px;
  font-weight: 600; /* Adjusted font size */
}

.guidelines p {
  font-size: 18px; /* Adjusted font size */
  margin-top: 10px;
}
    
}

@media (min-width: 769px) and (max-width: 1024px) {
 /* Navbar styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 60px;
  /* background-color: #f6f5ef; */
  color: #1d237a;
  height: 60px;
}

.navbar-logo h2 {
  border: 3px solid #1d237a;
  padding: 3px 8px;
  font-family: "Sedgwick Ave Display", cursive;
}

.navbar-links a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  border: 1px solid #00848c;
  padding: 8px 20px;
  border-radius: 13px;
  background-color: #00848c;
  font-weight: 600;
}

/* Circle container styles */
.circle-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #edebd9;
}

.big-circle {
  position: relative;
  width: 500px;
  height: 500px;
  background-color: #f6f5ef;
  border-radius: 50%;
}

.circle {
  width: 250px;
  height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: black;
  border-radius: 50%;
  position: absolute;
  padding: 20px; /* Added padding */
  text-align: center;
}

.circle h2 {
  font-size: 20px; /* Adjusted font size */
  
}

.circle p {
  font-size: 16px; /* Adjusted font size */
  margin-top: -5px;
}
/* Circle specific styles */
.circle-1 {
  background-color: #fccf17;
  top: 22%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.circle-2 {
  background-color: #C23616;
  top: 35%;
  bottom: 0;
  left: -5%;
 
}

.circle-3 {
  background-color: #0ABDE3;
  top: 35%;
  bottom: 0;
  right: -5%;
}

/* Rest of your CSS remains the same */

.main-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #edebd9;
  padding: 0px 70px; 
  gap: 20px;
}

.guidelines {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px; /* Added padding */
  text-align: left;
  width: 100%; /* Adjusted width */
  height: 70%;
  
  color: white;
  border-radius: 40px;
}
.guide{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px 40px; /* Added padding */
  text-align: left;
  color: white;
  border-radius: 40px;
  background-color: #037272; /* Match background color */
  border: 3px solid white;
}
.guidelines h2 {
  font-size: 24px;
  font-weight: 600; /* Adjusted font size */
}

.guidelines p {
  font-size: 18px; /* Adjusted font size */
  margin-top: 10px;
}

.explore {
  margin-top: 20px; /* Added margin top */
  padding: 10px 20px; /* Added padding from all sides */
  text-align: center;
  /* background-color: #1c1f4c; */
  border: 3px solid #1c1f4c; /* Added white border */
  border-radius: 10px;
  display: inline-block; /* Display as inline block */
}

.explore a {
  font-size: 20px;
  color: #1c1f4c; /* Text color */
  text-decoration: none;
  font-weight: bold;
  position: relative;
  display: inline-block;
}

.explore a::after {
 /* Unicode character for right arrow */
  position: absolute;
  opacity: 0; /* Initially hidden */
  transform: translateX(-10px); /* Move to the left */
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.explore {
  animation: moveRight 1s infinite alternate; /* Apply animation on hover */
}

.explore:hover a::after {
  opacity: 1;
}

/* Added shadow effect to the text */
.explore a {
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.7);
}

@keyframes moveRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(20px);
  }
}
}


.flipping-cards {
  background: linear-gradient(to bottom, #2980b9, #3498db);
  padding: 40px 0;
  text-align: center;
}

.card-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.card {
  width: 200px;
  height: 250px;
 margin-right: 120px;
 border-radius: 150px;
  perspective: 1000px;
  margin-bottom: 50px;
}

.card-inner {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.5s;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  cursor: pointer;
  overflow: hidden; */
}

.card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  backface-visibility: hidden;
  padding: 20px;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
}

.card-front {
  background: #fff;
  color: #3498db;
  transform: rotateY(0deg);
  /* transition: background 0.3s ease-in-out; */
}

.card-front {
  background: #fff;
  color: #3498db;

  
}

.card-back {
  background: #d4ac0d; /* Changed background color to yellow */
  color: #fff; /* Changed text color to white */
  transform: rotateY(180deg);
  /* transition: background 0.3s ease-in-out; */

}

/* .card:hover .card-back {
   display: block;  
  opacity: 1;

  
} */


.testimonials {
  background-color: #f5f5f5;
  padding: 40px 0;
  text-align: center;
}

.testimonial {
  margin-bottom: 20px;
}

.testimonial p {
  font-size: 16px;
  color: #333;
  margin: 0;
}

.author {
  font-weight: bold;
  margin-top: 10px;
}



.contact {
  background-color: #14496c;
  color: #fff;
  padding: 40px 0;
  text-align: center;
}

.contact p {
  font-size: 16px;
  margin: 0;
}

.contact-info p {
  font-size: 18px;
  margin: 10px 0;
}

.contact-info a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
