/*
 * style.css
 * Contains styles from original global.css and index.html's <style id="sections-styles">.
 */

/* ===============================
   GLOBAL CSS (From global.css)
   =============================== */
:root {
    --color-background: #040514;
    --color-background-secondary: #0e0f1f;
    --color-text-primary: #ffffff;
    --color-text-secondary: #9597ad;
    --color-border: #1e1e30;
    --color-accent-blue: #118ec7;
    --color-accent-orange: #e67203;
    --color-accent-green: #19d27e;
    --font-primary: 'Manrope', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
  }

  body {
    background-color: var(--color-background);
    color: var(--color-text-primary);
    font-family: var(--font-primary);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  * {
    box-sizing: border-box;
  }

  .page-container {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
    overflow: hidden;
  }

  section {
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
  }

  a {
    color: inherit;
    text-decoration: none;
  }

  h1, h2, h3, h4, h5, h6, p {
    margin: 0;
  }

  .background-blur {
    position: absolute;
    z-index: -1;
    pointer-events: none;
    opacity: 0.7;
  }

  .btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    padding: 14px 16px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .btn-gradient {
    background: linear-gradient(134deg, #307cff 0%, #ff6c23 143%);
    color: var(--color-text-primary);
  }

  .btn-white {
    background-color: var(--color-text-primary);
    color: var(--color-background);
    font-size: 14px;
    font-weight: 600;
    border-radius: 84px;
    padding: 10px;
  }



/* ===============================
   SECTION-SPECIFIC CSS (From index.html <style>)
   =============================== */

/* ADDED GLOBAL FIX: Prevent horizontal scrolling due to wide elements */
body, html {
    overflow-x: hidden;
    width: 100%; /* Ensure body doesn't stretch beyond viewport */
}

/* ADDED: Smooth scrolling effect for the entire page */
html {
    scroll-behavior: smooth;
}

/* CSS for section section:Header */
.site-header-wrapper {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 100;
  /* FIX 2.1: Removed padding here, let .site-header handle centering */
  padding: 0; 
  transition: transform 0.35s ease;
}

/* ✅ Shared Gradient */
.btn-gradient,
.hero-content .btn,
.how-it-works-section .btn,
.calendar-widget button,
.cta-section .btn,
.site-footer .btn {
  background: linear-gradient(
    92.1deg,
    #307CFF 0%,
    #E16E43 87.25%,
    #FF6C23 102.14%
  ) !important;
  border: none !important;
  color: #fff !important;
}

.site-header-wrapper.hide {
  transform: translateY(-120%);
}
  .site-header {
    max-width: 1218px;
    margin: 0 auto;
    background-color: rgba(6, 6, 23, 0.82);
    backdrop-filter: blur(10px);
    border-radius: 70px;
    padding: 21px 24px; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 68px;
    box-sizing: border-box;
  }
  .site-header {
    max-width: 1218px;
    margin: 0 auto;
    background-color: rgba(6, 6, 23, 0.82);
    backdrop-filter: blur(10px);
    border-radius: 70px;
    padding: 21px 24px; 
    height: 68px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .site-header-wrapper {
    position: fixed; /* Changed back to fixed for proper sticking */
    top: 16px;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 20px; /* Keep outer padding for fixed element on desktop */
    margin-bottom: 0; /* No negative margin needed with fixed positioning */
  }
/* FIX: Header needs to center with padding inside the wrapper */
.site-header {
    max-width: 1300px; /* Use full container width */
    margin: 0 auto;
    background-color: rgba(6, 6, 23, 0.82);
    backdrop-filter: blur(10px);
    border-radius: 70px;
    padding: 15px 24px;
    height: 68px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


  .header-actions {
      display: flex;
      align-items: center;
      gap: 24px;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .logo-img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
  }
    .logo-imgs {
    width: 38px;
    height: 38px;

  }
  .logo-text {
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: -0.32px;
    line-height: 24px;
  }
  .main-nav ul {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .main-nav a {
    color: #9597ad;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    transition: color 0.3s ease;
    line-height: 16px;
    letter-spacing: 0.14px;
  }
  .main-nav a:hover {
    color: #ffffff;
  }
  .header-cta {
    padding: 10px 10px;
    width: 120px;
    text-align: center;
    height: 36px;
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
  }

/* =========================================
   FIX: HIDE MOBILE MENU ON DESKTOP
   ========================================= */
/* Default hide for all screens */
.mobile-menu {
    display: none !important;
}

/* Only show on Mobile when 'open' class is added */
@media (max-width: 768px) {
    .mobile-menu.open {
        display: flex !important;
        
    }

}
/* CSS for section section:Hero */
.hero-section {
    padding-top: 200px;
    padding-bottom: 60px;
    text-align: center;
    overflow: visible;
    position: relative;
  }
  .hero-content {
    max-width: 836px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .hero-content h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 68px;
    letter-spacing: -0.56px;
  }
  .hero-content p {
    max-width: 580px;
    font-size: 16px;
    line-height: 26px;
    color: var(--color-text-secondary);
  }
  .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  /* NEW CSS for star background image */
  .star-twinkle-background { display: none; }

  .hero-tech-card {
      width: 270px;
      height: 314px;
      flex-shrink: 0;
      border-radius: 16px;
      background: rgba(9, 11, 32, 0.55); 
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      margin-top: 32px;
      padding: 24px; 
      display: flex;
      flex-direction: column;
      gap: 20px;
  }
  .hero-tech-card h4 {
      font-size: 18px;
      font-weight: 700;
      text-align: center;
      margin: 0;
      padding-bottom: 16px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .hero-tech-icons {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 16px;
  }
  .hero-tech-icon-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 65px;
      text-align: center;
  }
  .hero-tech-icon-item img {
      width: 40px;
      height: 40px;
      margin-bottom: 4px;
  }
  .hero-tech-icon-item span {
      font-size: 12px;
  }
  .hero-tech-sub-card {
      background: #17193B; 
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      padding: 16px;
      display: flex;
      flex-direction: column;
      gap: 12px;
  }
  .hero-tech-sub-card h5 {
      font-size: 16px;
      font-weight: 700;
      text-align: center;
      margin-bottom: 8px;
  }


/* CSS for section section:TechPillars */
.tech-pillars-section {
    padding-top: 40px;
    padding-bottom: 80px;
  
  }
  /* ===============================
   ✅ BENEFITS BAR (merged + updated)
   =============================== */

.benefits-bar-wrapper {
  max-width: 1440px;         /* from Vector size */
  margin: 0 auto;
  padding: 0;
  margin-top: 100px;

}

/* Horizontal line TOP (Vector 14) */
.benefits-divider-top {
  width: 100%;
  height: 1px;
  background: #171725;       /* matches divider color */
  margin-bottom: 24px;       /* from figma gap */
}

/* Benefits container */
.benefits-bar {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 72px;
  flex-wrap: nowrap;
  max-width: 1105px;
  margin: 0 auto;
  padding: 0;
}

/* Single benefit group */
.benefit-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  max-width: 304px;
  position: relative;
}

/* Vertical separator */
.benefit-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -36px;
  top: 2px;
  width: 1px;
  height: 40px;
  background: #171725;
  opacity: 1;
}

/* ICON */
.benefit-item img,
.benefit-item svg {
  width: 24px;
  height: 24px;
  stroke: #E67203;     
}

/* TEXT */
.benefit-item h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px;
  color: #FFFFFF;
  line-height: 16px;
}

.benefit-item p {
  font-size: 14px;
  font-weight: 400;
  color: #9598AE;
  line-height: 20px;
  letter-spacing: 0.14px;
  margin: 0;
}

/* Horizontal line BOTTOM (Vector 15) */
.benefits-divider-bottom {
  width: 100%;
  height: 1px;
  background: #171725;
  margin-top: 24px;
}


  .tech-grid-container { display: none; }
  .diagram-container {
      position: relative;
      width: 1280px;
      height: 353px;
      margin: 0 auto;
      margin-top: 32px;
      max-width: 100%;
  }

  .tech-card {
      position: absolute;
      width: 270px;
      height: 160px;
      background: rgba(9, 11, 32, 0.55); 
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 16px;
  }

  .card-title {
      position: absolute;
      height: 24px;
      top: 24px;
      font-family: var(--font-primary);
      font-weight: 700;
      font-size: 18px;
      line-height: 24px;
      text-align: center;
      color: var(--color-text-primary);
      left: 0;
      right: 0;
      margin-left: auto;
      margin-right: auto;
  }

  .icon-box {
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 8px 10px;
      width: 40px;
      height: 40px;
      background: #17193B;
      border: 1px solid #282B4D;
      border-radius: 8px;
  }

  .icon-img {
      width: 24px;
      height: 24px;
      object-fit: contain;
  }

  .tech-icon-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      text-align: center;
  }

  .tech-icon-item span {
      font-family: var(--font-primary);
      font-weight: 500;
      font-size: 12px;
      line-height: 16px;
      letter-spacing: 0.14px;
      color: var(--color-text-primary);
  }

  .tech-sub-card {
     padding: 20px 16px;
      position: absolute;
      background: #17193B; 
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
  }

  .tech-tags {
      position: absolute;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
      background: #17193B;
      backdrop-filter: blur(5px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 7px;
      font-family: var(--font-primary);
      font-weight: 500;
      font-size: 14px;
      line-height: 16px;
      letter-spacing: 0.14px;
      color: var(--color-text-primary);
      text-align: center;
      padding: 0 8px;
  }

.arrow-line {
    position: absolute;
    height: 0px; /* Keep height 0 if you want border only */
    width: 100px; /* Example width */
    border-top: 2px solid transparent; /* Transparent border to hold the image */
    border-image: linear-gradient(to right, #000000, var(--color-accent-blue)) 1; /* Apply gradient to border-image */
}

.arrow-line.vertical {
    width: 0px; /* Keep width 0 for vertical border only */
    height: 100px; /* Example height */
    border-top: none; /* Remove top border */
    border-left: 2px solid transparent; /* Transparent left border */
    border-image: linear-gradient(to bottom, #000000, var(--color-accent-blue)) 1; /* Apply gradient to border-image */
}
  /* MOBILE ARROW CONNECTOR - Hidden by default for desktop */
  .mobile-arrow-connector {
    display: none; 
  }
  
/* Ray Animation Styles from Infrafox/summa2.html */
.rays-container {
    position: absolute; 
    width: 273.17px;
    height: 268.07px;
    top: 81%; 
    left: 36%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
/* Ray 1 */
.ray1 {
    position: absolute;
    width: 270.17px;
    height: 265.07px;
     left: calc(50% - 192.9px/2 - 96.55px);
    margin-left: 19px;
    margin-top: 40px;
    bottom: 7476.7px;
    filter: blur(20px);
    /* Repositioned to center over the first (CI/CD Pipelines) tech card */
    transform: rotate(33.95deg) translate(-505px, -20px);
    background: radial-gradient(141.42% 141.42% at 0% 100%, #FDC6B0 10%, #16BFFC 20%, lch(49.99% 101.47 309.49 / 0) 60%);
    border-radius: 21px;
}

/* Ray 2 */
.ray2 {
    position: absolute;
    width: 192.9px;
    height: 189.3px;
    /* Original positioning kept, centered on diagram container */
    left: calc(50% - 192.9px/2 - 96.55px);
    margin-left: -40px;
    margin-top: -200px;
    bottom: 7476.7px;
    background: radial-gradient(141.42% 141.42% at 0% 100%, #FDC6B0 10%, #16BFFC 20%, rgba(145, 76, 255, 0) 60%);
    filter: blur(45px);
    border-radius: 16px;
    transform: rotate(45deg);
}

/* Ray 3 */
.ray3 {
    position: absolute;
    width: 140.17px;
    height: 140.07px;
    /* Original positioning kept, centered on diagram container */
    margin-left: 285px;
     margin-top: -305px;
    left: calc(50% - 273.17px/2 - 497.41px);
    bottom: 7467.93px;
    background: radial-gradient(141.42% 141.42% at 0% 100%, #FDC6B0 10%, #16BFFC 20%, rgba(145, 76, 255, 0) 60%);
    border-radius: 21px;
    filter: blur(15px);
    transform: rotate(-45deg);
}

/* Ray 4 */
.ray4 {
    position: absolute;
    width: 188.99px;
    /* Original positioning kept, centered on diagram container */
    margin-left: 565px;
    margin-top: -175px;
    height: 185.46px;
    left: calc(50% - 188.99px/2 + 491.49px);
    bottom: 7550.54px;
    background: radial-gradient(141.42% 141.42% at 0% 100%, #FDC6B0 10%, #16BFFC 20%, rgba(145, 76, 255, 0) 60%);
    border-radius: 21px;
    filter: blur(20px);
    transform: rotate(-45deg);
}

/* To make rays rotate around the actual center */
.rays-container > div[class^="ray"] {
    transform-origin: center;
    top: 50%;
    left: 50%;
}

/* CSS for section section:PainPoints */
.pain-points-section { 
    text-align: center;
    position: relative; /* ADDED: To contain the absolute positioned ray */
}

/* ADDED RAY 5 STYLE, based on scaling up ray3 style for PainPoints section background */
.ray5 {
    position: absolute;
    width: 450.49px; 
    height: 450.23px;
    top: 54%; 
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg); 
    background: radial-gradient(
      141.42% 141.42% at 0% 100%,
      #B0F9FD 12.5%,
      #31A0F6 20%,
      rgba(76, 94, 255, 0.226) 62.5%
    );
    border-radius: 0px; 
    filter: blur(50px);
    opacity: 0.5;
    z-index: -1;
    pointer-events: none;
}


.section-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 48px;
    margin-bottom: 56px;
  }

  .section-subtitle {
    font-size: 16px;
    line-height: 24px;
    color: var(--color-text-secondary);
    margin-top: -40px;
    margin-bottom: 40px;
  }

  .pain-points-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  .pain-point-card {
    border: 1px solid #36374a;
    background-color: rgba(6, 8, 30, 0.55);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
  

  }
  .problem-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .problem-card img {
    width: 32px;
    height: 32px;
  }
  .problem-card h3 {
    font-size: 18px;
    font-weight: 700;
  }
  .problem-card p {
    font-size: 14px;
    line-height: 20px;
    color: var(--color-text-secondary);
  }
  .solution-card {
    background-color: #141520;
    border-radius: 12px;
    padding: 16px;
  }
  .solution-card h4 {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #26b0ef;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
  }
  .solution-card h4 img {
    width: 16px;
    height: 16px;
  }
  .solution-card p {
    font-size: 16px;
    line-height: 20px;
  }
 

/* CSS for section section:Foundations */

 

  .foundations-header {
    text-align: center;
    max-width: 540px;
    margin: 0 auto 56px;
  }
  .foundations-header h2 {
    font-size: 40px;
    line-height: 48px;
    font-weight: 800;
    margin-bottom: 16px;
  }
  .foundations-header p {
    font-size: 16px;
    line-height: 24px;
    color: var(--color-text-secondary);
  }
  .foundations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px 100px;
  }
  .foundations-grid {
  position: relative; /* needed for absolute child positioning */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 100px; /* already in your code — keep this */
}

/* vertical center divider */
.foundation-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background-color: #171725;
  transform: translateX(-50%);
  opacity: 0.8;
  z-index: 1;
  pointer-events: none;
}



  .foundation-item {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .foundation-text h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
  }
  .foundation-text > p {
    color: var(--color-text-secondary);
    margin-bottom: 24px;
  }
  .foundation-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .foundation-text li {
    font-size: 16px;
    line-height: 20px;
  }
  .foundation-visual {
    background-color: #141520;
    border: 1px solid #27293c;
    border-radius: 8px;
    padding: 24px;
  }

  .foundation-visual.visual-services,
  .foundation-visual.visual-chart,
  .foundation-visual.visual-aiops,
  .foundation-visual.visual-networking {
      height: 310px;
      display: flex;
      flex-direction: column;
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0;
  }

  .foundation-visual.visual-performance {
      height: 380px;
      display: flex;
      flex-direction: column;
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0;
  }

  .foundation-visual.visual-cost {
      height: 330px;
      display: flex;
      flex-direction: column;
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0;
  }

    .foundation-visual.visual-github {
      height: 330px;
      display: flex;
      flex-direction: column;
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0;
  }

  .foundation-visual.visual-terraform {
      height: 380px;
      display: flex;
      flex-direction: column;
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0;
  }
  
  
  
  
  
  
  
  
  /* FIX: Prevent overflow for GitHub visual on mobile */
  .foundation-visual.visual-github { overflow: hidden; }
/* Terraform Statistics Layout - Grid Alignment */
.visual-terraform .stat-item ul {
    display: grid;
    grid-template-columns: 1fr auto; 
    row-gap: 12px; 
}


.visual-terraform .stat-item ul li:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}


.visual-terraform .stat-item ul li:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
}



.visual-terraform .stat-item ul li:nth-child(3) {
    grid-column: 2;
    grid-row: 1;
    text-align: right;
    

    margin-top: -65px;  
}
  .visual-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap; /* FIX: allow wrapping on small screens */
  }
  .visual-header img {
    width: 32px;
    height: 32px;
    margin-top: -40px;
  }
    .visual-headers img {
    width: 32px;
    height: 32px;
    margin-top: 2px;

  }
  .visual-header h4 {
    font-size: 16px;
    font-weight: 700;
  }
  .visual-header p {
    font-size: 14px;
    color: var(--color-text-secondary);
  }
  .visual-header button {
    margin-left: auto;
    background-color: #109057;
    border: 1px solid #40c68a;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
  }
  .visual-header .details-link {
    margin-left: auto;
    color: #26b0ef;
    font-size: 14px;
    white-space: nowrap;
  }
  
  .visual-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 1px;
    width: 100%; /* FIX: ensure body fits container */
    box-sizing: border-box;
  }
  .check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap; /* FIX: prevent horizontal overflow */
  }
  .check-item img {
    width: 32px;
    height: 32px;
  }
  .check-item h5 {
    font-size: 14px;
    font-weight: 600;
  }
  .check-item p {
    font-size: 13px;
    color: var(--color-text-secondary);
  }
  .check-item a {
    margin-left: auto;
    color: #26b0ef;
    font-size: 13px;
  }
  .visual-terraform .stat-item h5 {
    color: var(--color-text-secondary);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 16px;
  }
  .visual-terraform .stat-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .visual-terraform .stat-item ul li {
    font-size: 14px;
  }
  .visual-services h4, .visual-chart h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
  }

  .visual-chart .chart-container {
  display: flex;
  justify-content: center;
  align-items: flex-end; /* push image towards bottom */
  height: 100%;
  padding-top: 20px;    /* add top gap */
  padding-bottom: -10px; /* optional for balance */
  box-sizing: border-box;
}

