*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --bg: #26313C;
    --bg2: #111118;
    --dark: #0A0F1E;
    --pink: #D14592;
    --yellow-400: #FDE6A1;
    --gray-50: #867F7F;
    --gray-100: #626370;
    --gray-200: #E8E8EA;
    --gray-400: #C4BCC0;
    --gray-300: #4B4757;
    --teal-400: #E8F8FF;
    --gray-600: #CECECE;
    --gray-700: #EBEEF0;
    --gray-800: #D4D4D4;
    --white: #fff;
    --accent: #2D5FAC;
    --accent2: #a78bfa;
    --text: #f0f0f8;
    --muted: #484861;
    --border: rgba(255,255,255,0.07);
    --border2: rgba(255,255,255,0.12);
    --radius: 14px;
    --radius-sm: 6px;
    --nav-h: 64px;
  }
  img{ max-width: 100%;}

  html { scroll-behavior: smooth; }
  body {

   font-family: "Exo", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-300);  }

.hero-section img{ width: 100%; height: auto; object-fit: cover;}

  /* ── btn ── */

  .plus-icon {
  position: relative;
  width: 20px;
  height: 20px;
}

.plus-icon::before,
.plus-icon::after {
  content: "";
  position: absolute;
  background-color: var(--gray-50);
}

/* Horizontal line */
.plus-icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/* Vertical line */
.plus-icon::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

  /* ── STICKY NAV ── */

  .inpage-nav {
    position: sticky;
    top: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between; margin-top: 30px;
    
  }
  .inpage-nav .inpage-nav-content {
    display: flex;
    align-items: center; background-color: var(--white);
    justify-content: space-between;border: 1px solid #cececead;padding:15px; border-radius: var(--radius-sm); margin-bottom: 30px;
    }
  .uniform-space{ margin-top: 30px !important; margin-bottom: 30px !important;}

  .lead-text{color: var( --pink); font-size: 20px;} 

  .inpage-nav ul {
    display: flex;
    gap: 4px;
    list-style: none;
  }
  .inpage-nav a {
    display: block;
    padding: 8px 22px;
    color: var(--gray-100) !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.2s, background 0.2s;
    border-bottom: 1px solid transparent;
  }
  .inpage-nav a:hover, 
  .inpage-nav a.active {
    color: var(--dark) !important;
      border-bottom: 1px solid var(--dark);
  }
  .inpage-nav a.active { color: var(--dark) !important; }

  /* ── SECTIONS ── */
  section { scroll-margin-top: 200px; }
  .usecases-section{ background-color: var(--bg); padding: 50px 0 !important;}
  .text-white{ color: var(--white) !important;}

  .container { max-width: 1680px; width: 80%;  margin: 0 auto; padding: 0 32px; }
