/* Custom styles for schedule timeline */
.schedule-timeline {
  margin-top: 40px;
}

.schedule-item {
  background: var(--color-white);
  border-radius: 15px;
  padding: 20px 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.schedule-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--color-primary);
}

.schedule-item .time {
  font-size: 18px;
  font-weight: var(--p-bold);
  color: var(--color-primary);
  margin-bottom: 8px;
  font-family: var(--font-secondary);
}

.schedule-item .activity {
  font-size: 14px;
  color: var(--color-body);
  font-weight: var(--p-medium);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .schedule-item {
    padding: 15px 10px;
    margin-bottom: 15px;
  }
  
  .schedule-item .time {
    font-size: 16px;
  }
  
  .schedule-item .activity {
    font-size: 13px;
  }
}

/* Enhanced styling for the about program section */
#about-program {
  background: linear-gradient(135deg, #f8f9ff 0%, #fff5f8 100%);
}

#about-program .about-content h3 {
  color: var(--color-heading-1);
  font-weight: var(--p-bold);
  margin-bottom: 20px;
}

#about-program .about-content h4 {
  color: var(--color-primary);
  font-weight: var(--p-semi-bold);
  margin-bottom: 15px;
}

#about-program .about-wrapper .wrapper-list {
  margin-bottom: 25px;
}

#about-program .about-wrapper .wrapper-list .list-inner {
  background: var(--color-white);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

#about-program .about-wrapper .wrapper-list .list-inner:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

#about-program .about-wrapper .wrapper-list .list-inner .icon {
  width: 60px;
  height: 60px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

#about-program .about-wrapper .wrapper-list .list-inner .icon img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

#about-program .about-wrapper .wrapper-list .list-inner .content .title {
  color: var(--color-heading-1);
  font-weight: var(--p-bold);
  margin-bottom: 10px;
}

#about-program .about-wrapper .wrapper-list .list-inner .content .desc {
  color: var(--color-body);
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  #about-program .about-wrapper .wrapper-list .list-inner {
    padding: 20px;
  }
  
  #about-program .about-wrapper .wrapper-list .list-inner .icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }
  
  #about-program .about-wrapper .wrapper-list .list-inner .icon img {
    width: 25px;
    height: 25px;
  }
}

/* Admissions page styles */
.breadcrumb-area {
  background: linear-gradient(135deg, var(--color-primary) 0%, #ffb347 100%);
  padding: 80px 0;
  position: relative;
}

.breadcrumb-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.breadcrumb-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.breadcrumb-content .title {
  color: var(--color-white);
  font-size: 48px;
  font-weight: var(--p-bold);
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.breadcrumb-content .breadcrumb {
  background: transparent;
  justify-content: center;
  margin-bottom: 0;
}

.breadcrumb-content .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: var(--p-medium);
}

.breadcrumb-content .breadcrumb-item.active {
  color: var(--color-white);
  font-weight: var(--p-bold);
}

.breadcrumb-content .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.7);
}

/* Step cards styling */
.step-card {
  background: var(--color-white);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary) 0%, #ffb347 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--color-primary);
}

.step-card:hover::before {
  transform: scaleX(1);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #ffb347 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: var(--p-bold);
  color: var(--color-white);
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(255, 211, 53, 0.3);
}

.step-title {
  color: var(--color-heading-1);
  font-size: 20px;
  font-weight: var(--p-bold);
  margin-bottom: 15px;
  line-height: 1.3;
}

.step-description {
  color: var(--color-body);
  line-height: 1.6;
  margin-bottom: 0;
  font-size: 15px;
}