.visual-chart .chart-container img {
  max-width: 100%;
  height: auto;
}
  .visual-services .filters {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap; /* FIX: wrap filters */
  }
  .visual-services .filters input, .visual-services .filters select {
    background-color: #1f2130;
    border: none;
    border-radius: 4px;
    padding: 8px 12px;
    color: #838498;
    font-family: var(--font-primary);
  }
  .visual-services input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 16px;
    height: 16px;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    border-radius: 3px;
    background: transparent;
    cursor: pointer;
    position: relative;
    outline: none;
    transition: all 0.2s ease;
    vertical-align: middle;
}

/* When checkbox is checked */
.visual-services input[type="checkbox"]:checked {
    background: transparent;
    border-color: #26b0ef; /* light blue accent */
}

.visual-services input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 5px;
    width: 4px;
    height: 8px;
    border: solid #26b0ef;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
/* Wrapper for positioning */
.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 240px;
}

/* Style for the PNG Icon */
.search-input-wrapper .search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%); 
  width: 18px; 
  height: 18px;
  pointer-events: none;
  opacity: 0.6; 
}


/* Style for the input field */
.search-input-wrapper input {
  width: 100%;
  background-color: #1f2130;
  border: 1px solid transparent;
  border-radius: 6px;
  
  /* Inga 'padding-left' value-a 60px ah maathiruken */
  padding: 10px 12px 10px 40px !important; 
  
  color: #ffffff;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.search-input-wrapper input::placeholder {
  color: #6a6d85;
}

.search-input-wrapper input:focus {
  border-color: #307cff;
}
/* Align “Service name” text with “UserAPI” below */
.visual-services .table-header span:first-child,
.visual-services .table-row span:first-child {
    display: flex;
    align-items: center;
    gap: 8px;            /* space between checkbox and text */
    padding-left: 4px;   /* adjust if slightly misaligned */
}

/* Align entire row content vertically */
.visual-services .table-header span,
.visual-services .table-row span,
.visual-services .table-row .progress-bar {
    display: flex;
    align-items: center;
}

/* Fix width alignment for columns */
.visual-services .table-header,
.visual-services .table-row {
    display: grid;
    grid-template-columns: 2.2fr 0.8fr 2fr; /* same as existing */
    align-items: center;
}
  .service-table {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .table-header, .table-row {
    display: grid;
    grid-template-columns: 2.2fr 0.8fr 2fr;
    align-items: center;
    font-size: 13px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(106, 109, 133, 0.1);
  }
  .table-header {
    color: #6a6d85;
    font-weight: 400;
    padding-top: 0;
  }
  .table-row span:first-child {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .status-active { color: #19d27e; }
  .status-error { color: #f3393d; }
  .progress-bar {
    background-color: #3b3c51;
    border-radius: 2px;
    height: 8px;
    width: 100%;
  }
  .progress-bar div {
    background-color: #118ec7;
    height: 100%;
    border-radius: 2px;
  }
  .progress-bar.progress-error div {
    background-color: #19d27e;
  }

/* New CSS for AIOps visual */
.visual-aiops {
    height: 310px;
    display: flex;
    flex-direction: column;
    padding: 24px;
    gap: 32px;
}
.visual-aiops .visual-header { margin-bottom: 0; }
.aiops-chart-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    position: relative;
    padding: 0 40px; 
}
.aiops-chart-container::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 64px;
    border-left: 1.5px solid #3B3C51;
    opacity: 0.5;
}
.aiops-chart-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px; 
    width: 140px;
    text-align: center;
}
.aiops-chart-item p {
    font-size: 13px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.14px;
    color: var(--color-text-primary);
    margin: 0;
}
.aiops-chart-item .data-plot {
    position: relative;
    width: 139px;
    height: 139px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.aiops-chart-item .data-plot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.aiops-chart-item .chart-text {
    position: relative;
    z-index: 2;
    font-family: 'Manrope';
    font-weight: 800;
    font-size: 24px;
    line-height: 32px;
    color: #FFFFFF;
}

/* Performance & Reliability Visual */
.visual-performance {
    height: 380px;
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.visual-performance .visual-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.visual-performance .performance-icon {
    font-size: 32px;
    line-height: 1;
}

.visual-performance .visual-header h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    margin: 0;
}

.visual-performance .visual-header p {
    font-size: 14px;
    line-height: 20px;
    color: var(--color-text-secondary);
    margin: 0;
}

.visual-performance .performance-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.visual-performance .performance-metric {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.visual-performance .metric-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.visual-performance .metric-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-secondary);
}

.visual-performance .metric-improvement {
    font-size: 16px;
    font-weight: 700;
    color: #19D27E;
}

.visual-performance .metric-value-success {
    font-size: 18px;
    font-weight: 700;
    color: #26B0EF;
}

.visual-performance .metric-comparison {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.visual-performance .metric-bar {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.visual-performance .before-bar,
.visual-performance .after-bar {
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 4px;
    display: inline-block;
}

.visual-performance .before-bar {
    background: rgba(255, 108, 35, 0.15);
    color: #FF6C23;
    border-left: 3px solid #FF6C23;
}

.visual-performance .after-bar {
    background: rgba(25, 210, 126, 0.15);
    color: #19D27E;
    border-left: 3px solid #19D27E;
}

.visual-performance .metric-detail {
    font-size: 12px;
    line-height: 16px;
    color: var(--color-text-secondary);
    margin: 0;
    padding-left: 12px;
}

/* New CSS for Advanced Networking visual */
.visual-networking {
    height: 301px;
    display: flex;
    flex-direction: column;
    padding: 24px;
}
.visual-networking .networking-header {
    margin-bottom: 24px;
}
.visual-networking .networking-header h4 {
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    margin-bottom: 4px;
}
.visual-networking .networking-header p {
    font-size: 14px;
    line-height: 20px;
    color: var(--color-text-secondary);
}
.visual-networking .networking-stats {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap; /* FIX: allow wrapping */
}
.visual-networking .stat-item-networking {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 120px;
  }
.visual-networking .stat-item-networking .stat-label {
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    color: var(--color-text-secondary);
}
.visual-networking .stat-item-networking .blue-dot::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 2px;
    margin-right: 8px;
}
.visual-networking .stat-item-networking.allowed .blue-dot::before {
    background: #26B0EF;
}
.visual-networking .stat-item-networking.blocked .blue-dot::before {
    background: #FF6C23;
}
.visual-networking .stat-item-networking .stat-value {
    font-size: 18px;
    font-weight: 700;
    line-height: 23px;
    color: #FFFFFF;
    gap: 30px;
    padding-inline: 15px;
}
.visual-networking .networking-chart {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.visual-networking .chart-row {
    display: flex;
    align-items: center;
    gap: 16px;
}
.visual-networking .chart-row .date {
    font-size: 13px;
    line-height: 16px;
    color: var(--color-text-secondary);
    opacity: 0.6;
    flex-shrink: 0;
    width: 40px;
    text-align: right;
}
.visual-networking .chart-row .bar-container {
    display: flex;
    height: 12px;
    width: 100%;
    background: #3B3C51;
    border-radius: 2px;
    overflow: hidden;
}
.visual-networking .chart-row .bar {
    height: 100%;
    flex-shrink: 0;
}
.visual-networking .chart-row .blue-bar {
    background: #26B0EF;
}
.visual-networking .chart-row .green-bar {
    background: #19D27E;
}
.visual-networking .chart-row .blocked-bar {
    background: #FF6C23;
}

/* AWS Cost Optimization Visual */
.visual-cost {
    height: 330px;
    display: flex;
    flex-direction: column;
    padding: 24px;
    justify-content: space-between;
}

.visual-cost .visual-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.visual-cost .cost-icon {
    font-size: 32px;
    line-height: 1;
}

.visual-cost .visual-header h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    margin: 0;
}

.visual-cost .visual-header p {
    font-size: 14px;
    line-height: 20px;
    color: var(--color-text-secondary);
    margin: 0;
}

.visual-cost .cost-summary {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #2b2e40;
}

.visual-cost .cost-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.visual-cost .cost-label {
    font-size: 14px;
    line-height: 20px;
    color: var(--color-text-secondary);
}

.visual-cost .cost-value {
    font-size: 18px;
    font-weight: 700;
    line-height: 23px;
    color: #FFFFFF;
}

.visual-cost .cost-row.highlight .cost-value {
    color: #FF6C23;
}

.visual-cost .cost-row.savings .cost-value {
    color: #19D27E;
}

.visual-cost .cost-row.optimized .cost-value {
    color: #26B0EF;
}

.visual-cost .optimization-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.visual-cost .optimization-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(43, 46, 64, 0.3);
    border-radius: 6px;
}

.visual-cost .optimization-item .item-icon {
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
}

.visual-cost .optimization-item .item-details {
    flex: 1;
}

.visual-cost .optimization-item h5 {
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    color: #FFFFFF;
    margin: 0 0 4px 0;
}

.visual-cost .optimization-item p {
    font-size: 12px;
    line-height: 16px;
    color: var(--color-text-secondary);
    margin: 0;
}

.service-details {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 24px;
}

.service-details .detail-item {
    font-size: 14px;
    line-height: 20px;
    color: var(--color-text-secondary);
}

.service-details .detail-item strong {
    color: #FFFFFF;
    font-weight: 600;
}

/* alert_fatigue.png */
.problem-card img[src*="alert_fatigue"] {
 width: 40px;
height: 40px;
aspect-ratio: 1/1;
}

/* brittle_networking.png */
.problem-card img[src*="brittle_networking"] {
  width: 61.916px;
height: 55.036px;
}

/* error.png */
.problem-card img[src*="error"] {
  width: 58.335px;
height: 48px;
}

/* loglate_security.png */
.problem-card img[src*="loglate_security"] {
 width: 48.734px;
height: 52px;
flex-shrink: 0;
}

/* ML_models_fail.png */
.problem-card img[src*="ML_models_fail"] {
  width: 55.426px;
height: 48px;
}

/* surging_cloud.png */
.problem-card img[src*="surging_cloud"] {
width: 72.224px;
height: 35.018px;
}



/* CSS for section section:HowItWorks */
.how-it-works-section {
    background-color: var(--color-background-secondary);
  }
  .how-it-works-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 56px;
    margin-top: 80px;
  }
  .how-it-works-header h2 {
    font-size: 40px;
    font-weight: 800;
    line-height: 48px;
    flex: 1;
    margin-top: -70px;
  }
  .how-it-works-header p {
    font-size: 16px;
    line-height: 24px;
    color: var(--color-text-secondary);
    flex: 1;
    max-width: 499px;
  }
  .how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 56px;
  }
  .step-card {
    border: 1px solid #36374a;
    border-radius: 16px;
    padding: 56px 24px 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .step-number {
    position: absolute;
    top: 13px;
    left: 24px;
    width: 32px;
    height: 32px;
    background-image: url('images/292_706.svg');
    background-size: contain;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-background);
    font-size: 20px;
    font-weight: 700;
  }
  .step-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: -8px;
  }
  .step-card > p {
    font-size: 14px;
    line-height: 22px;
    color: var(--color-text-secondary);
  }
  .step-features {
    margin-top: 16px;
  }
  .step-features h5 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
  }
  .step-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .step-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 20px;
  }
  .step-features li img {
    width: 16px;
    height: 16px;
  }
  .how-it-works-cta {
    text-align: center;
  }
  

/* CSS for section section:Tools */
.tools-section { 
    text-align: center; 
    position: relative; /* ADDED: To contain absolute background elements */
}

/* ADDED BACKGROUND ELEMENTS FOR TOOLS SECTION */
.tools-star-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/ef98270c3b87046335966a6f54d439820a7e28f7.png');
    background-size: cover;
    mix-blend-mode: color-dodge; 
    opacity: 0.15; 
    z-index: -2; 
    pointer-events: none;
}

.ray6 {
    position: absolute;
    width: 620.49px;  
    height: 564.23px;
    top: 55%; 
    left: 83%;
    transform: translate(-50%, -50%) rotate(180deg); 
    background: radial-gradient(
      141.42% 141.42% at 0% 100%,
      #B0F9FD 12.5%,
      #31A0F6 20%,
      rgba(76, 94, 255, 0.226) 62.5%
    );
    border-radius: 21px; 
    filter: blur(50px);
    opacity: 1;
    z-index: -1;
    pointer-events: none;
}

