 /* Slider container */
 .carousel-container {
    position: relative;
  }

  /* Full-screen background image with overlay */
  .carousel-item img {
    height: 500px;
    object-fit: cover;
    width: 100%;
    filter: blur(-10px);
  }

  .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
  }

  /* Left-side overlay text styling */
  .header-text {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    max-width: 500px;
    color: white;
    font-family: 'Baskerville Old Face', serif;
  }

  .header-text h1 {
    font-size: 2.5rem;
    font-weight: bold;
  }

  .header-text p {
    font-size: 1.25rem;
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .header-text .btn {
    padding: 10px 20px;
    font-size: 1.1rem;
  }

  /* Container for the three colored content cards */
  .content-container {
    display: flex;
    justify-content: center;
    position: relative;
    top: -80px;
    z-index: 2;
    font-family: 'Baskerville Old Face', serif;
  }

  .content-card {
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    width: 30%;
    margin: 0 15px;
    color: black;
    background-color: #f0f0f0; /* Replace this with your desired color */
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2);
  }
  

  .content-card:nth-child(1) {
    background-color: white; /* Blue */
  }

  .content-card:nth-child(2) {
    background-color: white; /* Red */
  }

  .content-card:nth-child(3) {
    background-color: white; /* Green */
  }

  .content-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .content-card p {
    font-size: 1rem;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    /* Reduce slider height */
    .carousel-item img {
      height: 300px; /* Reduced height for mobile devices */
    }

    .header-text {
      top: 20%;
      left: 5%;
      max-width: 100%;
      text-align: center;
      transform: none;
    }

    .content-container {
      flex-direction: column;
      align-items: center;
      top: 0;
    }

    .content-card {
      width: 96%; /* Increase card width to take up more space on mobile */
      margin: 6px 0; /* Add more space between cards */
    }
  }
  .feature-card {
    
    border: none;
    text-align: center;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-family: 'Baskerville Old Face', serif;
  }
  .feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px;
  }
  .feature-icon.red {
    background-color: #e74c3c;
    color: #fff;
  }
  .feature-icon.blue {
    background-color: #2c3e50;
    color: #fff;
  }
  .feature-title {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
  }
  @media (max-width: 768px) {
    .feature-card {
      margin-bottom: 20px; /* Adds spacing between cards */
    }
  }
  
/* Base styles */
#registration {
  font-family: 'Baskerville Old Face', serif;
  padding: 6vw 8vw 6vw 8vw;
  background-image: linear-gradient(rgba(99,112,168,0.5), rgba(81,91,233,0.5)), url("image/1.jpg");
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#registration .reminder {
  color: #fff;
}

#registration .reminder h1 {
  color: #fff;
}

#registration .reminder .time {
  display: flex;
  margin-top: 20px;
}

#registration .reminder .time .date {
  text-align: center;
  padding: 8px 20px; /* Reduced padding */
  background-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  border-radius: 10px;
  margin: 0 5px 10px 5px;
  border: 1px solid #fff;
  font-size: 0.9rem; /* Reduced font size */
  font-weight: 600;
}

#registration .from {
      background: #fff;
      border-radius: 8px;
      display: flex;
      flex-direction: column;
      padding: 40px;
      box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
      width: 80%; /* Adjusted width */
      max-width: 400px; /* Limit width for smaller screens */
      margin: 0 auto; /* Center horizontally */
  }
#registration .from h3 {
  color: #000;
}

#registration .from input {
  margin: 15px 0;
  padding: 15px 10px;
  border: 1px solid rgb(84, 40, 241);
  outline: none;
}

#registration .from .btn {
  margin-top: 20px;
}

#registration a.yellow {
  text-decoration: none;
  font-size: 0.9rem;
  padding: 13px 35px;
  background-color: #fff;
  border-radius: 5px;
  color: #fff;
  background-color: #333;
}

#registration a.yellow:hover {
  color: #000;
  background-color: #ADD8E6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #registration {
      flex-direction: column;
      align-items: stretch;
  }
  
  #registration .reminder {
      order: 2; /* Move the timer below the form */
      margin-top: 10px; /* Reduced margin */
      padding: 5px 20px; /* Reduced padding */
  }
  #registration .reminder .time .date {
  text-align: center;
  padding: 4px 5px; /* Reduced padding */
  background-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  border-radius: 10px;
  margin: 0 5px 10px 5px;
  border: 1px solid #fff;
  font-size: 0.9rem; /* Reduced font size */
  font-weight: 600;
  

}}/* Social Icons Container */
.social-icons {
position: fixed;
left: 15px;
top: 20%;
z-index: 1000;
display: flex;
flex-direction: column;
gap: 15px; /* Space between icons */
}

