
.icon_vala_index_top{
  z-index: 10;
}
@media (max-width: 768px) {
  .image-1, .image-2, .image-3 {
      background-size: contain;
      height: auto;
  }
}



.schedule-container {
    width: 100%;
    max-width: 600px;
    /* background-color: #fff; */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.schedule-title {
    background-color: #4caf4f00;
    color: #fff;
    padding: 15px;
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
}

.schedule-table th,
.schedule-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.schedule-table th {
    /* background-color: #f2f2f2; */
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: bold;
    color: #333;
}

.schedule-table tr:hover {
    background-color: #f1f1f1;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .schedule-table thead {
        display: none;
    }

    .schedule-table, .schedule-table tbody, .schedule-table tr, .schedule-table td {
        display: block;
        width: 100%;
    }

    .schedule-table tr {
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 8px;
    }

    .schedule-table td {
        text-align: right;
        padding-left: 50%;
        position: relative;
    }

    .schedule-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        font-weight: bold;
        text-align: left;
    }
}








/* count down style  */
.countdown-container {
  display: flex;
  width: 100%;
  /* max-width: 70%; */
  justify-content: space-between;
}

.days-container,
.hours-container,
.minutes-container, 
.seconds-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(0,0,0,0.1);
  /* border: 2px solid rgba(255,255,255,0.3); */
  padding: 1rem .5rem;
  /* width: 70px;
  height: 70px; */
  /* border-radius: 99px; */
}

.days,
.hours,
.minutes,
.seconds {
  font-size: 1.2em; 
  /* margin: 10px 0; */
}


.days-label,
.hours-label,
.minutes-label,
.seconds-label {
  text-transform: uppercase;
  /* margin-bottom: 5px; */
  font-size: small;
}

@media (max-width: 800px) {
  
  .countdown-container {
    max-width: 100%;
  }
  
  .days-container,
  .hours-container,
  .minutes-container, 
  .seconds-container {
    font-size: 0.8em;
    /* width: 100px;
    height: 100px; */
    padding: 1rem .5rem;
  }
}


  



/* wedding detail style  */

.card-main{
  display: flex; 
   flex-wrap: wrap; /* Enables wrapping of items */
   justify-content: space-between; /* Aligns items with space between them */
   gap: 20px; /* Adds space between items */
   margin: 0 auto; /* Center the container if needed */
   overflow: hidden; /* Prevents overflow from exceeding the container */
   padding: 10px; /* Optional: Adds some padding for spacing */
   
 }
 .card1 {
   margin: 0 auto;
   padding: .5em;
   width: 280px;
   background: #fff;
   border-radius: 10px;
   text-align: center;
   position: relative;
   color: #480ca8;
   font-family: "Lora";
 }
 @property --angle {
   syntax: "<angle>";
   initial-value: 0deg;
   inherits: false;
 }
 .card1::after, #card1::before {
   content: "";
   width: 100%;
   height: 100%;
   position: absolute;
   background-image: conic-gradient(
   from var(--angle),
     #390099,
     #FF4000 80%,
     #9E0059 80%,
     #FF0054 80%,
     #6a00f4 80%
   );
   top: 50%;
   left: 50%;
   translate: -50% -50%;
   z-index: -1;
   padding: 1px;
   border-radius: 10px;
   animation: spin 2s linear infinite;
 }
 .card1::before {
   padding: 5px;
   filter: blur(1.5rem);
   opacity: 0.5;
 }
 
 @keyframes spin {
   from {
     --angle: 0deg;
   }
   to {
     --angle: 360deg;
   }
 }