@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Blackhole */

.section-blackhole {
  position: relative;
  width: 100%;
  height: 95vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  max-width: 800px;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero-content .highlight {
  color: orange
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  color: white;
}

.blackhole-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#blackhole {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#blackhole canvas {
  position: absolute;
  /* Remove forced width/height to allow our JS to control the aspect ratio */
  object-fit: contain; /* Maintain aspect ratio */
  max-width: 100%;
  max-height: 100%;
}

.content-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* Curve divider styles */
.curve-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 3;
}

.curve-divider svg {
  position: relative;
  display: block;
  width: 100%;
  height: 100px;
}



.btn-outline-dark1 {
  display: inline-block;
  padding: clamp(12px, 2vw, 16px) clamp(24px, 4vw, 32px);
  color: var(--text-light);
  text-decoration: none;
  border: 2px solid var(--text-light);
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 500;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}

.btn-outline-dark1:hover {
  background: var(--text-light);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Ensure mobile responsiveness */
@media (max-width: 768px) {
  .banner-content {
      padding: 1.5rem;
  }
  
  /* Improved curve divider for tablets */
  .curve-divider svg {
    height: 60px;
  }
  
  .curve-divider svg path {
    transform: scale(1.05, 1);
  }
}

@media (max-width: 480px) {
  .banner-content {
      padding: 1rem;
      width: 95%;
  }
  
  /* Enhanced curve divider for small mobile devices */
  
  
  .curve-divider svg path {
    /* Slightly more pronounced curve for mobile */
    d: path("M0,0 C360,20 640,40 1080,40 C1260,40 1350,15 1440,0 L1440,100 L0,100 Z");
   /*  "M0,0 C360,20 540,100 720,100 C900,100 1080,20 1440,0 L1440,100 L0,100 Z*/
    transform: scale(1.1, 1);
  }
}
  /* Anotherabout */
.section-padding-anotherabout-company {
    overflow: hidden;
    background-color: #fde6dd;
    
    padding: 5rem 10rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 6rem;
    margin: 0rem 10rem 0rem 10rem;
    min-height: 800px;
  }
  
  .anotherabout .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .anotherabout .left-section,
  .anotherabout .right-section {
    width: 100%;
    max-width: 650px;
  }
  
  .anotherabout h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: left;
  }
  
  .anotherabout p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: left;
  }
  
  .anotherabout .card {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    width: 350px;
    margin-right: 10px;
  }
  
  .anotherabout .card:hover {
    transform: translateY(-5px);
  }
  
  .anotherabout .card-image {
    width: 100%;
    height: 180px;
    border-radius: 5px;
    margin-bottom: 20px;
    background-size: cover;
    background-position: center;
  }
  
  .threat-intel { background-image: linear-gradient(to right, #e5b2ff, #b28dff); }
  .network-sec { background-image: linear-gradient(to right, #b2e5ff, #8db2ff); }
  .incident-response { background-image: linear-gradient(to right, #ffb2e5, #ffb28d); }
  .cloud-sec { background-image: linear-gradient(to right, #b2ffe5, #8dffb2); }
  
  .card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 12px;
  }
  
  .card p {
    font-size: 1rem;
    color: #666;
  }
  
  .arrow {
    font-size: 1.5rem;
    color: #ccc;
    transition: color 0.3s ease;
  }
  
  .card:hover .arrow {
    color: #666;
  }
  
  /* Tablet styles */
  @media (min-width: 768px) and (max-width: 1023px) {
    .anotherabout .container {
      flex-direction: column;
      align-items: center;
    }
  
    .anotherabout .left-section {
      margin-bottom: 40px;
      padding-right: 0;
      text-align: center;
    }
  
    .anotherabout h1,
    .anotherabout p {
      text-align: center;
    }
  
    .anotherabout .right-section {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      justify-content: center;
    }
  
    .anotherabout .card {
      width: 100%;
      max-width: 350px;
      margin: 0 auto;
    }
  }
  
  /* Desktop styles */
  @media (min-width: 1024px) {
    .anotherabout .container {
      flex-direction: row;
      align-items: flex-start;
      text-align: left;
    }
  
    .anotherabout .left-section {
      padding-right: 40px;
    }
  
    .anotherabout .right-section {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }
  
    .anotherabout .card {
      margin-bottom: 0;
    }
  }
  
  /* Mobile styles (unchanged) */
  @media (max-width: 767px) {
    .anotherabout .container {
      flex-direction: column;
      text-align: center;
    }
  
    .anotherabout .left-section {
      padding-right: 0;
      margin-bottom: 30px;
    }
  
    .anotherabout .right-section {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }
  
    .anotherabout h1,
    .anotherabout p {
      text-align: center;
    }
  
    .anotherabout .card {
      width: 100%;
      max-width: 350px;
      margin: 0 auto 30px;
    }
  }
  
  .popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-container.active {
    opacity: 1;
    visibility: visible;
}

.popup {
    position: relative;
    width: 90%;
    max-width: 800px;
    height: 80vh;
    max-height: 600px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
}

.popup-background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}


.popup-inside {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%) scale(0);
height: 400px;
width: 400px;
overflow: hidden;
border-radius: 50%;
opacity: 1;
transition: transform 2s ease, opacity 0.5s ease;
z-index: 10;  
}
.star {
position: absolute;
background: white;
border-radius: 50%;
animation: twinkle 2s infinite alternate;
}

@keyframes twinkle {
0% { opacity: 0.3; }
100% { opacity: 1; }
}

.content {
position: relative;
z-index: 11;
padding: 30px;
overflow-y: auto;
flex-grow: 1;
opacity: 0;
transition: opacity 1s ease;
background: rgba(255, 255, 255, 0.9);
border-radius: 10px;
margin: 20px;
}

.popup-container.active .popup-inside {
transform: translate(-50%, -50%) scale(3);
}
.stats {
  position: relative;
  margin: 0rem 8rem 6rem 8rem;
  border-radius: 6rem;
  overflow: hidden; /* Ensures background stays within border radius */
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://img.freepik.com/premium-photo/abstract-blurred-sky-colorful_40299-22.jpg') no-repeat center center;
  background-size: cover;
  z-index: -1;
}

.stat-item {
  position: relative;
  z-index: 1;
}

.stat-item h3 {
  font-size: 3rem;
  color: #186aff;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.stat-item p {
  color: #666;
  font-size: 1rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .stats {
      margin: 0rem 2rem;
      border-radius: 3rem;
      padding: 3rem 1.5rem;
      gap: 1.5rem;
  }
}



.backgrounds {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.background {
    --offset: 0;
    position: absolute;
    left: var(--offset);
    right: var(--offset);
    bottom: var(--offset);
    top: var(--offset);
    background: linear-gradient(to right, #504bff, orange);
    transform: scale(0);
    transition: all 0.5s ease 0s;
    border-radius: 50%;
}

.background2 { --offset: 10%; transition-delay: 0.1s; background: linear-gradient(to right, #6665ff, #ffb733); }
.background3 { --offset: 20%; transition-delay: 0.2s; background: linear-gradient(to right, #8583ff, #ffc966); }
.background4 { --offset: 30%; transition-delay: 0.3s; background: linear-gradient(to right, #aaaaff, #ffdb99); }
.background5 { --offset: 40%; transition-delay: 0.4s; background: linear-gradient(to right, #c9c8ff, #ffedcc); }
.background6 { --offset: 40%; background: white; z-index: 5; transition: all 0.8s ease 0.4s; }

.content {
position: relative;
z-index: 2;
padding: 30px;
overflow-y: auto;
flex-grow: 1;
opacity: 0;
transition: opacity 0.5s ease;
}


.content-wrapper {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
}

.content-wrapper h1 {
    font-size: 2em;
    color: #333;
    margin-bottom: 20px;
}

.content-wrapper p {
    font-size: 1em;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
}

.close-popup {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    z-index: 11;
    transition: color 0.3s ease;
}

.close-popup:hover {
    color: #504bff;
}

.popup-container.active .popup-inside {
       border-radius: 0;
}

 .popup-container.active .background {
    transform: scale(1);
}

 .popup-container.active .background6 {
    transform: scale(3);
}
button.btn-outline-dark1 {
  color: #DB7F67;
  border: 2px solid #DB7F67;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  padding: 12px 24px;
  border-radius: 48px;
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background: none;
  white-space: nowrap;
  transition: all 0.2s ease;
  z-index: 10000;
}
.btn-outline-dark2 {
  color: #8F4833; /* Adjusted for contrast */
  border: 2px solid #8F4833; /* Adjusted for contrast */
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  padding: 12px 24px;
  border-radius: 48px;
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background: none;
  white-space: nowrap;
  transition: all 0.2s ease;
  z-index: 10000;
}
.btn-outline-dark2:hover {
  color: #FFFFFF;
  background: #C06030; /* Adjusted hover for contrast */
  border-color: #C06030; /* Adjusted hover for contrast */
}
a.btn-outline-dark1 {
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  padding: 12px 24px;
  margin-left: 150px;
  margin-right: 150px;
  border-radius: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background: none;
  white-space: nowrap;
  transition: all 0.2s ease;
  z-index: 10000;
}
a.btn-outline-dark1:hover {
  color: #FFFFFF;
  background:  #f79a6b;
  border-color: #DB7F67;
}
  

button.btn-filled-dark1 {
  color: #FFFFFF;
  border: 2px solid #AE5032; /* Adjusted for contrast */
  background: #AE5032; /* Adjusted for contrast */
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  padding: 12px 24px;
  border-radius: 48px;
  display: flex;
  gap: 8px;

  justify-content: center;
  align-items: center;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}
button.btn-filled-dark1:hover {
  background:  #f79a6b;
  border-color: white;
  color: #45413E;
}

button.btn-filled-dark3 {
  color: #FFFFFF;
  /* Assuming .btn-filled-dark3 should also have contrast fix */
  border: 2px solid #AE5032; /* Adjusted for contrast */
  background: #AE5032; /* Adjusted for contrast */
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  padding: 12px 24px;
  border-radius: 48px;
  display: flex;
  gap: 8px;
  
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}
button.btn-filled-dark3:hover {
  /* Assuming .btn-filled-dark3 hover should match .btn-filled-dark1 hover */
  background:  #f79a6b; /* Hover state background contrast is fine */
  border-color: white; /* Hover state border contrast is fine */
  color: #45413E;
}
button.btn-outline-dark1:hover {
  color: #FFFFFF;
  background:  #f79a6b;
  border-color: #DB7F67;
  
}
a.services:hover {
  all: unset;
  color: inherit; /* blue colors for links too */
  text-decoration: inherit; 
  transition: all 0.2s ease;
}

a.btn-outline-dark1 {
 
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  padding: 12px 24px;
  margin-left: 70px;
  margin-right: 70px;
 
}


.card-image {
width: 100%;
height: 200px;
object-fit: cover;
}

.card-content {
padding: 20px;
}

.card-tags {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-bottom: 12px;
}

.card-tag {
background: #EEF2FF;
color: #4F46E5;
padding: 4px 8px;
border-radius: 9999px;
font-size: 0.75rem;
font-weight: 600;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin: 0 0 12px 0;
}

.card-text {
    font-size: 0.875rem;
    color: #4B5563;
    line-height: 1.5;
}



    .popup {
        width: 95%;
        height: 90vh;
    }
    
    .content-wrapper h1 {
        font-size: 1.5em;
    }
    
    .content-wrapper p {
        font-size: 0.9em;
    }





    .timeline-container {
        padding: 5rem 2rem;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        overflow: hidden;
        border-radius: 6rem;
        margin: 8rem;
        background: #f5f7fe;
    }
    
    .timeline {
        width: 100%;
        position: relative;
        padding: 2rem 0;
        max-width: 1400px;
        margin: 0 auto;
        border-radius: 6rem;
    }
    
    .timeline::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        width: 2px;
        height: 100%;
        background: linear-gradient(180deg, #186aff 0%, #0052cc 100%);
        transform: translateX(-50%);
        box-shadow: 0 0 20px rgba(24, 106, 255, 0.2);
    }
    
    .timeline-item {
        padding: 2rem;
        margin-bottom: 4rem;
        position: relative;
        width: calc(50% - 2rem);
        opacity: 0; /* Start fully transparent */
        /* filter: blur(2px); Remove blur */
        transform: translateY(30px);
        transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out; /* Smoother timing, slightly faster */
    }
    
    .timeline-item__content {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.8);
        border-radius: 1.5rem;
        padding: 2rem;
        position: relative;
        box-shadow: 
            0 4px 6px -1px rgba(24, 106, 255, 0.1),
            0 2px 4px -1px rgba(24, 106, 255, 0.06),
            0 0 0 1px rgba(24, 106, 255, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .timeline-item__content:hover {
        transform: translateY(-2px);
        box-shadow: 
            0 20px 25px -5px rgba(24, 106, 255, 0.1),
            0 10px 10px -5px rgba(24, 106, 255, 0.04),
            0 0 0 1px rgba(24, 106, 255, 0.1);
    }
    
    .timeline-item--active {
        opacity: 1;
        /* filter: blur(0); Remove blur */
        transform: translateY(0);
    }
    
    .timeline-item:nth-child(odd) {
        margin-left: auto;
    }
    
    .timeline-logo {
        position: absolute;
        left: 50%;
        width: 80px;
        height: 80px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 
            0 0 0 4px rgba(24, 106, 255, 0.1),
            0 4px 6px rgba(24, 106, 255, 0.1),
            0 10px 20px rgba(24, 106, 255, 0.1);
        z-index: 2;
        transform: translateX(-50%);
        /* transition: top 0.3s ease; Removed - JS handles positioning */
    }
    
    .timeline-logo img {
        width: 100%;
        height: auto;
    }
    
    .timeline__content-title {
        position: absolute;
        top: 50%;
        background: white;
        color: #1a202c;
        padding: 1rem 1.5rem;
        border-radius: 1rem;
        font-size: 1.1rem;
        font-weight: 600;
        transform: translateY(-50%);
        white-space: nowrap;
        z-index: 1;
        box-shadow: 
            0 4px 6px -1px rgba(7, 84, 227, 0.1),
            0 2px 4px -1px rgba(24, 106, 255, 0.06),
            inset 0 0 0 1px rgba(24, 106, 255, 0.1);
    }
    
    .timeline-item:nth-child(odd) .timeline__content-title {
        right: calc(100% + 7rem);
    }
    
    .timeline-item:nth-child(even) .timeline__content-title {
        left: calc(100% + 7rem);
    }
    
    .timeline__content-desc {
        font-size: 1.1rem;
        color: #4a5568;
        line-height: 1.7;
    }
    
    .timeline__content-desc-new {
        display: inline-block;
        background: #f8fafc;
        border: 1px solid rgba(24, 106, 255, 0.1);
        border-radius: 0.75rem;
        padding: 1rem;
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .timeline__content-desc-new strong {
        display: inline-block;
        background: linear-gradient(135deg, #1a365d 0%, #186aff 100%);
        -webkit-background-clip: text;
        background-clip: text; /* Standard property for compatibility */
        -webkit-text-fill-color: transparent;
        letter-spacing: 0.5px;
    }
    
    .timeline__content-desc p {
        margin-bottom: 1.5rem;
        color: #2d3748;
    }
    
    /* New styles for timeline features list */
    .timeline-features-list {
        list-style: none;
        padding: 0;
        margin: 1.5rem 0 0 0; /* Add margin top */
        display: grid; /* Use grid for layout */
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Responsive columns */
        gap: 0.75rem; /* Gap between items */
    }

    .timeline-features-list li {
        display: flex;
        align-items: flex-start; /* Align icon with start of text */
        gap: 0.75rem;
        background: rgba(255, 255, 255, 0.8);
        border: 1px solid rgba(24, 106, 255, 0.1);
        border-radius: 0.75rem;
        padding: 0.75rem 1rem; /* Adjust padding */
        transition: all 0.2s ease;
    }

    .timeline-features-list li:hover {
        background: white;
        transform: translateY(-2px);
        box-shadow:
            0 4px 6px -1px rgba(24, 106, 255, 0.1),
            0 2px 4px -1px rgba(24, 106, 255, 0.06);
    }

    .timeline-features-list li i { /* Style for Font Awesome icon */
        color: #186aff; /* Icon color */
        font-size: 1rem; /* Icon size */
        margin-top: 0.2em; /* Align icon slightly better with text */
        flex-shrink: 0;
    }

    .timeline-features-list li span {
        color: #2d3748;
        font-size: 0.95rem;
        font-weight: 500;
        line-height: 1.5; /* Increased line-height */
    }
    
    .timeline-header {
        text-align: center;
        margin-bottom: 5rem;
        max-width: 1000px;
        padding: 0 2rem;
    }
    
    .timeline-header__title {
        font-size: 3rem;
        margin-bottom: 1.5rem;
        font-weight: 800;
        background: linear-gradient(135deg, #1a365d 0%, #186aff 100%);
        -webkit-background-clip: text;
        background-clip: text; /* Standard property for compatibility */
        -webkit-text-fill-color: transparent;
        text-shadow: 0 2px 10px rgba(24, 106, 255, 0.1);
        letter-spacing: -0.5px;
        line-height: 1.2;
    }
    
    .timeline-header__subtitle {
        font-size: 1.3rem;
        color: #4a5568;
        line-height: 1.6;
        font-weight: 500;
    }
    
    /* Mobile-only styles */
    @media (max-width: 767px) {
        .timeline-container {
            padding: 3rem 1.5rem;
            margin: 4rem 1.5rem;
        }
    
        .timeline::before {
            left: 1rem;
        }
    
        .timeline-item {
            width: calc(100% - 3rem);
            margin-left: 3rem !important;
            margin-bottom: 3rem;
        }
    
        .timeline-logo {
            left: 1rem;
            width: 60px;
            height: 60px;
        }
    
        .timeline__content-title {
            position: static;
            top: auto;
            left: auto !important;
            right: auto !important;
            transform: none;
            margin-bottom: 1.5rem;
            display: block;
            width: fit-content;
        }
    
        .timeline-header__title {
            font-size: 2.2rem;
        }
    
        .timeline-header__subtitle {
            font-size: 1.1rem;
        }
    
        .feature-grid {
            grid-template-columns: 1fr;
        }
    }
    
    /* Small mobile adjustments */
    @media (max-width: 480px) {
        .timeline-container {
            padding: 1.5rem 0.75rem;
            margin: 1rem 0.75rem;
            border-radius: 2rem;
        }
    
        .timeline {
            border-radius: 2rem;
        }
    
        .timeline-item {
            padding: 1rem;
            margin-left: 2rem !important;
            width: calc(100% - 2rem);
        }
    
        .timeline::before {
            left: 0.5rem;
        }
    
        .timeline-logo {
            left: 0.5rem;
            width: 40px;
            height: 40px;
        }
    
        .timeline__content-title {
            font-size: 0.9rem;
            padding: 0.5rem 0.75rem;
        }
    
        .timeline-header__title {
            font-size: 1.8rem;
        }
    
        .timeline-header__subtitle {
            font-size: 1rem;
        }
    }
    
    /* Large screen optimizations */
    @media (min-width: 1440px) {
        .timeline-container {
            max-width: 1800px;
            margin: 8rem auto;
        }
    
        .timeline {
            max-width: 1600px;
        }
    
        .timeline-item__content {
            padding: 2.5rem;
        }
    
        .timeline-header {
            max-width: 1200px;
        }
    
        .timeline-header__title {
            font-size: 3.5rem;
        }
    
        .timeline-header__subtitle {
            font-size: 1.5rem;
        }
    }
    
    html {
        scroll-behavior: smooth;
    }
    
    body {
        overflow-x: hidden;
        margin: 0;
        padding: 0;
        min-height: 100vh;
    }
  /* block book a demo */ 

.section-about2 {
        
          background-color: white;
          color: #333;
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          position: relative;
          z-index: 5;
          
          }
         
          .section-about2 .container {
            color: white;
            box-sizing: border-box;
            z-index: 1;
            overflow: hidden;
            background-color: #fde6dd;
            padding: 5rem 10rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            border-radius: 6rem;
            margin: 6rem 6rem;
            max-width: 1400px;
            width: calc(100% - 12rem);
        }

    
        .section-about2 .centered-text {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 40px;
        }
        .section-about2 .centered-text h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            line-height: 1.3;
            font-weight: 700;
        }
        .section-about2 .centered-text p {
            font-size: 1.2rem;
            line-height: 1.6;
            margin-bottom: 30px;
            color: #5a6a7e;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        .section-about2 .buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 10px;
        }
        .section-about2 .btn-primary, .btn-secondary {
            padding: 15px 30px;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            cursor: pointer;
            transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
            text-decoration: none;
            z-index: 2;
        }
        .section-about2 .btn-primary {
            background-color: #227aedd3;
            color: white;
        }
        .section-about2 .btn-primary:hover {
            background-color: #003479;
        }
        .section-about2 .btn-secondary {
            background-color: transparent;
            color: #fff;
            border: 2px solid transparent;
        }
        .section-about2 .btn-secondary:hover {
            color: #27333d;
            border-color: #003479;
        }

        /* Media Queries for Responsiveness */
        @media screen and (max-width: 1024px) {
          .section-about2 .container {
              padding: 4rem 3rem;
              margin: 4rem 3rem;
              width: calc(100% - 6rem);
              border-radius: 3rem;
          }
          .section-about2 .centered-text h2 {
              font-size: 2.2rem;
          }
          .section-about2 .centered-text p {
              font-size: 1.1rem;
          }
        }
        
        @media screen and (max-width: 768px) {
          .section-about2 .container {
              padding: 3rem 2rem;
              margin: 3rem 1.5rem;
              width: calc(100% - 3rem);
              border-radius: 2rem;
          }
          .section-about2 .centered-text h2 {
              font-size: 1.9rem;
              margin-bottom: 15px;
          }
          .section-about2 .centered-text p {
              font-size: 1rem;
              margin-bottom: 25px;
          }
          .section-about2 .buttons {
              gap: 15px;
          }
      }

      @media screen and (max-width: 480px) {
        .section-about2 .container {
              padding: 2.5rem 1.5rem;
              margin: 2rem 1rem;
              width: calc(100% - 2rem);
              border-radius: 1.5rem;
          }
          .section-about2 .centered-text h2 {
              font-size: 1.6rem;
              margin-bottom: 12px;
          }
          .section-about2 .centered-text p {
              font-size: 0.95rem;
              margin-bottom: 20px;
              line-height: 1.5;
          }
          .section-about2 .buttons {
              flex-direction: column;
              gap: 12px;
              width: 100%;
              max-width: 300px;
              margin: 0 auto;
          }
          .section-about2 .buttons button,
          .section-about2 .buttons a {
              width: 100%;
          }
      }






#blackhole {
  position: absolute;
width:100%;
  height:10%;
  border-radius: 4rem;
}

.centerHover {
            width: 355px;
            height: 355px;
            background-color: transparent;
            border-radius: 50%;
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: opacity 0.3s ease;
        }

        .centerHover span {
            color: #666;
            font-family: serif;
            font-size: 18px;
            position: relative;
            transition: all 0.5s;
        }

        .centerHover span:before,
        .centerHover span:after {
            content: '';
            display: inline-block;
            height: 1px;
            width: 16px;
            background-color: #666;
            position: absolute;
            top: 50%;
            transition: all 0.5s;
        }

        .centerHover span:before {
            left: -28px;
        }

        .centerHover span:after {
            right: -28px;
        }

        .centerHover:hover span {
            color: #DDD;
        }

        .centerHover:hover span:before,
        .centerHover:hover span:after {
            background-color: #DDD;
        }

        .banner-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: #fff;
            z-index: 3;
        }

        .banner-content h5 {
            font-size: 1rem;
            color: #fff;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .banner-content h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #fff;
        }

        .banner-content p {
            font-size: 1rem;
            margin-bottom: 2rem;
        }

        .btn {
            display: inline-block;
            padding: 10px 20px;
            background-color: #635CDB;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }

        .btn:hover {
            background-color: #4A44B8;
        }

        #blackhole {
          position: relative;
          height: 100vh;
          display: flex;
          justify-content: center;
          align-items: center;
          overflow: hidden;
        }
        
        .centerHover {
          width: 255px;
          height: 255px;
          background-color: transparent;
          border-radius: 50%;
          position: absolute;
          left: 50%;
          top: 50%;
          transform: translate(-50%, -50%);
          z-index: 2;
          cursor: pointer;
          line-height: 255px;
          text-align: center;
          transition: all 500ms;
        }
        
        .centerHover.open {
          opacity: 0;
          pointer-events: none;
        }
        
        .centerHover:hover span {
          color: #DDD;
        }
        
        .centerHover span {
          color: #666;
          font-family: serif;
          font-size: 18px;
          position: relative;
          z-index: 3; /* Ensure text is above canvas */
        }
        
        #blackholeCanvas {
          position: relative;
          z-index: 1; /* Ensure canvas is below text content */
          width: 100%;
          height: 100%;
        }
        .banner-content {
          position: absolute;
          left:50%;
          top: 50%;
          transform: translate(-50%, -50%);
          text-align: center;
          color: #fff;
          z-index: 3; /* Ensure text is above canvas */
          width: 80%;
      max-width: 500px;
      }
        
        
        .banner-content .subtitle {
          font-size: 24px;
          margin-bottom: 15px;
        }
        
        .banner-content .banner-title {
          font-size: 48px;
          font-weight: bold;
          margin-bottom: 20px;
        }
        
        .banner-content p {
          font-size: 18px;
          margin-bottom: 30px;
        }
        
        .banner-content .btn {
          font-size: 18px;
          padding: 10px 25px;
          border-radius: 30px;
          text-decoration: none;
          transition: background-color 0.3s ease;
        }
        
        .banner-content .btn:hover {
          background-color: rgba(255, 255, 255, 0.1);
        }
    
        .typing-demo {
          width: 20ch;
          animation: typing 2s steps(22), blink .5s step-end infinite alternate;
          white-space: nowrap;
          overflow: hidden;
          border-right: 0px solid;
          font-family: monospace;
          font-size: 1.5em;
        }
        @keyframes typing {
          from {
            width: 0
          }
        }
            
        @keyframes blink {
          50% {
            border-color: transparent
          }
        }
    

/* Share Menu Styles */
.share-button {
    position: relative;
}

.share-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
    min-width: 150px;
    margin-top: 5px;
}

.share-button:hover .share-menu {
    display: block;
}

.share-option {
    padding: 8px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s;
}

.share-option:hover {
    background-color: #f5f5f5;
}

.share-option i {
    width: 16px;
    text-align: center;
}

/* Add a small arrow to the share menu */
.share-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 10px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid white;
}

.share-menu::after {
    content: '';
    position: absolute;
    top: -7px;
    right: 9px;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #ddd;
    z-index: -1;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 14px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10000;
}

.newheader-button {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #6B7280;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    transition: all 0.2s;
    position: relative;
}

.newheader-button:hover {
    background-color: #F3F4F6;
    color: #111827;
}

.fullscreen-button {
    font-size: 24px;
    line-height: 1;
}

.close-button {
    font-size: 28px;
    line-height: 1;
}

.share-button i {
    font-size: 20px;
}

.feature-list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 16px;
    background: #f8fafc;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.feature-item:hover {
    background: #f1f5f9;
    transform: translateX(5px);
}

.feature-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #3b82f6;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
    font-size: 14px;
}

.feature-item div {
    color: #334155;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
}

.newmodal-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.newmodal {
  position: relative;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.newmodal.fullscreen {
  width: 100%;
  height: 100vh;
  max-width: none;
  max-height: none;
  border-radius: 0;
  margin: 0;
}

.newmodal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #e0e0e0;
  background: white;
  border-radius: 12px 12px 0 0;
  flex-shrink: 0;
}

.newmodal.fullscreen .modal-header {
  border-radius: 0;
}

.newmodal-title {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
  margin: 0;
}

.newheader-actions {
  display: flex;
  gap: 12px;
}

.newheader-button {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: #6B7280;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  transition: all 0.2s;
}

.newheader-button:hover {
  background-color: #F3F4F6;
  color: #111827;
}

.newscrollable-content {
  overflow-y: auto;
  flex-grow: 1;
}

.newhero-image {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  overflow: hidden;
}
.newhero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.newcontent {
  padding: 24px;
}

.newmain-content {
  color: #374151;
  line-height: 1.6;
}

.share-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 8px 0;
  display: none;
  z-index: 1100;
  min-width: 200px;
}

.share-menu.active {
  display: block;
}

.share-option {
  padding: 8px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  color: #374151;
  font-size: 14px;
  transition: background-color 0.2s;
}

.share-option:hover {
  background-color: #F3F4F6;
}

.share-option i {
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.btn-filled-dark1 {
  color: white;
  border: 2px solid var(--dark1);
  background: var(--dark1);
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  padding: 12px 24px;
  border-radius: 48px;
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-filled-dark1 a, 
.btn-filled-dark1 .services {
  color: white !important;
  text-decoration: none;
}

.btn-filled-dark1:hover {
  background: transparent;
  border-color: white;
  color: white;
}

.btn-filled-dark1:hover a,
.btn-filled-dark1:hover .services {
  color: white !important;
}

.btn-outline-dark1 {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline-dark1:hover {
  background: var(--dark1);
  color: white;
  border: 2px solid var(--dark1);
}
 /* Base styles */
 /* Base styles */


 .features {
  background-color: #fde6dd;
  border-radius: 6rem;
  padding: 4rem 2rem;
  margin: 2rem 8rem 8rem 8rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.5;
  color: #1e293b;
}

.features-container {
  display: flex;
  gap: 6rem;
  max-width: 1600px;
  margin: 0 auto;
}

.hero-content {
  flex: 0.8;
  max-width: 500px;
}

.main-title {
  font-size: 3.5rem;
  background: linear-gradient(135deg, #1e293b 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  background-clip: text; /* Standard property for compatibility */
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.newtest {
  font-size: 1.2rem !important;
  color: #475569 !important;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.feature-grid {
  flex: 1.5;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  background: white;
  border-radius: 24px; /* More rounded corners - Apple style */
  padding: 32px; /* Slightly more padding - Apple style */
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04); /* Lighter, more subtle shadow - Apple style */
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1); /* Apple's smooth animation curve */
  background-size: cover;
  min-height: 300px;
  border: 1px solid rgba(0, 0, 0, 0.03); /* Very subtle border - Apple style */
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  display: block;
  height: 180px; /* Slightly shorter - Apple style */
  width: 100%;
  border-radius: 16px; /* More rounded corners - Apple style */
  margin-bottom: 24px; /* Slightly more spacing - Apple style */
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1); /* Apple's smooth animation curve */
}

.feature-card[data-service="apt"]::before {
  background: linear-gradient(135deg, #e9d5ff, #d8b4fe); /* Subtle gradient - Apple style */
}

.feature-card[data-service="nightowl"]::before {
  background: linear-gradient(135deg, #bfdbfe, #93c5fd); /* Subtle gradient - Apple style */
}

.feature-card[data-service="threat"]::before {
  background: linear-gradient(135deg, #fbcfe8, #f9a8d4); /* Subtle gradient - Apple style */
}

.feature-card[data-service="resilience"]::before {
  background: linear-gradient(135deg, #86efac, #4ade80); /* Subtle gradient - Apple style */
}

.feature-card:hover {
  transform: translateY(-4px); /* More subtle lift - Apple style */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08); /* Enhanced shadow on hover - Apple style */
}

.feature-card:hover::before {
  transform: scale(1.02); /* Subtle scale effect on hover - Apple style */
}



.feature-card h3 {
  color: #1e293b;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  font-weight: 600; /* Slightly lighter weight - Apple style */
  letter-spacing: -0.01em; /* Tighter letter spacing - Apple style */
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.feature-card p {
  position: relative;
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-weight: 400; /* Regular weight - Apple style */
}

.feature-card .subheadline {
  color: #475569;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-weight: 400; /* Regular weight - Apple style */
  opacity: 0.9; /* Slightly transparent - Apple style */
}

.key-features {
  position: relative;
  margin-top: auto;
}

.key-features ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.key-features li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}

.key-features li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2563eb;
}

.expand-btn {
  background: none;
  border: none;
  color: #186aff; /* Match button blue */
  cursor: pointer;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  margin-top: auto;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1); /* Apple's smooth animation curve */
  font-weight: 500; /* Apple uses lighter font weights */
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  letter-spacing: -0.01em; /* Apple-style tight letter spacing */
  position: relative;
}

.expand-btn:hover {
  color: #1254cc; /* Darker blue on hover - Apple style */
  transform: translateX(4px); /* More subtle movement - Apple style */
}

.expand-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #186aff;
  transition: width 0.4s cubic-bezier(0.2, 0.8, 0.2, 1); /* Apple's smooth animation curve */
}

.expand-btn:hover::after {
  width: 100%; /* Underline animation on hover - Apple style */
}

/* Modal styles */
.modalmain {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  -webkit-backdrop-filter: blur(5px); /* Vendor prefix for Safari */
  backdrop-filter: blur(5px);
}

.modalmain-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  background: #f8fafc;
  border-radius: 24px;
  margin: 5vh auto;
  padding: 3rem;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.modalmain-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #1e293b 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.modalmain-description {
  font-size: 1.25rem;
  color: #475569;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.modalmain-subheadline {
  font-size: 1.1rem;
  color: #475569;
  margin-bottom: 2rem;
  line-height: 1.5;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e2e8f0;
}

.modalmain-section {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.modalmain-section:hover {
  transform: translateY(-2px);
}

.modalmain-section h4 {
  font-size: 1.5rem;
  color: #1e293b;
  margin-bottom: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}



.modalmain-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modalmain-section li {
  padding-left: 2rem;
  position: relative;
  margin-bottom: 1rem;
  color: #475569;
  line-height: 1.6;
}

.success-story {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 16px;
  padding: 2.5rem;
  margin-top: 1rem;
  position: relative;
  border-left: 4px solid #2563eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.success-story p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #475569;
  font-style: italic;
  margin: 0;
}

.success-story::before {
  content: '"';
  position: absolute;
  top: -1rem;
  left: 1rem;
  font-size: 5rem;
  color: #2563eb;
  opacity: 0.1;
  font-family: Georgia, serif;
}

.close {
  position: absolute;
  right: 1.5rem;
  top: 1rem;
  font-size: 2rem;
  cursor: pointer;
  color: #475569;
  transition: all 0.3s ease;
  background: none;
  border: none;
  padding: 0.5rem;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close:hover {
  background: #e2e8f0;
  color: #1e293b;
}

.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.pricing-tier {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pricing-tier::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, var(--accent-color));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pricing-tier:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.pricing-tier:hover::before {
  opacity: 1;
}

.pricing-tier h5 {
  font-size: 1.25rem;
  color: #1e293b;
  margin: 0 0 1rem 0;
  font-weight: 600;
}

.pricing-tier p {
  color: #475569;
  line-height: 1.5;
  margin: 0;
  font-size: 1.1rem;
}

/* Responsive styles */
@media (max-width: 1200px) {
  .features-container {
    flex-direction: column;
  }

  .hero-content {
    text-align: center;
    padding: 0;
    margin: 0 auto 3rem;
  }

  .main-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .features {
    padding: 2rem 1rem;
    margin: 4rem 1rem;
    border-radius: 3rem;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .pricing-tiers {
    grid-template-columns: 1fr;
  }

  .modalmain-content {
    padding: 2rem;
    margin: 2vh auto;
  }
}