
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');




















        :root {
            --rvw-primary: #4a6fa5;
            --rvw-primary-dark: #2a4d7a;
            --rvw-secondary: #ff6b6b;
            --rvw-light: #f8f9fa;
            --rvw-dark: #343a40;
            --rvw-gray: #6c757d;
            --rvw-light-gray: #e9ecef;
            --rvw-success: #28a745;
            --rvw-border-radius: 12px;
            --rvw-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            --rvw-transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background-color: #f8fafc;
            color: var(--rvw-dark);
            line-height: 1.6;
            margin: 0 auto;
     max-width: 1350px;
        }

        .rvw-container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }

        .rvw-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .rvw-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--rvw-primary-dark);
            margin-bottom: 10px;
            background: linear-gradient(135deg, var(--rvw-primary), var(--rvw-primary-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .rvw-subtitle {
            color: var(--rvw-gray);
            font-size: 1.2rem;
            font-weight: 400;
        }

        .rvw-dashboard {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 30px;
            margin-bottom: 40px;
        }

        .rvw-stats-card {
            background: white;
            border-radius: var(--rvw-border-radius);
            padding: 25px;
            box-shadow: var(--rvw-shadow);
            text-align: center;
        }

        .rvw-average-rating {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--rvw-primary);
            margin: 15px 0;
        }

        .rvw-rating-stars {
            color: #FFD700;
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .rvw-total-reviews {
            color: var(--rvw-gray);
            font-size: 0.9rem;
        }

        .rvw-action-card {
            background: white;
            border-radius: var(--rvw-border-radius);
            padding: 25px;
            box-shadow: var(--rvw-shadow);
        }

        .rvw-write-review-btn {
            display: block;
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, var(--rvw-primary), var(--rvw-primary-dark));
            color: white;
            border: none;
            border-radius: var(--rvw-border-radius);
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--rvw-transition);
            box-shadow: 0 4px 15px rgba(74, 111, 165, 0.3);
        }

        .rvw-write-review-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(74, 111, 165, 0.4);
        }

        .rvw-review-form {
            display: none;
            background: white;
            border-radius: var(--rvw-border-radius);
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: var(--rvw-shadow);
        }

        .rvw-form-title {
            font-size: 1.5rem;
            color: var(--rvw-primary-dark);
            margin-bottom: 20px;
            text-align: center;
        }

        .rvw-form-group {
            margin-bottom: 20px;
        }

        .rvw-form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--rvw-dark);
        }

        .rvw-form-control {
            width: 100%;
            padding: 15px;
            border: 1px solid var(--rvw-light-gray);
            border-radius: var(--rvw-border-radius);
            font-size: 1rem;
            transition: var(--rvw-transition);
        }

        .rvw-form-control:focus {
            outline: none;
            border-color: var(--rvw-primary);
            box-shadow: 0 0 0 3px rgba(74, 111, 165, 0.2);
        }

        textarea.rvw-form-control {
            min-height: 120px;
            resize: vertical;
        }

        .rvw-star-rating {
            display: flex;
            gap: 5px;
            margin: 10px 0;
        }

        .rvw-star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--rvw-transition);
        }

        .rvw-star:hover,
        .rvw-star.selected {
            color: #FFD700;
            transform: scale(1.1);
        }

        .rvw-file-upload {
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .rvw-file-upload-label {
            display: block;
            padding: 15px;
            background: var(--rvw-light);
            border: 2px dashed var(--rvw-light-gray);
            border-radius: var(--rvw-border-radius);
            text-align: center;
            cursor: pointer;
            transition: var(--rvw-transition);
        }

        .rvw-file-upload-label:hover {
            border-color: var(--rvw-primary);
            background: rgba(74, 111, 165, 0.05);
        }

        .rvw-file-upload-label i {
            margin-right: 8px;
            color: var(--rvw-primary);
        }

        .rvw-submit-btn {
            background: linear-gradient(135deg, var(--rvw-success), #1e7e34);
            color: white;
            border: none;
            padding: 15px 25px;
            border-radius: var(--rvw-border-radius);
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--rvw-transition);
            width: 100%;
            box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
        }

        .rvw-submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
        }

        .rvw-filter-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            flex-wrap: wrap;
            gap: 15px;
        }

        .rvw-section-title {
            font-size: 1.8rem;
            color: var(--rvw-primary-dark);
        }

        .rvw-filter-control {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .rvw-filter-select {
            padding: 12px 20px;
            border: 1px solid var(--rvw-light-gray);
            border-radius: var(--rvw-border-radius);
            background: white;
            font-size: 1rem;
            color: var(--rvw-dark);
            cursor: pointer;
            transition: var(--rvw-transition);
        }

        .rvw-filter-select:focus {
            outline: none;
            border-color: var(--rvw-primary);
        }

        .rvw-reviews-container {
            background: white;
            border-radius: var(--rvw-border-radius);
            overflow: hidden;
            box-shadow: var(--rvw-shadow);
            height: 600px;
            position: relative;
        }

        .rvw-reviews-list {
            height: 100%;
            overflow-y: auto;
            padding: 20px;
            scroll-behavior: smooth;
        }

        .rvw-review-card {
            padding: 25px;
            border-radius: var(--rvw-border-radius);
            background: var(--rvw-light);
            margin-bottom: 20px;
            transition: var(--rvw-transition);
            border-left: 4px solid var(--rvw-primary);
        }

        .rvw-review-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .rvw-review-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .rvw-reviewer-info h3 {
            font-size: 1.3rem;
            color: var(--rvw-primary-dark);
            margin-bottom: 5px;
        }

        .rvw-review-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            color: var(--rvw-gray);
            font-size: 0.9rem;
        }

        .rvw-review-location {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .rvw-review-date {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .rvw-review-rating {
            color: #FFD700;
            font-size: 1.2rem;
        }

        .rvw-review-content {
            margin-bottom: 15px;
            line-height: 1.7;
        }

        .rvw-review-image {
            margin-top: 15px;
            border-radius: var(--rvw-border-radius);
            overflow: hidden;
        }

        .rvw-review-image img {
            width: 100%;
            height: auto;
            border-radius: var(--rvw-border-radius);
            transition: var(--rvw-transition);
        }

        .rvw-review-image img:hover {
            transform: scale(1.03);
        }

        .rvw-empty-state {
            text-align: center;
            padding: 40px;
            color: var(--rvw-gray);
        }

        .rvw-empty-state i {
            font-size: 3rem;
            margin-bottom: 15px;
            color: var(--rvw-light-gray);
        }

        .rvw-empty-state p {
            font-size: 1.1rem;
        }

        @media (max-width: 992px) {
            .rvw-dashboard {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .rvw-filter-section {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .rvw-filter-control {
                width: 100%;
                justify-content: space-between;
            }
            
            .rvw-review-header {
                flex-direction: column;
            }
            
            .rvw-review-rating {
                margin-top: 10px;
            }
        }




































































*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
}


/*.mbox{
    height:3%;
    width:50%;
    margin-left: 25%;
    margin-right: 25%;
}
.mboxkid{
    color:Blue
}*/






body{
    width: 100%;
   /* height: 100vh;*/
    overflow-x: hidden;
    background-color: #ffffff;
    color: #333;
    z-index: 0;
    align-items: center;
    align-content: center;
    font-weight: 400;
   
}
@media (max-width: 995px) {
    body{
      background-color: #ffffff;
      
}
}

 
.nguide{
  margin-right: 5%;
  margin-left: 5%;
  font-size: small;
    color:#161616;
    
}
@media (max-width:767px){
         .nguide {
          margin-left: 5%;
          margin-right: 5%;
          width: 90%
         }
        }

.title{
  margin-right: 5%;
  margin-left: 5%;
    margin-top: 0%;
    margin-bottom: 2%;
    font-size: 90%;
}

@media (max-width:767px){
         .title {
          margin-left: 5%;
          margin-right: 5%;
          width: 90%;
         }
        }















.sliderbap{
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    display: flex;
    margin-left: 5%;
    margin-right: 5%;
    margin-bottom: 2%;
    font-size: medium;
    
}

        .slider-container {
            position: relative;
            width: 70%;
            margin-right: 2%;
            overflow: hidden;
            border-radius: 1%;
        
        }
         @media (max-width:767px){
         .slider-container {
          margin-left: 5%;
          margin-right: 5%;
          width: 90%;
         }
        }

        .slider {
            display: flex;
            transition: transform 0.5s ease;
            width: 100%;
            height: 500px;
        }

        .slide {
            min-width: 100%;
            height: 100%;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            font-size: 24px;
            z-index: 10;
            user-select: none;
        }

        .arrow-left {
            left: 20px;
        }

        .arrow-right {
            right: 20px;
        }

        .dots-container {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 0.4;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
        }

        .dot.active {
            background-color: white;
        }

        @media (max-width: 768px) {
            .arrow {
                display: none;
            }
            
            .slider {
                height: 300px;
            }
            .sliderbap{
    margin-left: 0px;
    margin-right: 0px;
    font-size: medium;
}
        }





        .slider2{
           
            width: 30%;
            border-radius: 30px;
            padding: 2% 2% 2% 2%;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
             color: #4d688a;
        background-color: rgba(0,182,248,.06);
      border: 0px solid #333;
        }
        
        @media (max-width: 995px) {
    .slider2{
        display:none;
    }
}

        

        .kdtopic{
            text-align: center;
             border-bottom: 2px solid #e5e7eb;
             margin-bottom: 3%;
             font-size: large;
             padding-bottom: 5%;
        }

       .mpep{
       border-bottom: 2px solid #e5e7eb;
        text-align: center;
       }
       .keydetails{
        margin-top: 4%;
        align-content: center;
       border-bottom: 2px solid #e5e7eb;
       text-align: center;
       }
.resourcebutton{
    border-radius: 8px;
    background-color: rgb(204, 202, 202);
    font-size: medium;
    font-weight: 400;
    padding: 5px 5px 5px 5px;
       text-align: center;
       cursor: pointer;
       border:solid black 0.1px;
}
.resources{
    text-align: center;
    margin-top: 4%;
    }



























.firstinfo{
  margin-right: 10%;
  margin-left: 10%;
  margin-top: 1%;
  margin-bottom: 1%;
  font-size: medium;

}


@media (max-width: 995px) {
    .firstinfo{
        display:none;
    }
}




























/*height and info*/
    .containerinfo {
        color: #4d688a;
      border: 0px solid #333;
      padding: 17px 20px 19px 29px;
      background-color: rgba(0,182,248,.06);
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
      margin-top: 1%;
        margin-bottom: 2%;
      width: 90%;
      margin-left: 5%;
              margin-bottom:2%;

      overflow: hidden;
      height: 20%;
        margin-left
        color: #4d688a;
       
    }
    /*Media query for mobile devices */
@media (min-width: 995px) {
    .containerinfo{
        display:none;
    }
}

    .row {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
      /*font-size: 150%;*/
    }

    .emoji {
      margin-right: 10px;
      font-size: 15%;
    }

    /* Animations */
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes slideIn {
      from { transform: translateX(-20px); opacity: 0; }
      to { transform: translateX(0); opacity: 1; }
    }

    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.1); }
      100% { transform: scale(1); }
    }

    .containerinfo {
      animation: fadeIn 1s ease-in-out;
    }

    .row:nth-child(1) {
      animation: slideIn 1s ease-in-out 0.5s forwards;
    }

    .row:nth-child(2) {
      animation: slideIn 1s ease-in-out 1s forwards;
    }

    .row:nth-child(3) {
      animation: slideIn 1s ease-in-out 1.5s forwards;
    }

    .row:nth-child(4) {
      animation: slideIn 1s ease-in-out 2s forwards;
    }

    .indicators {
      display: flex;
      align-items: center;
      margin-left: 10px;
    }

    .indicator {
      width: 12px;
      border-radius: 50%;
      border: 2px solid #0f79e4;
      margin-right: 5px;
      animation: pulse 1.5s infinite;
      height: 15px;
    }

    .indicator.filled {
      background-color:#65b1fd;;
    }

    .indicator:last-child {
      margin-right: 0;
    }



