/* 

🔹 BLOG PAGE – Description

Explore expert insights, industry trends, and practical knowledge on software development, cloud computing, cybersecurity, and digital transformation from experienced IT professionals.
(25 words)

🔹 TEAM PAGE – Description

Meet our skilled team of developers, designers, engineers, and strategists dedicated to delivering innovative, reliable, and scalable IT solutions for global business success.
(26 words)

🔹 OPTIONAL (For Homepage if needed)

Synasys Software Solutions delivers advanced IT services, scalable software, and secure digital ecosystems designed to accelerate business growth and drive future-ready innovation.




/* Prevent text selection on the whole website */
 


/* 
---------------------------------------------
Whatsapp Style
--------------------------------------------- 
*/


.whatsapp-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  color: white;
}

.whatsapp-button:active {
  transform: scale(0.95);
}
 




   
/* ======================
        HERO SECTION 
        #0F172A BG
    =====================
*/
    /* This is for Home Page Hero page */
    .marquee-container {
        overflow: hidden;
        display: flex;
        width: 100%;
        /* background-color: #0F172A;  */
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    /* TRACK: Flex container, but NO ANIMATION here */
    .marquee-track {
        display: flex;
        width: 100%; /* Ensure it fills space */
    }

    /* THE LIST: ANIMATION GOES HERE */
    .marquee-list {
        display: flex;
        align-items: center;
        gap: 2rem; 
        padding-right: 2rem; 
        animation: scroll 60s linear infinite; 
        flex-shrink: 0; /* Important: prevents list from squishing */
    }

    /* ITEM STYLING */
    .marquee-item {
        flex-shrink: 0;
        white-space: nowrap;
        background-color:#3741514d;
        transition: 
            border-color 0.3s ease,
            background-color 0.3s ease,
            transform 0.3s ease,
            box-shadow 0.3s ease;
    }

    .marquee-item:hover, .primary-btn:hover {
      border-color: rgba(59, 130, 246, 0.7);
      background: rgba(59, 130, 246, 0.08);
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(59, 130, 246, 0.25);

    }

    /* KEYFRAMES */
    @keyframes scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-100%); }
    }
   
    @media (max-width: 768px) {
      .marquee-list {
        animation-duration: 60s;
      }
    }





    /* This is for  */




    .glass-badge {
    background: rgba(55, 88, 249, 0.05);
    border: 1px solid rgba(55, 88, 249, 0.2);
    backdrop-filter: blur(8px);
    color: #3758f9;
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    /* animation: float 8s ease-in-out infinite; */
    box-shadow: 0 4px 15px rgba(55, 88, 249, 0.1);
  }

  /* 4. The Background Glow */
  .glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 50%;
    background: radial-gradient(circle, rgba(10, 20, 69, 0.28) 20%, rgba(45, 212, 190, 0.15) 40%, transparent 70%);
    z-index: -1;
    filter: blur(80px);
    /* animation: pulse-slow 8s infinite alternate; */
  }



  /* Below Design from Mission and Vission */


      /* Structural CSS - Works even if Tailwind fails */
    .journey-tab {
        width: 100%; text-align: left; padding: 20px; border-radius: 15px;
        background: rgb(19 21 21 / 3%); 
        border: 1px solid rgba(255, 255, 255, 0.05);
        position: relative; cursor: pointer; transition: 0.3s; color: white;
        /* transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); */
        box-shadow: 0 25px 50px -12px rgb(118 118 118 / 50%);

    }
    .active-tab { 
        background: rgba(255, 255, 255, 0.08) !important; 
        border-color: #22d3ee !important; 
    }
    .side-indicator { position: absolute; left: 0; top: 20%; bottom: 20%; width: 4px; background: #22d3ee; transform: scaleY(0); transition: 0.3s; }
    .active-tab .side-indicator { transform: scaleY(1); }

    .step-label { font-size: 11px; font-weight: 800; color: #22d3ee; letter-spacing: 2px; text-transform: uppercase; }
    .tab-title { font-size: 20px; font-weight: 700; margin: 5px 0; }
    .active-tab .tab-title { color: #22d3ee; }
    .tab-desc { font-size: 14px; color: #94a3b8; }

    /* Content Panes */
    .content-pane {
        position: absolute; inset: 0; width: 100%; height: 100%;
        display: flex; align-items: flex-end; padding: 50px;
        transition: opacity 0.6s ease;
    }
    .active-pane { opacity: 1; z-index: 10; visibility: visible; }
    .hidden-pane { opacity: 0; z-index: 1; visibility: hidden; }

    .pane-img {
        position: absolute; inset: 0; width: 100%; height: 100%;
        object-fit: cover; z-index: -2; opacity: 0.5;
    }
    .pane-overlay {
        position: absolute; inset: 0; z-index: -1;
        background: linear-gradient(to top, #121d35 15%, transparent 85%);
    }
    .pane-text { position: relative; z-index: 2; }




   
/* ======================
        FEATURE SECTION 
    =====================
*/


  /* 1. Section Logic */
  section {
    overflow-x: hidden;
    position: relative;
  }

  /* 2. Advanced Heading Gradient */
  .text-gradient {
    background: linear-gradient(135deg, #3758f9 0%, #2DD4BF 100%); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
  }

 
  /* 1. RESPONSIVE COLUMN LOGIC */
.feature-col {
  width: 100%; /* 1 Card per row by default (Mobile) */
  flex: 0 0 100%;
}

/* From 550px up to 1024px: Show exactly 2 cards */
@media (min-width: 550px) {
  .feature-col {
    width: 50%;
    flex: 0 0 50%;
  }
}

/* From 1024px and up: Show 4 cards */
@media (min-width: 1024px) {
  .feature-col {
    width: 25%;
    flex: 0 0 25%;
  }
}

/* 2. FIXING THE "LONG TYPE" LOOK */
/* This prevents cards from looking too wide/stretched on large tablets */
.feature-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  padding: 30px 20px; /* Smaller padding for mobile */
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  
  /* Critical: ensure content stays centered if the card grows */
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .feature-card {
    padding: 35px; /* Larger padding for desktop */
  }
}

/* 3. DARK MODE & HOVER (Keep your existing styles) */
.dark .feature-card {
  background: rgba(31, 42, 55, 0.5);
  border-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
}

.feature-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(55, 88, 249, 0.3);
  box-shadow: 0 20px 40px rgba(55, 88, 249, 0.1);
}

/* Hover background "Flash" effect */
  .feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(800px circle at var(--x, 0) var(--y, 0), rgba(55, 88, 249, 0.06), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
  }
  .feature-card:hover::before { opacity: 1; }

  /* Icon Box Upgrades */
  .icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(55, 88, 249, 0.1) 0%, rgba(45, 212, 191, 0.1) 100%);
    color: #3758f9;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    border: 1px solid rgba(55, 88, 249, 0.1);
  }

  .feature-card:hover .icon-box {
    background: #18214de4;
    /* color: #fff; */
    transform: rotateY(180deg); /* Modern flip effect */
    box-shadow: 0 10px 20px rgba(55, 88, 249, 0.3);
  }

  /* Text animations */
  .feature-card h4 {
    transition: color 0.3s ease;
  }
  .feature-card:hover h4 {
    color: #3758f9;
  }

  /* 6. Animations */
  @keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-10px) translateX(5px); }
  }

  @keyframes pulse-slow {
    0% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1.3); }
  }

  /* Staggered entrance for cards (Optional: add via JS or just CSS) */
  .feature-card {
    animation: fadeIn 0.8s ease backwards;
  }
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

