body{
  background-color: #f9f9f9;
}
  a{
    text-decoration: none !important;
  }
  /* Base Ticket Card Styling */
  .ticket-card {
      border-radius: 20px; /* Rounded corners */
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); /* 3D shadow */
      padding: 20px;
      max-width: 420px;
      margin: 30px auto;
      font-family: Arial, sans-serif;
      color: #000000;
      position: relative;
      overflow: hidden;
      text-align: center;
      background: linear-gradient(135deg, #e6ffee, #29ca74); /* Default Light green gradient */
      transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); /* Smooth transition */
  }
  
  /* Jojo watermark styling */
  .jojo-watermark {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) rotate(-20deg); /* Center and rotate watermark text */
      font-size: 9em; /* Large font for watermark */
      color: rgba(0, 116, 204, 0.09); /* Light blue with low opacity */
      white-space: nowrap;
      pointer-events: none; /* Ensures watermark is non-interactive */
  }
  
  /* Header styling */
  .ticket-header {
      font-size: 1.6em;
      font-weight: bold;
      color: #0074cc; /* Darker blue for contrast */
      margin-bottom: 15px;
  }
  
  /* Ticket details */
  .ticket-details {
      font-size: 1em;
      color: #000000;
      line-height: 1.7;
  }
  
  /* Highlighted amount */
  .ticket-amount {
      font-size: 1.5em;
      font-weight: bold;
      color: #004a99; /* Deep blue for emphasis */
      margin-top: 20px;
  }
  
  /* Image styling */
  .ticket-image {
      max-height: 200px;
      object-fit: cover;
      border-radius: 10px;
      margin: 15px 0;
  }
  
  
  
  /* Hover Effect for 3D Effect */
  .ticket-card:hover {
      transform: translateY(-10px); /* Move the card up */
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4); /* Increase shadow for depth */
  }
  
  /* Optional: Add slight scaling effect */
  .ticket-card:hover {
      transform: scale(1.01); /* Slightly enlarge the card */
  }
  
/* Ensure proper handling of overflow */
.carousel-inner {
  overflow: hidden; /* Hide overflow */
}

/* Ensure the items are aligned properly for smaller screens */
@media (max-width: 782px) {
  .carousel-inner .row {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
  }

  .carousel-inner .col-md-4 {
    flex: 0 0 100%; /* Full width on smaller screens */
    max-width: 100%;
  }
  .ticket-card{
    margin: 0 5px;
  }
}

/* Carousel outer padding */
.carousel {
    padding: 20px 0;
}







/*category section*/
/*.transport-section {*/
/*    background-color: #f8f9fa;*/
/*    padding: 60px 0;*/
/*  }*/
  
/*  .section-title {*/
/*    color: #333;*/
/*    margin-bottom: 15px;*/
/*    position: relative;*/
/*    display: inline-block;*/
/*  }*/
  
/*  .section-title:after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    width: 50px;*/
/*    height: 3px;*/
/*    background: linear-gradient(90deg, #6a11cb, #2575fc);*/
/*    bottom: -10px;*/
/*    left: 50%;*/
/*    transform: translateX(-50%);*/
/*  }*/
  
/*  .section-subtitle {*/
/*    color: #666;*/
/*    font-size: 1.1rem;*/
/*    margin-bottom: 30px;*/
/*  }*/
  
/*  .website-link a {*/
/*    color: #2575fc;*/
/*    font-weight: 600;*/
/*    transition: all 0.3s ease;*/
/*  }*/
  
/*  .website-link a:hover {*/
/*    color: #6a11cb;*/
/*  }*/
  
/*  .transport-card {*/
/*    border: none;*/
    /*border-radius: 25px !important;*/
/*    overflow: hidden;*/
/*    box-shadow: 0 10px 20px rgba(0,0,0,0.1);*/
/*    transition: all 0.3s ease;*/
/*  }*/
  
/*  .transport-card:hover {*/
/*    transform: translateY(-10px);*/
/*    box-shadow: 0 15px 30px rgba(0,0,0,0.2);*/
/*  }*/
  
/*  .card-icon {*/
/*    margin-bottom: 20px;*/
/*  }*/
  
/*  .card-title {*/
/*    font-weight: 700;*/
/*    margin-bottom: 15px;*/
/*  }*/
  
/*  .card-text {*/
/*    opacity: 0.9;*/
/*    font-size: 0.95rem;*/
/*    line-height: 1.6;*/
/*  }*/
  
/*  .card-footer-custom {*/
/*    margin-top: 25px;*/
/*  }*/
  