.feature-section{padding: 50px 0 !important;}
  /* ── HERO / OVERVIEW ── */

  .overview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 72px;
  }
  .stat-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
  }
  .stat-num {
    font-size: 36px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.03em;
  }
  .stat-num span { color: var(--accent2); }
  .stat-label {
    font-size: 14px;
    color: var(--muted);
    margin-top: 6px;
  }

  /* ── SECTION HEADER ── */
  .section-header {
    margin-bottom: 0;
  }
  .section-tag {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent2);
    margin-bottom: 14px;
  }
  .section-title {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 0; color: var(--pink);
  }
  .section-desc {
    font-size: 17px;
    color: var(--muted);
    max-width: 520px;
    line-height: 1.8;
  }

  /* ── DIVIDER ── */
  .section-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0;
  }

  /* ── ACCORDION ── */
  .accordion-wrap { padding: 15px 0; }
  .arctecture{ margin: 20px 0; }
  .arctecture img{  width: 100%; height: auto;}

  .accordion-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 5px;
    flex-wrap: wrap;
    gap: 12px;
  }
  .open-all-link {
    font-size: 16px;
    color: var(--accent) !important;
    text-decoration: underline;
    font-weight: 500;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: opacity 0.2s;
  }
  .open-all-link:hover { opacity: 0.75; }
  .open-all-link svg { width: 14px; height: 14px; }

  #usecases .open-all-link { color:#fff !important}
  .accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .accordion-item {
    background: var(--white);
    border: 1px solid var(--gray-400);
    overflow: hidden;
    transition: border-color 0.25s; border-radius: 6px;
  }
  .accordion-item.open {
   border-color: transparent;
  background: #ddeef8;
  }
  .accordion-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 15px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: 20px;
    text-align: left;
    padding-left: 70px; position: relative;
  }
  .icon-holder{ background-color:#FDE6A1; width: 45px; height: 45px; border-radius: 10px; display: flex; align-items: center; justify-content: center; position: absolute; left: 15px; top: 50%; transform: translateY(-50%); }
    .icon-holder img, .icon-holder svg  { height: 25px; }
  
  .accordion-trigger-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
  }
    .accordion-trigger-text span {
    display: block; font-size: 14px; font-weight: 400; margin-top: 5px;}
  .accordion-icon {
    flex-shrink: 0;
    width: 28px; height: 28px;
   
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.3s, background 0.2s;
  }
  .accordion-item.open .accordion-icon.plus-icon::after { display: none;
}

  .accordion-icon svg { width: 14px; height: 14px; stroke: var(--accent2); }

  .accordion-body {
    max-height: 0; padding:0 20px 20px 20px;
    overflow: hidden; display: none;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
  }
  .accordion-item.open .accordion-body { max-height: 100%; display: block; }

  .accordion-item.open .accordion-content {
	background-color: #FFF;
}

  .accordion-content {
     padding: 15px;
    /* display: grid;
    grid-template-columns: 32% 65%;
    gap: 20px;
    padding: 0 28px 28px; */
    background-color: var(--gray-200);
  }
  
  
    .accordion-text{ padding:30px 0;font-family: "Exo", sans-serif;}
  .accordion-text h4 {
    font-size: 15px;
    font-weight: 700;
    color: currentColor;
    margin-bottom: 10px;
  }
  .accordion-text p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.75;
  }
  .accordion-text ul {
    list-style: none;
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
	border-radius: 8px 0 0 8px;
border-left: 2px solid #000;
background: #E8EBF185;margin-bottom: 22px;
line-height:normal; padding:15px;
  }
  .accordion-text li {
    font-size: 14px;
    color: var(--muted);
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
  .accordion-text li::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    margin-top: 9px;
  }
  .accordion-img {
    /* background: url(../images/bg-texture.png) repeat;
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
     margin-top: 25px;
    position: relative; padding: 15px; */
    margin-top: 15px;
  }
    .accordion-img img { width: 100%;}
  /* .accordion-img .img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--muted);
    font-size: 13px;
  } */
  .img-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
  }

