@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
body{
  background-color: #ffffff;
  font-family: "Roboto", sans-serif;
}

 /* Custom styles */
        .navbar {
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 10px 0;
        }

        .img-logos{
          margin-top: 20px;
          width: 80px;
          height: 80px;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
        }
        
        .img-logo {
            height: 40px;
            margin-right: 15px;
        }
        
        .text-logo h4 {
            font-size: 22px;
            font-weight: 700;
            color: rgb(16, 55, 93);
            line-height: 1;
            margin-bottom: 3px;
        }
        
        .text-logo p {
            font-size: 12px;
            color: rgb(16, 55, 93);
            line-height: 1;
            margin: 0;
            justify-content: center;
            display: flex;
        }
        
        .nav-link {
            font-weight: 500;
            color: #333 !important;
            padding: 8px 15px !important;
        }
        
        .nav-link:hover {
            color: #4a6bff !important;
        }

        .nav-link {
            position: relative;
            padding-bottom: 5px;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: rgb(16, 55, 93);; /* Change to your preferred color */
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }
        
        .get-start-btn {
            background: linear-gradient(45deg, #4a6bff, #6a5acd);
            color: white !important;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            padding: 8px 20px !important;
            position: relative;
            overflow: hidden;
            transition: all 0.3s;
        }
        
        .get-start-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }
        
        .get-start-btn:hover::before {
            left: 100%;
        }
        
        .get-start-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(74, 107, 255, 0.4);
        }
        
        /* Hide image logo on mobile */
        @media (max-width: 991.98px) {
            .img-logo {
                display: none;
            }
        }
        

        


        /* Hero Section with Background Image */
        .hero-section {
            position: relative;
            height: 100vh;
            min-height: 600px;
            background: url('bg2.JPG') no-repeat center center;
            background-size:cover ;
            display: flex;
            align-items: center;
            color: white;
        }
        
        /* Dark overlay for better text contrast */
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            padding: 0 20px;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-top: -250px;
            
        }

        .typewriter {
            overflow: hidden;
            white-space: nowrap;
            border-right: 1px solid #333; /* Cursor */
            animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
        }

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: #333 }
}
      






        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.8rem;
            }
            
            
        }
        
        @media (max-width: 768px) {
            .hero-section {
                min-height: 500px;
                height: auto;
                padding: 100px 0;
            }
            
            .hero-title {
                font-size: 1rem;
                margin-top: -150px;
            }
            
        }
        
        @media (max-width: 576px) {
            .hero-title {
                font-size: 1rem;
                margin-top: -150px;
            }
        }


        .visit{
            text-align: center;
            font-size: 80px;
            margin-top: 80px;
        }

        .change-text::after{
          content: '';
          color: #ffa500;
          text-shadow: 0px 1px 1px black;
          animation: changetxt 10s infinite linear;
        }

        @keyframes changetxt {
          0%{content: "Thailand";}
          10%{content: "Bali";}
          20%{content: "Japan";}
          30%{content: "Indonesia";}
          40%{content: "Vietnam";}
          50%{content: "Malaysia";}
          60%{content: "Philippines";}
          70%{content: "China";}
          80%{content: "Sri Lanka";}
          90%{content: "Singapore";}
          100%{content: "Bangkok";}
        }


       
       








   





        .footer {
            background: linear-gradient(135deg, #2c3e50, #4a6bff);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer h5 {
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
        }
        
        .footer h5::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 40px;
            height: 2px;
            background: #4a6bff;
        }
        
        .footer-links li {
            margin-bottom: 10px;
            list-style: none;
        }
        
        .footer-links a {
            color: #ecf0f1;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .footer-links a:hover {
            color: #4a6bff;
            padding-left: 5px;
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background: #4a6bff;
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 40px;
        }
        
        /* Small footer version */
        .small-footer {
            background: #2c3e50;
            color: white;
            padding: 20px 0;
            text-align: center;
        }
        
        .small-footer .social-icons a {
            margin: 0 5px;
        }






        .packages-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-header h2 {
            font-weight: 700;
            color: #2c3e50;
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        .section-header p {
            color: #7f8c8d;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .package-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            background: white;
        }
        
        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .package-img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        
        .package-body {
            padding: 20px;
        }
        
        .package-title {
            font-weight: 600;
            margin-bottom: 10px;
            color: #2c3e50;
        }
        
        .package-location {
            color: #7f8c8d;
            margin-bottom: 15px;
            font-size: 0.9rem;
        }
        
        .package-location i {
            color: #4a6bff;
            margin-right: 5px;
        }
        
        .package-price {
            font-weight: 700;
            color: #4a6bff;
            font-size: 1.2rem;
        }
        
        .package-duration {
            color: #7f8c8d;
            font-size: 0.9rem;
        }
        
        .package-rating {
            color: #f39c12;
            margin-bottom: 15px;
        }
        
        .view-details {
            display: inline-block;
            padding: 8px 20px;
            background: #4a6bff;
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            border: 2px solid #4a6bff;
        }
        
        .view-details:hover {
            background: transparent;
            color: #4a6bff;
        }
        


      .bg-dark-gradient {
        background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
      }
     .travel-memories {
        background-color: #f8f9fa;
     }




     /* Package Detail Page Styles */
.package-detail-section {
    padding: 60px 0;
}

.package-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.package-meta {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.package-rating {
    color: #FFC107;
}

.package-highlights {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.highlight-item {
    text-align: center;
}

.highlight-item i {
    font-size: 2rem;
    color: #0d6efd;
    margin-bottom: 10px;
}

.highlight-item h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.section-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.package-booking-card {
    position: sticky;
    top: 20px;
}

.package-booking-card .price {
    text-align: center;
}

.package-booking-card .price .from {
    display: block;
    font-size: 0.9rem;
    color: #6c757d;
}

.package-booking-card .price .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0d6efd;
}

.package-booking-card .price .per-person {
    display: block;
    font-size: 0.9rem;
    color: #6c757d;
}

.included-list, .excluded-list {
    list-style-type: none;
    padding-left: 0;
}

.included-list li:before {
    content: "✓";
    color: green;
    margin-right: 10px;
}

.excluded-list li:before {
    content: "✗";
    color: red;
    margin-right: 10px;
}

.itinerary-content {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}






/* Success Animation */
.success-animation {
  margin: 0 auto;
  width: 100px;
  height: 100px;
}

.checkmark {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: block;
  stroke-width: 3;
  stroke: #4bb71b;
  stroke-miterlimit: 10;
  margin: 0 auto;
  box-shadow: 0 0 0 rgba(75, 183, 27, 0.4);
  animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
}

.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 3;
  stroke-miterlimit: 10;
  stroke: #4bb71b;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

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

@keyframes fill {
  100% {
    box-shadow: inset 0 0 0 100px rgba(75, 183, 27, 0);
  }
}











/* Add these new styles for messages */
.alert-messages {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  max-width: 400px;
}

.alert {
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 8px;
  position: relative;
  animation: slideIn 0.5s forwards;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.alert-info {
  background-color: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

.close-btn {
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}







 :root {
            --primary-color: #4361ee;
            --secondary-color: #3f37c9;
            --accent-color: #4cc9f0;
            --light-color: #f8f9fa;
            --dark-color: #212529;
        }
        .auth-container {
            max-width: 450px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            background: white;
        }
        
        .auth-header {
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 2rem;
            text-align: center;
            position: relative;
        }
        
        .auth-header h2 {
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .auth-tabs {
            display: flex;
            justify-content: center;
            margin-top: 1rem;
        }
        
        .auth-tab {
            padding: 0.5rem 1.5rem;
            color: rgba(255, 255, 255, 0.7);
            cursor: pointer;
            font-weight: 500;
            border-bottom: 3px solid transparent;
            transition: all 0.3s;
        }
        
        .auth-tab.active {
            color: white;
            border-bottom: 3px solid var(--accent-color);
        }
        
        .auth-body {
            padding: 2rem;
        }
        
        .auth-form {
            display: none;
        }
        
        .auth-form.active {
            display: block;
        }
        
        .form-control {
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #e0e0e0;
            transition: all 0.3s;
        }
        
        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(67, 97, 238, 0.25);
        }
        
        .btn-auth {
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            border: none;
            padding: 12px;
            font-weight: 600;
            letter-spacing: 0.5px;
            border-radius: 8px;
            transition: all 0.3s;
        }
        
        .btn-auth:hover {
            background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
            transform: translateY(-2px);
        }
        
        .divider {
            display: flex;
            align-items: center;
            margin: 1.5rem 0;
            color: #6c757d;
        }
        
        .divider::before, .divider::after {
            content: "";
            flex: 1;
            border-bottom: 1px solid #dee2e6;
        }
        
        .divider::before {
            margin-right: 1rem;
        }
        
        .divider::after {
            margin-left: 1rem;
        }
        
        .social-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px;
            border-radius: 8px;
            font-weight: 500;
            margin-bottom: 10px;
            transition: all 0.3s;
        }
        
        .social-btn i {
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        .btn-google {
            background-color: #fff;
            color: #757575;
            border: 1px solid #e0e0e0;
        }
        
        .btn-google:hover {
            background-color: #f8f9fa;
            border-color: #d2d2d2;
        }
        
        .btn-facebook {
            background-color: #3b5998;
            color: white;
        }
        
        .btn-facebook:hover {
            background-color: #344e86;
            color: white;
        }
        
        .auth-footer {
            text-align: center;
            padding: 1rem;
            color: #6c757d;
        }
        
        .auth-footer a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
        }
        
        .input-group-text {
            background-color: transparent;
            border-right: none;
        }
        
        .password-toggle {
            cursor: pointer;
            background-color: transparent;
            border-left: none;
        }
        
        .password-toggle:hover {
            color: var(--primary-color);
        }
        
        .form-floating label {
            padding: 0.8rem 0.75rem;
        }
        
        .name-fields {
            display: flex;
            gap: 15px;
        }
        
        .name-fields .form-floating {
            flex: 1;
        }












        