html {
    font-size: 100%;
    box-sizing: border-box;
    scroll-behavior: smooth;
    height: 100%;
    font-family: 'Inter', sans-serif;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.865rem;
    font-weight: 300;
    color: hsl(0, 0%, 0%);
    line-height: 1.4;
    min-height: 100vh;
}

.main-container {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: rgb(255, 255, 255);
}



h3 {
    letter-spacing: 1px;
}

h1 {
    font-size: 1.65rem;
    color: #0044cc;
    margin-bottom: 30px;
    text-align: center;
    margin-top: 30px;
}

h2 {
    font-size: 1.5em ;
    margin-bottom: 10px;
    margin-top: 25px;
    color: hsl(213.23deg 71.85% 19.79%);
}

h3 {
    font-size: 1rem;
    color: #117187;
    padding: 0;
    padding-bottom: 0.5rem;
}

hr {
    color: #ccc;
}

.container {
    width: 100%;
}

p {
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;
    font-size: 0.9rem;
    margin-left: 20px;
    margin-right: 20px;

}

a {
    text-decoration: none;
    color: #007acc;
}



button {
    padding: 0.5rem 1rem;
    /* text-transform: uppercase; */
    font-size: 1.2rem;
    margin: 1rem 0;
    border-radius: 10px;
    border: 0;
}

.img-responsive {
    width: 70%;
    height: auto;
    display: block;
    aspect-ratio: attr(width) / attr(height);
    /* box-shadow: 4px 4px 8px rgb(110 121 125 / 71%); */
    border-radius: 10px;
    margin: 0 auto 5px auto;
}

@media (max-width: 768px) {
    main .img-responsive {
        width: 95% /* Increase size for mobile */ !important;
    }
}

main .img-responsive {
    max-width: 100% !important;
    height: auto !important;
    display: block;
    margin: 0 auto !important; /* centers image */
    border-radius: 10px;
}

/* .img-responsive {
    width: 70%;
    height: auto;
    display: block;
    aspect-ratio: attr(width) / attr(height);
    margin-bottom: 5px;
    box-shadow: 4px 4px 8px rgb(110 121 125 / 71%);
    border-radius: 22px;
    margin-left: 15%;
} */

.show-non {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: attr(width)/attr(height);
    text-align: center;
    margin: 0 auto;
    margin-bottom: 1rem;
}

.show-lft {
    text-align: left;
    margin: 0;
}

figure {
    text-align: center;
    font-weight: 600;
    margin: 1rem 0;
}

figure figcaption {
    margin-bottom: 0.5rem;
    margin-top: 5px;
    font-weight: normal;
    margin-left: 15%;
    width: 70%;
    font-size: 0.85em;
}

.m-top {
    margin-top: 1rem;
}

.full-width {
    width: 95vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 0%;
}

.col-wht {
    color: hsl(0deg, 3%, 94%);
}

.col-red {
    color: hsl(0, 100%, 50%);
}

.bod-bot {
    border-bottom: 1px dashed #fff;
}

@media (min-width: 65.625em) {
    .show-non {
        width: auto;
        display: block;
        /* box-shadow: 4px 4px 8px rgb(110 121 125 / 71%); */
        border-radius: 22px;
    }
}

.wordbold {
  font-weight: bold;
}

.hamburger {
    position: absolute;
    top: 7em;
    right: 5%;
    margin-left: -2em;
    margin-top: -45px;
    width: 2em;
    height: 45px;
    z-index: 5;
}

.hamburger div {
    position: relative;
    height: 7px;
    border-radius: 3px;
    background-color: #333;
    margin-top: 1px;
    transition: all 0.3s ease-in-out;
}

#toggle {
    display: none;
}

#toggle:checked+.hamburger .top { 
    transform: rotate(-45deg);
    margin-top: 25px;
}

#toggle:checked+.hamburger .bot {
    opacity: 0;
    transform: rotate(45deg);
}

#toggle:checked+.hamburger .mid {
    transform: rotate(45deg);
    margin-top: -7px;
}

#toggle:checked+.hamburger+.nav-items {
    top: 100px;
    display: block;
}


.header {
    background-color: rgb(255, 255, 255);
    padding: 1rem;
    padding-left: 2rem;
    padding-right: 2rem;
    display: grid;
    grid-template-columns: 130px 1fr;
    position: fixed;
    width: 100%;
    z-index: 100;
    box-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.05);
}