/* CTA section styling */
.cta-section {
  background: linear-gradient(135deg, #f8f9ff 0%, #fff5f8 100%);
  border-radius: 20px;
  padding: 40px;
  margin-top: 60px;
}

.cta-section h3 {
  color: var(--color-heading-1);
  font-weight: var(--p-bold);
  margin-bottom: 20px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-buttons .rts-btn {
  min-width: 180px;
  text-align: center;
}

@media (max-width: 768px) {
  .breadcrumb-content .title {
    font-size: 36px;
  }
  
  .step-card {
    padding: 25px;
    margin-bottom: 20px;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .step-title {
    font-size: 18px;
  }
  
  .cta-section {
    padding: 30px 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .rts-btn {
    width: 100%;
    max-width: 300px;
  }
}

/* Achievement cards styling */
.achievement-card {
  background: var(--color-white);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.achievement-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary) 0%, #ffb347 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.achievement-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--color-primary);
}

.achievement-card:hover::before {
  transform: scaleX(1);
}

.achievement-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #ffb347 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  color: var(--color-white);
  box-shadow: 0 5px 15px rgba(255, 211, 53, 0.3);
}

.achievement-title {
  color: var(--color-heading-1);
  font-size: 18px;
  font-weight: var(--p-bold);
  margin-bottom: 15px;
  line-height: 1.3;
}

.achievement-desc {
  color: var(--color-body);
  line-height: 1.6;
  margin-bottom: 0;
  font-size: 14px;
}

/* Testimonial card styling */
.testimonial-card {
  background: var(--color-white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-content {
  position: relative;
}

.quote-icon {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #ffb347 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--color-white);
  box-shadow: 0 5px 15px rgba(255, 211, 53, 0.3);
}

.testimonial-text {
  color: var(--color-body);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
  font-style: italic;
  padding-left: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.author-name {
  color: var(--color-heading-1);
  font-weight: var(--p-bold);
  margin-bottom: 0;
  font-size: 16px;
}

.star-rating {
  display: flex;
  gap: 5px;
}

.star-rating i {
  color: #ffd700;
  font-size: 18px;
}

@media (max-width: 768px) {
  .achievement-card {
    padding: 25px;
    margin-bottom: 20px;
  }
  
  .achievement-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .achievement-title {
    font-size: 16px;
  }
  
  .achievement-desc {
    font-size: 13px;
  }
  
  .testimonial-card {
    padding: 30px 20px;
  }
  
  .testimonial-text {
    font-size: 16px;
    padding-left: 10px;
  }
  
  .quote-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
    top: -15px;
    left: -15px;
  }
  
  .testimonial-author {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Custom styles for Venus Childcare */

/* Reduce space after main title */
.banner-content-one {
    padding: 200px 0 200px !important; /* Reduced from 300px 0 360px */
}

@media (max-width: 1200px) {
    .banner-content-one {
        padding: 150px 0 150px 20px !important; /* Reduced from 250px 0 200px 20px */
    }
}

@media (max-width: 991px) {
    .banner-content-one {
        padding: 60px 0 150px 20px !important; /* Reduced from 80px 0 200px 20px */
    }
}

@media only screen and (max-width: 767px) {
    .banner-content-one {
        padding: 40px 0 100px 20px !important; /* Reduced padding for mobile */
    }
}

/* Specific mobile/phone size adjustments (450x950) */
@media (max-width: 450px) {
    .banner-content-one {
        padding: 20px 0 60px 20px !important; /* Significantly reduced for mobile phones */
    }
    
    /* Reduce space after banner image */
    .banner-right-img {
        margin-bottom: 100px !important; /* Reduced from 300px */
    }
    
    /* Reduce overall banner section spacing */
    .banner-area-one {
        padding-bottom: 50px !important;
    }
}

/* Extra small mobile devices */
@media (max-width: 400px) {
    .banner-content-one {
        padding: 15px 0 40px 15px !important; /* Even more compact */
    }
    
    .banner-right-img {
        margin-bottom: 60px !important;
    }
}

/* Inside Venus Gallery Modal Styles */
#insideVenusModal .modal-dialog {
    max-width: 100%;
    margin: 0;
}

#insideVenusModal .modal-content {
    border-radius: 0;
    border: none;
    box-shadow: none;
    background: #000;
    height: 100vh;
}

#insideVenusModal .modal-header {
    border-bottom: none;
    padding: 20px 30px;
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

#insideVenusModal .modal-title {
    font-size: 24px;
    font-weight: 600;
    color: white;
    margin: 0;
}

#insideVenusModal .btn-close {
    filter: invert(1);
    opacity: 0.8;
}

#insideVenusModal .btn-close:hover {
    opacity: 1;
}

#insideVenusModal .modal-body {
    padding: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inside-venus-gallery {
    position: relative;
    width: 100%;
    height: 100%;
}

.inside-venus-gallery .swiper {
    width: 100%;
    height: 100%;
}

.gallery-item {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 60px 40px 40px;
    text-align: center;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.image-caption h4 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.image-caption p {
    font-size: 18px;
    margin: 0;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Swiper Navigation Buttons */
.swiper-button-next-insidevenus,
.swiper-button-prev-insidevenus {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
}

.swiper-button-next-insidevenus {
    right: 30px;
}

.swiper-button-prev-insidevenus {
    left: 30px;
}

.swiper-button-next-insidevenus:hover,
.swiper-button-prev-insidevenus:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateY(-50%) scale(1.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.swiper-button-next-insidevenus i,
.swiper-button-prev-insidevenus i {
    font-size: 24px;
    font-weight: bold;
}

/* Hide default Swiper navigation styles */
.swiper-button-next-insidevenus::after,
.swiper-button-prev-insidevenus::after {
    display: none;
}

/* Swiper Pagination */
.swiper-pagination-insidevenus-modal {
    bottom: 30px;
}

.swiper-pagination-insidevenus-modal .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.swiper-pagination-insidevenus-modal .swiper-pagination-bullet-active {
    background: #667eea;
    transform: scale(1.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    #insideVenusModal .modal-header {
        padding: 15px 20px;
    }
    
    #insideVenusModal .modal-title {
        font-size: 20px;
    }
    
    .image-caption {
        padding: 40px 20px 30px;
    }
    
    .image-caption h4 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .image-caption p {
        font-size: 16px;
    }
    
    .swiper-button-next-insidevenus,
    .swiper-button-prev-insidevenus {
        width: 50px;
        height: 50px;
    }
    
    .swiper-button-next-insidevenus i,
    .swiper-button-prev-insidevenus i {
        font-size: 20px;
    }
    
    .swiper-pagination-insidevenus-modal {
        bottom: 20px;
    }
    
    .swiper-pagination-insidevenus-modal .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        margin: 0 4px;
    }
}

@media (max-width: 480px) {
    .image-caption h4 {
        font-size: 20px;
    }
    
    .image-caption p {
        font-size: 14px;
    }
    
    .swiper-button-next-insidevenus,
    .swiper-button-prev-insidevenus {
        width: 45px;
        height: 45px;
    }
    
    .swiper-button-next-insidevenus i,
    .swiper-button-prev-insidevenus i {
        font-size: 18px;
    }
}

/* Increase logo size for mobile view */
@media (max-width: 450px) {
    .header-one-wrapper .left-side-header .logo-area {
        padding: 15px 0 !important; /* Increased from 12px 0 */
        width: 180px !important; /* Increased from 130px */
    }
}

@media (max-width: 767px) {
    .header-one-wrapper .left-side-header .logo-area {
        width: 160px !important; /* Increased logo size for tablets */
    }
}

/* Additional mobile logo size adjustments */
@media (max-width: 575px) {
    .header-one-wrapper .left-side-header .logo-area {
        width: 170px !important;
    }
}

@media (max-width: 400px) {
    .header-one-wrapper .left-side-header .logo-area {
        width: 150px !important; /* Slightly smaller for very small screens */
    }
}

/* Program Page Styles */
.program-details {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.program-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.program-card .card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 24px;
}

.program-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.program-card p {
    font-size: 16px;
    color: #666;
    margin: 0;
    font-weight: 500;
}

.important-notice .alert {
    border-radius: 15px;
    border: none;
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    color: #856404;
    font-size: 16px;
    padding: 20px;
}

/* Vacation Calendar Styles */
.vacation-calendar {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.holiday-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
    height: 100%;
}

.holiday-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
}

.holiday-card .holiday-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 20px;
    backdrop-filter: blur(10px);
}

