.project_bg_img{
    background-image: url(../images/lycan-uae/lycan-uae15.jpeg);
    color: white !important;
}

.c_w{
    color: white !important;
    padding:10px 20px;
}

.get_start_btn{
    background-color: rgb(13, 77, 196) !important;
    color: white !important;
}

.get_start_btn:hover{
    background-color: rgb(150, 87, 6) !important;
    color: white !important;

}

.quote_container{
    width: 100%;
    height: 400px;
    padding: 10px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../images/lycan-uae/lycan-uae15.jpeg);
    background-size: cover;
    background-position: center;
    color: white !important;
    border: 1px solid red;

}


/* Target the container specifically inside this section */
.cta-sec .container {
    background-color: rgba(20, 30, 48, 0.6);
    -webkit-backdrop-filter: blur(20px); /* Required for Safari support */
    backdrop-filter: blur(5px);         /* Standard syntax for Chrome, Edge, Firefox */
    border-radius: 25px; /* Gives the glass modern rounded corners */
    border: 1px solid rgba(255, 255, 255, 0.15);
    
    /* Ensure the container has some space above and below it within the section */
    /* margin-top: 40px;
    margin-bottom: 40px; */
}

/* Optional: Ensure the text inside is definitely above the glass layer */
.cta-txt, .cta-img-st {
    position: relative;
    z-index: 10;
}


    /* Container & Section Setup */
    .lycan-service-v2 {
      padding: 80px 0;
      background-color: #f9f9f9;
      font-family: 'Poppins', sans-serif;
      /* Fallback to sans-serif */
      color: #333;
    }

    .lycan-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Header Styling */
    .lycan-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .lycan-header h2 {
      font-size: 32px;
      font-weight: 800;
      line-height: 1.3;
      color: #1a1a1a;
      margin-bottom: 20px;
    }

    .lycan-header p {
      font-size: 16px;
      color: #666;
      max-width: 800px;
      margin: 0 auto;
    }

    /* Grid Layout: 3 columns on desktop, 1 on mobile */
    .lycan-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
    }

    /* Individual Service Card */
    .lycan-card {
      background: #fff;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .lycan-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .lycan-card-content {
      padding: 30px;
      flex-grow: 1;
    }

    .lycan-card h3 {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 15px;
      color: #e65100;
      /* Primary accent color from your brand */
    }

    .lycan-card p {
      font-size: 14px;
      line-height: 1.6;
      color: #555;
      margin-bottom: 20px;
    }

    /* Portfolio Image Gallery inside Card */
    .lycan-gallery {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
      margin-bottom: 25px;
    }

    .lycan-gallery img {
      width: 100%;
      height: 100px;
      object-fit: cover;
      border-radius: 8px;
      background: #eee;
    }

    /* Buttons */
    .lycan-btn-group {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .lycan-btn-primary {
      background: #1a1a1a;
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .lycan-btn-link {
      color: #1a1a1a;
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .lycan-grid {
        grid-template-columns: 1fr;
        /* Force single column on phones */
      }

      .lycan-header h2 {
        font-size: 24px;
      }
    }