.header .logo {
    grid-row: 1/3;
}

.header .callus {
    grid-column: 2;
    text-align: right;
    color: #032a53;
    font-weight: 600;
}

.header .nav {
    grid-column: 2;
    grid-row: 2/2;
    text-align: right;
    margin-left:auto ;
}

.header .nav-item {
    padding-left: 20px;
}

.header .nav-item a:link,
.header .nav-item a:active,
.header .nav-item a:hover {
    text-decoration: none;
    font-size: 1.125rem;
    color: #000;
   
}

.header .nav-item a:focus {
    outline: 0;
}

.header .nav-items {
    position: absolute;
    top: 106;
    left: 0px;
    flex-direction: row;
    flex-basis: 100%;
    list-style: none;
    text-align: left;
    background-color: hsl(0, 0%, 100%);
    width: 100%;
 
}

.header .dropdown-items {
    list-style: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 160px;
    border: 1px solid #fff;
    border-radius: 12px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    margin-top:8px ;
}

@media (min-width: 65.625em) {
.header .dropdown-items {
    list-style: none;
    position: absolute;
    background-color: #fafafa;
    min-width: 160px;
    border: 1px solid #fff;
    border-radius: 12px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    margin-top: 16px;
    margin-left:-50px ;
}
}


.header .nav-item .dropdown-items a {
    
    color: #000000;
    display: flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}



.header .dropdown-items li:hover {
    background-color: hsla(216, 2%, 41%, 0.16);
    border-radius: 5px;
}



.header .dropdown-items>.active,
.header .dropdown-items>.active:hover {
    background-color:hsl(202.15deg 14.96% 80.73%) ;
    /* border-radius: 10px; */
}

.header .hide {
    display: none;
}

.header .show {
    display: block;
}

.header .caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-top: 4px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

@media (min-width: 65.625em) {
    .header {
        padding-bottom: 0;
    }

    .header .hamburger {
        display: none;
    }

    .header .nav-items {
        display: flex;
        flex-direction: row;
        position: inherit;
    }
}

.front {
    width: 100%;
    background-color: #f7edee;
    width: 100%;
    display: none;
}

@media (min-width: 65.625em) {
    .front {
        display: block;
        margin-top: 79px;
        border-radius: 20px;
    }
}

.front .topimg {
    display: none;
}

.front .frontimg {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    align-items: center;
    /* height: 225px; */
}

.front .frontimg img {
    width: 100%;
    display: block;
    border-radius: 10px;
}

.front .frontimg .cards-rht,
.front .frontimg .cards-lft {
    text-align: center;
    color: #000000;
}

.front .frontimg .cards-lft {
    font-size: 1.2rem;
    letter-spacing: 0.5px; /* reduce slightly */
    padding-top: 20px;
    text-align: left;
}

.front .frontimg .cards-lft .newrel {
    margin-bottom: 8px;    /* 👈 clean spacing */
    line-height: 1.5;
    /* text-align: center; */
    /* margin-left:14.8% ; */
}

.front .frontimg .cards-lft .title {
    font-size: 2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #000000;
    margin-top: 5px; 
    margin-bottom: 0px;
    /* text-align: center; */
    /* margin-left: 14% ; */
}
.front .frontimg .cards-lft p {
    margin-left: 0;
    margin-right: 0;
}
.front .frontimg .cards-lft .sub-title {
    font-size: 1.25rem;
    font-weight: 100;
    margin-top: 0px;
    line-height:1.2;
    margin-bottom: 12px;
    padding: 0;
    letter-spacing: 0.5px;
}
.trusted-text {
    font-size: 1rem;
    margin-top: 10px;   
    letter-spacing: 0.01px;
}

.btn-group {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    justify-content: flex-start;
    padding-left: 0;
}
.front .frontimg .cardimg img {
    width: 100%;
    display: block;
}

.front .frontimg .card {
    display: grid;
    grid-template-columns: 80px 1fr;
    row-gap: 1rem;
    justify-content: center;
    align-items: center;
    padding: 10px;
    color: #312e2e;
}

.front .frontimg .cardcontent a {
    color: #007acc;
}

.front .frontimg .colwht {
    color: rgb(0, 0, 0);
}

.front .frontimg .cardcontent {
    padding-left: 1rem;
    text-align: left;
    font-size: 1.1rem;
}