/*end for phone*/






































/*forpc*/
    .containerforinfo {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      font-size: medium;
      
     
      border-radius: 10px;
     
      margin-left: 10%;
      margin-right: 10%;
      overflow: hidden;
      margin-top: 1%;
      margin-bottom: 1%;
    }

    .cardsforinfo {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 15px;
      
      border-radius: 8px;
      
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      
      animation: fadeIn 1s ease-in-out;
         color: #4d688a;
        background-color: rgba(0,182,248,.06);
      border: 0px solid #333;
    }

    .emoji {
      font-size: 20px;
      margin-bottom: 10px;
    }

    .description {
      text-align: center;
    }

    /* Animations */
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes slideIn {
      from { transform: translateX(-20px); opacity: 0; }
      to { transform: translateX(0); opacity: 1; }
    }

    .cardsforinfo:nth-child(1) {
      animation: slideIn 1s ease-in-out 0.5s forwards;
    }

    .cardsforinfo:nth-child(2) {
      animation: slideIn 1s ease-in-out 1s forwards;
    }

    .cardsforinfo:nth-child(3) {
      animation: slideIn 1s ease-in-out 1.5s forwards;
    }

    .cardsforinfo:nth-child(4) {
      animation: slideIn 1s ease-in-out 2s forwards;
    }
    @media (max-width: 995px) {
    .containerforinfo{
        display:none;
    }
}