/*  .card-footer-custom .btn {*/
/*    border-radius: 30px;*/
/*    padding: 8px 20px;*/
/*    font-weight: 600;*/
/*    transition: all 0.3s ease;*/
/*  }*/
  
/*  .card-footer-custom .btn:hover {*/
/*    transform: scale(1.05);*/
/*  }*/
  
/*  .website-footer {*/
/*    opacity: 0.8;*/
/*    font-size: 0.85rem;*/
/*  }*/
  
  /* Card Gradients */
/*  .skanetrafiken-card {*/
/*    background: linear-gradient(135deg, #43cea2, #185a9d);*/
/*  }*/
  
/*  .vasttrafik-card {*/
/*    background: linear-gradient(135deg, #ff9966, #ff5e62);*/
/*  }*/
  
/*  .hallandstrafiken-card {*/
/*    background: linear-gradient(135deg, #6a11cb, #2575fc);*/
/*  }*/
  
/*  .lanstrafiken-card {*/
/*    background: linear-gradient(135deg, #4e54c8, #8f94fb);*/
/*  }*/
  
/*  .events-card {*/
/*    background: linear-gradient(135deg, #834d9b, #d04ed6);*/
/*  }*/
  
  /* Responsive adjustments */
/*  @media (max-width: 768px) {*/
/*    .transport-section {*/
/*      padding: 40px 0;*/
/*    }*/
    
/*    .section-title {*/
/*      font-size: 1.8rem;*/
/*    }*/
    
/*    .section-subtitle {*/
/*      font-size: 1rem;*/
/*    }*/
/*  }*/
  
/*  @media (max-width: 576px) {*/
/*    .card-title {*/
/*      font-size: 1.5rem;*/
/*    }*/
/*  }*/
/* Transport Section Styling */





/* Transport Section Styling */
.transport-section {
  background-color: #f8f9fa;
  padding: 60px 0;
}

.section-title {
  color: #333;
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title:after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #00c3ff);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.section-subtitle {
  color: #666;
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.transport-card {
  border: none;
  border-radius: 20px !important;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  height: 100%;
  position: relative;
}

.transport-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

/* Background Images */
.card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.transport-card:hover .card-bg {
  transform: scale(1.1);
}

.skanetrafiken-bg {
  background-image: url('https://images.unsplash.com/photo-1570125909232-eb263c188f7e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1000&q=80');
}

.vasttrafik-bg {
  background-image: url('img/vt.webp');
}


.hallandstrafiken-bg {
  background-image: url('https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?ixlib=rb-1.2.1&auto=format&fit=crop&w=1000&q=80');
}

.lanstrafiken-bg {
  background-image: url('https://images.unsplash.com/photo-1517649763962-0c623066013b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1000&q=80');
}

.events-bg {
  background-image: url('https://images.unsplash.com/photo-1540039155733-5bb30b53aa14?ixlib=rb-1.2.1&auto=format&fit=crop&w=1000&q=80');
}

/* Overlay for readability */
.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}

.card-body {
  padding: 30px;
  position: relative;
  z-index: 2;
}

/* Logo Styling */
.logo-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 25px !important;
}

.logo-container {
  background-color: #ffffff;
  border-radius: 50%;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  height: 60px;
  width: auto;
  min-width: 60px;
}

.transport-card:hover .logo-container {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/*.company-logo {*/
/*  max-height: 50px;*/
/*  max-width: 100%;*/
/*  object-fit: contain;*/
/*  transition: all 0.3s ease;*/
/*}*/

.events-logo {
  background-color: #f8f9fa;
}

.events-logo .company-logo {
  max-height: 40px;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.card-title:after {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.7);
  bottom: 0;
  left: 0;
  border-radius: 2px;
}

.card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.card-footer-custom {
  margin-top: auto;
}

.card-footer-custom .btn {
  border-radius: 50px;
  padding: 5px 15px;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

.card-footer-custom .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0,0,0,0.3);
}