.tools-header {
    max-width: 550px;
    margin: 0 auto 56px;
  }
  .tools-header h2 {
    font-size: 40px;
    font-weight: 800;
    line-height: 48px;
    margin-bottom: 16px;
  }
  .tools-header p {
    font-size: 16px;
    line-height: 24px;
    color: var(--color-text-secondary);
  }
  .tools-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }
  .tool-category-card {
    border: 1px solid #36374a;
    background-color: rgba(7, 9, 33, 0.55);
    border-radius: 16px;
    padding: 24px;
    flex-basis: calc(50% - 12px);
    max-width: 1300px;
  }
  .tool-category-card:nth-child(3),
  .tool-category-card:nth-child(4),
  .tool-category-card:nth-child(5) {
    flex-basis: calc(33.333% - 16px);
  }
  .tool-category-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: left;
  }
  .tool-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 16px;
  }
  .tool-tags span {
    background-color: #1f2130;
    border: 1px solid #2b2e40;
    border-radius: 7px;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
  }
  .tool-tags img {
    width: 20px;
    height: 20px;
  }


  /* ✅ Make only top section text left aligned */
.pricing-card .pricing-header h3,
.pricing-card .price,
.pricing-card .pricing-header p {
  text-align: left !important;
}


/* CSS for section section:Pricing */
.pricing-section { text-align: center; }
.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }
.pricing-card {
  position: relative;
  width: 600px;
  height: 900px;
  background: rgba(20, 21, 32, 0.2);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 1px solid #f5f5f573;;
 
  border-radius: 22px;
  padding: 32px;
  backdrop-filter: blur(10px);
}

.pricing-card.buildimprove {
  height: 700px;
  min-height: 700px;
}
  .pricing-header { margin-bottom: 24px; }
  .pricing-header h3 {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-text-secondary);
    margin-bottom: 8px;
  }
