/* Container */
.registration-section {
    max-width: 800px;
    margin: auto;
    font-family: Arial, sans-serif;
    padding: 15px;
}

/* Title */
.registration-title {
    color: white;
    background: linear-gradient(90deg, orange, #ff6600);
    padding: 12px 20px;
    text-align: center;
    border-radius: 8px;
    font-size: 1.5rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    margin-bottom: 10px;
}

/* List */
.registration-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.registration-list li {
    margin-bottom: 7px;
}

.registration-list li a {
    display: block;
    text-decoration: none;
    background: #f8f9fa;
    padding: 12px 15px;
    border-radius: 6px;
    font-size: 1rem;
    color: #333;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

/* Hover Effect */
.registration-list li a:hover {
    background: #ffecd1;
    transform: translateX(5px);
    color: #ff6600;
}

/* PDF Iframe */
.registration-pdf {
    width: 100%;
    height: 620px;
    border: 2px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .registration-pdf {
        height: 400px;
    }
    .registration-title {
        font-size: 1.2rem;
    }
}
/* Container for cards */
.info-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1000px;
    padding: 15px;
    font-family: Arial, sans-serif;
}

/* Card Style */
.info-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    border: 2px solid #ffc107;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.info-card h5 {
    font-size: 1.2rem;
    color: #ffc107;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.info-card p {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Hover Effect */
.info-card:hover {
    background: #ffc107;
    color: #fff;
    transform: scale(1.03);
}

.info-card:hover h5 {
    color: #fff;
}
/* PDF Frame */
.pdf-section {
    text-align: center;
    margin: 20px auto;
    max-width: 1000px;
}

.pdf-frame {
    width: 100%;
    height: 500px;
  border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .info-section {
        grid-template-columns: 1fr;
    }
    .pdf-frame {
        height: 400px;
    }
}

.route-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #8B0000;
}

.route-intro {
    font-size: 1rem;
    margin-bottom: 25px;
    color: #333;
}

.route-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    padding: 15px;
    transition: transform 0.3s ease;
}

.route-card.reverse {
    flex-direction: row-reverse;
}

.route-card:hover {
    transform: translateY(-5px);
}

.route-img {
    width: 250px;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    border: 3px solid #8B0000;
}

.route-content h3 {
    font-size: 1.2rem;
    color: #ffc107;
    margin-bottom: 8px;
}

.route-content p {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .route-card {
        flex-direction: column;
        text-align: center;
    }
    .route-card.reverse {
        flex-direction: column;
    }
    .route-img {
        width: 100%;
        height: auto;
    }
}
.route-card1 {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.route-card1 .small-img {
    width: 120px; 
    height: auto;
    margin: 0 auto 15px;
    display: block;
    border: 2px solid maroon;
    border-radius: 6px;
}


.route-content1 {
    padding: 15px;
    text-align: justify;
}

.route-content1 h3 {
    margin-bottom: 10px;
    color: maroon;
    font-size: 18px;
    font-weight: bold;
}
/* Section with curved maroon background */
.trip-section {
  background: #fff;
  overflow: hidden;
  position: relative;
}
.curved-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(135deg, #800000, #a52a2a);
  border-bottom-left-radius: 50% 20%;
  border-bottom-right-radius: 50% 20%;
  z-index: 1;
}
.trip-section .container {
  position: relative;
  z-index: 2;
}

/* Heading */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Floating Form */
.form-box {
  background: #fff;
  border: 3px solid #d4af37; /* golden border */
  border-radius: 20px;
  max-width: 850px;
  position: relative;
  z-index: 2;
}

/* Labels */
.form-label {
  font-weight: 600;
  color: #800000;
  margin-bottom: 6px;
  text-align: left;
  display: block;
}

/* Unique Underline Input */
.underline-input {
  width: 100%;
  border: none;
  border-bottom: 2px solid #800000;
  background: transparent;
  padding: 10px 4px;
  font-size: 1rem;
  color: #800000;
  transition: all 0.3s ease-in-out;
}
.underline-input:focus {
  border-color: #d4af37; /* gold glow */
  box-shadow: 0 2px 6px rgba(212,175,55,0.4);
  outline: none;
}

/* Gradient Button */
.btn-gradient {
  padding: 14px 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, #800000, #d4af37);
  color: #fff;
  border: none;
  font-size: 1.1rem;
  transition: all 0.3s ease-in-out;
}
.btn-gradient:hover {
  background: linear-gradient(135deg, #d4af37, #800000);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(128,0,0,0.4);
}
/* Full screen height for slides */
.carousel-item1 {
  height: 100vh; /* full viewport height */
  min-height: 500px;
}
.carousel-img {
  object-fit: cover;
  height: 100%;
}

/* Centered captions */
.custom-caption {
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex !important;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

/* Heading and text */
.custom-caption h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}
.custom-caption h1 span {
  color: #ffcc00;
}
.custom-caption p {
  font-size: 1.2rem;
  color: #eee;
  margin-top: 10px;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
}
.custom-caption .btn {
  font-weight: 600;
  border-radius: 30px;
  padding: 10px 25px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .custom-caption h1 { font-size: 2.2rem; }
  .custom-caption p { font-size: 1rem; }
}
@media (max-width: 576px) {
  .carousel-item1 { height: 70vh; } /* slightly smaller for mobiles */
  .custom-caption h1 { font-size: 1.6rem; }
  .custom-caption p { font-size: 0.9rem; }
}