.website-footer {
  opacity: 0.7;
  font-size: 0.8rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .section-title {
    font-size: 2.2rem;
  }
  
  .card-body {
    padding: 25px;
  }
  
  .logo-container {
    min-width: 130px;
    height: 60px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .logo-container {
    min-width: 120px;
    height: 55px;
    padding: 12px 20px;
  }
  
  .company-logo {
    max-height: 40px;
  }
}

@media (max-width: 576px) {
  .transport-section {
    padding: 40px 0;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .card-title {
    font-size: 1.3rem;
  }
  
  .card-text {
    font-size: 0.9rem;
  }
  
  .logo-container {
    min-width: 110px;
    height: 50px;
    padding: 10px 15px;
  }
  
  .company-logo {
    max-height: 35px;
  }
}















.ticket-card-5d {
    background: #eee; /* Fallback */
    border-radius: 16px;
    padding: 20px;
    margin:0 10px;
    color: #fff;
    height: 300px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Hover Effect */
.ticket-card-5d:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    z-index: 2;
}

/* Ticket Header */
.ticket-header-5d {
    font-size: 19px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    margin-bottom: 10px;
   
}

/* Ticket Type */
.ticket-type-5d {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
}

/* Ticket Details Paragraphs */
.ticket-details p {
    font-size: 15px;
    margin-bottom: 6px;
}

/* Website line */
.webs {
    font-size: 14px;
    font-weight: bold;
    margin-top: 10px;
}

/* Watermark */
.jojo-watermark {
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 20px;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.01);
    pointer-events: none;
}

/* Carousel navigation arrows */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.4));
    background-color: #fff;
    border-radius: 50%;
    padding: 15px;
}

/* Responsive Columns */
@media (max-width: 767px) {
    .carousel-item .col-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .carousel-item .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
        margin:0 8px;
    }
}