.pricing-card.enterprise .pricing-header h3 {
    font-feature-settings: 'liga' off;
    font-family: Manrope;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 133.333% */
    letter-spacing: 0.14px;

    background: linear-gradient(83deg, #FFB4A7 7.52%, #9891F4 17.72%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
  .price-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
  }

  .price-original {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text-secondary);
    text-decoration: line-through;
    opacity: 0.6;
  }

  .price {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 0;
  }

  .price-badge {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, #19D27E 0%, #26B0EF 100%);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
  }

  .price-badge-link {
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .price-badge-link:hover {
    transform: scale(1.05);
    opacity: 0.9;
    box-shadow: 0 4px 12px rgba(25, 210, 126, 0.3);
  }

  .pricing-header p {
    font-size: 14px;
    line-height: 22px;
    color: var(--color-text-secondary);
  }
  .divider {
  /* Layout to center the icon and align lines */
  display: flex;
  align-items: center;
  justify-content: center;
  
  /* Your existing styles */
  text-align: center;
  color: var(--color-text-secondary, #a0a0a0); /* Fallback color added */
  opacity: 0.8;
  margin: 24px 0;
  font-size: 18px;
}

/* Creating the Lines */
.divider::before,
.divider::after {
  content: '';
  height: 1px; /* Thickness of the line */
  flex-grow: 1; /* Makes the line stretch to fill space */
  border-radius: 1px;
}

/* The Left Line (Fades from transparent to color) */
.divider::before {
  margin-right: 15px; /* Space between line and star */
  background: linear-gradient(to right, transparent, var(--color-text-secondary, #a0a0a0));
}

/* The Right Line (Fades from color to transparent) */
.divider::after {
  margin-left: 15px; /* Space between star and line */
  background: linear-gradient(to right, var(--color-text-secondary, #a0a0a0), transparent);
}
 .dividers {
  /* Layout to center the icon and align lines */
  display: flex;
  align-items: center;
  justify-content: center;
  
  /* Your existing styles */
  text-align: center;
  color: var(--color-text-secondary, #a0a0a0); /* Fallback color added */
  opacity: 0.8;
  margin: 24px 0;
  font-size: 18px;
  margin-top: -10px;
}

/* Creating the Lines */
.dividers::before,
.dividers::after {
  content: '';
  height: 1px; /* Thickness of the line */
  flex-grow: 1; /* Makes the line stretch to fill space */
  border-radius: 1px;
}

/* The Left Line (Fades from transparent to color) */
.dividers::before {
  margin-right: 15px; /* Space between line and star */
  background: linear-gradient(to right, transparent, var(--color-text-secondary, #a0a0a0));
}

/* The Right Line (Fades from color to transparent) */
.dividers::after {
  margin-left: 15px; /* Space between star and line */
  background: linear-gradient(to right, var(--color-text-secondary, #a0a0a0), transparent);
}
  .pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .pricing-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
  }
    .pricing-features h5 {
        text-align: left;
        margin-bottom: 15px;
  }
  .pricing-features li img {
    width: 16px;
    height: 16px;
  }


/* CSS for section section:FAQ */
.faq-section {
    padding-bottom: 120px;
  }
  .faq-header {
    text-align: center;
    max-width: 550px;
    margin: 0 auto 56px;
  }
  .faq-header h2 {
    font-size: 40px;
    font-weight: 800;
    line-height: 48px;
    margin-bottom: 16px;
  }
  .faq-header p {
    font-size: 16px;
    line-height: 24px;
    color: var(--color-text-secondary);
  }
  .faq-list {
    max-width: 970px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .faq-item {
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 20px 24px;
    height: auto;
    max-height: 56px;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .faq-item[open] {
      max-height: 1000px;
      padding-bottom: 20px;
  }
  .faq-list .faq-item:first-child[open] .faq-answer {
      margin-top: 11.51px;
      line-height: 22px;
      font-size: 14px;
  }

  .faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    list-style: none;
    font-size: 16px;
    font-weight: 500;
    line-height: 16px; 
    height: 16px;
  }
  .faq-item summary::-webkit-details-marker {
    display: none;
  }
  .toggle-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    background-color: var(--color-accent-blue);
    border-radius: 50%; 
    position: relative; 
    display: inline-block; 
    opacity: 1; 
  }
  .toggle-icon::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 8px;
      height: 8px;
      border: solid white;
      border-width: 0 1.5px 1.5px 0;
      transform: translate(-50%, -75%) rotate(-135deg); 
      transition: transform 0.3s ease;
      opacity: 1; 
  }

  .faq-item[open] > summary .toggle-icon {
    transform: rotate(180deg);
  }

  .faq-answer {
    margin-top: 16px;
    color: var(--color-text-secondary);
    font-size: 14px;
    line-height: 22px;
  }

/* CSS for section section:Testimonial */
.testimonial-section { padding-top: 0; }
.testimonial-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 970px;
    margin: 0 auto;
  }
  /* ✅ Force left alignment */
.testimonial-text {
  text-align: left !important;
  padding-left: 0;
  padding-right: 0;
}

.testimonial-text blockquote {
  margin-left: 0;
  padding-left: 0;
  text-align: left;
  font-size: 24px;
   font-weight: 600;   /* ✅ Make bold */
  
  
}

.author-info {
  display: flex;
  flex-direction: row;       /* ✅ make side-by-side */
  align-items: center;       /* ✅ vertical alignment */
  gap: 12px;                 /* spacing between image & text */
}


/* ✅ Title color */
.testimonial-tag {
  color: #e67203 !important;
}


  .author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
  }
  .author-name {
    font-size: 14px;
    font-weight: 500;
  }
  .author-title {
    font-size: 13px;
    color: var(--color-text-secondary);
  }
  .author-title a {
    color: #26B0EF;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .author-title a:hover {
    color: #19D27E;
    text-decoration: underline;
  }
  .testimonial-image {
    width: 394px;
    height: 288px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #26aef1 0%, #117ceb 142.65%);
    padding: 12px;
    flex-shrink: 0;
  }
  .testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 10px;
  }


/* CSS for section section:CTA */
.cta-section {
    background-color: #141520;
    border-radius: 16px;
    margin: 80px auto;     /* center align */
    max-width: 1300px;
  }
  .cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    max-width: 1170px;
    margin: 0 auto;
  }
  .cta-text { max-width: 599px; }
  .cta-text h2 {
    font-size: 36px;
    font-weight: 800;
    line-height: 44px;
    margin-bottom: 16px;
  }
  .cta-text p {
    font-size: 16px;
    line-height: 24px;
    color: var(--color-text-secondary);
  }
  .cta-calendar-wrapper { position: relative; }
  .calendar-widget {
    background-color: #1f2130;
    border: 1.2px solid #2b2e40;
    border-radius: 10px;
    padding: 29px;
    width: 371px;
  }
  .calendar-header {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 26px;
  }
  .calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14.5px;
    color: var(--color-text-secondary);
    text-align: center;
  }
  .calendar-dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    font-size: 17px;
    font-weight: 800;
  }
  .date {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
  }
  .date.active {
    background-color: var(--color-accent-blue);
    border-radius: 50%;
  }
  .calendar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(20, 21, 32, 0) 0%, rgba(20, 21, 32, 0.4) 18.64%, rgba(20, 21, 32, 0.8) 39.97%, #141520 69.44%);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  

/* CSS for section section:Footer */
.site-footer {
    background-color: var(--color-background);
    padding: 80px 0;
    position: relative;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    max-width: 1170px;
    margin: 0 auto;
  }
  .footer-col h4 {
    color: #556386;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .footer-col ul a, .footer-col ul li {
    color: #edf4fe;
    font-size: 14px;
    line-height: 30px;
  }
  .footer-brand .logo { margin-bottom: 16px; }
  .footer-brand p {
    font-size: 16px;
    line-height: 35px;
    color: #f1f9fe;
    max-width: 363px;
  }
  .footer-cta {
    margin-top: 24px;
    width: 145px;
  }


  .logo-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-subtext {
  font-size: 11px;
  font-weight: 400;
  color: #9597ad;
  letter-spacing: 0.2px;
  margin-top: 2px;
  font-style: italic;   /* ✅ Added */
}

  
/* ADDED: To ensure all content is centered with a consistent max-width and margin on desktop */
.page-container {
  max-width: 1300px; 
  margin: 0 auto;       /* Center horizontally */
  padding: 0 20px;   
}

.site-header {
  max-width: 1300px; 
  margin: 0 auto;       /* Center header */
}

.hero-content {
  max-width: 836px;
  margin: 0 auto;       /* Center hero content */
}

.footer-grid {
  max-width: 1300px; 
  margin: 0 auto;       /* Center footer */
}
.tech-pillars-section{
    max-width: 1300px; 
  margin: 0 auto;    
}


.hero-stars-image { /* New class for direct image element */
  position: absolute;
  width: 1800px; /* Increased size for coverage */
  height: 560.49px; /* Increased size for coverage */
  top: -200px; /* Adjusted position higher up for header coverage */
  left: 50%;
  right: auto; /* Allow right/bottom access */
  bottom: auto;
  transform: translateX(-50%); /* Center horizontally */
  object-fit: cover; /* Use cover to ensure space is filled */
  opacity: 1; /* Retained high opacity for visibility */
  z-index: -2;
  pointer-events: none;
}

.tools-stars-image {
  position: absolute;
  width: 1800px;       /* Increased size for coverage */
  height: 762.49px; 
  top: 40px;         /* Move up to cover top area */
  left: 50%;
  right: auto;
  bottom: auto;
  transform: translateX(-50%);
  object-fit: cover;
  opacity: 1;
  z-index: -2;         /* Behind cards */
  pointer-events: none;
}
.calendly-container {
  width: 100%;
  text-align: center;   /* ✅ center the button */
}

.calendly-container iframe {
  width: 100%;
  height: 450px;  
  border: none;
  border-radius: 10px;
}

.calendly-btn-bottom {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 18px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  background: linear-gradient(
    92.1deg,
    #307CFF 0%,
    #E16E43 87.25%,
    #FF6C23 102.14%
  );
  color: #fff;
  transition: 0.25s ease;
}

.calendly-btn-bottom:hover {
  transform: scale(1.02);
  opacity: 0.95;
}

.site-footer {
  position: relative;
  z-index: 1;
}

.footer-stars-image {
  position: absolute;
  width: 500px;
  height: 300px;
  object-fit: cover;
  opacity: 1;
  z-index: -1;
  pointer-events: none;

  top: 50px;
  bottom: 50px;
  left: 50px;
  right: 50px;
  transform: none;
}

/* LEFT IMAGE override */
.footer-left {
  left: 0px !important;
  right: auto !important;
  top: auto !important;
  bottom: 0px !important;
}

/* RIGHT IMAGE override */
.footer-right {
  right: 0px !important;
  left: auto !important;
  top: auto !important;
  bottom: 0px !important;
}

/* ===============================
   MOBILE STYLES - max-width: 768px
   =============================== */
@media (max-width: 768px) {

    /* --- Global Resets --- */
    .page-container {
        padding-left: 20px;
        padding-right: 20px;
    }
    section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .section-title {
        font-size: 20px;
        line-height: 40px;
        margin-bottom: 40px;
        text-align: center;
    }

    /* --- Header --- */
    .site-header-wrapper {
        top: 10px;
        padding: 0 16px;
        /* ✅ FIX: Ensure header never hides on mobile view */
        transform: none !important; 
    }
    .site-header-wrapper.hide {
        /* OVERRIDE FOR MOBILE */
        transform: none !important;
    }
    .site-header {
        height: 60px;
        padding: 10px 16px;
        /* Default: Show background when logo is visible */
        background-color: rgba(6, 6, 23, 0.95) !important;
        backdrop-filter: blur(10px) !important;
        border-radius: 16px !important;
        transition: all 0.3s ease;
    }

    /* Remove background when logo is hidden (scrolling down) */
    .site-header-wrapper.mobile-hide-logo-active .site-header {
        background-color: transparent !important;
        backdrop-filter: none !important;
        border-radius: 0 !important;
    }
    .logo-text-group {
        display: none; /* Hide subtext for mobile */
    }
    .main-nav {
        display: none; /* Hide main navigation */
    }
    .header-actions {
        gap: 16px;
    }
    .header-cta {
        width: 100px;
        font-size: 13px;
        padding: 8px 10px;
        height: 32px;
    }

    /* --- Hero Section --- */
    .hero-section {
        padding-top: 120px;
        padding-bottom: 40px;
    }
    .hero-content h1 {
        font-size: 36px;
        line-height: 44px;
        letter-spacing: -0.36px;
    }
    .hero-content p {
        font-size: 15px;
        line-height: 24px;
        padding: 0 20px;
        max-width: 100%;
    }
    .hero-content a.btn-gradient {
        width: 100%;
        max-width: 320px;
        padding: 14px 16px;
    }

    /* --- Tech Pillars & Benefits --- */
    .tech-pillars-section {
        padding-top: 40px;
    }
    /* Hide the complex absolute diagram for mobile */
    .diagram-container {
        display: none; 
    }
    .benefits-bar-wrapper {
        margin-top: 40px;
    }
    .benefits-bar {
        flex-direction: column;
        gap: 40px;
        align-items: flex-start;
        padding: 0 20px;
    }
    .benefit-item {
        max-width: 100%;
    }
    /* Remove vertical separator on mobile */
    .benefit-item:not(:last-child)::after {
        content: none;
    }
    .benefits-divider-top, .benefits-divider-bottom {
        display: none; /* Hide dividers for cleaner look if stacking */
    }


    /* --- Pain Points --- */
    .pain-points-grid {
        grid-template-columns: 1fr; /* Stack cards vertically */
        gap: 20px;
    }
    .pain-point-card {
        padding: 20px;
    }


    /* --- Foundations --- */
    .foundations-header {
        max-width: 100%;
        padding: 0 20px;
    }
    .foundations-grid {
        grid-template-columns: 1fr; /* Stack items vertically */
        gap: 40px;
        padding: 0 20px;
    }
    .foundation-item {
        gap: 16px;
    }
    .foundation-text h3 {
        font-size: 20px;
        text-align: left;
    }
    .foundation-visual {
        padding: 16px;
        min-height: 250px; /* Give visuals a minimum size */
        height: auto;
    }
    
    /* AIOps Visual specific adjustments */
    .aiops-chart-container {
        flex-direction: column;
        gap: 40px;
        padding: 0;
    }
    .aiops-chart-container::after {
        content: none; /* Remove vertical divider */
    }
    .aiops-chart-item {
        width: 100%;
    }
    .aiops-chart-item .data-plot {
        width: 120px;
        height: 120px;
    }
    
    /* Networking Visual adjustments */
    .visual-networking .networking-stats {
        flex-direction: column;
        gap: 12px;
    }
    .visual-networking .stat-item-networking {
        min-width: 100%;
    }
    .visual-networking .chart-row .date {
        width: 60px;
        text-align: left;
    }
    .visual-header button {
        margin-left: 0; /* Align button below content if wrapping */
        width: 100%;
        max-width: 200px;
        margin-top: 8px;
    }
    .visual-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .visual-header h4, .visual-header p, .visual-header .details-link {
        margin-left: 0 !important; /* Override potential desktop auto-margins */
        width: 100%;
        text-align: left;
    }


    /* --- How We Work --- */
    .how-it-works-header {
        flex-direction: column; /* Stack header content */
        margin-bottom: 40px;
        align-items: flex-start;
    }
    .how-it-works-header h2 {
        font-size: 32px;
        line-height: 40px;
        width: 100%;
        flex: auto;
    }
    .how-it-works-header p {
        flex: auto;
        max-width: 100%;
        font-size: 15px;
        
    }
    .how-it-works-grid {
        grid-template-columns: 1fr; /* Stack cards vertically */
        gap: 20px;
        margin-bottom: 40px;
    }
    .step-card {
        padding: 40px 20px 20px;
        min-height: auto;
    }
    .step-card h4 {
        font-size: 18px;
    }
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 16px;
        top: 16px;
        left: 20px;
    }


    /* --- Tools --- */
    .tools-header {
        margin-bottom: 40px;
    }
    .tools-header h2 {
        font-size: 32px;
        line-height: 40px;
    }
    .tools-grid {
        flex-direction: column; /* Stack tool categories */
        gap: 16px;
    }
    .tool-category-card {
        flex-basis: 100%;
        max-width: 100%;
        width: 100%;
        padding: 20px;
    }
    .tool-category-card:nth-child(3),
    .tool-category-card:nth-child(4),
    .tool-category-card:nth-child(5) {
        flex-basis: 100%;
    }
    .tool-category-card h4 {
        margin-bottom: 16px;
    }
    .tool-tags {
        justify-content: flex-start;
    }
    .tool-tags span {
        font-size: 14px;
        padding: 6px 8px;
    }

    /* --- Pricing --- */
    .pricing-section {
        padding-top: 60px;
        margin-top: 40px;
    }
    .pricing-grid {
        flex-direction: column; /* Stack pricing cards */
        gap: 25px;
    }
    .pricing-card {
        width: 100%;
        height: auto !important;
        min-height: auto !important;
        padding: 24px;
        margin: 0 auto;
    }
    .pricing-card.buildimprove {
        height: auto !important;
        min-height: auto !important;
    }
    .pricing-card.enterprise {
        height: auto !important;
        min-height: auto !important;
    }

    /* --- FAQ --- */
    .faq-header {
        margin-bottom: 40px;
    }
    .faq-list {
        padding: 0 20px;
    }
    .faq-item {
        height: auto; /* Allow auto height based on content */
        max-height: 60px;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    .faq-item[open] {
        max-height: 1000px; /* Use a generous max-height for open state */
    }
    .faq-item summary {
        line-height: 24px;
        font-size: 15px;
        height: auto;
    }
    .faq-list .faq-item:first-child[open] .faq-answer {
        margin-top: 16px;
    }
    .faq-answer {
        margin-top: 12px;
    }


    /* --- Testimonial --- */
    .testimonial-section {
        padding-top: 40px;
    }
    .testimonial-content {
        flex-direction: column-reverse; /* Put text above image */
        gap: 30px;
        max-width: 100%;
        padding: 0 20px;
    }
    .testimonial-text {
        width: 100%;
    }
    .testimonial-text blockquote {
        font-size: 20px;
        line-height: 32px;
        text-align: center !important;
    }
    .author-info {
        justify-content: center;
        width: 100%;
        margin-top: 24px;
    }
    .testimonial-image {
        width: 100%;
        height: 200px;
    }

    /* --- CTA --- */
    .cta-section {
        margin: 40px 20px;
        padding: 40px 20px;
    }
    .cta-container {
        flex-direction: column; /* Stack text and calendar */
        gap: 32px;
        text-align: center;
    }
    .cta-text {
        max-width: 100%;
    }
    .cta-text h2 {
        font-size: 28px;
        line-height: 36px;
    }
    .cta-calendar-wrapper {
        width: 100%;
    }
    .calendly-container iframe {
        height: 400px;
    }


    /* --- Footer --- */
    .site-footer {
        padding: 40px 0;
    }
    .footer-grid {
        grid-template-columns: 1fr; /* Stack columns */
        gap: 40px;
        padding: 0 20px;
    }
    .footer-col {
        text-align: left;
    }
    .footer-brand p {
        line-height: 24px;
        max-width: 100%;
    }
    .footer-cta {
        margin-top: 16px;
    }
}


@media (max-width: 768px) {

  /* Hide CTA in mobile */
  .header-cta {
    display: none !important;
  }

  /* ✅ Mobile Menu Icon Styles */
  .mobile-menu-icon {
    display: block !important;
    width: 35px;
    height: 35px;
    position: static; /* Fixed: use static inside flex container to respect flex rules */
    opacity: 1;
    transform: rotate(0deg);
  }
}

@media (min-width:769px) {
  @media (max-width:768px){
  .mobile-menu-icon {
    display: flex !important;
    width: 32px;
    height: 32px;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    cursor: pointer;
  }
}

  .header-cta {
    display: inline-flex !important;
  }
}

     .mobile-menu-icon {
    display: none !important; /* Desktop-ல் ஐகானை மறைக்க */
  }
@media (max-width: 768px) {
    /* [1] Adjust inner content alignment/spacing */
    .site-header {
        /* Set new vertical padding to achieve content top: 27px (10px wrapper top + 17px padding top) */
        padding: 17px 16px; 
        /* The overall height is now 32px content + 34px vertical padding = 66px */
        height: 66px; 
        
        /* The requested 'justify-content: space-between' is already applied globally: */
        /* display: flex; justify-content: space-between; align-items: center; */ 
    }

    /* [2] Adjust logo size to match requested height */
    .logo-img
    {

        transition: opacity 0.4s ease-in-out, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        transform: scale(1);
        transform-origin: center;
    }
    .logo-img {
        width: 40px; 
        height: 40px;
        /* New: Add transition for smooth hiding/showing */
        transition: opacity 0.4s ease-in-out, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        transform: scale(1);
        transform-origin: center;
    }
  .logo-text-group {
    display: flex; /* Show text on mobile */
    margin-left: 10px;
  }
  
  .logo-subtext { display: none; }
  
    /* [3] Adjust mobile menu icon size and remove conflicting absolute positioning */
    .mobile-menu-icon {
        width: 40px;
        height: 40px;
        /* OVERRIDE: Remove absolute positioning to keep the icon in the flow */
        position: static; 
        left: auto;
    }
    
    /* NEW: Hide logo image on scroll down (mobile) */
    .site-header-wrapper.mobile-hide-logo-active .logo-text,
    .site-header-wrapper.mobile-hide-logo-active .logo-img {
        opacity: 0;
        transform: scale(0); /* Hide completely with scale for a nice effect */
    }
}

/* ✅ Responsive hero layout */
@media (max-width: 768px) {

  .hero-section {
    padding-top: 110px !important;   /* Visual match */
  }

  .hero-content {
    max-width: 343px;                /* matches Figma */
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;             /* center content */
    gap: 20px;
    text-align: center;
  }

  /* ✅ HERO WRAPPER */
  .hero-content {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  /* ✅ TITLE */
  .hero-content h1 {
    font-family: "Manrope", sans-serif !important;
    font-size: 24px !important;
    line-height: 32px !important;
    font-weight: 800 !important;   /* ExtraBold = 800 */
    max-width: 330px;
    margin: 0 auto;
    letter-spacing: 0;
    text-align: center;
  }

  /* ✅ PARAGRAPH  — BEST READABILITY */
  .hero-content p {
    font-family: "Manrope", sans-serif !important;
    font-weight: 400 !important;
    font-size: 12px !important;
    line-height: 22px !important;
    letter-spacing: 0;
    text-align: center !important;
    color: #9597ad !important;

    max-width: 360px;             /* ✅ Better wrapping than 380px */
    margin: 0 auto;
    padding: 0 8px;               /* ✅ Small breathing space on sides */
  }

  /* ✅ BUTTON (Responsive + Centered) */
  .hero-content .btn-gradient {
    min-width: 230px !important;
    max-width: 260px !important;
    height: 42px !important;

    padding: 14px 18px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    font-weight: 600 !important;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    margin: 4px auto 0;           /* ✅ Spacing before benefits */
  }

  /* ✅ BENEFITS SECTION */
  .benefits-bar {
    width: 100%;
    max-width: 360px;
    margin: 28px auto 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .benefit-item h3 {
    font-size: 14px;
    font-weight: 600;
    text-align: left;
  }

  .benefit-item p {
    font-size: 12px;
    line-height: 18px;
    color: #9597ad;
    text-align: left;
  }
}

/* ✅ MOBILE MENU CONTAINER */
@media (max-width:768px) {

  .mobile-menu {
    position: fixed;
    top: 70px;
    right: 16px;
    width: 230px;
    background: #040514;
    border-radius: 16px;
    padding: 20px 16px;
    display: none;
    flex-direction: column;
    gap: 18px;
    z-index: 9999;
    border: 1px solid rgba(255,255,255,0.1);
  }

  .mobile-menu.open {
    display: flex;
  }

  .mobile-menu a {
    font-family: "Manrope", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.4px;
    color: #FFFFFF;
  }
}

/* ✅ MOBILE BENEFITS BLOCK FIX */
@media (max-width: 768px) {

  .benefits-bar {
    width: 304px;         /* Figma width */
    margin: 0 auto;       /* Center align */
    margin-top: 32px;     /* Gap under button */
    display: flex;
    flex-direction: column;
    gap: 32px;            /* Figma gap */
  }

  .benefit-item {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
  }

  .benefit-item h3 {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
  }

  .benefit-item p {
    font-size: 12px;
    line-height: 18px;
    color: #9597AD;
  }
}
.arrow-line {
    /* Change 2px to something larger like 4px */
    border-top: 4px solid transparent; 
}

.arrow-line.vertical {
    /* Change 2px to 4px here as well */
    border-left: 4px solid transparent; 
}

.step-card .step-number {
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  
  background: #ffffff;       
  color: #000;               
  
  border-radius: 50%;         
  font-size: 16px;
  font-weight: 700;
  
  display: flex;
  justify-content: center;
  align-items: center;

  z-index: 3;
}

.tools-grid .tool-category-card:nth-child(2) .tool-tags {
    display: grid !important;
    grid-template-columns: repeat(3, auto);
    gap: 18px 24px;
    justify-content: flex-start;
}

.tools-grid .tool-category-card:nth-child(2) .tool-tags span {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
}
/* Footer Brand Section Fix */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-brand-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 40px;
    height: 40px;
}

.brand-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.brand-desc {
    font-size: 16px;
    line-height: 26px;
    color: rgba(255,255,255,0.85);
    max-width: 360px;
}

/* =========================================
   MOBILE VIEW FIXES (Paste at bottom of style.css)
   Matches reference images exactly
   ========================================= */

@media (max-width: 768px) {



 /* Hide subtext on mobile to save space */

  .mobile-menu-icon {
    display: block !important;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: #fff; /* White circle background like image */
    border-radius: 50%;
    object-fit: contain;
  }

  /* --- 2. HERO SECTION (Centered & Spaced) --- */
  .hero-section {
    padding-top: 120px;
    padding-bottom: 60px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 25px !important;
    line-height: 1.2 !important;
    margin-bottom: 16px;
  }

  .hero-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #9597ad;
    margin-bottom: 32px;
    padding: 0 10px;
  }

  /* Full width orange/blue gradient button */
  .hero-content .btn-gradient {
    width: 100%;
    max-width: 100%;
    padding: 16px;
    font-size: 16px;
    justify-content: center;
    margin-bottom: 40px; /* Space before benefits */
  }

  /* --- 3. BENEFITS LIST (Vertical Stack) --- */
  .benefits-bar-wrapper {
    margin-top: 0; /* Reset margins */
  }

  .benefits-bar {
    display: flex;
    flex-direction: column;
    gap: 32px; /* Space between items */
    align-items: flex-start; /* Align left */
    padding: 0 10px;
  }

  .benefit-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
    width: 100%;
  }

  .benefit-item img {
    width: 28px;
    height: 28px;
    flex-shrink: 0; /* Prevent icon shrinking */
    margin-top: 2px;
  }

  .benefit-item h3 {
    font-size: 18px;
    margin-bottom: 6px;
    color: #fff;
  }

  .benefit-item p {
    font-size: 14px;
    color: #9597ad;
    margin: 0;
  }

  /* Remove desktop dividers */
  .benefit-item::after, 
  .benefits-divider-top, 
  .benefits-divider-bottom {
    display: none;
  }

  /* --- 4. FOUNDATIONS (DevOps & Cloud Cards) --- */
  .foundations-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
  }

  .foundation-divider { display: none; } /* Remove center line */

  .foundation-text h3 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .foundation-text > p {
    font-size: 16px;
    margin-bottom: 24px;
  }

  /* The Arrow List Styling */
  .foundation-text ul {
    padding-left: 0;
  }
  
  .foundation-text li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 14px;
    font-size: 16px;
    color: #fff;
    list-style: none;
  }

  /* Add the arrow manually via CSS to match image */
/* FIX: Remove double arrow (HTML already has arrow) */
  .foundation-text li::before {
    content: none !important; /* Hide CSS arrow */
  }
  
  /* Keep alignment for the existing HTML arrow */
  .foundation-text li {
    padding-left: 0 !important; /* Reset padding since we don't need space for absolute arrow */
    display: flex !important; /* Use flex to align arrow and text if they are separate, or just block */
    text-indent: 0 !important;
  }

  /* --- 5. VISUAL CARDS (GitHub / Terraform) --- */
  .foundation-visual {
    width: 100%;
    height: auto !important; /* Let content dictate height */
    min-height: auto;
    padding: 20px;
    background: #0e0f1f; /* Darker background */
    border: 1px solid #2b2e40;
    border-radius: 12px;
  }

  /* Fix GitHub Card Overflow */
  .visual-header {
    flex-direction: row; /* Keep row but allow wrap */
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .visual-header button {
    margin-top: 10px;
    width: 100%; /* Full width button on mobile cards */
  }

  /* Fix Terraform Card Layout */
  .visual-terraform .stat-item ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .visual-terraform .stat-item ul li:nth-child(3) {
    margin-top: 0; /* Reset desktop negative margin */
    text-align: left;
  }

  /* Fix AIOps & Networking Charts */
  .aiops-chart-container {
    flex-direction: row; /* Keep side by side if possible */
    justify-content: center;
    gap: 20px;
  }
  
  .aiops-chart-item { width: auto; }
  .aiops-chart-item .data-plot { width: 100px; height: 100px; }
}


/* =========================================
   FIX: MOVE BLUE BACKGROUND UP ON MOBILE
   ========================================= */
@media (max-width: 768px) {
    /* 1. The Purple/Dark Blue Blob */
    .hero-background .background-blur:nth-of-type(1) {
        top: -120px !important; /* Was 51px -> Moving up */
        opacity: 0.8;
    }

    /* 2. The Cyan/Sea Blue Blob (Main one) */
    .hero-background .background-blur:nth-of-type(2) {
        top: -200px !important; /* Was -20px -> Moving up significantly */
        width: 100% !important; /* Prevent it from being too wide */
        left: 0 !important;
        filter: blur(80px) !important; /* Soften it slightly */
    }

    /* 3. The Light Blue Blob (Topmost) */
    .hero-background .background-blur:nth-of-type(3) {
        top: -450px !important; /* Was -280px -> Moving way up */
        opacity: 0.6;
    }
}

/* =========================================
   MOBILE GAP FIXES (Paste at bottom)
   ========================================= */
@media (max-width: 768px) {

  /* 1. Button-kum Faster Shipping-kum idaila ulla gap kuraikka */
  .hero-content .btn-gradient {
    margin-bottom: 12px !important; /* Irundha 40px-la irundhu 16px-a kuraichu iruku */
  }

  /* Benefits list gap adjustments */
  .benefits-bar {
    gap: 26px !important; /* Items-ku nadula ulla gap adjust panniruku */
    margin-top: 0 !important;
  }

  /* 2. 'Scaling gets messy' section mela ulla gap kuraikka */
  .hero-section {
    padding-bottom: 10px !important; /* Hero section keezha gap kuraikka */
  }

  .pain-points-section {
    padding-top: 6px !important; /* Adutha section mela gap kuraikka */
  }

  /* Scaling Title adjustments */
  .pain-points-section .section-title {
    margin-top: 0 !important;
    margin-bottom: 24px !important;
  }
}


/* =========================================
   FIX: FOUNDATION CARDS (Match Uploaded Image)
   ========================================= */
@media (max-width: 768px) {

  /* 1. கார்ட் ஹெட்டர் - ஒரே லைன்ல இருக்க வைக்க (Header Layout) */
  .foundation-visual .visual-header {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important; /* கீழே இறங்காமல் தடுக்கும் */
    align-items: center !important;
    gap: 10px !important;
    justify-content: space-between !important;
  }

  /* Icon Adjustment */
  .foundation-visual .visual-header img,
  .foundation-visual .visual-headers img {
    width: 36px !important;
    height: 36px !important;
    margin-top: 0 !important; /* பழைய margin-ai நீக்க */
    flex-shrink: 0;
  }

  /* நடுவில் உள்ள டெக்ஸ்ட் (Text Container) */
  .foundation-visual .visual-header > div:nth-child(2) {
    flex: 1; /* இடைவெளியை நிரப்ப */
    min-width: 0; /* Text கட் ஆகாம இருக்க */
    text-align: left !important;
    padding-left: 8px;
  }

  .foundation-visual .visual-header h3 {
    font-size: 14px !important;
    line-height: 1.2 !important;
    margin-bottom: 4px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; /* இடம் பத்தலனா ... வைக்கும் */
  }

  .foundation-visual .visual-header p {
    font-size: 11px !important;
    line-height: 1 !important;
    color: #9597ad !important;
    margin: 0 !important;
  }

  /* 2. பச்சை பட்டன் (Merge Pull Request Button) */
  .foundation-visual .visual-header button {
    width: auto !important; /* Full width வேண்டாம் */
    padding: 8px 12px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    margin-top: 0 !important;
    white-space: nowrap;
    background-color: #109057 !important;
    border: 1px solid #109057 !important;
    border-radius: 6px !important;
    flex-shrink: 0;
  }

  /* 'View all statistics' Link */
  .foundation-visual .visual-header .details-link {
    font-size: 11px !important;
    white-space: nowrap;
    margin-left: 0 !important;
    text-align: right;
    flex-shrink: 0;
  }

  /* 3. லிஸ்ட் ஐட்டம்ஸ் (Jenkins, Mark etc.) */
  .check-item {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    padding: 8px 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .check-item:last-child { border-bottom: none; }

  .check-item img {
    width: 28px !important;
    height: 28px !important;
    flex-shrink: 0;
  }

  .check-item > div {
    flex: 1;
    text-align: left;
    padding-left: 8px;
  }

  .check-item h5 {
    font-size: 13px !important;
    margin-bottom: 2px !important;
    color: #fff;
  }

  .check-item p {
    font-size: 11px !important;
    color: #6a6d85 !important;
    margin: 0 !important;
  }

  .check-item a {
    font-size: 12px !important;
    color: #26b0ef !important;
    margin-left: 0 !important;
    flex-shrink: 0;
  }

  /* 4. Terraform Card Stats (கீழே உள்ள லிஸ்ட்) */
  .visual-terraform .stat-item ul {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    margin-top: 10px !important;
  }

  .visual-terraform .stat-item ul li {
    font-size: 13px !important;
    color: #fff !important;
    text-align: left !important;
    margin: 0 !important;
  }
}
/* =========================================
   FORCE FIX: TERRAFORM SECTION (Mobile)
   ========================================= */
@media (max-width: 768px) {

  /* 1. கார்டின் மொத்த அமைப்பை சரி செய்தல் */
  .visual-terraform {
    height: auto !important;
    min-height: 240px !important;
    padding: 20px !important;
    display: flex !important;
    flex-direction: column !important;
  }

  /* 2. ஹெட்டர் (Icon + Title + Link) */
  .visual-terraform .visual-header {
    display: grid !important;
    /* 3 Columns: Icon | Text | Link */
    grid-template-columns: 40px 1fr auto !important; 
    align-items: start !important;
    gap: 12px !important;
    margin-bottom: 10px !important;
    width: 100% !important;
  }

  /* ஐகான் (Green Check) */
  .visual-terraform .visual-header img {
    width: 40px !important;
    height: 40px !important;
    margin: 0 !important;
    grid-row: 1 / span 2; /* ஐகானை பெரிதாக காட்ட */
  }

  /* நடுவில் உள்ள டெக்ஸ்ட் (Title & Time) */
  .visual-terraform .visual-header div {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    min-width: 0; /* Text overflow ஆகாமல் இருக்க */
  }

  /* Title: "Terraform cloud..." (காணாமல் போனதை வரவழைக்க) */
  .visual-terraform .visual-header h3 {
    display: block !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
    color: #fff !important;
    margin-bottom: 4px !important;
    white-space: normal !important; /* Text மடிய அனுமதி */
  }

  /* Time: "Last applied..." */
  .visual-terraform .visual-header p {
    font-size: 11px !important;
    color: #9597ad !important;
    margin: 0 !important;
    line-height: 1.2 !important;
  }

  /* Link: "View all statistics" */
  .visual-terraform .visual-header .details-link {
    font-size: 10px !important;
    color: #26b0ef !important;
    text-align: right;
    white-space: nowrap;
    margin-top: 4px;
  }

  /* 3. நடுவில் உள்ள Divider */
  .dividers {
    margin: 15px 0 !important;
    color: #2b2e40 !important;
    opacity: 0.5;
  }

  /* 4. Statistics Title */
  .visual-terraform .stat-item h5 {
    font-size: 12px !important;
    color: #9597ad !important;
    margin-bottom: 12px !important;
  }

  /* 5. Statistics Grid (கீழே உள்ள லிஸ்ட்) */
  .visual-terraform .stat-item ul {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important; /* இரண்டு வரிசை */
    row-gap: 10px !important;
    column-gap: 10px !important;
    padding: 0 !important;
    width: 100% !important;
  }

  /* List Items */
  .visual-terraform .stat-item ul li {
    font-size: 11px !important;
    color: #fff !important;
    display: flex;
    align-items: center;
    white-space: nowrap;
    margin: 0 !important;
  }

  /* Positioning (இடது மற்றும் வலது பக்கம்) */
  
  /* 1. "47 resources managed" -> Top Left */
  .visual-terraform .stat-item ul li:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  /* 2. "0 drift detected" -> Bottom Left */
  .visual-terraform .stat-item ul li:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }

  /* 3. "Plan: 2 to add..." -> Top Right */
  .visual-terraform .stat-item ul li:nth-child(3) {
    grid-column: 2;
    grid-row: 1;
    justify-self: end; /* வலது ஓரத்தில் ஒட்ட */
    margin-top: 0 !important; /* பழைய மார்ஜின் நீக்கம் */
    text-align: right !important;
  }
}
/* =========================================
   FIX: FOUNDATIONS HEADING SIZE (Mobile)
   ========================================= */
@media (max-width: 768px) {
  .foundations-header h2 {
    font-size: 24px !important;
    line-height: 32px !important; /* இடைவெளியை சீரமைக்க */
    margin-bottom: 16px !important;
  }
  
  /* Optional: கீழே உள்ள பாராகிராஃப் அளவை சரிசெய்ய */
  .foundations-header p {
    font-size: 14px !important;
    line-height: 22px !important;
    padding: 0 10px !important;
  }
}
/* =========================================
   FIX: CONTAINERIZATION (Services Card)
/* =========================================
   FORCE FIX: SERVICES CARD (Containerization)
   ========================================= */
@media (max-width: 768px) {

  /* 1. கார்டின் அடிப்படை அமைப்பு */
  .foundation-visual.visual-services {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    min-height: auto !important;
    padding: 20px !important;
    background-color: #0e0f1f !important; /* Dark background */
  }

  /* Title: "Services" */
  .visual-services h4 {
    font-size: 16px !important;
    margin-bottom: 16px !important;
    color: #ffffff !important;
    text-align: left !important;
  }

  /* --- 2. FILTERS (Search + Dropdown ஒரே வரியில்) --- */
  .visual-services .filters {
    display: flex !important;
    flex-direction: row !important; /* Side-by-side */
    align-items: center !important;
    gap: 10px !important;
    margin-bottom: 20px !important;
    width: 100% !important;
  }

  /* Search Box Wrapper */
  .visual-services .search-input-wrapper {
    flex: 1 1 auto !important; /* இடத்தை அடைத்துக்கொள்ளும் */
    width: auto !important;
    position: relative !important;
    max-width: none !important;
  }

  /* Search Input Field */
  .visual-services .search-input-wrapper input {
    width: 100% !important;
    height: 36px !important;
    padding: 0 10px 0 34px !important; /* ஐகானுக்கான இடம் */
    font-size: 12px !important;
    background-color: #1f2130 !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 6px !important;
    color: #9597ad !important;
  }

  /* Search Icon */
  .visual-services .search-input-wrapper .search-icon {
    position: absolute !important;
    left: 10px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 14px !important;
    height: 14px !important;
    z-index: 2 !important;
    opacity: 0.6 !important;
  }

  /* Dropdown Select Button */
  .visual-services select {
    flex: 0 0 auto !important; /* சுருஙகக் கூடாது */
    width: auto !important;
    height: 36px !important;
    padding: 0 12px !important;
    font-size: 12px !important;
    background-color: #1f2130 !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 6px !important;
    color: #9597ad !important;
  }

  /* --- 3. TABLE (அட்டவணை சீரமைப்பு) --- */
  .service-table {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 0 !important;
  }

  /* பொதுவான Row Style (Header & Data) */
  .visual-services .table-header,
  .visual-services .table-row {
    display: grid !important;
    /* 3 Columns: Name | Status | Progress Bar */
    grid-template-columns: 1.4fr 0.8fr 1.2fr !important; 
    align-items: center !important;
    gap: 10px !important;
    padding: 12px 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.05) !important;
  }

  /* Header Text (Grey) */
  .visual-services .table-header span {
    font-size: 11px !important;
    color: #6a6d85 !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
  }

  /* Data Text (White) - Service Name */
  .visual-services .table-row span:first-child {
    font-size: 13px !important;
    color: #ffffff !important;
    font-weight: 500 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  /* Checkbox */
  .visual-services input[type="checkbox"] {
    width: 14px !important;
    height: 14px !important;
    border: 1px solid #3b3c51 !important;
    border-radius: 3px !important;
    background: transparent !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
    appearance: auto !important; /* மொபைல் இயல்புநிலை */
  }

  /* Status: "Active" (Green) */
  .status-active {
    color: #19d27e !important;
    font-size: 12px !important;
  }

  /* Progress Bar Track (Grey Line) */
  .visual-services .progress-bar {
    width: 100% !important;
    height: 6px !important;
    background-color: #3b3c51 !important;
    border-radius: 3px !important;
    overflow: hidden !important;
    display: block !important; /* Ensure visibility */
  }

  /* Progress Bar Fill (Blue Line) */
  .visual-services .progress-bar div {
    background-color: #26b0ef !important;
    height: 100% !important;
    border-radius: 3px !important;
  }
}
/* =========================================
   FIX: CHECKBOX WHITE FILL REMOVE (Mobile)
   ========================================= */
@media (max-width: 768px) {
  .visual-services input[type="checkbox"] {
    background-color: transparent !important; /* White fill-ஐ நீக்க */
    accent-color: transparent !important; /* ப்ளூ நிறத்தை நீக்க (கிளிக் செய்யும் போது) */
    border: 1px solid #3b3c51 !important; /* கிரே நிற அவுட்லைன் மட்டும் */
    border-radius: 3px !important;
    width: 14px !important;
    height: 14px !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
    appearance: none !important; /* Browser-இன் இயல்புநிலை ஸ்டைலை நீக்க */
    position: relative !important;
    cursor: pointer !important;
  }

  /* Checked நிலைக்கான ஸ்டைல் */
  .visual-services input[type="checkbox"]:checked {
    background-color: #26b0ef !important; /* கிளிக் செய்தால் ப்ளூ நிற ஃபில் */
    border-color: #26b0ef !important; /* ப்ளூ நிற பார்டர் */
  }

  /* டிக் மார்க் (✓) சேர்க்க */
  .visual-services input[type="checkbox"]:checked::before {
    content: '✓' !important; /* டிக் மார்க் */
    display: block !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    color: white !important;
    font-size: 10px !important;
    line-height: 1 !important;
  }
}
/* =========================================
   FIX: ADVANCED NETWORKING CARD (Mobile)
   Matches uploaded Security Trends Image
   ========================================= */
@media (max-width: 768px) {

  /* 1. Card Container Styling */
  .visual-networking {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    min-height: auto !important;
    padding: 20px !important;
    background-color: #0e0f1f !important; /* Dark background matching image */
    border: 1px solid #2b2e40 !important;
    border-radius: 12px !important;
  }

  /* 2. Header Text */
  .visual-networking .networking-header h4 {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin-bottom: 6px !important;
  }

  .visual-networking .networking-header p {
    font-size: 11px !important;
    color: #9597ad !important;
    line-height: 1.4 !important;
    margin-bottom: 24px !important;
  }

  /* 3. Stats Section (3 Columns Grid) */
  .visual-networking .networking-stats {
    display: grid !important;
    /* 3 equal columns for All, Allowed, Blocked */
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 4px !important;
    margin-bottom: 30px !important;
    width: 100% !important;
  }

  /* Individual Stat Item */
  .visual-networking .stat-item-networking {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    min-width: 0 !important;
  }

  /* Stat Labels (e.g., "All requests") */
  .visual-networking .stat-label {
    font-size: 10px !important;
    color: #9597ad !important;
    margin-bottom: 6px !important;
    white-space: nowrap !important;
    display: flex !important;
    align-items: center !important;
  }

  /* Blue Square Dots for Labels */
  .visual-networking .blue-dot::before {
    content: '' !important;
    display: inline-block !important;
    width: 6px !important;
    height: 6px !important;
    background-color: #26b0ef !important; /* Cyan Blue */
    margin-right: 6px !important;
    border-radius: 1px !important;
  }

  /* Stat Values (e.g., "131K") */
  .visual-networking .stat-value {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #fff !important;
    padding: 0 !important;
  }

  /* 4. Chart Rows (Date + Bar) */
  .visual-networking .networking-chart {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
  }

  .visual-networking .chart-row {
    display: grid !important;
    /* Date takes small space, Bar takes rest */
    grid-template-columns: 45px 1fr !important; 
    align-items: center !important;
    gap: 12px !important;
  }

  /* Date Text (e.g., "12 Oct") */
  .visual-networking .chart-row .date {
    font-size: 11px !important;
    color: #6a6d85 !important;
    text-align: left !important;
    width: auto !important;
  }

  /* Bar Track (Dark Grey Background) */
  .visual-networking .chart-row .bar-container {
    height: 8px !important;
    background-color: #3b3c51 !important; /* Dark track */
    border-radius: 4px !important;
    width: 100% !important;
    overflow: hidden !important;
    display: block !important;
    padding: 0 !important;
  }

  /* Blue Bar (The Fill) */
  .visual-networking .chart-row .bar.blue-bar {
    background-color: #26b0ef !important; /* Cyan Blue */
    height: 100% !important;
    border-radius: 4px !important;
    display: block !important;
  }

  /* Hide Orange Bar (Image shows only blue bars) */
  .visual-networking .chart-row .bar.orange-bar {
    display: none !important;
  }
}


/* =========================================
   FIX: HOW WE WORK CARDS (Mobile)
   Matches uploaded image style
   ========================================= */
@media (max-width: 768px) {

  /* 1. Card Container Style */
  .how-it-works-grid .step-card {
    background-color: #0e0f1f !important; /* Dark background */
    border: 1px solid #2b2e40 !important;
    border-radius: 16px !important;
    padding: 24px !important;
    padding-top: 80px !important; /* Space for the number circle */
    position: relative !important;
    text-align: left !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }

  /* 2. Number Circle (White Circle, Black Text) */
  .how-it-works-grid .step-number {
    position: absolute !important;
    top: 24px !important;
    left: 24px !important;
    width: 40px !important;
    height: 40px !important;
    background: #ffffff !important; /* White background */
    background-image: none !important; /* Remove old svg image */
    color: #000000 !important; /* Black Text */
    border-radius: 50% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    z-index: 2 !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2) !important;
  }

  /* 3. Title: "Free Infra audit" */
  .how-it-works-grid .step-card h4 {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 !important;
    line-height: 1.3 !important;
  }

  /* 4. Description Text */
  .how-it-works-grid .step-card > p {
    font-size: 15px !important;
    line-height: 1.6 !important;
    color: #9597ad !important;
    margin: 0 !important;
  }

  /* 5. "What you get" Section */
  .how-it-works-grid .step-features {
    margin-top: 20px !important;
  }

  .how-it-works-grid .step-features h5 {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 16px !important;
  }

  /* List Items */
  .how-it-works-grid .step-features ul {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    padding: 0 !important;
  }

  .how-it-works-grid .step-features li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    font-size: 15px !important;
    color: #ffffff !important; /* White text */
    line-height: 1.5 !important;
  }

  /* Icons (Green Crowns) */
  .how-it-works-grid .step-features li img {
    width: 20px !important;
    height: 20px !important;
    margin-top: 3px !important; /* Align nicely with text */
    flex-shrink: 0 !important;
  }
}
/* =========================================
   FIX: CTA SECTION (Remove Calendar, Show Button)
   Matches uploaded image style
   ========================================= */
