 :root {
   --primary-color: #0a4275;
   --secondary-color: #ff7b00;
   --accent-color: #2a9d8f;
   --light-color: #f8f9fa;
   --dark-color: #212529;
   --gradient-primary: linear-gradient(135deg, #0a4275 0%, #2a9d8f 100%);
   --gradient-secondary: linear-gradient(135deg, #ff7b00 0%, #ff9e42 100%);
   --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
   --box-shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
   --success-color: #198754;
   --danger-color: #dc3545;
   --warning-color: #ff7b00;
 }

 * {
   font-family: 'Poppins', sans-serif;
   transition: all 0.3s ease;
 }

 h1,
 h2,
 h3,
 .navbar-brand,
 .display-font {
   font-family: 'Montserrat', sans-serif;
   font-weight: 700;
 }

 h4,
 h5,
 h6 {
   font-family: 'Montserrat', sans-serif;
   font-weight: 600;
 }

 body {
   padding-top: 0;
   color: #333;
   overflow-x: hidden;
 }

 .icons {
   color: var(--secondary-color);
   font-size: 19px;

 }

 /* Enhanced Navbar */
 .navbar {
   background: rgba(255, 255, 255, 0.98) !important;
   backdrop-filter: blur(15px);
   box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
   padding: 15px 0;
   transition: all 0.4s ease;
 }

 .navbar.scrolled {
   padding: 10px 0;
   box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
 }

 .navbar-brand {
   color: var(--primary-color) !important;
   font-size: 1rem;
   display: flex;
   align-items: center;
 }

 .logo-circle {
   width: 55px;
   height: 55px;
   border-radius: 50%;
   background: var(--gradient-primary);
   display: flex;
   align-items: center;
   justify-content: center;
   margin-right: 12px;
   box-shadow: 0 4px 10px rgba(10, 66, 117, 0.2);
 }

 .nav-link {
   color: var(--dark-color) !important;
   font-weight: 500;
   margin: 0 8px;
   position: relative;
   padding: 8px 15px !important;
   border-radius: 6px;
 }

 .nav-link:before {
   content: '';
   position: absolute;
   bottom: 0;
   left: 50%;
   transform: translateX(-50%);
   width: 0;
   height: 3px;
   background: var(--secondary-color);
   border-radius: 3px;
   transition: width 0.3s ease;
 }

 .nav-link:hover:before,
 .nav-link.active:before {
   width: 70%;
 }

 .nav-link:hover,
 .nav-link.active {
   color: var(--primary-color) !important;
   background-color: rgba(10, 66, 117, 0.05);
 }

 .dropdown-menu {
   border: none;
   box-shadow: var(--box-shadow);
   border-radius: 12px;
   padding: 10px;
   margin-top: 10px;
   animation: fadeIn 0.3s ease;
 }

 @keyframes fadeIn {
   from {
     opacity: 0;
     transform: translateY(10px);
   }

   to {
     opacity: 1;
     transform: translateY(0);
   }
 }

 .dropdown-item {
   border-radius: 8px;
   margin: 5px 0;
   padding: 10px 15px;
   transition: all 0.2s;
 }

 .dropdown-item:hover {
   background: var(--gradient-primary);
   color: white;
   transform: translateX(5px);
 }

 /* Enhanced Hero Section */
 .hero-section {
   position: relative;
   height: 100vh;
   min-height: 700px;
   overflow: hidden;
   display: flex;
   align-items: center;
   background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
 }

 .carousel-item {
   height: 100vh;
   min-height: 700px;
 }

 .carousel-item img {
   object-fit: contain;
   height: 100%;
   width: 100%;

   filter: brightness(0.2);
 }

 .hero-overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: linear-gradient(135deg, rgba(10, 66, 117, 0.85) 0%, rgba(42, 157, 143, 0.8) 100%);
   z-index: 1;
   opacity: 0.7;
 }

 .hero-section {
   position: relative;
   height: 100vh;
   /* full screen height */
 }

 .hero-overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.4);
   /* semi-transparent overlay */
   z-index: 1;
 }

 .hero-content {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   /* center vertically & horizontally */
   z-index: 2;
   /* above overlay and images */
   text-align: center;
   color: white;
 }

 .hero-content .btn-hero {
   padding: 12px 30px;
   font-size: 18px;
   border-radius: 5px;
   text-decoration: none;
   background-color: var(--secondary-color);
   color: var(--light-color);
 }

 .hero-content .btn-hero.call-now {
   background: white;
   color: var(--primary-color);
 }


 .carousel-indicators button {
   width: 12px !important;
   height: 12px !important;
   border-radius: 100%;
   margin: 0 6px !important;
   background: transparent;
 }

 .carousel-indicators button.active {
   background: white;
   width: 20px;
   height: 20px;
 }

 .carousel-control-prev,
 .carousel-control-next {
   width: 20px;
   height: 20px;
   background: rgba(255, 255, 255, 0.2);
   border-radius: 50%;
   top: 50%;
   transform: translateY(-50%);
   margin: 0 20px;
   backdrop-filter: blur(5px);
   transition: all 0.3s;
 }

 .carousel-control-prev:hover,
 .carousel-control-next:hover {
   background: rgba(255, 255, 255, 0.3);
   transform: translateY(-50%) scale(1.1);
 }

 /* Enhanced Section Headers */
 .section-header {
   text-align: center;
   margin-bottom: 70px;
   position: relative;
 }

 .section-header h2 {
   color: var(--primary-color);
   font-weight: 800;
   margin-bottom: 20px;
   position: relative;
   display: inline-block;
   font-size: 2.5rem;
 }

 .section-header h2:after {
   content: '';
   position: absolute;
   bottom: -15px;
   left: 50%;
   transform: translateX(-50%);
   width: 100px;
   height: 5px;
   background: var(--gradient-secondary);
   border-radius: 5px;
 }

 .section-header p {
   color: #666;
   max-width: 800px;
   margin: 30px auto 0;
   font-size: 1.1rem;
   line-height: 1.7;
 }

 /* Enhanced Cards */
 .card {
   border: none;
   border-radius: 20px;
   overflow: hidden;
   box-shadow: var(--box-shadow);
   transition: all 0.4s ease;
   height: 100%;
   position: relative;
 }

 .card:before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 5px;
   background: var(--gradient-primary);
   z-index: 2;
 }

 .card:hover {
   transform: translateY(-15px);
   box-shadow: var(--box-shadow-hover);
 }

 .card-img-top {
   height: 220px;
   object-fit: cover;
   transition: transform 0.5s ease;
 }

 .card:hover .card-img-top {
   transform: scale(1.05);
 }

 .card-body {
   padding: 30px;
 }

 .card-title {
   color: var(--primary-color);
   font-weight: 700;
   margin-bottom: 15px;
   font-size: 1.3rem;
 }

 .btn-card {
   background: var(--gradient-primary);
   color: white;
   border: none;
   padding: 10px 25px;
   border-radius: 50px;
   font-weight: 500;
   position: relative;
   overflow: hidden;
   z-index: 1;
 }

 .btn-card:before {
   content: '';
   position: absolute;
   top: 0;
   left: -100%;
   width: 100%;
   height: 100%;
   background: var(--gradient-secondary);
   transition: left 0.5s ease;
   z-index: -1;
 }

 .btn-card:hover:before {
   left: 0;
 }

 .btn-card:hover {
   color: white;
 }

 /* Enhanced Services Section */
 .service-icon {
   width: 80px;
   height: 80px;
   border-radius: 20px;
   background: var(--gradient-primary);
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto 25px;
   color: white;
   font-size: 2rem;
   box-shadow: 0 10px 20px rgba(10, 66, 117, 0.15);
 }

 .service-card {
   text-align: center;
   padding: 40px 30px;
   border-radius: 20px;
   background: white;
   box-shadow: var(--box-shadow);
   transition: all 0.4s ease;
   height: 100%;
 }

 .service-card:hover {
   transform: translateY(-10px);
   box-shadow: var(--box-shadow-hover);
 }

 .service-card:hover .service-icon {
   transform: rotateY(180deg);
 }

 /* Enhanced Testimonials */
 .testimonial-card {
   background: white;
   border-radius: 20px;
   padding: 35px;
   box-shadow: var(--box-shadow);
   height: 100%;
   position: relative;
 }

 .testimonial-card:before {
   content: '"';
   position: absolute;
   top: 20px;
   right: 30px;
   font-size: 5rem;
   color: rgba(10, 66, 117, 0.1);
   font-family: serif;
   line-height: 1;
 }

 .testimonial-img {
   width: 80px;
   height: 80px;
   object-fit: cover;
   border-radius: 50%;
   border: 5px solid white;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 }

 .rating {
   color: #ffc107;
   font-size: 1.1rem;
 }

 /* Enhanced Floating Contact */
 .floating-contact {
   position: fixed;
   bottom: 30px;
   right: 30px;
   z-index: 1000;
   display: flex;
   flex-direction: column;
   gap: 15px;
 }

 .floating-contact a,
 .floating-contact button {
   width: 60px;
   height: 60px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.5rem;
   box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
   transition: all 0.3s;
   position: relative;
   overflow: hidden;
 }

 .floating-contact a:before,
 .floating-contact button:before {
   content: '';
   position: absolute;
   top: 0;
   left: -100%;
   width: 100%;
   height: 100%;
   background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
   transition: left 0.7s ease;
 }

 .floating-contact a:hover:before,
 .floating-contact button:hover:before {
   left: 100%;
 }

 .floating-contact a:hover,
 .floating-contact button:hover {
   transform: scale(1.15) rotate(5deg);
 }

 .floating-whatsapp {
   background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
   color: white;
 }

 .floating-phone {
   background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
   color: white;
 }

 .floating-email {
   background: linear-gradient(135deg, #ff7b00 0%, #ff5500 100%);
   color: white;
 }

 .whatsapp-chat-popup {
   position: fixed;
   bottom: 20px;
   right: 20px;
   width: 280px;
   background: #fff;
   border-radius: 10px;
   z-index: 9999;
   overflow: hidden;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
 }


 /* Enhanced Footer */
 footer {
   background: linear-gradient(135deg, #0c2b4b 0%, #1a3d64 100%);
   color: white;
   position: relative;
   overflow: hidden;
 }

 footer:before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 5px;
   background: var(--gradient-secondary);
 }

 footer h5 {
   color: white;
   margin-bottom: 25px;
   font-weight: 700;
   position: relative;
   padding-bottom: 15px;
 }

 footer h5:after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   width: 50px;
   height: 3px;
   background: var(--secondary-color);
   border-radius: 3px;
 }

 footer a {
   color: #ddd;
   text-decoration: none;
   transition: all 0.3s;
   position: relative;
   padding-left: 0;
 }

 footer a:before {
   content: '›';
   position: absolute;
   left: -15px;
   opacity: 0;
   transition: all 0.3s;
 }

 footer a:hover {
   color: var(--secondary-color);
   padding-left: 15px;
 }

 footer a:hover:before {
   opacity: 1;
   left: 0;
 }

 footer ul li {
   margin-bottom: 12px;
 }

 .footer-bottom {
   border-top: 1px solid rgba(255, 255, 255, 0.1);
   padding-top: 25px;
   margin-top: 50px;
 }

 /* Custom Animations */
 @keyframes float {

   0%,
   100% {
     transform: translateY(0);
   }

   50% {
     transform: translateY(-10px);
   }
 }

 .floating-animation {
   animation: float 5s ease-in-out infinite;
 }

 /* Progress Bar */
 .progress-container {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 4px;
   background: transparent;
   z-index: 9999;
 }

 .progress-bar {
   height: 4px;
   background: var(--gradient-secondary);
   width: 0%;
   transition: width 0.3s ease;
 }

 /* Back to Top Button */
 .back-to-top {
   position: fixed;
   bottom: 100px;
   right: 30px;
   width: 50px;
   height: 50px;
   background: var(--gradient-primary);
   color: white;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.3rem;
   box-shadow: 0 5px 15px rgba(10, 66, 117, 0.3);
   opacity: 0;
   visibility: hidden;
   transition: all 0.3s;
   z-index: 999;
 }

 .back-to-top.active {
   opacity: 1;
   visibility: visible;
   bottom: 100px;
 }

 .back-to-top:hover {
   transform: translateY(-5px);
   background: var(--gradient-secondary);
 }


 /* ===========about=========== */

 .about-banner {
   filter: brightness(0.55) contrast(1.1);
 }


 /* ==========Varanasitour====== */

 /* Gradient Backgrounds */
 .bg-gradient-primary {
   background: var(--primary-color);
 }

 /* Hero Section */

 #varanasi-tourism {
   position: relative;
   overflow: hidden;
 }

 #varanasi-tourism::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: linear-gradient(135deg, rgba(13, 110, 253, 0.1), rgba(25, 135, 84, 0.1));
   z-index: 1;
 }

 #varanasi-tourism>.container {
   position: relative;
   z-index: 2;
 }

 /* Day Badge */
 .day-badge {
   position: absolute;
   top: 20px;
   left: 20px;
   z-index: 10;
   padding: 10px 15px;
   border-radius: 10px;
   color: white;
   font-weight: bold;
   display: flex;
   flex-direction: column;
   align-items: center;
   min-width: 80px;
   box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
 }

 .day-number {
   font-size: 1.5rem;
   line-height: 1;
 }

 .day-title {
   font-size: 0.75rem;
   margin-top: 2px;
   opacity: 0.9;
 }

 /* Image Overlay */
 .image-overlay {
   position: absolute;
   bottom: 15px;
   right: 15px;
   opacity: 0;
   transition: opacity 0.3s ease;
 }

 .position-relative:hover .image-overlay {
   opacity: 1;
 }

 /* Itinerary Timeline */
 .itinerary-timeline {
   position: relative;
   padding-left: 30px;
 }

 .itinerary-timeline::before {
   content: '';
   position: absolute;
   left: 10px;
   top: 0;
   bottom: 0;
   width: 2px;
   background: linear-gradient(to bottom, var(--primary-color), var(--warning-color));
 }

 .timeline-item {
   position: relative;
   margin-bottom: 20px;
 }

 .timeline-item:last-child {
   margin-bottom: 0;
 }

 .timeline-item::before {
   content: '';
   position: absolute;
   left: -34px;
   top: 5px;
   width: 12px;
   height: 12px;
   border-radius: 50%;
   background: var(--primary-color);
   border: 2px solid white;
   box-shadow: 0 0 0 3px var(--primary-color);
 }

 .timeline-time {
   font-size: 0.875rem;
   font-weight: 600;
   color: var(--primary-color);
   margin-bottom: 5px;
 }

 .timeline-content {
   background: rgba(13, 110, 253, 0.05);
   padding: 15px;
   border-radius: 10px;
   border-left: 3px solid var(--primary-color);
 }

 /* Price Tag Animation */
 .price-tag {
   animation: pulse 2s infinite;
 }

 @keyframes pulse {
   0% {
     transform: scale(1);
   }

   50% {
     transform: scale(1.05);
   }

   100% {
     transform: scale(1);
   }
 }

 /* Card Hover Effects */
 .itinerary-card {
   transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .itinerary-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
 }

 /* Filter Buttons */
 [data-filter].active {
   background-color: var(--primary-color);
   color: white;
 }


 /* =========Contact======== */
 .glass-card {
   background: rgba(255, 255, 255, 0.1);
   backdrop-filter: blur(15px);
   border-radius: 15px;
   color: white;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .glass-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
 }

 .form-control {
   background: rgba(255, 255, 255, 0.2);
   color: white;
   border: none;
 }

 .form-control:focus {
   background: rgba(255, 255, 255, 0.3);
   color: white;
   box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, .5);
 }

 .form-floating>label {
   color: rgba(255, 255, 255, 0.8);
 }

 .btn-primary {
   background: var(--warning-color);
   border: none;
   transition: 0.3s ease;
 }

 .btn-primary:hover {
   background: var(--primary-color);
   transform: translateY(-2px);
 }

 .info-card {
   background: rgba(255, 255, 255, 0.1);
   padding: 15px;
   border-radius: 10px;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .info-card:hover {
   transform: translateY(-3px);
   box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
 }

 .animate-bounce {
   animation: bounce 2s infinite;
 }

 @keyframes bounce {

   0%,
   100% {
     transform: translateY(0);
   }

   50% {
     transform: translateY(-5px);
   }
 }

 /* =========services========= */
 .car .card-img-top {
   height: 300px;
 }

 .car-card {
   transition: transform 0.3s, box-shadow 0.3s;
 }

 .car-card:hover {
   transform: translateY(-10px);
   box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.3);
 }

 .btn-gradient {
   background: linear-gradient(135deg, #28a745, #20c997);
   border: none;
 }

 .btn-gradient:hover {
   background: linear-gradient(135deg, #20c997, #28a745);
   color: #fff;
 }