/* Individual Icon Styling */
.social-icon {
background-color: #25d366; /* Default: WhatsApp Green */
color: white;
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
transition: transform 0.3s ease, background-color 0.3s ease;
text-decoration: none;
}

.social-icon:hover {
transform: scale(1.1);
}

/* Icon Colors */
.social-icon.email {
background-color: #007bff; /* Blue for Email */
}

.social-icon.facebook {
background-color: #3b5998; /* Facebook Blue */
}

.social-icon i {
font-size: 24px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
.social-icon {
  width: 40px;
  height: 40px;
  font-size: 20px;
}
}
.chat-popup {
          display: none;
          position: fixed;
          bottom: 20px;
          right: 20px;
          width: 400px;
          background-color: white;
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          border-radius: 8px;
          overflow: hidden;
          z-index: 1000;
      }
      .chat-popup-header {
          background-color: #007bff;
          color: white;
          padding: 10px;
          font-size: 18px;
          display: flex;
          justify-content: space-between;
          align-items: center;
      }
      .chat-popup-header button {
          background: none;
          border: none;
          color: white;
          font-size: 20px;
          cursor: pointer;
      }
      .chat-popup-content {
          padding: 10px;
      }
      .chat-container {
          width: 100%;
          height: 300px;
          overflow-y: auto;
          border: 1px solid #ddd;
          margin-bottom: 10px;
          padding: 10px;
          border-radius: 5px;
      }
      .input-container {
          display: flex;
      }
      .input-container input {
          flex: 1;
          padding: 10px;
          border: 1px solid #ddd;
          border-radius: 4px;
      }
      .input-container button {
          padding: 10px;
          background: #007bff;
          color: white;
          border: none;
          border-radius: 4px;
          margin-left: 5px;
          cursor: pointer;
      }
      .input-container button:hover {
          background: #0056b3;
      }
      .message {
          margin: 5px 0;
      }
      .user {
          text-align: right;
          color: blue;
      }
      .bot {
          text-align: left;
          color: green;
      }
      .section-title {
          font-family: "Georgia", serif;
          font-weight: bold;
          color: #223a53;
          font-size: 36px;
          line-height: 1.2;
      }

      .section-text {
          color: #666;
          font-size: 16px;
          line-height: 1.8;
      }

      .read-more-btn {
          background-color: #ff6b43;
          color: #fff;
          padding: 12px 25px;
          border-radius: 25px;
          font-size: 16px;
          text-transform: capitalize;
          border: none;
          transition: all 0.3s ease;
          font-weight: 500;
      }

      .read-more-btn:hover {
          background-color: #e65934;
      }

      .profile-info img {
          width: 50px;
          height: 50px;
          border-radius: 50%;
      }

      .profile-info .name {
          color: #ff6b43;
          font-weight: bold;
      }

      .circle-image {
          border-radius: 50%;
          overflow: hidden;
          width: 200px;
          height: 200px;
          border: 6px solid rgba(255, 107, 67, 0.2);
      }

      .circle-image img {
          width: 100%;
          height: 100%;
          object-fit: cover;
      }

      .back-to-top {
          position: fixed;
          bottom: 20px;
          right: 20px;
          background-color: #ff6b43;
          border: none;
          color: white;
          border-radius: 50%;
          padding: 12px;
          font-size: 20px;
          display: flex;
          align-items: center;
          justify-content: center;
          cursor: pointer;
      }

      .back-to-top:hover {
          background-color: #e65934;
      }.icon-circle {
        display: inline-block;
        padding: 15px;
        background-color: #007bff; /* Change the background color as needed */
        border-radius: 50%; /* This makes it a circle */
        color: white; /* Icon color */
      }
      
      .icon-circle i {
        font-size: 24px; /* Adjust the icon size if needed */
      }
      @media (max-width: 768px) {
    .text-center {
        text-align: center !important;
    }
    .row.g-5 > div {
        margin-bottom: 20px;
    }
    .wow {
        text-align: center !important;
    }
    .about-img img {
        margin: auto !important;
    }
}
   