.feature-card .icon-box i,
.feature-card .icon-box svg{ 
    font-size: 1.6rem !important;
}

   
/* ===============================
    HOME | WHY CHOOSE US SECTION 
    ==============================
*/




  .choice-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid transparent;
  }

  .choice-item:hover {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(55, 88, 249, 0.1);
    box-shadow: 0 10px 30px -10px rgba(55, 88, 249, 0.1);
    transform: translateX(10px);
  }

  .dark .choice-item:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.05);
  }

  .choice-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #3758f9, #2DD4BF);
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px -6px rgba(55, 88, 249, 0.4);
    transition: transform 0.4s ease;
  }

  .choice-item:hover .choice-icon {
    transform: scale(1.1) rotate(-8deg);
  }

  /* 4. Glass Card with "Border Beam" effect */
  .glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
  }
  .dark .glass-card {
    background: rgba(17, 25, 40, 0.75);
    border-color: rgba(255, 255, 255, 0.1);
  }

  /* Animated Border Shimmer */
  .border-beam {
    position: relative;
    z-index: 0;
    overflow: hidden;
  }

  .border-beam::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: conic-gradient(transparent, #3758f9, transparent 30%);
    animation: rotate-beam 4s linear infinite;
    z-index: -1;
  }


  @keyframes rotate-beam {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  /* Extra Smooth Floating Animation */
  .animate-float {
    animation: float-y 6s ease-in-out infinite;
  }

  @keyframes float-y {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
  }


  /* 1. Perspective Wrapper */
  .perspective-container {
    perspective: 1000px;
  }

  /* 2. Grid Background Pattern */
  .grid-pattern {
    width: 40%;
    height: 40%;
    background-image: radial-gradient(circle, #3758f9 1px, transparent 1px);
    background-size: 25px 25px;
  }

  /* 3. Refined Glass Card */
  .glass-card-refined {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
    bottom: 40px;
  }

  .dark .glass-card-refined {
    background: rgba(17, 25, 40, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  }

  /* 4. MODERN BORDER BEAM (Thin & Elegant) */
  .border-beam-modern1::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px; /* This is the beam thickness */
    background: conic-gradient(
      from var(--angle),
      transparent 70%,
      #3758f9 85%,
      #2DD4BF 95%,
      transparent
    );
    -webkit-mask: 
      linear-gradient(#fff 0 0) content-box, 
      linear-gradient(#fff 0 0);
    mask: 
      linear-gradient(#fff 0 0) content-box, 
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: rotate-beam 4s linear infinite;
  }

  @property --angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
  }

  @keyframes rotate-beam {
    to { --angle: 360deg; }
  }

  /* 5. Custom Floating Animation */
  .animate-float-slow {
    animation: float-y 5s ease-in-out infinite;
  }

  @keyframes float-y {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
  }

  /* 6. Choice Item Interaction */
  .choice-item {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: default;
  }
  
  .choice-item:hover {
    transform: translateX(12px);
  }

 

/* ========================================
    HOME | PROPERTY / EXCELLENCE SECTION 
   ========================================
*/


  /* 1. Parallax Fix */
  .fixed-parallax-bg {
    position: absolute;
    inset: 0;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    z-index: 0;
  }

 

  /* 3. Layout Fix: Forced 1-Row on Desktop */
  .stat-item-card {
    flex: 1 1 calc(50% - 20px); /* 2 per row on mobile */
    max-width: calc(50% - 20px);
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
    transition-delay: var(--d);
  }

  @media (min-width: 1024px) {
    .stat-item-card {
      flex: 1 1 0; /* Forced equal width */
      max-width: 25%;
    }
  }

  /* 4. Fancy Glass Cards */
  .glass-inner {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 50px 20px;
    text-align: center;
    transition: all 0.4s ease;
  }

  .stat-item-card:hover .glass-inner {
    background: rgba(255, 255, 255, 0.1);
    border-color: #3758f9;
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  }

  /* 5. Typography */
  .stat-num {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: white;
    line-height: 1;
  }

  .plus {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3758f9;
    margin-left: 4px;
  }

  .stat-label {
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.7rem;
    font-weight: 800;
    margin-top: 15px;
  }

  /* Reveal State */
  .scroll-trigger.is-visible {
    opacity: 1;
    transform: translateY(0);
  }


/* ========================================
    HOME | Specialize SECTION 
   ========================================
*/

/* 1. FLEX LAYOUT (4 Columns) */
.blending-card {
  position: relative;
  padding: 1.5px;
  transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
  opacity: 0;
  transform: translateY(30px);
  
  /* Default: 1 Card per row (Small Mobile) */
  width: 100%; 
  flex: 0 0 100%;
}

/* Tablet: 2 Cards per row (from 550px up to 1024px) */
@media (min-width: 550px) {
  .blending-card {
    /* calc(50% - (gap / 2)) */
    /* Using 1rem (16px) gap for mobile/tablet */
    flex: 0 0 calc(50% - 0.5rem); 
    width: calc(50% - 0.5rem);
    min-width: auto; /* removes your previous min-width conflict */
  }
}

/* Desktop: 4 Cards per row (from 1024px+) */
@media (min-width: 1024px) {
  .blending-card {
    /* calc(25% - (3 gaps / 4)) */
    /* Using 2rem (32px) gap for desktop */
    flex: 0 0 calc(25% - 1.5rem);
    width: calc(25% - 1.5rem);
  }
}

/* 2. THE BLENDING BORDER LOGIC */
.card-content-inner {
  background: #ffffff;
  border: 1.5px solid #3758f9;
  border-radius: 25px;
  /* Reduced padding slightly on mobile so content isn't cramped */
  padding: 30px 20px; 
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.4s ease;
  box-sizing: border-box; /* Ensures padding doesn't break the width */
}

@media (min-width: 768px) {
  .card-content-inner {
    padding: 40px 25px;
  }
}

/* Rest of your existing CSS (hover, icons, dark mode, etc.) remains the same */

  /* 2. THE BLENDING BORDER LOGIC */
  .card-content-inner {
    background: #ffffff;
    border: 1.5px solid #3758f9; /* Your primary Blue */
    border-radius: 25px;
    padding: 40px 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.4s ease;
  }

  /* Alternate Blending: Card 1 & 3 Fades at the Top */
  .fade-top .card-content-inner {
    mask-image: linear-gradient(to top, black 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, black 70%, transparent 100%);
  }

  /* Alternate Blending: Card 2 & 4 Fades at the Bottom */
  .fade-bottom .card-content-inner {
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  }

  /* 3. HOVER STATE: Remove blending and show full border */
  .blending-card:hover .card-content-inner {
    /* mask-image: none; */
    /* -webkit-mask-image: none; */
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(55, 88, 249, 0.15);
    /* background: #fbfcfe; */
    border-color: #3758f9;
  }

  /* 4. 3D ICON FLOATING */
  .icon-floating-3d {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    transition: transform 0.5s ease;
  }
  .icon-floating-3d img {
    max-width: 100%;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
  }
  .blending-card:hover .icon-floating-3d {
    transform: scale(1.1) rotate(-5deg) translateY(-5px);
  }

  /* 5. TEXT STYLE */
 
  .dashing-link {
    font-size: 0.95rem;
    font-weight: 700;
    color: #3758f9;
    display: flex;
    align-items: center;
    margin-top: 1.3rem;
  }
  .dashing-link:hover { text-decoration: underline; }

  /* 6. DARK MODE FIX */
  .dark .card-content-inner {
    background: #1f2a3780;
    border-color: rgba(55, 88, 249, 0.5);
  }
 
  /* Entrance Animation */
  .scroll-trigger.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

    /* Text animations */
  .card-content-inner h4 {
    transition: color 0.3s ease;
  }
  .card-content-inner:hover h4 {
    color: #3758f9;
  }




/* ========================================
    HOME | Digital Excellance SECTION 
   ========================================
*/

    /* 1. FORCE 4 COLUMNS IN ONE ROW */
    .strict-intel-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        max-width: 1280px;
        margin: 0 auto;
    }

    @media (min-width: 768px) {
        .strict-intel-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (min-width: 1024px) {
        .strict-intel-grid { 
            grid-template-columns: repeat(4, 1fr) !important; 
        }
    }

    /* 2. CARD ARCHITECTURE */
    .intel-column {
        height: 520px;
        width: 100%;
        position: relative;
    }

    .intel-card-wrapper {
        width: 100%;
        height: 100%;
        border-radius: 30px;
        overflow: hidden;
        position: relative;
        background: #000;
    }

    /* 3. DEFAULT STATE (IMAGE) */
    .state-default {
        width: 100%;
        height: 100%;
        position: relative;
    }

    .state-default img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.8;
    }

    .state-title {
        position: absolute;
        bottom: 0; left: 0; width: 100%;
        padding: 40px 25px;
        background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    }

    /* 4. HOVER PANEL (BLUE SLIDE FROM LEFT) */
    .state-hover-panel {
        position: absolute;
        top: 0;
        left: -100.5%; /* Completely hidden to the left */
        width: 100%;
        height: 100%;
        /* background: #0F172A; */
        background: #1f2a37e0; 
        z-index: 20;
        transition: left 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .group:hover .state-hover-panel {
        left: 0; /* Slides in perfectly */
    }

    /* 5. TEXT ALIGNMENT & WHITE THEME */
    .panel-content {
        padding: 40px 30px;
        height: 100%;
        display: flex;
        flex-direction: column;
        text-align: left;
    }

    .panel-title {
        color: white !important;
        font-weight: 800;
        font-size: 24px;
        margin-bottom: 12px;
    }

    .panel-divider {
        width: 100%;
        height: 1px;
        background: rgba(255, 255, 255, 0.3);
        margin-bottom: 30px;
    }

    .panel-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .panel-list li {
        color: white !important;
        font-weight: 700;
        font-size: 15px;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .panel-note {
        margin-top: auto;
        color: rgba(255, 255, 255, 0.7) !important;
        font-size: 11px;
        font-style: italic;
    }

    /* 6. BORDER BEAM (Established Tech) */
    @property --angle { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
    .border-beam-modern2::before {
        content: ""; position: absolute; inset: 0; border-radius: 30px; padding: 2px;
        background: conic-gradient(from var(--angle), transparent 70%, #fff 85%, #2DD4BF 95%, transparent);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor; mask-composite: exclude;
        animation: rotate-beam 4s linear infinite;
        opacity: 0; z-index: 30; transition: opacity 0.4s;
    }
    .group:hover .border-beam-modern2::before { opacity: 1; }
    @keyframes rotate-beam { to { --angle: 360deg; } }



/* ========================================
    HOME | FAQ SECTION 
   ========================================
*/



    /* 2. BUBBLE / CIRCLE STYLING */
    .bubble-item {
        /* background: #ffffff; */
        border: 1px solid #08089fff;
        border-radius: 100px; /* Forces the circle/pill shape */
        padding: 5px;
        margin-bottom: 2rem;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .bubble-trigger {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 10px 10px 20px;
        background: transparent;
        border: none;
        cursor: pointer;
        outline: none;
    }

    .bubble-title {
        font-size: 18px;
        font-weight: 700;
        color: #1e293b;
        transition: color 0.3s;
    }

    /* 3. ICON BOX (The Plus/X) */
    .bubble-icon-box {
        position: relative;
        width: 35px;
        height: 35px;
        background: #f1f5f9;
        background: linear-gradient(135deg, #3758f9, #2DD4BF);
        border-radius: 50%;
        flex-shrink: 0;
        transition: all 0.3s;
 
    }

    .plus-line {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: #ffff;
        transition: all 0.4s;
    }
    .horizontal { width: 14px; height: 2px; }
    .vertical { width: 2px; height: 14px; }

    /* 4. ACTIVE STATE */
    .bubble-item.active {
        border-radius: 40px; /* Soften the circle for expanded text */
        border-color: #3b82f6;
        box-shadow: 0 20px 25px -5px rgba(59, 130, 246, 0.1);
        transform: scale(1.02);
    }

    .bubble-item.active .bubble-title { color: #3b82f6; }
    
    .bubble-item.active .bubble-icon-box {
        background: #3b82f6;
    }

    .bubble-item.active .plus-line {
        background: #ffffff;
    }
    .bubble-item.active .vertical {
        transform: translate(-50%, -50%) rotate(90deg);
        opacity: 0;
    }

    /* 5. CONTENT AREA */
    .bubble-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out;
    }

    .bubble-text {
        padding: 0 40px 25px 40px;
        color: #64748b;
        font-size: 16px;
        line-height: 1.6;
    }




/* ========================================
    About | Mission-Vision-History 
   ========================================
*/


 .journey-container-box {        
    height: 400px;
  }
  @media (min-width: 1024px) {
    .journey-container-box {
        height: 550px;
    }
  }


/* ========================================
    About | Core Of Synasys SECTION 
   ========================================
*/


    /* SNAKE ANIMATION */
       .snake-flow-anim {
        stroke-dashoffset: 1000;
        animation: snakeFlow 30s linear infinite;
    }
    @keyframes snakeFlow {
        from { stroke-dashoffset: 1000; }
        to { stroke-dashoffset: 0; }
    }

    /* COMPACT DASHING CARDS */
    .journey-card {
        position: relative;
        padding: 25px;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 25px;
        backdrop-filter: blur(15px);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 5;
    }

    .journey-card:hover {
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(255, 255, 255, 0.2);
        transform: translateY(-10px);
        box-shadow: 0 30px 60px -15px rgba(0,0,0,0.5);
    }

    .neon-number {
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 40px;
        font-weight: 900;
        opacity: 0.1;
        transition: 0.5s;
    }
    .journey-card:hover .neon-number { opacity: 0.5; transform: scale(1.2); }

    /* HOVER GLOW SYSTEM */
    .neon-glow-hover {
        position: absolute;
        inset: 0;
        opacity: 0;
        transition: 0.5s;
        z-index: -1;
        filter: blur(50px);
        border-radius: 25px;
    }
    .journey-card:hover .neon-glow-hover { opacity: 1; }

    /* ACTIVE STEP (Synasys) */
    .active-step {
        border-color: #22d3ee;
        background: rgb(194 241 255 / 22%);
    }

    .dark .active-step {
        background: rgba(255, 255, 255, 0.02);
        border:none;
    }

    /* RESPONSIVE LAYOUT */
    @media (max-width: 1023px) {
        .lg\:sticky { position: relative !important; top: 0 !important; }
        .self-start, .self-end { align-self: center !important; }
        .journey-card { max-width: 100% !important; }
    }







/* ========================================
    About |   SECTION 
   ========================================
*/






/* ========================================
    About |   SECTION 
   ========================================
*/







/* ========================================
    About |   SECTION 
   ========================================
*/






/* ========================================
    About |   SECTION 
   ========================================
*/






/* ========================================
    SERVICES |  HERO SECTION 
   ========================================
*/

    .shadow-glow-blue {
        box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
    }
    .shadow-glow-cyan {
        box-shadow: 0 0 15px rgba(34, 211, 238, 0.5);
    }

    @keyframes float {
        0%, 100% { transform: translateY(0px) rotate(0deg); }
        50% { transform: translateY(-20px) rotate(1deg); }
    }
    .abouthero {
        background: radial-gradient(circle at center, #0f172a 30%, #0d1321 100%);
        /* background: #0f172a; */
    }



/* ========================================
    SERVICES | Service-List SECTION 
   ========================================
*/

.fixed-parallax-bg {
    position: absolute; inset: 0; background-attachment: fixed;
    background-position: center; background-size: cover; z-index: 0;
  }

  /* 2. Column Math */
  .service-item-card {
    flex: 0 0 100%; max-width: 100%; padding: 12px;
  }
  @media (min-width: 768px) { .service-item-card { flex: 0 0 50%; max-width: 50%; } }
  @media (min-width: 1024px) { .service-item-card { flex: 0 0 33.333%; max-width: 33.333%; } }

  /* 3. Dashing Glass Card */
  .service-glass-inner {
    position: relative; overflow: hidden; height: 100%; text-align: center;
    padding: 60px 35px; border-radius: 4px; /* Stylish sharper corners for IT look */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
  }
  /* 4. Background Index */
  .card-index {
    position: absolute; top: -10px; right: 10px; font-size: 100px;
    font-weight: 900; color: rgba(255, 255, 255, 0.03);
    user-select: none; transition: 0.5s;
  }
  .service-glass-inner:hover .card-index {
    color: rgba(34, 211, 238, 0.1); transform: translateY(20px);
  }

  /* 5. Reflection Shine Animation */
  .hover-shine {
    position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.05), transparent);
    transform: skewX(-25deg); transition: 0.7s;
  }
  /* .service-glass-inner:hover .hover-shine { left: 150%; } */

  /* 6. NEON SNAKE BORDERS (Point 1 to 2 / 2 to 1) */
  .service-glass-inner span {
    position: absolute; background: #fff;
    box-shadow: 0 0 10px #fff; transition: all 0.6s ease; z-index: 10;
  }
  .line-top { top: 0; left: 0; width: 30px; height: 2px; opacity: 0.2; }
  .line-bottom { bottom: 0; right: 0; width: 30px; height: 2px; opacity: 0.2; }
  .line-left { bottom: 0; left: 0; width: 2px; height: 0; opacity: 0.2; }
  .line-right { top: 0; right: 0; width: 2px; height: 0; opacity: 0.2; }

  .service-glass-inner:hover .line-top { width: 100%; opacity: 1; box-shadow: 0 0 15px #22d3ee; }
  .service-glass-inner:hover .line-bottom { width: 100%; opacity: 1; box-shadow: 0 0 15px #3b82f6; }
  .service-glass-inner:hover .line-left,
  .service-glass-inner:hover .line-right { height: 100%; opacity: 1; }

  /* 7. Icon & Text */
  .service-icon {
    width: 65px; height: 65px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 30px; background: rgba(255, 255, 255, 0.02); transition: 0.5s;
  }
  .service-glass-inner:hover .service-icon {
    background: white; transform: scale(1.15) rotate(15deg);
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.4);
  }
  .service-glass-inner:hover .service-icon svg { color: #0f172a; }

  .service-title { font-size: 1.4rem; font-weight: 800; color: #fff; margin-bottom: 15px; letter-spacing: -0.5px; }
  .service-desc { color: rgba(255, 255, 255, 0.5); font-size: 0.9rem; line-height: 1.7; }

 
 

/* ========================================
    SERVICES |  SDLC Model SECTION 
   ========================================
*/
    .sdlc-image-frame {
        padding:1rem;   
    }
    .model-back{
      background:#0b172d;
    }
    
/* ========================================
    SERVICES | Technologies 
   ========================================
*/

  /* 1. TABS STYLING */
    .tech-tab {
        position: relative;
        width: 100%;
        padding: 24px 30px;
        text-align: left;
        border-radius: 15px;
        /* background: rgba(255, 255, 255, 0.02); */
        border: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow: hidden;
        cursor: pointer;
        border-color: #7fa6aca2;
        background: rgb(194 241 255 / 22%);
    }
    .dark .tech-tab{
        background:rgba(255, 255, 255, 0.02);
        border:none;
    }

    .tech-tab:hover {
        background: rgba(255, 255, 255, 0.05);
        color: white;
        transform: translateX(10px);
    }

    .tech-tab.active-tab {
        background: rgba(34, 211, 238, 0.1);
        border-color: rgba(34, 211, 238, 0.3);
        color: white;
        box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.5);
    }

    .tab-glow {
        position: absolute;
        top: 0; left: 0; width: 4px; height: 100%;
        background: #22d3ee;
        transform: scaleY(0);
        transition: 0.4s;
    }
    .active-tab .tab-glow { transform: scaleY(1); }

    .tab-icon-box {
        width: 36px; height: 36px;
        display: flex; align-items: center; justify-content: center;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        font-size: 16px;
    }
    .active-tab .tab-icon-box { background: #22d3ee; color: #121d35; }

    /* 2. TECH CHIP STYLING */
    .tech-chip {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin: 1rem 10px;
        padding: 20px 15px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        transition: all 0.4s ease;
        animation: chipIn 0.5s ease backwards;
    }

    @keyframes chipIn {
        from { opacity: 0; transform: translateY(20px) scale(0.9); }
        to { opacity: 1; transform: translateY(0) scale(1); }
    }

    .tech-chip:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(34, 211, 238, 0.3);
        transform: translateY(-5px);
        box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.3);
    }

    .tech-logo {
        width: 44px; height: 44px;
        object-fit: contain;
        transition: 0.4s;
    }
    .tech-chip:hover .tech-logo { transform: scale(1.1); }

    .tech-name { font-size: 13px; font-weight: 700; color: #cbd5e1; }
    .tech-chip:hover .tech-name { color: #00f; }

  /* ========= SERVICES |  Ecosystem ========== */

      .tech-auto-grid {
        display: grid;
        /* grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));  */
        grid-template-columns: repeat(4, 1fr); 
        gap: 15px;
        width: 100%;
    }



    .tech-item-card {
        width: 100%;  
        height: 110px;  
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        transition: all 0.3s ease;
    } 
 
    .tech-item-card:hover {
        border-color: #22d3ee; /* Cyan glow on hover */
        background: rgba(34, 211, 238, 0.05);
        transform: translateY(-5px);
    }

    .tech-icon-wrapper {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .tech-icon-wrapper img {
        max-width: 100%;
        max-height: 100%;
        object-contain: contain;
    }

    /* Mobile adjustment: if screen is very small, allow 2 columns minimum */
    @media (max-width: 380px) {
        .tech-auto-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

 

/* ========================================
    PRICING |  Price Model SECTION 
   ========================================
*/

 
  /* 1. FLEX CARD LOGIC: Desktop par 1/3rd width minus gap */
  .flex-pricing-card {
    width: 100%; /* Mobile */
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }

  @media (min-width: 1024px) {
    .flex-pricing-card {
      width: 30.33%; /* Desktop row */
    }
  }

  .dark .flex-pricing-card {
    background: rgba(31, 42, 55, 0.5);
  }

  .card-content {
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 5;
  }

  /* 2. TYPOGRAPHY */
  .card-title { font-size: 22px; font-weight: 800; color: #111; margin-bottom: 4px; }
  .dark .card-title { color: #fff; }
  .card-subtitle { font-size: 13px; color: #666; margin-bottom: 30px; }
  
  .price-wrap { margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid rgba(0,0,0,0.05); }
  .price-amount { display: block; font-size: 32px; font-weight: 900; color: #111; }
  .dark .price-amount:not(.text-primary) { color: #fff; }
  .price-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; color: #3758f9; letter-spacing: 1px; }

  /* 3. LIST & DOTS */
  .feature-list { list-style: none; padding: 0; margin-bottom: 40px; flex-grow: 1; }
  .feature-list li { display: flex; align-items: center; gap: 12px; font-size: 14px; margin-bottom: 14px; color: #444; }
  .dark .feature-list li { color: #ccc; }
  
  .dot { 
    width: 20px; height: 20px; background: rgba(16, 185, 129, 0.1); color: #10b981; 
    border-radius: 5px; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 900;
  }
  .dot.primary { background: rgba(55, 88, 249, 0.1); color: #3758f9; }

  /* 4. BUTTONS */
  .btn-main-outline { 
    border: 1px solid rgba(0,0,0,0.1);  
    padding: 14px; text-align: center; 
    border-radius: 12px; font-weight: 
    700; font-size: 14px;
    cursor: pointer;

  }
  .btn-main-outline:hover{
        background: linear-gradient(135deg, #3758f9, #2DD4BF);
        flex-shrink: 0;
        box-shadow: 0 8px 20px -6px rgba(55, 88, 249, 0.4);
        transition: transform 0.4s ease;
        color: white;
  }
  
  .dark .btn-main-outline { 
        background: linear-gradient(135deg, #3758f9, #2DD4BF);
        flex-shrink: 0;

    }

  /* 5. BORDER BEAM EFFECT */
  @property --angle { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
  .border-beam-modern3::before {
    content: ""; position: absolute; inset: 0; border-radius: 24px; padding: 2px;
    background: conic-gradient(from var(--angle), transparent 70%, #3758f9 85%, #2DD4BF 95%, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    animation: rotate-beam 5s linear infinite;
  }
  @keyframes rotate-beam { to { --angle: 360deg; } }

 


/* ========================================
    CONTACT |  SDLC Model SECTION 
   ========================================
*/




 

    /* THE CHOICE ITEM STYLE (Direct copy from your code for consistency) */
    .choice-item {
        display: flex;
        gap: 20px;
        padding: 20px 20px 20px 0;
        border-radius: 20px;
        transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        border: 1px solid transparent;
        cursor: pointer;
    }

    .choice-item:hover {
        background: rgba(255, 255, 255, 0.7);
        border-color: rgba(55, 88, 249, 0.1);
        box-shadow: 0 10px 30px -10px rgba(55, 88, 249, 0.1);
        transform: translateX(12px);
    }

    .dark .choice-item:hover {
        background: rgba(255, 255, 255, 0.03);
    }

    .choice-icon {
        flex-shrink: 0;
        width: 56px;
        height: 56px;
        background: linear-gradient(135deg, #3758f9, #2DD4BF);
        color: white;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 20px -6px rgba(55, 88, 249, 0.4);
        transition: transform 0.4s ease;
    }

    .choice-item:hover .choice-icon {
        transform: scale(1.1) rotate(-8deg);
    }

    /* BORDER BEAM EFFECT */
    @property --angle {
        syntax: "<angle>";
        initial-value: 0deg;
        inherits: false;
    }

    .border-beam-modern4::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 30px;
        padding: 2px;
        background: conic-gradient(from var(--angle), transparent 70%, #3758f9 85%, #2DD4BF 95%, transparent);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        animation: rotate-beam 4s linear infinite;
        pointer-events: none;
    }

    @keyframes rotate-beam { to { --angle: 360deg; } }

    /* LAYOUT & DECORATION */
    .grid-pattern {
        width: 50%;
        height: 50%;
        background-image: radial-gradient(circle, var(--primary) 1px, transparent 1px);
        background-size: 25px 25px;
    }

    .perspective-container { perspective: 1000px; }

    .glass-card-refined {
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(12px);
        border-radius: 20px;
    }

    .dark .glass-card-refined {
        background: rgba(15, 23, 42, 0.9);
    }

    .animate-float-slow {
        animation: float-y 5s ease-in-out infinite;
    }

    @keyframes float-y {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-15px); }
    }

    .glow-effect-top {
        position: absolute; top: -10%; right: -5%; width: 500px; height: 500px;
        background: radial-gradient(circle, rgba(55, 88, 249, 0.08) 0%, transparent 70%);
        filter: blur(100px);
    }

    .glow-effect-bottom {
        position: absolute; bottom: -10%; left: -5%; width: 500px; height: 500px;
        background: radial-gradient(circle, rgba(45, 212, 191, 0.08) 0%, transparent 70%);
        filter: blur(100px);
    }