/*forpc inf end*/








        /* Sticky Navigation */
        .sticky-nav-container{
            font-size: medium;
            position: sticky;
            top: 0;
            background-color: rgb(238, 236, 236);
            padding: 10px 0;
            z-index: 1;
            display: flex;
            align-items: center;
            gap: 5px;
            border-radius: 5px;
            height: 50px;
            
        }
        @media(min-width:995px){
  .sticky-nav-container{
    padding-left: 10%;
    padding-right: 10%;
    
  }
}
       

        .scroll-arrow {
          
            color: #161616;
            border: none;
            padding: 10px;
            cursor: pointer;
            border-radius: 50%;
            font-size: 1rem;
            flex-shrink: 0;
            font-weight: 600;
        }

        .nav-tabs {
            display: flex;
            overflow-x: auto;
            scroll-behavior: smooth;
            gap: 10px;
            padding: 5px 0;
            -ms-overflow-style: none;  /* Hide scrollbar for IE/Edge */
            scrollbar-width: none;  /* Hide scrollbar for Firefox */
        }

        .nav-tabs::-webkit-scrollbar {
            display: none; /* Hide scrollbar for Chrome/Safari */
        }

        .tab {
            padding: 10px 20px;
            background: rgb(247, 245, 245);
            font-weight: 600;
            color: #161616;
            border-radius: 20px;
            white-space: nowrap;
            cursor: pointer;
            border: none;
            font-size: 14px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
        }

        .tab:hover {
            background: #555 ;
        }

        .tab.active {
            background: #65b1fd;
            font-weight: bold;
        }

        .tab svg {
            width: 16px;
            height: 16px;
        }

        /* Content Sections */
        .content-container {
            font-size: small;
            background-color: white;
        }