.main {
    width: 100%;
    padding: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
    margin: 0 auto;
    margin-bottom: 2rem;
    margin-top: 5.5rem;
}

.main .m-top {
    margin-top: 1rem;
}

.main ul{
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    margin-right: 20px;
    list-style-type: disc;
    margin-left: 40px;
}

.main ol {
    margin-left: 40px;
    margin-bottom:  20px;
}

.main a {
    color: #007acc;
    font-weight: 400;
}

.main .container {
    width: 90%;
    margin: 0 auto;
}

.main .container ul{
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    margin-right: 20px;
    list-style-type: disc;
    margin-left: 40px;
    text-align: justify;
}
.main .container ol {
    margin-left: 40px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.main .container .center {
    text-align: center;
    margin: 0 auto;
}

.main .container .whtpapers {
    border: 2px solid #32595f;
    padding: 1em;
    text-align: center;
    min-width: 200px;
}

.main .container .box2 {
    width: 100%;
    margin-bottom: 1rem;
}

.main .container .mainbdy {
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
    justify-content: center;
}

.main .container .mainbdy ul,
.main .container .mainbdy h3,
.main .container .mainbdy h2,
.main .container .mainbdy p,
.main .container .mainbdy ol {
    text-align: justify;
}

.main .container .shipping {
    font-size: 0.865rem;
    color: hsl(220deg, 50%, 45%);
}

.main .container .hsub {
    color: #f60;
    font-size: 30px;
}

.main .container .suptxt {
    color: red;
    font-size: 2rem;
}

.main .card-items {
    display: grid;
    grid-template-columns: 1fr;
}

.main .card-item {
    margin-bottom: 0rem;
}

.main .card-btn {
    margin: 1rem 0;
    text-align: center;
}

.main .btn[role=button] {
    padding: 0.5rem 1rem;
    background-color: #e6f2f7;
    /* background-image: -o-linear-gradient(top, #fff 0, #e0e0e0 100%); */
    /* background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#cdcdcd)); */
    border-radius: 10px;

    box-shadow: rgba(0, 0, 0, .2) 15px 28px 25px -18px;
    /* box-shadow: rgba(26, 25, 25, 0.3) 2px 8px 8px -5px; */
    cursor: pointer;
    transition: all 235ms ease-in-out;
    touch-action: manipulation;
}

.main .btn:hover{
    /* background-color:#a5bacc ; */
    /* background-image: none;  */
    box-shadow: rgba(0, 0, 0, .3) 2px 8px 8px -5px;
    transform: translate3d(0, 2px, 0);
   
}

.main .btn:focus {
    box-shadow: rgba(0, 0, 0, .3) 2px 8px 4px -6px;
  }

.main .btn-red {
    background-color: #cf0000;
    background-color: #cf0000;
    padding: 0.8rem 1.2rem;
    color: white;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 8px;
    margin-top: 1rem;
    letter-spacing: 1px;
    width: 156px;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.main .btn-red a {
    color: #007acc;
}

.main .info {
    background-color: hsl(48deg, 98%, 53%);
    color: #000;
}

.main .info2 {
    background-color: hsl(48deg, 100%, 80%);
}

.main blockquote {
    padding: 10px 20px;
    margin: 0 0 20px;
    font-size: 0.9rem;
    background-color: #c1c7d194;
    border-radius: 20px;
    box-shadow: 4px 4px 8px rgb(110 121 125 / 71%);
    border-left: 5px solid #072f89;
    text-align: justify;

}

.main .panel {
    width: 80%;
    text-align: center;
    margin: 0 auto;
    margin-top:10px ;
    border: 1px solid hsl(0, 0%, 100%);
}

.main .panel_heading {
    background-color: hsl(205.44deg 25.92% 77.88%);
    padding: 0.5rem 0;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    font-weight: 600;
    color: #181818;
}

.main .panel_bdy {
    text-align: left;
    padding: 1rem;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    background-color: white;
    box-shadow: 4px 4px 8px rgb(68 73 75 / 71%);
}

@media (min-width: 65.625em) {
    .main .mainbdy2 {
        padding-top: 1rem;
        display: flex;
        flex-direction: row-reverse;
    }
    .main .video-embed {
        padding-top: 1rem;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .main .mainbdy2 .lft-cont {
        width: 70%;
    }

    .main .video-embed .right-cont{
        width: 30%;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
    }

    .main .video-embed .left-cont{
        width: 70%;
    }

    .main .mainbdy2 .rht-cont {
        width: 30%;
    }

    
    .main .card-items {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 1rem;
        margin-top: 38px;
    }

    .main .card-items .card-item {
        position: relative;
        margin-bottom: 1.5rem;
        border-radius: 20px;
        padding: 10px;
        padding-left: 20px;
        background-color: rgb(255 255 255);
        text-align: justify;
        box-shadow: 0px 4px 8px rgb(181 187 189 / 71%);
    }
    /* .main .card-items .card-item:hover {
        transform: translateY(-2px);
        background-color:#f3f0e9a1 ;
    }
     */

    .main .card-items .card-item .card-btn {
        position: static;
        margin: 1.25rem 0 0.25rem;
        text-align: center;
    }

    .main .card-items-equal .card-item {
        display: flex;
        flex-direction: column;
        padding: 20px;
    }

    .main .card-items-equal .card-item ul {
        flex: 1;
    }

    .main .card-items .card-item .cent {
        width: 100%;
        text-align: center;
    }

    .main .container .mainbdy {
        display: grid;
        grid-template-columns: 1fr 1fr;
        text-align: center;
        padding: 14px;
        background-color: white;
        gap: 2rem;
        border-radius: 20px;
        box-shadow: 4px 4px 8px rgb(110 121 125 / 71%);
    }

    
    .main .container .box2 {
        margin-left: auto;
        padding: 2rem;
        max-width: 200px;
        margin-top: -85px;
        margin-bottom: 0;
    }
}

/*youtube video embedding*/
.thumbnail {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  cursor: pointer;
  width: 100%;
  max-width: 350px;
}

.thumb-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden; /* so child elements stay inside */
}

.thumb-img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.video-duration {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: sans-serif;
  letter-spacing: 0.5px;
}

.video-name{
    margin-top: 8px;
    font-size: 0.85rem;
    text-align: center;
    font-weight: 700;
    color: #222;
    word-wrap: break-word;
    font-family: sans-serif;
    line-height: 1.3;
}
.video-name:hover{
    text-decoration: underline;
}


@media (max-width: 1049px){
    .main .video-embed{
        padding-top: 1rem;
    }

    .main .video-embed .left-cont{
        width: 100%;
    }

    .thumbnail {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        cursor: pointer;
        width: 100%;
        max-width: none;
    }

    .thumb-img img{
        width: 100%;
        aspect-ratio: 16/9;
        height: auto;
    }

    .video-name{
        font-size: 1.2rem;
    }
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  padding: 10px 20px;
  border-radius: 50%;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(231, 228, 228, 0.8);
  justify-content: center;
  align-items: center;
}

.modal-content {
  position: relative;
  width: 80%;          /* take 80% of modal width */
  max-width: 900px;    /* don't get too big */
  aspect-ratio: 16 / 9;
  background: rgba(231, 228, 228, 0.8);
}

.modal-content iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.last-updated {
    font-size: 12px !important;
    color: #666;
    margin-top: -0.5rem;
    margin-bottom: 1.25rem;
    text-align: right;
}

.release-tag {
    font-size: 0.6em;
    font-weight: 400;
    color: #0078b8;
    vertical-align: middle;
    margin-left: 0.4em;
}

.custom-red-btn {
    background-color: #e15151;
    border: none;
    border-radius: 10px;
    padding: 12px 22px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    cursor: pointer;
    margin: 0;
    transition: all 0.2s ease;
}

.custom-red-btn a {
    color: white;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
}

.custom-red-btn:hover {
    background-color: #c94444;
    transform: translateY(-2px);
}

.newrel {
    font-size: 1rem;
    color: #d94a4a;   /* softer red */
    line-height: 1.5;
    opacity: 0.9; 
    margin-bottom: 8px; 
}
.break-line {
    display: block;
    margin-top: 3px; /* reduce from 6px → tighter */
}

.highlight {
    color:  #0d6efd; /* brighter than current blue */
    font-weight: 500;
}





.close {
  position: absolute; /* ✅ now positioned relative to .modal-content */
  top: -45px;
  right: -25px;
  font-size: 2.5rem;
  color: rgb(253, 3, 3);
  cursor: pointer;
  padding: 4px 10px;
}

.math-container {
  max-width: 100%;
}

@media (max-width: 768px) {
  .math-container {
    overflow-x: auto;
    transform: scale(0.85);
    transform-origin: left top;
    max-width: 100%;
  }
}


.topimg {
    display: none;
}

@media (min-width: 65.625em) {
    .main-nomar {
        margin-top: 0;
    }

    .topimg {
        display: block;
        background-color: #fff;
        margin-top: 91px;
    }
}



.marbot {
    margin: 1rem 0;
}

strong {
    font-weight: bold;
    color: #007acc;
}



.footer {
    margin-top: auto;
    background-color: #17409124;
    display: grid;
}

.footer div {
    padding: 1rem;
    text-align: center;
}

@media (min-width: 65.625em) {
    .footer {
        grid-template-columns: 1fr 1fr 1fr;
        justify-content: center;
        align-items: center;
    }
}


.banner-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
}



.ai-btn {
    display: flex; 
    align-items: center; 
    justify-content: center;
    background-color: #e15151; 
    color: rgb(0, 0, 0);
    padding: 0.6rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
    
    font-size: 1.0rem;
    height: 40px; 
    box-sizing: border-box; 
    margin-top: 0.5rem;
}

.ai-button-shadown{
    border-radius: 16px;
   
}

@media (min-width: 65.625em) {
    .ai-button-shadown{
        border-radius: 10px;
        box-shadow: 0 4px 6px rgb(0 0 0);
        background-color: #0761c7;
    }
}

.ai-button-shadown:hover {
    background-color: #0761c7; 
    transform: translateY(-2px);
}
.ai-btn:hover{
    background-color: #0761c7; 
}

@media (min-width: 65.625em) {
    .netsim-ai-banner {
        padding: 1.2rem 0; 
    }
    
    .banner-content {
        flex-direction: column;
        margin-top: 39px;
    }
    
    .ai-btn {
        margin-top: 0; 
    }
}


ul.dropdown-items {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #fff; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    max-height: 0;
    overflow: hidden;
    transform-origin: top;
    transition: transform 0.5s ease, max-height 0.5s ease, opacity 0.3s ease, padding 0.3s ease;
    opacity: 0;
    transform: scaleY(0);
    display: block !important;
  }

  
  

  ul.dropdown-items li {
    padding: 2px 10px;
    font-size: 1.125rem;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 5px;
    display: flex;
    align-items: center;
    cursor: pointer;
}


  
 
  ul.dropdown-items li:hover {
    background-color: #f0f0f0; 
    color: #007bff; 
    cursor: pointer; 
  }

  ul.dropdown-items li a {
    width: 100%;      /* Make anchor fill the li */     /* Optional */
    color: inherit;
    text-decoration: none;
    display: block; 
  }
  
  .dropdown-items li a svg {
    margin-right: 15px; 
}
  
  
  
.dropdown-items.show {
    padding: 12px;
    border-radius: 10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-height: 80vh;     /* responsive height */
    /* overflow-y: auto; */
    opacity: 1;
    transform: scaleY(1);
}





.header .nav-item a:hover {
    color: blue; 
}


.scrolling-container {
    /* width: 106%; */
    overflow: hidden;
    /* margin-left: -3.5%; */
    /* background-color: #d9cbcb; */
    /* padding-top: 20px; */
    position: relative;
    /* border-bottom-left-radius: 20px; */
    /* border-bottom-right-radius: 20px; */
    margin-top: 40px;
}


.scrolling-content {
    display: flex;
    white-space: nowrap;
    animation: scroll 35s linear infinite;
}



@media (min-width: 65.625em) {
    .scrolling-content {
        display: flex;
        white-space: nowrap;
        animation: scroll 35s linear infinite;
    }
}



.item {
    margin-right: 50px;
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
}

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-700%);
    }
}