@media (min-width: 992px) {
    .carousel-item .col-md-4 {
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
         margin:0 8px;
    }
}

  
  
  
  .bg-cover {
        background-image: url('images/bol.php'); 
        background-size: cover;
        background-position: center;
        height: 100vh;
        width: 100vw;
      }
      
      .content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: white;
      }
      .custom-paragraph {
        font-family: 'Arial, sans-serif'; /* Change to your desired font family */
        letter-spacing: 2px; /* Adjust letter spacing */
        font-weight: bold; /* Makes the text bold */
        text-align: center; /* Centers the text */
        font-size:19px;
      }
  

      .form-container {
        width:80%;
        background-color:  #FFFFFF;
        padding: 80px;
        border-radius: 8px;
       
      }
  
      .form-control {
        border: 1px solid #ccc;
        
      }
  
      .form-label {
        font-weight: bold;
        height:36px;
      }
  
      .icon-text {
        display: flex;
        align-items: center;
        gap: 10px;
      }
  
      .icon-text i {
        font-size: 1.2rem;
        color: #555;
      }
  
      .budget-slider {
        margin-top: 20px;
      }
  
      .budget-slider label {
        font-weight: bold;
      }
  
      .btn-custom {
        margin-top:20px;
        border-radius: 30px; /* Custom border radius */
        padding: 10px 30px; /* Larger padding for a bigger button */
      }
  
      .contact-card {
        position: relative;
        overflow: hidden;
        border-radius: 10px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      }
  
      .contact-card:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
      }
  
      .contact-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
  
      .contact-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.6);
        color: #fff;
        padding: 15px;
        transition: background 0.3s ease;
      }
  
      .contact-card:hover .contact-overlay {
        background: rgba(0, 0, 0, 0.8);
      }
  
      .contact-title {
        font-size: 18px;
        font-weight: bold;
      }
  
      .contact-info {
        font-size: 16px;
      }
      
  
    
  
  /* morder css section */
  /* Base Styles */
  :root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #ec4899;
    --dark-color: #0f172a;
    --light-color: #f8fafc;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 1.5s cubic-bezier(0.16, 1, 0.3, 1); /* Increased from 0.8s to 1.5s */
    --transition-extra-slow: 2.5s cubic-bezier(0.16, 1, 0.3, 1); /* Added extra slow transition */
  }
  
  .showcase-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    background-color: var(--dark-color);
    color: var(--light-color);
    overflow: hidden;
    font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
  }
  
  .showcase-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
    position: relative;
    z-index: 2;
  }
  
  /* Background Elements */
  .animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
  }
  
  .particle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .gradient-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    transition: all var(--transition-extra-slow); /* Using extra slow transition */
  }
  
  /* Smaller gradient spheres with longer animation times */
  .sphere-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-color), transparent 70%);
    top: -200px;
    left: -100px;
    animation: floatAnimation 80s infinite alternate ease-in-out; /* Increased from 50s to 80s */
  }
  
  .sphere-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--secondary-color), transparent 70%);
    bottom: -200px;
    right: -100px;
    animation: floatAnimation 90s infinite alternate-reverse ease-in-out; /* Increased from 55s to 90s */
  }
  
  .sphere-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--accent-color), transparent 70%);
    top: 40%;
    left: 60%;
    animation: floatAnimation 70s infinite alternate ease-in-out; /* Increased from 45s to 70s */
  }
  
  @keyframes floatAnimation {
    0% {
      transform: translate(0, 0) scale(1);
    }
    50% {
      transform: translate(50px, 30px) scale(1.1);
    }
    100% {
      transform: translate(-30px, 50px) scale(0.9);
    }
  }
  
  /* Main Content */
  .showcase-content {
    position: relative;
    z-index: 3;
  }
  
  .showcase-heading {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.5s forwards 0.8s; /* Increased delay from 0.3s to 0.8s and duration from 1s to 1.5s */
  }
  
  .text-reveal {
    display: block;
    font-size: 0.5em;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
  }
  
  .gradient-text {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
  }
  
  .showcase-description {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 4rem;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.5s forwards 1.2s; /* Increased delay from 0.5s to 1.2s and duration from 1s to 1.5s */
  }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Feature Cards */
  .feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 5rem;
  }
  
  .feature-card {
    height: 320px;
    perspective: 1000px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1.5s forwards 1.6s; /* Increased delay from 0.7s to 1.6s and duration from 1s to 1.5s */
  }
  
  .feature-card:nth-child(2) {
    animation-delay: 2s; /* Increased from 0.9s to 2s */
  }
  
  .feature-card:nth-child(3) {
    animation-delay: 2.4s; /* Increased from 1.1s to 2.4s */
  }
  
  .card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: transform var(--transition-slow); /* Using slow transition instead of medium */
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--card-shadow);
  }
  
  .card-back {
    transform: rotateY(180deg);
    justify-content: space-between;
  }
  
  .feature-card:hover .card-front {
    transform: rotateY(180deg);
  }
  
  .feature-card:hover .card-back {
    transform: rotateY(0);
  }
  
  .icon-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  
  /* Updated icons for ticket services */
  .purchase-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236366f1'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M15 5v2m0 4v2m0 4v2M5 5a2 2 0 00-2 2v3a2 2 0 110 4v3a2 2 0 002 2h14a2 2 0 002-2v-3a2 2 0 110-4V7a2 2 0 00-2-2H5z'%3E%3C/path%3E%3C/svg%3E");
  }
  
  .borrow-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%238b5cf6'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M8 7h12m0 0l-4-4m4 4l-4 4m0 6H4m0 0l4 4m-4-4l4-4'%3E%3C/path%3E%3C/svg%3E");
  }
  
  .subscription-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ec4899'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M9 12l2 2 4-4m5.618-4.016A11.955 11.955 0 0112 2.944a11.955 11.955 0 01-8.618 3.04A12.02 12.02 0 003 9c0 5.591 3.824 10.29 9 11.622 5.176-1.332 9-6.03 9-11.622 0-1.042-.133-2.052-.382-3.016z'%3E%3C/path%3E%3C/svg%3E");
  }
  
  .feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  .feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
  }
  
  .feature-btn {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    margin-top: 20px;
  }
  
  .feature-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.6);
  }
  
  /* Interactive Demo */
  .interactive-demo {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 4rem;
    border: 1px solid var(--glass-border);
    box-shadow: var(--card-shadow);
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1.5s forwards 2.8s; /* Increased delay from 1.3s to 2.8s and duration from 1s to 1.5s */
  }
  
  .demo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
  }
  
  .demo-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
  }
  
  .demo-controls {
    display: flex;
    gap: 10px;
  }
  
  .demo-btn {
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all var(--transition-medium);
  }
  
  .demo-btn.active, .demo-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
  }
  
  .demo-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    position: relative;
  }
  
  .device-mockup {
    width: 80%;
    max-width: 800px;
    height: 100%;
    background: rgba(20, 20, 40, 0.8);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-slow); /* Using slow transition instead of medium */
    transform-origin: center;
    transform: perspective(1000px) rotateX(5deg);
  }
  
  .device-screen {
    width: 100%;
    height: 100%;
    background: #1a1a2e;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
  }
  
  .screen-content {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-rows: auto 1fr;
    grid-template-columns: 200px 1fr;
    grid-template-areas: 
      "header header"
      "sidebar main";
    gap: 1px;
    background: rgba(255, 255, 255, 0.05);
  }
  
  .demo-ui-element {
    background: #0f0f1a;
    transition: all var(--transition-slow); /* Using slow transition instead of medium */
  }
  
  .header {
    grid-area: header;
    height: 60px;
  }
  
  .sidebar {
    grid-area: sidebar;
  }
  
  .main-content {
    grid-area: main;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  /* Styled content blocks for ticket platform */
  .content-block {
    height: 80px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    animation: pulse 5s infinite alternate; /* Increased from 3s to 5s */
  }
  
  .ticket-search {
    position: relative;
  }
  
  .ticket-search::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 20px;
    width: 60%;
    height: 2px;
    background: rgba(99, 102, 241, 0.3);
    transform: translateY(-50%);
  }
  
  .ticket-options {
    position: relative;
  }
  
  .ticket-options::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40%;
    height: 40px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 5px;
  }
  
  .payment-methods {
    position: relative;
  }
  
  .payment-methods::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30%;
    height: 40px;
    background: rgba(236, 72, 153, 0.1);
    border-radius: 5px;
  }
  
  .content-block:nth-child(2) {
    animation-delay: 1s; /* Increased from 0.5s to 1s */
  }
  
  .content-block:nth-child(3) {
    animation-delay: 2s; /* Increased from 1s to 2s */
  }
  
  @keyframes pulse {
    0% {
      background: rgba(255, 255, 255, 0.03);
    }
    100% {
      background: rgba(255, 255, 255, 0.08);
    }
  }
  
  /* Call to Action */
  .cta-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 60px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.5s forwards 3.2s; /* Increased delay from 1.5s to 3.2s and duration from 1s to 1.5s */
  }
  
  .primary-cta, .secondary-cta {
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
  }
  
  .primary-cta {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
  }
  
  .secondary-cta {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
  }
  
  .primary-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.6);
  }
  
  .secondary-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
  }
  
  .btn-particle-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
  
  /* Custom Cursor - Reduced Size */
  .custom-cursor {
    position: fixed;
    width: 20px; /* Reduced from 40px to 20px */
    height: 20px; /* Reduced from 40px to 20px */
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: width 0.8s, height 0.8s, border-color 0.8s; /* Increased from 0.3s to 0.8s */
    display: none;
  }
  
  /* Tablet View */
  [data-view="tablet"] .device-mockup {
    max-width: 500px;
    transform: perspective(1000px) rotateX(5deg) rotateY(0);
  }
  
  [data-view="tablet"] .screen-content {
    grid-template-rows: auto 1fr;
    grid-template-columns: 1fr;
    grid-template-areas: 
      "header"
      "main";
  }
  
  [data-view="tablet"] .sidebar {
    display: none;
  }
  
  /* Mobile View */
  [data-view="mobile"] .device-mockup {
    max-width: 300px;
    transform: perspective(1000px) rotateX(5deg) rotateY(0);
  }
  
  [data-view="mobile"] .screen-content {
    grid-template-rows: auto 1fr;
    grid-template-columns: 1fr;
    grid-template-areas: 
      "header"
      "main";
  }
  
  [data-view="mobile"] .sidebar {
    display: none;
  }
  
  [data-view="mobile"] .header {
    height: 50px;
  }
  
  /* Responsive Styles */
  @media (max-width: 1200px) {
    .showcase-heading {
      font-size: 3.5rem;
    }
    
    .feature-cards {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
  }
  
  @media (max-width: 992px) {
    .showcase-heading {
      font-size: 3rem;
    }
    
    .demo-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
    }
    
    .device-mockup {
      width: 90%;
    }
  }
  
  @media (max-width: 768px) {
    .showcase-container {
      padding: 60px 20px;
    }
    
    .showcase-heading {
      font-size: 2.5rem;
    }
    
    .showcase-description {
      font-size: 1.1rem;
    }
    
    .feature-cards {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    .feature-card {
      height: 280px;
    }
    
    .interactive-demo {
      padding: 30px 20px;
    }
    
    .demo-showcase {
      height: 300px;
    }
    
    .cta-container {
      flex-direction: column;
      align-items: center;
    }
    
    .primary-cta, .secondary-cta {
      width: 100%;
      max-width: 300px;
    }
  }
  
  @media (max-width: 480px) {
    .showcase-heading {
      font-size: 2rem;
    }
    
    .showcase-description {
      font-size: 1rem;
    }
    
    .demo-controls {
      width: 100%;
      justify-content: space-between;
    }
    
    .demo-btn {
      padding: 6px 12px;
      font-size: 0.9rem;
    }
    
    .demo-showcase {
      height: 250px;
    }
  }
  
  #in-fo{
      font-size:12px;
  }
   #in-fo :hover{
      font-size:10px !important;
  }