.related-section{ padding: 50px 0;}
 
  @media (max-width: 700px) {
    .accordion-content { grid-template-columns: 1fr; }
    .overview-stats { grid-template-columns: 1fr; }
    .hero-title { font-size: 36px; }
  }
  /* card */

   .grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
      margin-bottom: 16px;
    }

    .grid-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      max-width: calc(50% - 8px);
    }

    .card {
      background: #ffffff;
      border-radius: 12px;
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }
    .related-card{ background-color: var(--gray-700) !important; 
border-top: 5px solid #72B6BA;}

 .card-header {
      padding: 20px 20px 0 20px; display: flex; align-items: center; gap: 12px;
    }
    .card-body {
      padding: 20px;
      flex: 1;
    }

    .icon {
      width: 36px;
      height: 36px;
      margin-bottom: 10px;
    }

    .aws-label {
      font-size: 14px;
      color: #5f5f5b;
      font-weight: 500;
      margin-bottom: 0;
	  padding-bottom:0px;
    }

    .card-title {
      font-size: 20px;
      font-weight: 600;
      color: #000;
      margin-bottom: 0;
    }

    .desc {
      font-size: 15px;
      color: #464646;
      line-height: 1.65;
      margin-bottom: 14px;
    }

    .badge {
      display: inline-block;
      font-size: 12px;
      padding: 4px 12px;
      border-radius: 20px;
      font-weight: 400;
    }

    .badge-teal    { background: #8ED1D5; color: #000; }
    .badge-purple  { background: #EEEDFE; color: #000; }
    .badge-gray    { background: #F1EFE8; color: #000; }
    .badge-blue    { background: #E6F1FB; color: #000; }
    .badge-coral   { background: #FAECE7; color: #000; }
    .badge-amber   { background: #FAEEDA; color: #000; }

    .card-footer {
      border-top: 0.5px solid rgba(0,0,0,0.1);
      padding:16px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 13px;
      font-weight: 500;
      color: #1a1a18;
      cursor: pointer;
      transition: background 0.15s;
    }

    .card-footer:hover {
      background: #f5f5f3;
    }

    @media (max-width: 900px) {
      .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .grid-2 { max-width: 100%; grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    @media (max-width: 500px) {
      .grid, .grid-2 { grid-template-columns: 1fr; max-width: 100%; }
      body { padding: 16px; }
    }

    @media (prefers-color-scheme: dark) {
      body { background: #1a1a18; color: #f0efe8; }
      .card { background: #2c2c2a; border-color: rgba(255,255,255,0.1); }
      .card-title { color: #f0efe8; }
      .aws-label { color: #888780; }
      .desc { color: #b4b2a9; }
      .card-footer { color: #f0efe8; border-color: rgba(255,255,255,0.08); }
      .card-footer:hover { background: #3a3a38; }
      .badge-teal    { background: #085041; color: #9FE1CB; }
      .badge-purple  { background: #26215C; color: #CECBF6; }
      .badge-gray    { background: #3a3a38; color: #D3D1C7; }
      .badge-blue    { background: #042C53; color: #B5D4F4; }
      .badge-coral   { background: #4A1B0C; color: #F5C4B3; }
      .badge-amber   { background: #412402; color: #FAC775; }
    }

    /* //cta block */

     .cta-block-dark {
      background: linear-gradient(260deg, #8834FD 1%, #728CFE 98%);
      border-radius: 6px;
      padding: 28px 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px; margin: 30px 0; color: var(--white);
    }

       .cta-block-light {
      background: #ddeef8;
      border-radius: 6px;
      padding: 28px 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px; margin: 30px 0;
    }

   .cta-text h2 {
      font-size: 22px;
      font-weight: 700;
      color: #1a1a18;
      margin-bottom: 6px;
    }

    .cta-text p {
      font-size: 14px;
      color: #444441;
      line-height: 1.5;
    }

   .cta-text .banner-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 11px 20px;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 600 !important;
      cursor: pointer;
      white-space: nowrap;
      text-decoration: none;
      transition: opacity 0.15s;
      border: 1.5px solid transparent;
    }

    .btn:hover { opacity: 0.85; }

    .btn-dark {
      background: #1a1a18;
      color: #ffffff !important;
      border-color: #1a1a18;
    }

     .btn-white {
       background: var(--white);
      color: var(--dark);
      border-color:var(--white);
    }


    .btn-outline-white {
      background:transparent;
      color: var(--white);
      border-color: var(--white);
    }

    
    .btn-outline-dark {
      background:transparent;
      color: var(--dark) !important;
      border-color: var(--dark);
    }

    @media (max-width: 700px) {
      .banner {
        flex-direction: column;
        align-items: flex-start;
      }
      .banner-actions {
        flex-wrap: wrap;
      }
    }

    /* partner landing page css */
   /* --- Grid System --- */
        #partners-landing.card-grid {
            display: grid;
            /* Creates 4 equal columns. Responsive adjustments below. */
            grid-template-columns: repeat(4, 1fr); 
            gap:10px;
            align-items: stretch; /* Ensures all cards in a row are same height */
        }

        /* --- Card Design --- */
        #partners-landing .card {
            background: var(--bg-card);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-sm);
            padding: 0;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: var(--transition);
            border: 1px solid var(--gray-800);
            position: relative;
            overflow: hidden;
        }

        #partners-landing .card:hover {
box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
        }

        /* Top accent bar for visual style */
        #partners-landing .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--primary-color);
            opacity: 0;
            transition: var(--transition);
        }

        #partners-landing .card:hover::before {
            opacity: 1;
        }

        /* --- Card Content --- */
        #partners-landing .card-header {
           padding:1rem;  justify-content:center;
        }

        #partners-landing .brand-name {
            font-size: 14px;
            font-weight: 500;
            color: var(--gray-300);
            margin-bottom: 0.5rem;
            display: block; text-transform:uppercase;
        }

        #partners-landing .card-body {
         
            flex-grow: 1; padding-top:0px;
        }

        #partners-landing .description {
            font-size: 0.95rem; text-align:center;
            color: #473678; display: -webkit-box;
  -webkit-line-clamp: 2;   /* number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
           
        }
    #partners-landing article .card-body::after{background:#A397B4; height: 4px; width: 133px; margin: 10px auto; content:""; display: block;}
    #partners-landing article:hover .card-body::after,#partners-landing article:focus .card-body::after,#partners-landing article:active .card-body::after{background:#D14592;content:"";}


#partners-landing .card-actions .btn.btn-primary{ position: relative;}
#partners-landing .card-actions .btn.btn-primary:after { position: absolute; right: 0px; top: 0px; bottom:0px; background:var(--gray-800); height: 45px; width: 1px;  content:""; display: block;}
        /* --- Buttons --- */
        #partners-landing .card-actions {
            display: flex;
            gap: 0.75rem;
            margin-top: auto;  border-top: 1px solid var(--gray-800);
        }

        #partners-landing .btn {
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 600;
            padding: 0.6rem 1rem;
            border-radius: 6px;
            transition: var(--transition);
            cursor: pointer;
            text-align: center;
            flex: 1; /* Distribute button width evenly */
        }

        #partners-landing .btn-primary {
            background-color:transparent;
            color: #89819F;
            border:0px;
        }

      

        #partners-landing .btn-outline {
            background-color: transparent;
            color: var(--pink);
        }

     
        #partners-landing .btn-outline:hover,#partners-landing .btn-outline:focus,#partners-landing .btn-outline:active {
            background-color: transparent;
            color: var(--pink); text-decoration:underline;
        }

        /* --- Icons (SVG) Styling --- */
        #partners-landing .icon-placeholder {
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0.5rem;padding-top: 19px;
        }
        
        #partners-landing .icon-placeholder img,#partners-landing .icon-placeholder svg {
            height:55px;
        }

        /* --- Responsive Design --- */
        /* Tablet (Screens smaller than 1024px) */
        @media (max-width: 1024px) {
           #partners-landing .card-grid {
                grid-template-columns: repeat(2, 1fr); /* 2 columns */
            }
        }

        /* Mobile (Screens smaller than 600px) */
        @media (max-width: 600px) {
            #partners-landing .card-grid {
                grid-template-columns: 1fr; /* 1 column */
            }
            #partners-landing .card-actions {
                flex-direction: row;
            }
        }

                @media(min-width:992px) and (max-width:1199px){
#partners-landing.card-grid {
	grid-template-columns: repeat(3, 1fr);
}
.accordion-content {
	grid-template-columns: 1fr;
}
}

        @media(min-width:768px) and (max-width:991px){
#partners-landing.card-grid {
	grid-template-columns: repeat(2, 1fr);
}
.accordion-content {
	grid-template-columns: 1fr;
}
.accordion-text {
    padding: 00;
}
}

@media(max-width:767px){
        .container {
    max-width: 90%;
    width: 90% !important;
    padding: 0 15px;
}
#partners-landing.card-grid {
	grid-template-columns: repeat(1, 1fr);
}
.accordion-content {
	grid-template-columns: 1fr;
}
.accordion-text {
    padding: 00;
}
}