@media(max-width:995px){
  .content-container{
    padding:/*1% 5% 1% 5%*/ 0px;
  }
}
        .section {
            /*min-height: 100vh;*/
            padding: 20px;
            margin-bottom: 20px;
            background: whitesmoke;
            border-radius: 8px;
        }
  
  
  
  
  
  
  
  
  
  
  
  
  
  /*
      .itinerary{
text-align: center;
    align-items: centre;
    margin-top: 1%;
    font-weight: 800;
    
}
*/
         


 .day-header99 {
    font-size: larger;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px;
      background: #2083e6;/*linear-gradient(135deg, #4a6bff, #8a2be2)*/;
      color: #161616;
      cursor: pointer;
      border-radius: 5px;
      margin-bottom: 10px;
    /* font-size: 100%;
     font-weight: 800;
     font-size: 1.25rem;*/
    }

   /* .day-header99:hover{
        background:linear-gradient(135deg, #4a6bff, #8a2be2);
    }*/
    .arrow99 {
      width: 20px;
      height: 20px;
      transition: transform 0.3s ease;
    }

    .day-content99 {
        font-size: small;
      padding: 15px;
      background-color:rgb(224, 223, 223);
      border-radius: 5px;
      display: none;
      animation: fadeIn99 0.3s ease;
        margin-bottom: 2%
    }

    @keyframes fadeIn99 {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    .rotate99 {
      transform: rotate(180deg);
    }
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
   /* Original Styling */
        .widget-container {
            font-family: 'Arial', sans-serif;
            /*max-width: 400px;
            margin: 20px auto;
            padding: 20px;*/
            border-radius: 12px;
            font-size: medium;
           /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);*/
           /* background-color: #333;
            color:white;
           /* font-size:1.25rem;*/
        }

        .initial-btn-container {
            text-align: center;
           
        }

        .initial-btn {
            padding: 12px 24px;
            border: none;
            border-radius: 8px;
           background: #1a6fc4;
            color: white;
           /* font-weight: 800;*/
            /*font-size: 1.5rem;*/
            cursor: pointer;
            transition: all 0.3s;
            height: 60px;
            
        }

        .initial-btn:hover {
            opacity: 0.9;
        }

        /* Improved Calendar Styling */
        .calendar {
            margin-top: 20px;
            border: 1px solid #ddd; /* Add border */
            border-radius: 8px; /* Rounded corners */
            padding: 10px; /* Add padding */
            background:#f9f9f9; /* Light background */
        }

        .calendar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
            padding: 8px;
            background:#1a6fc4; /* Header background */
            color: white; /* Header text color */
            border-radius: 6px 6px 0 0; /* Rounded top corners */
        }

        .month-nav {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .nav-btn {
            background: none;
            border: none;
            font-size: 1.2rem;
            cursor: pointer;
            color: white; /* White color for buttons */
        }

        .month-selector select {
            padding: 4px;
            border-radius: 4px;
            border: 1px solid #ddd;
            font-size: 1rem;
        }

        .weekdays {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            text-align: center;
            font-weight: 600;
            margin-bottom: 10px;
            color: #1a6fc4 /*4a6bff*/;
        }

        .days {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 4px;
        }

        .day {
            padding: 8px;
            text-align: center;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s;
            border: 1px solid #ddd; /* Add border to each day */
        }

        .day.available {
            background: #f0f0f0;
            color: #333;
        }

        .day.unavailable {
            color: #ccc;
            cursor: not-allowed;
        }

        .day.selected {
            background: #4a6bff;
            color: white;
            border-color: #4a6bff; /* Match border with background */
        }

        .day.trip-day {
            background: #8a2be2;
            color: white;
            border-color: #8a2be2; /* Match border with background */
        }

        /* Form Styling */
        .form-container {
            margin-top: 20px;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 8px;
            border-radius: 4px;
            border: 1px solid #ddd;
        }
        

        .form-group textarea {
            resize: vertical;
        }

        .submit-btn {
            width: 100%;
            padding: 12px;
            border: none;
            border-radius: 8px;
            background: #1a6fc4;
            color: white;
            font-weight: 600;
            font-size: 1.25rem;
            cursor: pointer;
            transition: all 0.3s;
            height: 60px;
        }

        .submit-btn:hover {
            opacity: 0.9;
        }

        /* Thank You Page Styling */
        .thank-you-container {
            display: none;
            text-align: center;
            padding: 20px;
        }

        .thank-you-icon {
            font-size: 3rem;
            color: #4a6bff;
            margin-bottom: 10px;
        }

        .thank-you-title {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .thank-you-message {
            font-size: 1rem;
            line-height: 1.5;
            margin-bottom: 20px;
        }
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    

    

































        /* Fixed Departure Section Centered Layout */
        .fds-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            box-sizing: border-box;
            text-align: center;
        }

        .fds-title {
            text-align: center;
        }

        /* Fixed Departure Styles - White & Blue Theme */
        .fds-departure-dates-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 15px;
            margin: 20px auto 0 auto;
            max-width: 1200px;
            justify-content: center;
            text-align: left;
        }

        .fds-departure-card {
            background: #ffffff;
            border-radius: 8px;
            padding: 15px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid #e0e0e0;
            color: #333333;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        }

        .fds-departure-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .fds-date-badge {
            background: #1a6fc4;
            color: #ffffff;
            padding: 5px 10px;
            border-radius: 20px;
            font-weight: bold;
            display: inline-block;
            width: fit-content;
            font-size: 0.9rem;
        }

        .fds-departure-card p {
            margin: 5px 0;
            font-size: 0.95rem;
            color: #444444;
        }

        .fds-book-btn {
            background: #1a6fc4;
            color: #ffffff;
            border: none;
            padding: 10px 15px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
            margin-top: 10px;
        }

        .fds-book-btn:hover {
            background: #0d5aa7;
        }

        /* Modal Styles */
        .fds-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }

        .fds-modal-content {
            background-color: #ffffff;
            padding: 30px;
            border-radius: 10px;
            width: 90%;
            max-width: 500px;
            margin: 0 auto;
            position: relative;
            animation: fdsModalFadeIn 0.3s;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            color: #333333;
            text-align: left;
        }

        @keyframes fdsModalFadeIn {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .fds-close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            cursor: pointer;
            color: #666666;
            line-height: 1;
        }

        .fds-close-btn:hover {
            color: #000000;
        }

        .fds-modal h2 {
            margin-bottom: 20px;
            color: #1a6fc4;
            margin-top: 0;
            text-align: center;
        }

        .fds-selected-date {
            background: #eef5fc;
            color: #1a6fc4;
            padding: 10px;
            border-radius: 5px;
            margin: 0 auto 15px auto;
            text-align: center;
            font-weight: bold;
            border: 1px solid #d0e3f7;
        }

        .fds-form-group {
            margin-bottom: 15px;
        }

        .fds-form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 600;
            color: #333333;
        }

        .fds-form-group input,
        .fds-form-group textarea {
            width: 100%;
            padding: 10px;
            border-radius: 5px;
            border: 1px solid #cccccc;
            background: #ffffff;
            color: #333333;
            box-sizing: border-box;
        }

        .fds-form-group input:focus,
        .fds-form-group textarea:focus {
            outline: none;
            border-color: #1a6fc4;
            box-shadow: 0 0 0 2px rgba(26, 111, 196, 0.2);
        }

        .fds-submit-btn {
            width: 100%;
            padding: 12px;
            border: none;
            border-radius: 5px;
            background: #1a6fc4;
            color: #ffffff;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s;
        }

        .fds-submit-btn:hover {
            background: #0d5aa7;
        }

        /* Processing Indicator */
        .fds-processing {
            display: none;
            text-align: center;
            margin-top: 10px;
            color: #1a6fc4;
            font-weight: bold;
        }

        /* Thank You Page */
        .fds-thank-you-container {
            display: none;
            text-align: center;
            padding: 40px 20px;
            background: #ffffff;
            border-radius: 10px;
            margin: 20px auto 0 auto;
            max-width: 600px;
            border: 1px solid #e0e0e0;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        }

        .fds-thank-you-icon {
            font-size: 4rem;
            color: #4CAF50;
            margin-bottom: 20px;
        }

        .fds-thank-you-title {
            font-size: 2rem;
            margin-bottom: 15px;
            color: #1a6fc4;
        }

        .fds-thank-you-message {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 25px;
            color: #555555;
        }

        /* Status indicators */
        .fds-status-available {
            color: #2e7d32;
            font-weight: bold;
        }

        .fds-status-limited {
            color: #ef6c00;
            font-weight: bold;
        }

        .fds-status-full {
            color: #c62828;
            font-weight: bold;
        }

        .fds-price {
            font-size: 1.2rem;
            font-weight: bold;
            color: #1a6fc4;
        }

        /* Pagination Controls */
        .fds-pagination-controls {
            display: flex;
            justify-content: center;
            margin: 25px auto;
            gap: 15px;
        }

        .fds-pagination-btn {
            background: #1a6fc4;
            color: #ffffff;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }

        .fds-pagination-btn:hover {
            background: #0d5aa7;
        }

        .fds-pagination-btn:disabled {
            background: #cccccc;
            color: #666666;
            cursor: not-allowed;
        }



























    
    
    
  
  
 /* .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }*/

        .faq-item {
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            margin-bottom: 10px;
            overflow: hidden;
        }

        .faq-question {
            background:/*linear-gradient(135deg, #4a6bff, #8a2be2)*/ #1a6fc4;
            font-size: 10px;
            padding: 15px 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s;
            
        }

        .faq-question:hover {
            background: linear-gradient(135deg, #4a6bff, #8a2be2);/*#e9ecef*/
        }

        .faq-question h3 {
            margin: 0;
          
            color: /*#2c3e50*/ white;
            
        }

        .faq-icon {
            
            color: /*#1a6fc4*/black;
            
            transition: transform 0.3s;
        }

        .faq-answer {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background-color:rgb(230, 229, 229);
        }

        .faq-answer.active {
            padding: 20px;
            max-height: 1000px;
        }

        .faq-answer p {
            margin: 0;
            color: rgb(61, 61, 61);
           line-height: 1.6;
           
        }








