 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }
 
 body {
     font-family: 'Poppins', sans-serif;
     background: #f9fbff;
 }
 /* Navbar */
 
 .navbar {
     position: sticky;
     top: 0;
     z-index: 999;
     width: 100%;
     padding: 15px 60px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     background: linear-gradient(90deg, #ff7e5f, #feb47b, #43cea2, #185a9d);
     background-size: 300% 300%;
     animation: gradientMove 10s ease infinite;
     border-bottom: 1px solid rgba(255, 255, 255, 0.2);
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
 }
 /* Gradient Animation */
 
 @keyframes gradientMove {
     0% {
         background-position: 0% 50%;
     }
     50% {
         background-position: 100% 50%;
     }
     100% {
         background-position: 0% 50%;
     }
 }
 /* Logo */
 
 .navbar .logo {
     font-size: 1.8rem;
     font-weight: 700;
     color: #fff;
     letter-spacing: 1px;
     text-transform: uppercase;
     text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
 }
 /* Nav Links */
 
 .nav-links {
     list-style: none;
     display: flex;
     align-items: center;
     gap: 25px;
 }
 /* Links */
 
 .nav-links li a {
     text-decoration: none;
     font-weight: 500;
     color: #fff;
     padding: 10px 16px;
     border-radius: 8px;
     position: relative;
     transition: all 0.3s ease;
 }
 /* Neon Hover Effect */
 
 .nav-links li a::after {
     content: "";
     position: absolute;
     left: 0;
     bottom: 0;
     width: 0%;
     height: 2px;
     background-color: #fff;
     transition: 0.3s ease;
     border-radius: 5px;
 }
 
 .nav-links li a:hover::after {
     width: 100%;
 }
 
 .nav-links li a:hover {
     background: rgba(255, 255, 255, 0.2);
     backdrop-filter: blur(6px);
 }
 /* Greeting */
 
 .user-greeting {
     color: #fff;
     font-weight: 500;
     background: rgba(255, 255, 255, 0.15);
     padding: 8px 18px;
     border-radius: 50px;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
 }
 /* Buttons */
 
 .action-btn {
     padding: 8px 18px;
     border-radius: 50px;
     font-weight: 600;
     text-decoration: none;
     transition: all 0.3s ease;
     color: #fff;
 }
 /* Login */
 
 .login-btn {
     background: linear-gradient(135deg, #43cea2, #185a9d);
     box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
 }
 
 .login-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
 }
 /* Logout */
 
 .logout-btn {
     background: linear-gradient(135deg, #ff5f6d, #ffc371);
     box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
 }
 
 .logout-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
 }
 /* Responsive */
 
 @media (max-width: 900px) {
     .navbar {
         flex-direction: column;
         padding: 20px;
     }
     .nav-links {
         flex-direction: column;
         gap: 15px;
         margin-top: 10px;
     }
     .nav-links li a {
         padding: 12px 25px;
     }
 }
 /* Hero Section */
 
 header#home {
     height: 100vh;
     width: 100%;
     background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.55)), url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=1950&q=80');
     background-size: cover;
     background-position: center;
     background-attachment: fixed;
     display: flex;
     justify-content: center;
     align-items: center;
     text-align: center;
     color: #fff;
     position: relative;
     overflow: hidden;
 }
 /* Gradient overlay animation */
 
 header#home::after {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(120deg, #ff7e5f, #feb47b, #43cea2, #185a9d);
     opacity: 0.2;
     animation: gradientFlow 10s ease infinite;
     background-size: 300% 300%;
     z-index: 1;
 }
 
 @keyframes gradientFlow {
     0% {
         background-position: 0% 50%;
     }
     50% {
         background-position: 100% 50%;
     }
     100% {
         background-position: 0% 50%;
     }
 }
 /* Hero Content */
 
 .hero-content {
     position: relative;
     z-index: 2;
     max-width: 800px;
     padding: 20px;
 }
 
 .hero-content h1 {
     font-size: 3.5rem;
     font-weight: 700;
     margin-bottom: 15px;
     text-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
     letter-spacing: 1px;
 }
 
 .hero-content p {
     font-size: 1.2rem;
     margin-bottom: 30px;
     color: #f0f0f0;
     line-height: 1.6;
 }
 /* CTA Button */
 
 .cta-button {
     display: inline-block;
     padding: 12px 30px;
     background: linear-gradient(135deg, #43cea2, #185a9d);
     color: #fff;
     border-radius: 50px;
     font-weight: 600;
     text-decoration: none;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
     transition: all 0.3s ease;
 }
 
 .cta-button:hover {
     transform: translateY(-3px) scale(1.05);
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
     background: linear-gradient(135deg, #ff7e5f, #feb47b);
 }
 /* Responsive */
 
 @media (max-width: 768px) {
     .hero-content h1 {
         font-size: 2.4rem;
     }
     .hero-content p {
         font-size: 1rem;
     }
     .cta-button {
         padding: 10px 24px;
     }
 }
 /* Featured Tours Section */
 
 .tours {
     padding: 80px 8%;
     background: #f9fbff;
     text-align: center;
 }
 
 .section-title {
     font-size: 2.5rem;
     font-weight: 700;
     color: #185a9d;
     margin-bottom: 50px;
     text-transform: uppercase;
     letter-spacing: 1px;
     position: relative;
 }
 
 .section-title::after {
     content: '';
     display: block;
     width: 80px;
     height: 4px;
     background: linear-gradient(135deg, #43cea2, #185a9d);
     margin: 12px auto 0;
     border-radius: 5px;
 }
 /* Tour Cards Grid */
 
 .tour-cards-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 30px;
 }
 /* Individual Card */
 
 .tour-card {
     background: #fff;
     border-radius: 18px;
     overflow: hidden;
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
     position: relative;
 }
 
 .tour-card:hover {
     transform: translateY(-6px);
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
 }
 /* Tour Image */
 
 .tour-image {
     position: relative;
     overflow: hidden;
 }
 
 .tour-image img {
     width: 100%;
     height: 220px;
     object-fit: cover;
     transition: transform 0.5s ease;
 }
 
 .tour-card:hover img {
     transform: scale(1.1);
 }
 /* Overlay */
 
 .tour-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(24, 90, 157, 0.55);
     display: flex;
     justify-content: center;
     align-items: center;
     opacity: 0;
     transition: opacity 0.3s ease;
 }
 
 .tour-card:hover .tour-overlay {
     opacity: 1;
 }
 /* View Button */
 
 .view-btn {
     background: linear-gradient(135deg, #ff7e5f, #feb47b);
     color: #fff;
     padding: 10px 24px;
     border-radius: 30px;
     text-decoration: none;
     font-weight: 600;
     transition: all 0.3s ease;
     box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
 }
 
 .view-btn:hover {
     transform: scale(1.1);
     box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
 }
 /* Card Content */
 
 .tour-card-body {
     padding: 20px;
 }
 
 .tour-card-body h3 {
     color: #185a9d;
     font-size: 1.3rem;
     font-weight: 600;
     margin-bottom: 10px;
 }
 
 .tour-price {
     font-size: 1rem;
     color: #333;
 }
 
 .tour-price strong {
     color: #ff7e5f;
 }
 /* No Tours Message */
 
 .no-tours {
     color: #555;
     font-size: 1.1rem;
     margin-top: 20px;
 }
 /* Responsive */
 
 @media (max-width: 768px) {
     .section-title {
         font-size: 2rem;
     }
     .tour-card-body h3 {
         font-size: 1.2rem;
     }
 }
 /* DiscoverEase Travel Section */
 
 .join-paktourbuddy {
     background: linear-gradient(135deg, #1e3c72, #2a5298);
     color: #fff;
     text-align: center;
     padding: 100px 20px;
     border-radius: 50px 50px 50px 50px;
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
     position: relative;
     overflow: hidden;
     margin-bottom: 50px;
     margin-left: 50px;
     margin-right: 50px;
 }
 /* Animated background effect */
 
 .join-paktourbuddy::before {
     content: "";
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 10%, transparent 40%);
     animation: moveLight 6s linear infinite;
     z-index: 0;
 }
 
 @keyframes moveLight {
     0% {
         transform: translate(0, 0);
     }
     50% {
         transform: translate(25%, 25%);
     }
     100% {
         transform: translate(0, 0);
     }
 }
 
 .join-paktourbuddy h2 {
     font-size: 2.8rem;
     font-weight: 700;
     margin-bottom: 20px;
     z-index: 1;
     position: relative;
     text-transform: uppercase;
     letter-spacing: 2px;
 }
 
 .join-paktourbuddy p {
     font-size: 1.1rem;
     max-width: 800px;
     margin: 0 auto 40px auto;
     line-height: 1.8;
     z-index: 1;
     position: relative;
     opacity: 0.95;
 }
 
 .join-paktourbuddy .cta-btn {
     background: #ff7e5f;
     color: #fff;
     padding: 14px 36px;
     border-radius: 50px;
     font-weight: 600;
     text-decoration: none;
     transition: all 0.3s ease;
     z-index: 1;
     position: relative;
     display: inline-block;
 }
 
 .join-paktourbuddy .cta-btn:hover {
     background: #feb47b;
     transform: translateY(-3px);
     box-shadow: 0 5px 15px rgba(255, 126, 95, 0.4);
 }
 /* AI Assistance Section */
 
 .ai-assistance {
     background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
     color: #ffffff;
     text-align: center;
     padding: 100px 20px;
     border-radius: 50px 50px 0 0;
     box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.2);
     position: relative;
     overflow: hidden;
     margin-left: 50px;
     margin-right: 50px;
     margin-bottom: 50px;
 }
 /* Glow animation background */
 
 .ai-assistance::before {
     content: "";
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: radial-gradient(circle, rgba(0, 255, 255, 0.15) 10%, transparent 40%);
     animation: glowMove 6s linear infinite;
     z-index: 0;
 }
 
 @keyframes glowMove {
     0% {
         transform: translate(0, 0);
     }
     50% {
         transform: translate(30%, 30%);
     }
     100% {
         transform: translate(0, 0);
     }
 }
 
 .ai-assistance h2 {
     font-size: 2.6rem;
     font-weight: 700;
     margin-bottom: 20px;
     position: relative;
     z-index: 1;
     text-transform: uppercase;
     letter-spacing: 1px;
     color: #00e0ff;
     text-shadow: 0 0 15px rgba(0, 224, 255, 0.5);
 }
 
 .ai-assistance p {
     font-size: 1.1rem;
     max-width: 850px;
     margin: 0 auto 40px auto;
     line-height: 1.8;
     opacity: 0.9;
     position: relative;
     z-index: 1;
 }
 /* CTA Buttons (shared style) */
 
 .ai-assistance .cta-btn {
     background: linear-gradient(135deg, #00e0ff, #0072ff);
     color: #fff;
     padding: 14px 36px;
     border-radius: 50px;
     font-weight: 600;
     text-decoration: none;
     transition: all 0.3s ease;
     display: inline-block;
     position: relative;
     z-index: 1;
     box-shadow: 0 0 15px rgba(0, 224, 255, 0.3);
 }
 
 .ai-assistance .cta-btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 0 25px rgba(0, 224, 255, 0.6);
     background: linear-gradient(135deg, #0072ff, #00e0ff);
 }
 
 .newsletter {
     text-align: center;
     padding: 80px 20px;
     background: linear-gradient(135deg, #004e92, #000428);
     color: #fff;
 }
 
 .newsletter h2 {
     font-size: 2rem;
     margin-bottom: 10px;
 }
 
 .newsletter p {
     font-size: 1rem;
     margin-bottom: 30px;
     opacity: 0.9;
 }
 
 .newsletter form {
     display: inline-flex;
     gap: 10px;
 }
 
 .newsletter input {
     padding: 12px 15px;
     border-radius: 30px;
     border: none;
     outline: none;
     width: 280px;
 }
 
 .newsletter button {
     background: #00bfff;
     color: #fff;
     border: none;
     padding: 12px 25px;
     border-radius: 30px;
     cursor: pointer;
     transition: 0.3s;
 }
 
 .newsletter button:hover {
     background: #0099cc;
 }
 
 .footer {
     background: linear-gradient(135deg, #0a192f, #00111a);
     color: #fff;
     padding: 70px 20px 30px;
     font-family: "Poppins", sans-serif;
 }
 
 .footer-container {
     display: flex;
     flex-wrap: wrap;
     justify-content: space-between;
     max-width: 1200px;
     margin: 0 auto;
 }
 
 .footer-left {
     flex: 1 1 300px;
 }
 
 .footer-logo {
     font-size: 1.8rem;
     color: #00bfff;
     margin-bottom: 10px;
 }
 
 .footer-left p {
     color: #aaa;
     max-width: 350px;
     line-height: 1.6;
 }
 
 .footer-links,
 .footer-social {
     flex: 1 1 200px;
 }
 
 .footer-links h3,
 .footer-social h3 {
     color: #00bfff;
     margin-bottom: 15px;
 }
 
 .footer-links ul {
     list-style: none;
     padding: 0;
 }
 
 .footer-links li {
     margin-bottom: 10px;
 }
 
 .footer-links a {
     color: #ddd;
     text-decoration: none;
     transition: 0.3s;
 }
 
 .footer-links a:hover {
     color: #00bfff;
 }
 
 .social-icons {
     display: flex;
     gap: 15px;
 }
 
 .social-icons a {
     color: #fff;
     background: rgba(255, 255, 255, 0.1);
     padding: 10px;
     border-radius: 50%;
     transition: 0.3s;
 }
 
 .social-icons a:hover {
     background: #00bfff;
     color: #fff;
 }
 
 .footer-bottom {
     text-align: center;
     padding-top: 25px;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     margin-top: 30px;
     font-size: 0.9rem;
     color: #bbb;
 }
 
 .footer-bottom span {
     color: #00bfff;
 }
 
 @media (max-width: 768px) {
     .footer-container {
         flex-direction: column;
         align-items: center;
         text-align: center;
     }
     .footer-left p {
         margin: 0 auto;
     }
 }
 
 -------------------about page----------