.holiday-card h5 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.vacation-notice .alert {
    border-radius: 15px;
    border: none;
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    color: #0c5460;
    font-size: 16px;
    padding: 20px;
    line-height: 1.6;
}

/* Schedule Timeline Styles */
.schedule-timeline {
    margin-top: 40px;
}

.schedule-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
    height: 100%;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.schedule-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
}

.schedule-item .time {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.schedule-item .activity {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.4;
}

/* Inside Venus Gallery Modal Styles */
#insideVenusModal .modal-dialog {
    max-width: 100%;
    margin: 0;
}

#insideVenusModal .modal-content {
    border-radius: 0;
    border: none;
    box-shadow: none;
    background: #000;
    height: 100vh;
}

#insideVenusModal .modal-header {
    border-bottom: none;
    padding: 20px 30px;
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

#insideVenusModal .modal-title {
    font-size: 24px;
    font-weight: 600;
    color: white;
    margin: 0;
}

#insideVenusModal .btn-close {
    filter: invert(1);
    opacity: 0.8;
}

#insideVenusModal .btn-close:hover {
    opacity: 1;
}

#insideVenusModal .modal-body {
    padding: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inside-venus-gallery {
    position: relative;
    width: 100%;
    height: 100%;
}

.inside-venus-gallery .swiper {
    width: 100%;
    height: 100%;
}