@media (min-width: 65.625em) {
    @keyframes scroll {
        0% {
            transform: translateX(5%);
        }
        100% {
            transform: translateX(-140%);
        }
    }
}



.table_res{
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    box-shadow: 0 4px 6px rgb(0 0 0 / 34%);
}

table, th,  td {
    border: 1px solid #ddd;
}

th, td {
    padding: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: left;
}

th {
    background-color: #f4f4f4;
    color: #333;
}

 tr:nth-child(even) {
    background-color: #f9f9f9;
}

tr:hover {
    background-color: #eaeaea;
}

.slot-numerology-note {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .table_res table {
        font-size: 0.8rem;
    }

    .table_res th,
    .table_res td {
        padding: 8px 6px;
    }
}

abbr {
    text-decoration: none;
}

/* .NetSim-Container {
    background-color: #ffffff;
    border-radius: 8px;
    margin-left: 0;
    text-align: justify;
    margin-right: 35px;
   
} */

.NetSim-Container h2 {
    display: flex;
    justify-content: center;
    font-size: 2.25rem; 
    font-weight: 700;
    color: #1d3a63; 
    margin-bottom: 1.5rem;
    line-height: 1.25; 
}

/* .NetSim-Container p {
    font-size: 1.125rem; 
    color: #000000;
    margin-bottom: 2rem;
} */