@media (max-width: 768px) {

  /* 1. Section Padding & Alignment */
  .cta-section {
    padding: 40px 20px !important;
    text-align: left !important;
    background-color: #0e0f1f !important; /* Dark Background */
    border-radius: 16px !important;
    margin: 40px 20px !important;
  }

  .cta-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 24px !important;
  }

  /* 2. Hide Desktop Calendar Widget */
  .cta-calendar-wrapper iframe,
  .calendar-widget {
    display: none !important; 
  }

  /* 3. Text Styling */
  .cta-text {
    width: 100% !important;
    max-width: 100% !important;
  }

  .cta-text h2 {
    font-size: 28px !important;
    line-height: 1.3 !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin-bottom: 16px !important;
    text-align: left !important;
  }

  .cta-text p {
    font-size: 15px !important;
    line-height: 1.6 !important;
    color: #9597ad !important;
    text-align: left !important;
    margin-bottom: 0 !important;
  }

  /* 4. Show the "Book a meeting" Button (Force Display) */
  .calendly-container {
    display: block !important;
    width: 100% !important;
    margin-top: 0 !important;
    text-align: left !important;
  }

  /* Button Style (Matches Image) */
  .calendly-btn-bottom {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important; /* Full Width */
    max-width: 320px !important;
    height: 50px !important;
    background: linear-gradient(92.1deg, #307CFF 0%, #E16E43 87.25%, #FF6C23 102.14%) !important;
    border-radius: 8px !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    margin-top: 10px !important;
    
    /* Add Calendar Icon before text */
  }
  
  .calendly-btn-bottom::before {
    content: '' !important;
    display: inline-block !important;
    width: 20px !important;
    height: 20px !important;
    margin-right: 10px !important;
    background-image: url('../../images/I292_316_302_31969.svg') !important; /* Uses existing calendar icon */
    background-size: contain !important;
    background-repeat: no-repeat !important;
    filter: brightness(0) invert(1) !important; /* Make icon white */
  }
}