.gallery-item {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 60px 40px 40px;
    text-align: center;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.image-caption h4 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.image-caption p {
    font-size: 18px;
    margin: 0;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Swiper Navigation Buttons */
.swiper-button-next-insidevenus,
.swiper-button-prev-insidevenus {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
}

.swiper-button-next-insidevenus {
    right: 30px;
}

.swiper-button-prev-insidevenus {
    left: 30px;
}

.swiper-button-next-insidevenus:hover,
.swiper-button-prev-insidevenus:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateY(-50%) scale(1.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.swiper-button-next-insidevenus i,
.swiper-button-prev-insidevenus i {
    font-size: 24px;
    font-weight: bold;
}

/* Hide default Swiper navigation styles */
.swiper-button-next-insidevenus::after,
.swiper-button-prev-insidevenus::after {
    display: none;
}

/* Swiper Pagination */
.swiper-pagination-insidevenus-modal {
    bottom: 30px;
}

.swiper-pagination-insidevenus-modal .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.swiper-pagination-insidevenus-modal .swiper-pagination-bullet-active {
    background: #667eea;
    transform: scale(1.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .program-details,
    .vacation-calendar {
        padding: 20px;
    }
    
    .program-card {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .program-card .card-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .program-card h4 {
        font-size: 16px;
    }
    
    .program-card p {
        font-size: 14px;
    }
    
    .holiday-card {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .holiday-card .holiday-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .holiday-card h5 {
        font-size: 14px;
    }
    
    .schedule-item {
        padding: 15px;
        min-height: 100px;
    }
    
    .schedule-item .time {
        font-size: 16px;
    }
    
    .schedule-item .activity {
        font-size: 12px;
    }
    
    #insideVenusModal .modal-header {
        padding: 15px 20px;
    }
    
    #insideVenusModal .modal-title {
        font-size: 20px;
    }
    
    .image-caption {
        padding: 40px 20px 30px;
    }
    
    .image-caption h4 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .image-caption p {
        font-size: 16px;
    }
    
    .swiper-button-next-insidevenus,
    .swiper-button-prev-insidevenus {
        width: 50px;
        height: 50px;
    }
    
    .swiper-button-next-insidevenus i,
    .swiper-button-prev-insidevenus i {
        font-size: 20px;
    }
    
    .swiper-pagination-insidevenus-modal {
        bottom: 20px;
    }
    
    .swiper-pagination-insidevenus-modal .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        margin: 0 4px;
    }
}

@media (max-width: 480px) {
    .image-caption h4 {
        font-size: 20px;
    }
    
    .image-caption p {
        font-size: 14px;
    }
    
    .swiper-button-next-insidevenus,
    .swiper-button-prev-insidevenus {
        width: 45px;
        height: 45px;
    }
    
    .swiper-button-next-insidevenus i,
    .swiper-button-prev-insidevenus i {
        font-size: 18px;
    }
}

/* Increase logo size for mobile view */
@media (max-width: 450px) {
    .header-one-wrapper .left-side-header .logo-area {
        padding: 15px 0 !important; /* Increased from 12px 0 */
        width: 180px !important; /* Increased from 130px */
    }
}

@media (max-width: 767px) {
    .header-one-wrapper .left-side-header .logo-area {
        width: 160px !important; /* Increased logo size for tablets */
    }
}

/* Additional mobile logo size adjustments */
@media (max-width: 575px) {
    .header-one-wrapper .left-side-header .logo-area {
        width: 170px !important;
    }
}

@media (max-width: 400px) {
    .header-one-wrapper .left-side-header .logo-area {
        width: 150px !important; /* Slightly smaller for very small screens */
    }
}

/* Footer Styles */
.footer-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.footer-single-wized {
    margin-bottom: 30px;
}

.footer-single-wized .body {
    padding: 0;
}

.footer-single-wized .wrapper-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-single-wized .wrapper-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.footer-single-wized .wrapper-list li i {
    color: #667eea;
    margin-right: 12px;
    margin-top: 3px;
    font-size: 16px;
    min-width: 16px;
}

.footer-single-wized .wrapper-list li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-single-wized .wrapper-list li a:hover {
    color: #667eea;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #666;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links li a::before {
    content: '→';
    color: #667eea;
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.footer-links li a:hover {
    color: #667eea;
    padding-left: 5px;
}

.footer-links li a:hover::before {
    transform: translateX(3px);
}

.footer-desc {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    margin-top: 20px;
}

.social-icons {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
}

.social-icons li {
    margin: 0;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: transform 0.3s ease;
    z-index: 1;
}

.social-icon i {
    position: relative;
    z-index: 2;
    font-size: 18px;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.social-icon:hover::before {
    transform: scale(1.1);
}

.social-icon.facebook::before {
    background: linear-gradient(135deg, #1877f2 0%, #0d6efd 100%);
}

.social-icon.instagram::before {
    background: linear-gradient(135deg, #e4405f 0%, #833ab4 50%, #405de6 100%);
}

.social-icon.twitter::before {
    background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
}

.social-icon.youtube::before {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

/* Copyright area */
.copyright-area-one-border {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.02);
}

.copyright-area-one {
    text-align: center;
}

.copyright-area-one p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

/* Mobile Responsive Footer */
@media (max-width: 768px) {
    .footer-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .footer-single-wized .wrapper-list li {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .footer-links li a {
        font-size: 14px;
    }
    
    .footer-desc {
        font-size: 14px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .social-icon i {
        font-size: 16px;
    }
    
    .social-icons {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .social-icons {
        justify-content: center;
        gap: 10px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
    
    .social-icon i {
        font-size: 14px;
    }
}

/* Custom Daily Schedule Table Styles */
.custom-schedule-table {
  background: #f8f9fd;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(44,90,160,0.07);
  padding: 2rem 1.5rem;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.schedule-row {
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #e0f7fa 0%, #fce4ec 100%);
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(44,90,160,0.08);
  padding: 1.2rem 1.5rem;
  margin-bottom: 0.7rem;
  transition: box-shadow 0.2s;
  position: relative;
}
.schedule-row:hover {
  box-shadow: 0 4px 16px rgba(44,90,160,0.13);
}
.schedule-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  min-height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd54f 0%, #4fc3f7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.3rem;
  box-shadow: 0 2px 8px rgba(44,90,160,0.10);
  border: 3px solid #fff;
}
.schedule-icon img {
  width: 32px;
  height: 32px;
  display: block;
}
.schedule-time {
  flex: 0 0 170px;
  font-weight: 700;
  color: #2c5aa0;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.schedule-activity {
  flex: 1;
  font-size: 1.1rem;
  color: #444;
  font-weight: 500;
  padding-left: 1.2rem;
  position: relative;
}
.schedule-activity:before {
  display: none;
}
@media (max-width: 600px) {
  .custom-schedule-table {
    padding: 1rem 0.5rem;
    gap: 1.5rem;
  }
  .schedule-row {
    flex-direction: column;
    align-items: center;
    padding: 1.2rem 0.7rem 1.5rem 0.7rem;
    margin-bottom: 1.3rem;
    background: #fff;
    box-shadow: 0 2px 10px rgba(44,90,160,0.07);
    border-radius: 18px;
    border: 1.5px solid #f3f3f3;
  }
  .schedule-icon {
    margin: 0 0 0.7rem 0;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    border-radius: 50%;
    background: #f7faff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 4px rgba(44,90,160,0.06);
    border: 1.5px solid #e0e7ef;
  }
  .schedule-time {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    background: none;
    color: #2c5aa0;
    border-radius: 0;
    padding: 0;
    font-weight: 700;
    box-shadow: none;
    display: inline-block;
    text-align: center;
  }
  .schedule-activity {
    font-size: 1.08rem;
    padding-left: 0;
    text-align: center;
    background: none;
    border-radius: 0;
    padding: 0.7rem 0.5rem 0 0.5rem;
    margin-top: 0.2rem;
    width: 100%;
    box-shadow: none;
    color: #444;
  }
}

.schedule-flex-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.schedule-icon.fancy {
  width: 54px;
  height: 54px;
  min-width: 54px;
  min-height: 54px;
  border-radius: 50%;
  background: #ffe082;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(44,90,160,0.10);
  border: 2.5px solid #fffde7;
}
.schedule-icon.fancy img {
  width: 32px;
  height: 32px;
  display: block;
}
.schedule-time {
  font-weight: 700;
  color: #2c5aa0;
  font-size: 1.1rem;
  min-width: 140px;
  text-align: center;
}
.schedule-activity {
  font-size: 1.1rem;
  color: #444;
  font-weight: 500;
  flex: 1;
  text-align: left;
}
@media (max-width: 700px) {
  .schedule-flex-row {
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
  }
  .schedule-time {
    min-width: unset;
    font-size: 1.05rem;
    text-align: center;
  }
  .schedule-activity {
    font-size: 1.05rem;
    text-align: center;
    width: 100%;
  }
  .schedule-icon.fancy {
    margin-bottom: 0.2rem;
  }
} 