.NetSim-ai-work {
    background-color: #e2eefd;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
   
    margin: auto;
    transition: all 0.3s;
    text-align: justify;
}

.NetSim-ai-work:hover {
    transform: translateY(-4px); 
}

.NetSim-ai-work h3 {
    font-size: 1.875rem; 
    font-weight: 600; 
    color: #1d3a63; 
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}


.feature-list li {
    display: grid;
    grid-template-columns: 0.1fr 1fr;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #000000;
}

.feature-list li svg {
    margin-right: 1rem;
    width: 1.5rem;
    height: 1.5rem;
    color: #2563eb; 
}

.feature-list li span {
    font-size: 1.125rem;
    color: #1f2937;
}

.NetSim-ai-applications, .NetSim-ai-underdevelopment {

    padding: 2rem;
    margin-bottom: 2rem;
}



.NetSim-ai-applications h3,
.NetSim-ai-underdevelopment .coming-soon {
    font-size: 1.875rem; 
    font-weight: 600; 
    color: #1d3a63; 
    margin-bottom: 1.5rem; 
}

.NetSim-ai-applications ul,
.NetSim-ai-underdevelopment ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: justify;
}

.NetSim-ai-applications li,
.NetSim-ai-underdevelopment li {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #000000; 
}

.NetSim-ai-applications li svg,
.NetSim-ai-underdevelopment li svg {
    margin-right: 1rem; 
    width: 1.5rem;
    height: 1.5rem;
    color: #2563eb; 
}