/* =========================================
   FIX: FOOTER SECTION (Mobile Layout)
   Matches uploaded layout image
   ========================================= */
@media (max-width: 768px) {

  /* 1. Footer Container */
  .site-footer {
    padding: 40px 20px !important;
    background-color: #040514 !important; /* Dark Background */
  }

  /* 2. Grid Layout (Brand Top, Others Side-by-Side) */
  .footer-grid {
    display: grid !important;
    /* 2 Columns Layout */
    grid-template-columns: 1fr 1.2fr !important; 
    gap: 30px 10px !important; /* Row Gap 30, Col Gap 10 */
    padding: 0 !important;
  }

  /* 3. Brand Section (Spans Full Width) */
  .footer-brand {
    grid-column: 1 / -1 !important; /* Span across both columns */
    margin-bottom: 10px !important;
  }

  .footer-brand p {
    font-size: 15px !important;
    line-height: 1.6 !important;
    color: #edf4fe !important;
    opacity: 0.9 !important;
    max-width: 100% !important;
  }

  /* 4. Headings (Navigation & Get in touch) */
  .footer-col h4 {
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    color: #556386 !important;
    text-transform: uppercase !important;
    margin-bottom: 20px !important;
  }

  /* 5. List Items */
  .footer-col ul {
    gap: 16px !important;
  }

  .footer-col ul li, 
  .footer-col ul a {
    font-size: 14px !important;
    color: #fff !important;
    line-height: 1.2 !important;
    display: flex !important;
    align-items: center !important;
    white-space: nowrap !important; /* Prevent text wrapping */
  }

  /* 6. Button Styling */
  .footer-cta {
    width: 100% !important;
    margin-top: 24px !important;
    padding: 12px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    background: linear-gradient(92deg, #307CFF 0%, #FF6C23 100%) !important;
  }
  
  .footer-cta img {
    margin-left: 8px !important;
    width: 16px !important;
  }
}
/* =========================================
   FIX: TOOLS SECTION OVERFLOW (Mobile Grid)
   Matches uploaded image style
   ========================================= */
@media (max-width: 768px) {

  /* 1. Grid Layout for Tags Container */
  .tool-tags {
    display: grid !important;
    /* 2 Equal Columns to fit screen */
    grid-template-columns: 1fr 1fr !important; 
    gap: 10px !important;
    justify-content: stretch !important;
    padding: 0 !important;
    width: 100% !important;
  }

  /* 2. Individual Tag Style (Button Box) */
  .tool-tags span {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important; /* Left align content */
    gap: 8px !important;
    
    width: 100% !important; /* Fill the grid cell */
    padding: 10px 12px !important;
    min-height: 44px !important;
    
    background-color: #1f2130 !important; /* Dark Card BG */
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
    
    font-size: 12px !important;
    line-height: 1.3 !important;
    color: #fff !important;
    white-space: normal !important; /* Allow text wrapping if needed */
    box-sizing: border-box !important;
  }

  /* 3. Icon Sizing */
  .tool-tags span img {
    width: 20px !important;
    height: 20px !important;
    flex-shrink: 0 !important; /* Prevent icon from squishing */
    object-fit: contain !important;
  }

  /* 4. Card Padding Fix */
  .tool-category-card {
    padding: 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Hide any scrollbars */
  }
}


/* =========================================
   FIX: HOW WE WORK HEADER & BUTTON (Mobile)
   Matches uploaded image layout
   ========================================= */
@media (max-width: 768px) {

  /* 1. Reorder Elements (Header -> Button -> Cards) */
  .how-it-works-section .page-container {
    display: flex !important;
    flex-direction: column !important;
  }

  /* Header Text (First) */
  .how-it-works-header {
    order: 1 !important;
    text-align: center !important;
    margin-bottom: 24px !important;
    align-items: center !important;
  }

  /* Button (Second - Moved from bottom to middle) */
  .how-it-works-cta {
    order: 2 !important;
    width: 100% !important;
    margin-bottom: 40px !important;
    margin-top: 0 !important;
  }

  /* Cards Grid (Third - Moved to bottom) */
  .how-it-works-grid {
    order: 3 !important;
    margin-bottom: 0 !important;
  }

  /* 2. Text Styling */
  .how-it-works-header h2 {
    font-size: 28px !important;
    line-height: 1.2 !important;
    text-align: center !important;
    margin-top: 0 !important;
    color: #fff !important;
  }

  .how-it-works-header p {
    font-size: 15px !important;
    line-height: 1.6 !important;
    text-align: center !important;
    color: #9597ad !important;
    margin-top: 12px !important;
    padding: 0 10px !important;
  }

  /* 3. Button Styling */
  .how-it-works-cta .btn-gradient {
    width: 100% !important;
    height: 50px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
  }
  
  /* Icon inside button */
  .how-it-works-cta .btn-gradient img {
    width: 20px !important;
    height: 20px !important;
    margin-right: 8px !important;
  }
}

/* =========================================
   FIX: TOOLS HEADER (2 Lines Layout)
   Matches uploaded image text style
   ========================================= */
@media (max-width: 768px) {
  
  /* 1. Header Title (Force 2 Lines) */
  .tools-header h2 {
    font-size: 22px !important; /* Reduce size slightly to fit */
    line-height: 1.3 !important;
    text-align: center !important;
    color: #fff !important;
    margin-bottom: 16px !important;
    
    /* This forces the text to break into 2 lines */
    max-width: 320px !important; 
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* 2. Description Text */
  .tools-header p {
    font-size: 15px !important;
    line-height: 1.6 !important;
    text-align: center !important;
    color: #9597ad !important; /* Grey color */
    
    /* Constrain width for readability */
    max-width: 340px !important;
    margin: 0 auto !important;
    padding: 0 10px !important;
  }
}
/* =========================================
   FIX: FAQ HEADER (Mobile)
   Matches uploaded image style
   ========================================= */
@media (max-width: 768px) {

  /* 1. Header Container Alignment */
  .faq-header {
    text-align: center !important;
    max-width: 100% !important;
    margin: 0 auto 40px !important; /* Spacing below header */
    padding: 0 16px !important; /* Side padding */
  }

  /* 2. Main Title: "Frequently asked questions" */
  .faq-header h2 {
    font-size: 24px !important; /* Large bold text */
    font-weight: 800 !important;
    line-height: 1.2 !important;
    color: #ffffff !important;
    margin-bottom: 12px !important;
  }

  /* 3. Subtitle: "This is where we answer..." */
  .faq-header p {
    font-size: 16px !important;
    line-height: 1.6 !important;
    color: #9597ad !important; /* Grey color */
    opacity: 0.9 !important;
    margin: 0 auto !important;
    max-width: 340px !important; /* Prevent text stretching too wide */
  }
}
/* =========================================
   FIX: FAQ SECTION (Mobile)
   Matches uploaded image & prevents cropping
   ========================================= */
@media (max-width: 768px) {

  /* 1. FAQ List Container */
  .faq-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    padding: 0 10px !important;
  }

  /* 2. Individual FAQ Box Styling */
  .faq-item {
    /* Crucial: Allow height to grow based on text content (Prevents Cropping) */
    height: auto !important; 
    min-height: 60px !important;
    
    background-color: #060714 !important; /* Very Dark Background */
    border: 1px solid #2b2e40 !important;
    border-radius: 12px !important;
    padding: 16px 20px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
  }

  /* 3. Summary (Question Row) Layout */
  .faq-item summary {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 16px !important;
    width: 100% !important;
    list-style: none !important;
    cursor: pointer !important;
  }

  /* 4. Question Text Styling */
  .faq-item summary span {
    text-align: left !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 1.5 !important;
    color: #ffffff !important;
    
    /* Ensure text wraps and doesn't get cut off */
    white-space: normal !important; 
    overflow: visible !important;
    flex: 1 !important; /* Take up available space */
  }

  /* 5. Toggle Icon (Blue Circle) */
  .toggle-icon {
    width: 32px !important;
    height: 32px !important;
    background-color: #26b0ef !important; /* Blue color */
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important; /* Prevent icon from shrinking */
    transition: transform 0.3s ease !important;
  }

  /* Arrow inside the circle */
  .toggle-icon::after {
    content: '' !important;
    width: 8px !important;
    height: 8px !important;
    border: solid white !important;
    border-width: 0 2px 2px 0 !important;
    transform: rotate(45deg) translateY(-2px) !important; /* Down Arrow */
    margin-top: -2px !important;
  }

  /* Rotate icon when open */
  .faq-item[open] summary .toggle-icon {
    transform: rotate(180deg) !important;
    background-color: #26b0ef !important;
  }

  /* 6. Answer Text (Hidden Content) */
  .faq-answer {
    margin-top: 12px !important;
    padding-top: 12px !important;
    border-top: 1px solid rgba(255,255,255,0.1) !important;
    color: #9597ad !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    text-align: left !important;
    
    /* Ensure answer text is fully visible */
    white-space: normal !important;
  }
}
/* =========================================
   FIX: TESTIMONIAL SECTION (Mobile Layout)
   Matches uploaded image style
   ========================================= */
@media (max-width: 768px) {

  /* 1. Flex Container Direction (Text Top, Image Bottom) */
  .testimonial-content {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 24px !important;
    padding: 0 10px !important;
  }

  /* 2. Tag Text (Orange Color) */
  .testimonial-tag {
    color: #e67203 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    margin-bottom: 12px !important;
    display: block !important;
    text-align: left !important;
  }

  /* 3. Quote Text */
  .testimonial-text blockquote {
    font-size: 20px !important; /* Large readable text */
    line-height: 1.4 !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    text-align: left !important;
    margin: 0 0 24px 0 !important;
  }

  /* 4. Author Info (Avatar + Name) */
  .author-info {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    margin-top: 0 !important;
    width: 100% !important;
    justify-content: flex-start !important;
  }

  /* Avatar Image */
  .author-avatar {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
  }

  /* Author Text */
  .author-name {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #fff !important;
    margin: 0 !important;
  }

  .author-title {
    font-size: 14px !important;
    color: #9597ad !important;
    margin: 0 !important;
  }

  /* 5. Large Feature Image (Blue Border) */
  .testimonial-image {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16/9 !important; /* Rectangle Shape */
    border-radius: 16px !important;
    padding: 8px !important; /* Space for border */
    background: #26b0ef !important; /* Solid Blue Border Effect */
    margin-top: 10px !important;
  }

  .testimonial-image img {
    width: 100% !important;
    height: 100% !important;
    border-radius: 12px !important; /* Inner Radius */
    object-fit: cover !important;
    display: block !important;
  }
}
/* =========================================
   FIX: HOW WE WORK TITLE (Force 2 Lines)
   ========================================= */
@media (max-width: 768px) {

  /* 1. Hide existing HTML line breaks (<br>) */
  .how-it-works-header h2 br {
    display: none !important;
  }

  /* 2. Set width to force text into 2 lines */
  .how-it-works-header h2 {
    max-width: 340px !important; /* அகலத்தை கட்டுப்படுத்துவதன் மூலம் 2 வரியாக உடையும் */
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: 24px !important;
    line-height: 1.3 !important;
    text-align: center !important;
    color: #fff !important;
  }
}
/* =========================================
   FIX: REDUCE GAP ABOVE 'HOW WE WORK' (Mobile)
   ========================================= */
@media (max-width: 768px) {
  
  /* 1. Reduce Section Padding */
  .how-it-works-section {
    padding-top: 10px !important; /* மேலிருக்கும் இடைவெளியை குறைக்கிறது */
  }

  /* 2. Remove Header Top Margin */
  .how-it-works-header {
    margin-top: 0 !important; /* Desktop-ல் இருந்த 80px margin-ஐ நீக்குகிறது */
    padding-top: 0 !important;
  }
}


/* =========================================
   FIX: ADVANCED NETWORKING CARD (Mobile)
   Matches uploaded Security Trends Image
   ========================================= */
@media (max-width: 768px) {

  /* 1. Card Container Styling */
  .visual-networking {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    min-height: auto !important;
    padding: 20px !important;
    background-color: #0e0f1f !important; /* Dark background matching image */
    border: 1px solid #2b2e40 !important;
    border-radius: 12px !important;
  }

  /* 2. Header Text */
  .visual-networking .networking-header h4 {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin-bottom: 6px !important;
  }

  .visual-networking .networking-header p {
    font-size: 11px !important;
    color: #9597ad !important;
    line-height: 1.4 !important;
    margin-bottom: 24px !important;
  }

  /* 3. Stats Section (3 Columns Grid) */
  .visual-networking .networking-stats {
    display: grid !important;
    /* 3 equal columns for All, Allowed, Blocked */
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 4px !important;
    margin-bottom: 30px !important;
    width: 100% !important;
  }

  /* Individual Stat Item */
  .visual-networking .stat-item-networking {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    min-width: 0 !important;
  }

  /* Stat Labels (e.g., "All requests") */
  .visual-networking .stat-label {
    font-size: 10px !important;
    color: #9597ad !important;
    margin-bottom: 6px !important;
    white-space: nowrap !important;
    display: flex !important;
    align-items: center !important;
  }

  /* Blue Square Dots for Labels */
  .visual-networking .blue-dot::before {
    content: '' !important;
    display: inline-block !important;
    width: 6px !important;
    height: 6px !important;
    background-color: #26b0ef !important; /* Cyan Blue */
    margin-right: 6px !important;
    border-radius: 1px !important;
  }

  /* Stat Values (e.g., "131K") */
  .visual-networking .stat-value {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #fff !important;
    padding: 0 !important;
  }

  /* 4. Chart Rows (Date + Bar) */
  .visual-networking .networking-chart {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
  }

  .visual-networking .chart-row {
    display: grid !important;
    /* Date takes small space, Bar takes rest */
    grid-template-columns: 45px 1fr !important; 
    align-items: center !important;
    gap: 12px !important;
  }

  /* Date Text (e.g., "12 Oct") */
  .visual-networking .chart-row .date {
    font-size: 11px !important;
    color: #6a6d85 !important;
    text-align: left !important;
    width: auto !important;
  }

  /* Bar Track (Dark Grey Background) */
  .visual-networking .chart-row .bar-container {
    height: 8px !important;
    background-color: #3b3c51 !important; /* Dark track */
    border-radius: 4px !important;
    width: 100% !important;
    overflow: hidden !important;
    display: block !important;
    padding: 0 !important;
  }

  /* Blue Bar (The Fill) */
  .visual-networking .chart-row .bar.blue-bar {
    background-color: #26b0ef !important; /* Cyan Blue */
    height: 100% !important;
    border-radius: 4px !important;
    display: block !important;
  }

  /* Hide Orange Bar (Image shows only blue bars) */
  .visual-networking .chart-row .bar.orange-bar {
    display: none !important;
  }
}
/* =========================================
   UPDATED MOBILE HERO STYLES
   (Paste this at the very bottom of style.css)
   ========================================= */

@media (max-width: 768px) {

    /* 1. கலர் கீழே இறங்க (Move Background Color Down) */
    .hero-background .background-blur:nth-of-type(2) {
        top: -160px !important; /* மேலே இருந்ததை கீழே இறக்கியுள்ளேன் */
        filter: blur(90px) !important;
        opacity: 0.8;
    }

    /* 2. பாராகிராஃப் இடைவெளி குறைப்பு (Reduce Space above button) */
    .hero-content p {
        margin-bottom: 12px !important; /* 32px-ல் இருந்து குறைக்கப்பட்டுள்ளது */
        font-size: 14px !important;
        line-height: 22px;
    }

    /* 3. பட்டன் அளவு சிறியதாக & இடைவெளி குறைப்பு (Small Button & Less Spacing) */
    .hero-content .btn-gradient {
        width: auto !important;         /* Full width வேண்டாம் */
        min-width: 150px !important;    /* மிகச் சிறியதாக ஆகாமல் இருக்க */
        max-width: 200px !important;    
        height: 40px !important;        /* உயரத்தை குறைத்துள்ளேன் */
        
        padding: 8px 16px !important;   /* உள்ளே உள்ள இடைவெளியை குறைத்துள்ளேன் */
        font-size: 10px !important;     /* எழுத்து வடிவத்தை சிறிதாக்கியுள்ளேன் */
        
        margin-bottom: 20px !important; /* கீழே உள்ள இடைவெளியை சரிசெய்துள்ளேன் */
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* பட்டனுக்குள் இருக்கும் ஐகான் அளவு */
    .hero-content .btn-gradient img {
        width: 16px !important;
        height: 16px !important;
    }
}
/* =========================================
   ACCURATE SPACING FIXES (GAP REDUCTION)
   ========================================= */

@media (max-width: 768px) {

    /* 1. BUTTON GAP: பட்டனுக்கும் 'Faster Shipping'-க்கும் உள்ள இடைவெளியைக் குறைக்க */
    
    .hero-content .btn-gradient {
        /* பட்டனுக்கு கீழே உள்ள இடைவெளி */
        margin-bottom: 20px !important;   
          min-width: 150px !important;    /* மிகச் சிறியதாக ஆகாமல் இருக்க */
        max-width: 200px !important;
        height: 48px !important;
        padding: 12px 24px !important;
        font-size: 10px !important;
        border-radius: 8px !important;
        margin-top: 0 !important;
    }

    /* Hero Section-ன் கீழே உள்ள காலியிடத்தை நீக்க */
    .hero-section {
        padding-top: 0px;
        padding-bottom: 2px !important; 
    }

    /* Tech Pillars Section-ன் மேலே உள்ள காலியிடத்தை நீக்க (Faster Shipping பகுதி) */
    .tech-pillars-section {
        padding-top: 0px !important;
        padding-bottom: 20px !important; /* கீழே உள்ள இடைவெளியைக் குறைக்க */
    }

    .benefits-bar-wrapper {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    /* Benefits List - சீரமைப்பு */
    .benefits-bar {
        display: flex !important;
        flex-direction: column !important;
        gap: 24px !important;
        margin-top: 0 !important;
        align-items: flex-start !important;
        padding-left: 20px !important;
    }

    .benefit-item {
        display: flex !important;
        align-items: flex-start !important;
        gap: 16px !important;
        text-align: left !important;
    }

    /* 2. SCALING GAP: 'Production safety'-க்கும் 'Scaling gets messy'-க்கும் உள்ள இடைவெளியைக் குறைக்க */

    .pain-points-section {
        /* அடுத்த Section மேலே உள்ள காலியிடத்தை குறைக்க */
        padding-top: 10px !important; 
    }
    
    .pain-points-section .section-title {
        /* தலைப்புக்கு மேல் உள்ள இடைவெளியை நீக்க */
        margin-top: 0px !important; 
        margin-bottom: 30px !important;
    }
    
    /* Paragraph Text Fix (முந்தைய மாற்றத்தை தக்கவைக்க) */
    .hero-content p {
        font-size: 15px !important;
        line-height: 24px !important;
        color: #9597ad !important;
        padding: 0 12px !important;
        margin-bottom: 24px !important;
        text-align: center !important;
    }
}
/* =========================================
   MATCH GITHUB & TERRAFORM BOXES TO BRITTLE NETWORKING STYLE
   ========================================= */

@media (max-width: 768px) {

  /* 1. Remove Grid Padding (பாக்ஸ்கள் முழு அகலமாக விரிய) */
  .foundations-grid {
    padding: 0 !important; /* ஓரங்களில் இருந்த இடைவெளியை நீக்கியுள்ளேன் */
    gap: 24px !important;  /* பாக்ஸ்களுக்கு இடையே உள்ள இடைவெளி */
    width: 100% !important;
  }

  /* 2. Box Style Match (Brittle Networking பாக்ஸ் போலவே மாற்ற) */
  .foundation-visual {
    /* Brittle Networking பாக்ஸின் டிசைன் */
    background-color: rgba(6, 8, 30, 0.55) !important; 
    border: 1px solid #36374a !important;
    border-radius: 16px !important; /* வளைந்த ஓரங்கள் */
    
    /* அளவு மற்றும் இடைவெளி */
    width: 100% !important;
    max-width: 100% !important;
    padding: 20px !important; /* உள்ளே உள்ள இடைவெளி */
    box-sizing: border-box !important;
    margin: 0 !important;
  }

  /* 3. Ensure Content Stretches (உள்ளே உள்ள கண்டென்ட் சரியாக இருக்க) */
  .visual-github, 
  .visual-terraform {
    height: auto !important;
    min-height: auto !important;
    display: flex !important;
    flex-direction: column !important;
  }

  /* Optional: ஹெட்டர் ஐகான் மற்றும் டெக்ஸ்ட் சீரமைப்பு */
  .foundation-visual .visual-header {
    margin-bottom: 16px !important;
  }
}
/* =========================================
   REDUCE FONT SIZE FOR GITHUB CARD HEADER
   ========================================= */

@media (max-width: 768px) {

  /* 1. Title Font Size (தலைப்பு எழுத்து அளவு குறைப்பு) */
  .foundation-visual .visual-header h3 {
    font-size: 11px !important; /* முன்பு இருந்ததை விட குறைக்கப்பட்டுள்ளது */
    line-height: 1.4 !important;
    font-weight: 700 !important;
  }

  /* 2. Subtitle Font Size (கீழே உள்ள சிறிய எழுத்து) */
  .foundation-visual .visual-header p {
    font-size: 11px !important; /* இதையும் சற்று குறைத்துள்ளேன் */
    color: #9597ad !important;
  }
}

@media (max-width: 768px) {

  /* 1. Divider Margin (நடுவில் உள்ள கோட்டின் இடைவெளி குறைப்பு) */
  .visual-terraform .dividers {
    margin-top: 3px !important;    /* மேலே உள்ள இடைவெளி குறைப்பு */
    margin-bottom: 3px !important; /* கீழே உள்ள இடைவெளி குறைப்பு */
    opacity: 0.4 !important;        /* லேசாகத் தெரிய (Optional) */
  }

  /* 2. Header Bottom Margin (மேலே உள்ள ஹெட்டரின் கீழ் இடைவெளி நீக்கம்) */
  .visual-terraform .visual-header {
    margin-bottom: 0 !important;
  }

  /* 3. Statistics Title Margin (கீழே உள்ள Statistics தலைப்பின் இடைவெளி) */
  .visual-terraform .stat-item h5 {
    margin-top: 4px !important;     /* தலைப்புக்கு மேல் சிறிது இடைவெளி */
    margin-bottom: 12px !important; /* தலைப்புக்கு கீழ் இடைவெளி */
  }
}
/* =========================================
   FIX: FILTERS ON SAME LINE & SMALLER TEXT (MOBILE)
   ========================================= */

@media (max-width: 768px) {

  /* 1. Container (இரண்டையும் ஒரே வரியில் வைக்க) */
  .visual-services .filters {
    display: flex !important;
    flex-direction: row !important; /* பக்கத்து பக்கத்தில் */
    flex-wrap: nowrap !important;   /* கீழே இறங்காமல் தடுக்க */
    align-items: center !important;
    gap: 8px !important;            /* நடுவில் இடைவெளி */
    width: 100% !important;
    margin-bottom: 16px !important;
  }

  /* 2. Search Box (Filter services by value) */
  .visual-services .search-input-wrapper {
    flex: 1 !important;             /* மீதமுள்ள இடத்தை இது எடுத்துக்கொள்ளும் */
    min-width: 0 !important;
    width: auto !important;
  }

  .visual-services .search-input-wrapper input {
    width: 100% !important;
    padding-right: 0 !important;
    text-overflow: ellipsis;
    
    /* Text Size Change */
    font-size: 11px !important;     /* எழுத்து அளவு குறைக்கப்பட்டுள்ளது */
    height: 34px !important;        /* உயரத்தையும் சற்றே குறைத்துள்ளேன் */
  }

  /* 3. Dropdown Box (Any launch type) */
  .visual-services select {
    flex-shrink: 0 !important;      /* இது சுருங்கக்கூடாது */
    width: auto !important;
    max-width: 45% !important;
    white-space: nowrap !important;
    padding: 0 8px !important;      /* Padding சரிசெய்தல் */
    
    /* Text Size Change */
    font-size: 11px !important;     /* எழுத்து அளவு குறைக்கப்பட்டுள்ளது */
    height: 34px !important;        /* உயரத்தையும் சற்றே குறைத்துள்ளேன் */
  }
}
/* =========================================
   FIX: FILTERS ON SAME LINE & SMALLER TEXT (MOBILE)
   ========================================= */

@media (max-width: 768px) {

  /* 1. Container (இரண்டையும் ஒரே வரியில் வைக்க) */
  .visual-services .filters {
    display: flex !important;
    flex-direction: row !important; /* பக்கத்து பக்கத்தில் */
    flex-wrap: nowrap !important;   /* கீழே இறங்காமல் தடுக்க */
    align-items: center !important;
    gap: 8px !important;            /* நடுவில் இடைவெளி */
    width: 100% !important;
    margin-bottom: 16px !important;
  }

  /* 2. Search Box (Filter services by value) */
  .visual-services .search-input-wrapper {
    flex: 1 !important;             /* மீதமுள்ள இடத்தை இது எடுத்துக்கொள்ளும் */
    min-width: 0 !important;
    width: auto !important;
  }

  .visual-services .search-input-wrapper input {
    width: 100% !important;
    padding-right: 0 !important;
    text-overflow: ellipsis;
    
    /* Text Size Change */
    font-size: 10px !important;     /* எழுத்து அளவு குறைக்கப்பட்டுள்ளது */
    height: 34px !important;        /* உயரத்தையும் சற்றே குறைத்துள்ளேன் */
  }

  /* 3. Dropdown Box (Any launch type) */
  .visual-services select {
    flex-shrink: 0 !important;      /* இது சுருங்கக்கூடாது */
    width: auto !important;
    max-width: 45% !important;
    white-space: nowrap !important;
    padding: 0 8px !important;      /* Padding சரிசெய்தல் */
    
    /* Text Size Change */
    font-size: 10px !important;     /* எழுத்து அளவு குறைக்கப்பட்டுள்ளது */
    height: 34px !important;        /* உயரத்தையும் சற்றே குறைத்துள்ளேன் */
  }
}
/* =========================================
   REDUCE GAPS IN SECURITY TRENDS CARD (MOBILE)
   ========================================= */

@media (max-width: 768px) {

  /* 1. Header Title Gap (தலைப்புக்கும் கீழே உள்ள வரிக்கும் இடைவெளி) */
  .visual-networking .networking-header h4 {
    margin-bottom: 4px !important; 
  }

  /* 2. Subtitle to Stats Gap (எழுத்துக்கும் நம்பர்களுக்கும் உள்ள இடைவெளி) */
  .visual-networking .networking-header p {
    margin-bottom: 16px !important; /* முன்பு 24px இருந்தது -> 16px ஆக குறைப்பு */
    line-height: 1.4 !important;
  }

  /* 3. Stats to Chart Gap (நம்பர்களுக்கும் சார்ட்டுக்கும் உள்ள இடைவெளி) */
  .visual-networking .networking-stats {
    margin-bottom: 20px !important; /* முன்பு 30px இருந்தது -> 20px ஆக குறைப்பு */
    gap: 10px !important; /* நம்பர்களுக்கு இடையே உள்ள இடைவெளி */
  }

  /* 4. Chart Rows Gap (ஒவ்வொரு பாருக்கும் நடுவில் உள்ள இடைவெளி) */
  .visual-networking .networking-chart {
    gap: 12px !important; /* முன்பு 16px இருந்தது -> 12px ஆக குறைப்பு */
  }
  
  /* 5. Card Padding (மொத்த கார்டின் ஓர இடைவெளி) */
  .visual-networking {
    padding: 20px 20px 24px 20px !important; /* கீழே கொஞ்சம் இடைவெளி இருக்க */
  }
}
/* =========================================
   FIX: HOW WE WORK - BUTTON & TEXT SIZE REDUCTION
   ========================================= */

@media (max-width: 768px) {

  /* 1. Paragraph Text Size (விளக்க உரையின் அளவை குறைக்க) */
  .how-it-works-header p {
    font-size: 13px !important;      /* முன்பு இருந்ததை விடச் சிறியது */
    line-height: 20px !important;    /* வரி இடைவெளி */
    padding: 0 16px !important;      /* ஓரங்களில் இடைவெளி */
    margin-top: 5px !important;
    color: #9597ad !important;
  }

  /* 2. Button Size & Text (பட்டன் மற்றும் அதன் எழுத்தை சிறிதாக்க) */
  .how-it-works-cta .btn-gradient {
    width: 220px !important;          /* Full width வேண்டாம் */
    min-width: 220px !important;     /* மிகச் சிறியதாக ஆகாமல் இருக்க */
    max-width: 280px !important;     /* அதிகபட்ச அகலம் */
    height: 42px !important;         /* உயரத்தைக் குறைத்துள்ளேன் */
    
    padding: 10px 20px !important;   /* உள்ளே உள்ள இடைவெளி குறைப்பு */
    font-size: 12px !important;      /* பட்டன் எழுத்து அளவு குறைப்பு */
    border-radius: 8px !important;
    
    /* Center Alignment */
    display: flex !important;
    margin: 0 auto 20px auto !important; /* கீழே உள்ள இடைவெளியையும் குறைத்துள்ளேன் */
  }

  /* Icon inside button (ஐகான் அளவு) */
  .how-it-works-cta .btn-gradient img {
    width: 16px !important;
    height: 16px !important;
  }
}
/* =========================================
   TOOLS SECTION ALIGNMENT FIX (MOBILE)
   Matches the reference image exactly
   ========================================= */

@media (max-width: 768px) {

  /* 1. Tools Grid (மொத்த பாக்ஸ்களையும் அடுக்க) */
  .tools-grid {
    display: flex !important;
    flex-direction: column !important; /* ஒன்றன் பின் ஒன்றாக */
    gap: 16px !important; /* பாக்ஸ்களுக்கு இடையில் இடைவெளி */
    padding: 0 10px !important;
  }

  /* 2. Category Card (ஒவ்வொரு பெட்டியின் அமைப்பு) */
  .tool-category-card {
    width: 100% !important;
    padding: 20px 16px !important; /* உள்ளே இடைவெளி */
    height: auto !important;
    background-color: #0e0f1f !important; /* Dark Background */
    border: 1px solid #2b2e40 !important;
    border-radius: 16px !important;
  }

  /* தலைப்பு (Cloud, CI/CD...) */
  .tool-category-card h4 {
    text-align: left !important;
    margin-bottom: 16px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
  }

  /* 3. Tags Container (பட்டன்களை அடுக்கும் இடம்) */
  .tool-tags {
    display: flex !important;        /* Flexbox பயன்படுத்தவும் */
    flex-wrap: wrap !important;      /* இடம் இல்லையென்றால் அடுத்த வரிக்கு தள்ளும் */
    justify-content: flex-start !important; /* இடது பக்கம் (Left) ஒட்டி இருக்கும் */
    gap: 10px !important;            /* பட்டன்களுக்கு நடுவில் சிறிய இடைவெளி */
    width: 100% !important;
  }

  /* 4. Individual Tag (AWS, Docker போன்ற பட்டன்கள்) */
  .tool-tags span {
    width: auto !important;          /* தேவையற்ற அகலத்தை நீக்க (Auto Width) */
    max-width: 100% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    
    padding: 8px 12px !important;    /* கச்சிதமான அளவு */
    min-height: 36px !important;
    
    background-color: #1f2130 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 6px !important;
    
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #e0e0e0 !important;
    
    flex-grow: 0 !important; /* பட்டன் இழுத்து விரியாமல் இருக்க */
  }

  /* Icon Size inside Tag */
  .tool-tags span img {
    width: 18px !important;
    height: 18px !important;
    margin-right: 8px !important;
    flex-shrink: 0 !important;
  }
}
/* =========================================
   FIX: REDUCE GAP BETWEEN FAQ & TESTIMONIAL (Mobile)
   ========================================= */
@media (max-width: 768px) {

  /* 1. FAQ Section கீழே உள்ள இடைவெளியை நீக்க */
  .faq-section {
    padding-bottom: 0px !important; /* முன்பு 40px இருந்தது */
  }

  /* 2. Testimonial Section மேலே உள்ள இடைவெளியை குறைக்க */
  .testimonial-section {
    padding-top: 20px !important; /* முன்பு 40px இருந்தது */
    margin-top: 0 !important;
  }
}
/* =========================================
   FIX: HERO SECTION BUTTON - New Design
   ========================================= */
/* =========================================
   FIX: CTA COMPACT DESIGN (Match Image)
   ========================================= */
@media (max-width: 768px) {

  /* 1. பாக்ஸ் அளவைக் குறைக்க (Reduce Box Size) */
  .cta-section {
    padding: 24px 20px !important; /* உயரத்தைக் குறைக்க பேடிங் குறைப்பு */
    margin: 10px !important; /* ஓரங்களில் உள்ள இடைவெளியையும் குறைப்பு */
  }

  /* 2. தலைப்பு எழுத்து அளவு குறைப்பு (Reduce Heading Size) */
  .cta-text h2 {
    font-size: 20px !important; /* முன்பு 28px இருந்தது */
    line-height: 28px !important;
    margin-bottom: 8px !important;
    margin-left: 0px;/* தலைப்புக்கு கீழ் இடைவெளி குறைப்பு */
  }

  /* 3. பாராகிராஃப் எழுத்து அளவு குறைப்பு (Reduce Paragraph Size) */
  .cta-text p {
    font-size: 13px !important; /* முன்பு 16px இருந்தது */
    line-height: 20px !important;
    margin-bottom: 0 !important;
  }

  /* 4. கண்டெய்னர் சீரமைப்பு (Align Container Items Left) */
  .cta-container {
    gap: 16px !important; /* டெக்ஸ்டுக்கும் பட்டனுக்கும் இடைவெளி குறைப்பு */
    align-items: flex-start !important; /* எல்லாவற்றையும் இடது பக்கம் தள்ள */
    text-align: left !important;
  }

  /* 5. பட்டன் இடது பக்கம் & சிறியதாக (Button Left Align & Compact) */
  .calendly-container {
    width: auto !important; /* முழு அகலம் வேண்டாம் */
    text-align: left !important; /* இடது பக்கம் */
  }

  .calendly-btn-bottom {
    width: auto !important; /* எழுத்துக்கு ஏற்ப பட்டன் அகலம் */
    display: inline-flex !important;
    padding: 10px 20px !important; /* பட்டன் உள்ளே இடைவெளி குறைப்பு */
    font-size: 14px !important; /* பட்டன் எழுத்து சிறியது */
    margin-top: 0 !important;
    height: auto !important; /* உயரத்தை ஆட்டோவாக மாற்ற */
  }
}
/* =========================================
   FIX: CTA ALIGNMENT - REMOVE DOUBLE PADDING
   ========================================= */
@media (max-width: 768px) {

  /* 1. Main Box Padding - ஓரங்களில் 15px மட்டும் இடைவெளி */
  .cta-section {
    padding: 30px 15px !important; 
    text-align: left !important;
  }

  /* 2. உள்ளே இருக்கும் Page Container இடைவெளியை நீக்குதல் (முக்கிய மாற்றம்) */
  .cta-section .page-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  /* 3. Content Container - முழு அகலம் & இடது பக்கம் */
  .cta-container {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important; /* இடது பக்கம் சீரமைக்க */
    gap: 16px !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  /* 4. Text Alignment - கட்டாயமாக இடது பக்கம் */
  .cta-text, 
  .cta-text h2, 
  .cta-text p {
    text-align: left !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
    width: 100% !important;
  }

  /* 5. Button Alignment - இடது பக்கம் */
  .calendly-container {
    width: 100% !important;
    text-align: left !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .calendly-btn-bottom {
    margin-left: 0 !important;
    display: inline-flex !important;
  }
}
/* =========================================
   FIX: INCREASE TOOLS CONTAINER WIDTH (Mobile)
   ========================================= */
@media (max-width: 768px) {

  /* 1. Tools Section-ன் ஓரங்களில் உள்ள இடைவெளியைக் குறைத்தல் */
  .tools-section .page-container {
    padding-left: 8px !important;  /* முன்பு 20px இருந்தது */
    padding-right: 8px !important; /* முன்பு 20px இருந்தது */
    width: 100% !important;
    max-width: 100% !important;
  }

  /* 2. Grid Container முழு அகலம் */
  .tools-grid {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
  }

  /* 3. ஒவ்வொரு கார்டும் (Box) முழு அகலத்திற்கு விரிய */
  .tool-category-card {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }
}
/* =========================================
   FIX: TOOL TAGS - FIT TO TEXT WIDTH (Mobile)
   ========================================= */
@media (max-width: 768px) {

  /* 1. கிரிட் அமைப்பை எடுத்துவிட்டு Flex-க்கு மாற்றுதல் */
  .tool-tags {
    display: flex !important;
    flex-wrap: wrap !important; /* இடம் இல்லை என்றால் அடுத்த வரிக்கு செல்லும் */
    gap: 10px !important;       /* பட்டன்களுக்கு நடுவில் இடைவெளி */
    justify-content: flex-start !important; /* இடது பக்கம் (Left) ஒட்டி இருக்கும் */
    width: 100% !important;
  }

  /* 2. பட்டன் அகலம் எழுத்துக்கு ஏற்ப மட்டும் இருக்க (Auto Width) */
  .tool-tags span {
    width: auto !important;      /* Full width வேண்டாம், எழுத்துக்கு ஏற்ப மாறும் */
    max-width: 100% !important;
    flex: 0 0 auto !important;   /* இழுத்து விரியக்கூடாது */
    
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    
    padding: 8px 14px !important; /* உள்ளே தேவையான இடைவெளி */
    height: 38px !important;      /* உயரத்தைச் சீராக்க */
    
    font-size: 13px !important;
    white-space: nowrap !important; /* எழுத்து மடியாமல் இருக்க */
  }
  
  /* ஐகான் அளவு */
  .tool-tags span img {
      margin-right: 8px !important;
  }
}
/* =========================================
   FIX: EXACT BACKGROUND COLOR FOR ALL BOXES
   ========================================= */
@media (max-width: 768px) {

  /* Foundations Section-ல் உள்ள எல்லா பாக்ஸ்களுக்கும் */
  .foundation-visual,
  .visual-github,
  .visual-terraform,
  .visual-services,
  .visual-chart,
  .visual-aiops,
  .visual-networking,
  .visual-cost,
  .visual-performance {
    /* படத்தில் உள்ள சரியான டார்க் கலர் */
    background-color: #0b0c15 !important; 
    
    /* அதைச் சுற்றி மெல்லிய பார்டர் */
    border: 1px solid #2b2e40 !important; 
    
    /* ஓரங்கள் வளைந்து இருக்க */
    border-radius: 16px !important;
  }
}

/* =========================================
   FIX: SERVICES CARD (Exact Colors)
   ========================================= */
@media (max-width: 768px) {

  /* 1. Services Card Background (பின்னணி நிறம்) */
  .foundation-visual.visual-services {
    background-color: #0b0c15 !important; /* சரியான டார்க் கலர் */
    border: 1px solid #2b2e40 !important;
    border-radius: 16px !important;
  }

  /* 2. Search Box & Dropdown Colors (உள்ளே உள்ள இன்புட் பாக்ஸ்) */
  .visual-services .search-input-wrapper input,
  .visual-services select {
    background-color: #161828 !important; /* இன்புட் பாக்ஸ் பின்னணி */
    border: 1px solid #2b2e40 !important; /* இன்புட் பார்டர் */
    color: #9597ad !important; /* எழுத்து நிறம் */
    border-radius: 8px !important;
  }

  /* 3. Table Text Colors (அட்டவணை எழுத்துக்கள்) */
  .visual-services .table-header span {
    color: #9597ad !important; /* Header Text Grey */
  }

  .visual-services .table-row span {
    color: #ffffff !important; /* List Text White */
  }
  
  /* 4. Table Border (கோடுகள்) */
  .visual-services .table-header,
  .visual-services .table-row {
    border-bottom: 1px solid #2b2e40 !important; /* மெல்லிய கோடு */
  }
}