.NetSim-ai-underdevelopment .coming-soon {
    font-size: 1.125rem; 
    font-weight: 600;
    color: #1d3a63; 
    margin-bottom: 1.5rem;
}

.NetSim-ai-applications li span,
.NetSim-ai-underdevelopment li span {
    font-size: 1.125rem;
    color: #1f2937; 
}


.button-container {
    text-align: center;
    margin: 30px auto;
}

.download-button {
    display: flex;
    background-color: #003767;
    padding: 14px 24px;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 300px; 
    text-align: center;
    padding-left: 40px;
}

.download-button,
.download-button:hover,
.download-button:visited,
.download-button:active {
    color: white !important;
    text-decoration: none !important;
}

.download-button:hover {
    background-color: #065499;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.download-button:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}


.button-main-text {
    display: block;
    font-weight: bold;
    font-size: 18px;
   
}

.button-version {
    display: block;
    font-size: 13px; 
    font-weight: normal;
    line-height: 1.2;
}


.netsim-grid-container {
    display: block;
}

@media (min-width: 65.625em) {
    .netsim-grid-container {
        display: flex;
    }
}

.active1 {
    background-color: #f0f0f0;
    padding:5px;
    border-radius: 5px;
}

.subtitle-blue {
    font-size: 1.25rem;
    color: #0056b3;
    font-weight: 600;
    margin-top: -0.5rem;
}

.figure-caption-black {
    font-size:0.85rem;
    text-align: center;
    font-style: italic;
    color: #000;
    margin-top: 8px;
}

.analysis-note {
    margin-top: 30px;
}

/* Dropdown category headers (non-interactive group labels) */
ul.dropdown-items li.dropdown-category {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #888;
    padding: 8px 10px 4px;
    border-bottom: 1px solid #e0e0e0;
    margin-top: 6px;
    pointer-events: none;
    cursor: default;
}

ul.dropdown-items li.dropdown-category:first-child {
    margin-top: 0;
}

ul.dropdown-items li.dropdown-category:hover {
    background-color: transparent;
    color: #888;
}

.last-updated {
    font-size: 0.875rem;
    color: #666;
    margin-top: -0.5rem;
    margin-bottom: 1.25rem;
}

.release-tag {
    font-size: 0.6em;
    font-weight: 400;
    color: #0078b8;
    vertical-align: middle;
    margin-left: 0.4em;
}
