html {
  scroll-behavior: smooth;
}

/* Basic reset and variables */
:root{
  --bg:#fbfbff;
  --accent:#2db7ff;
  --accent-2:#ff7b7b;
  --card:#ffffff;
  --muted:#6b7280;
  --shadow: 0 8px 20px rgba(15,23,42,0.08);
  --radius:14px;
  --container:1200px;
  --gutter:20px;
}
*{box-sizing:border-box}
body{font-family:Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial; margin:0; background-color:#fff9e7; color:#0f172a; -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale; font-size: 16px; line-height: 1.7em;}
.container{max-width:var(--container); margin:0 auto; padding:40px var(--gutter);}


/* Fonts */

h1,h2,h3,h4,h5,h6 {
    margin-top: 0px;
    margin-bottom: 20px;
}

h1 {
  font-size: 58px;
  line-height: 1em;
  font-weight: 900;
}

h2 {
  font-size: 50px;
  line-height: 1em;
  font-weight: 900;
}

h3 {
    font-size: 26px;
    line-height: 1.5em;
}

h4 {
    font-size: 24px;
    line-height: 1.5em;
}

p,a,span,label {
    margin-top: 0px;
    margin-bottom: 10px;
}

/********* Navigation Menu ***********/

.navigation-menu {
    width: 100%;
    float: left;
    display: block;
    background-color: #075e92;
    padding: 7px 0px;
    position: fixed;
    z-index: 99999;
}

.navigation-menu-container {
    width: 100%;
    float: left;
    margin-left: 0%;
    margin-right: 0%;
    display: block;
    justify-content: center;
    align-items: center;
}

.menu-container {
    width: 100%;
    margin-left: 0%;
    float: left;
    display: block;
    text-align: center;
}

.menu-container ul {
    list-style-type: none;
    padding-left: 0px;
}

.menu-container ul li {
    display: inline-block;
}

.menu-container ul li a {
    background-color: #fff;
    color: #000000;
    text-decoration: none;
    padding: 10px 15px;
    margin: 0px 2px;
    border-radius: 5px;
    font-weight: 600;
    transition: .3s ease-in-out;
    font-size: 14px;
}

.menu-container ul li a:hover {
    background-color: #f75700;
    transition: .3s ease-in-out;
    color: #fff;
}

/************ Hero **************/


.header-main {
    background-size: cover;
    background-position: center;
    width: 100%;
    display: block;
    padding: 250px 0px 30px 00px;
    float: left;
    background-attachment: fixed;
}

.header-main-box-one span {
    color: #fea93b;
}

.header-main-box-one {
    text-align: center;
    color: #fff;
    width: 80%;
    margin: 0 auto;
}


.header-main-box-two {
  text-align: center;
}

.header-main-box-two img {
    margin-top: 30px;
    width: 30px;
}

.header-paragraph {
    text-align: center;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 40px;
    line-height: 1.7em;
    font-size: 18px;
}

.header-list-btn {
    text-align: center;
    list-style-type: none;
}

.header-list-btn li {
    display: inline-block;
    margin: 0px 10px;
}


/********** Arrow Animation *************/

.down-arrow {
  animation: mymove 2s infinite;
}

@keyframes mymove {
  0% {
  translate: 0px 0px;
  }
  50% {
  translate: 0px -30px;
  }
    100% {
  translate: 0px 0px;
  }
}


/******** Buttons **************/

.btn-primary, .btn-secondary {
    border-radius: 50px;
}


.btn-primary, .btn-secondary {
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: .3s ease-in-out;
}

.btn-primary {
  background-color: #fff;
  color: #f75700;
}

.btn-secondary {
  background-color: #f75700;
  color: #fff;
}

.btn-primary:hover, .btn-secondary:hover {
    background-color: #111827;
    color: #fff;
    transition: .3s ease-in-out;
}

/********** Arrow Animation *************/

.upanddown {
  animation: mymove 2s infinite;
  margin-top: 20px;
}

@keyframes mymove {
  0% {
  translate: 0px 0px;
  }
  50% {
  translate: 0px 30px;
  }
    100% {
  translate: 0px 0px;
  }
}

/********** Image Updown Animation *************/

.cs-child-write {
  animation: mymove 2s infinite;
  margin-top: 0px;
}

@keyframes mymove {
  0% {
  translate: 0px 0px;
  }
  50% {
  translate: 0px 30px;
  }
    100% {
  translate: 0px 0px;
  }
}

/************ Banner Area ***************/

.cs-banner-area-main {
    width: 100%;
    float: left;
    display: block;
    background-color: #075e92;
}

.cs-banner-area-main-container {
    width: 100%;
    float: left;
    display: block;
    padding: 40px 80px;
    text-align: center;
    color: #fff;
}

.banner-img {
    border-radius: 30px;
    width: 500px;
    margin-bottom: 30px;
}

.cs-banner-area-main-container span {
    color: #f7e108;
}

.cs-banner-list {
    padding-left: 0px;
    list-style-type: none;
    margin-top: 50px;
}

.cs-banner-list li {
    display: inline-block;
}

.cs-banner-list li a {
    margin: 0px 15px;
}

/******** Cards ***********/

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.card {
    background: var(--card);
    border-radius: 16px;
    padding: 16px;
    box-shadow: var(--shadow);
    transition: transform .25s ease, box-shadow .25s ease;
}

.cards-sec h2 {
    text-align: center;
}

.cards-sec .container h3 {
    text-align: center;
    margin-bottom: 40px;
}

#experiments h4 {
    text-align: center;
    margin-bottom: 50px;
}

.cardone {
    background-color: #6f6c25;
    color: #fff;
}

.cardtwo {
    background-color: #025d9b;
    color: #fff;
}

.cardthree {
    background-color: #ef5105;
    color: #fff;
}

.cardfour {
    background-color: #f7b727;
    color: #fff;
}

.card p {
    line-height: 1.5em;
    color: #fff;
    font-weight: 400;
    font-size: 14px;
}

.cards img {
    width: 70px;
}

.card h5 {
    font-size: 24px;
    margin-bottom: 15px;
}

.cards-sec {
    background-color: #f5f5f5;
    padding-top: 30px;
    padding-bottom: 30px;
    display: block;
    width: 100%;
    float: left;
}

.card:hover {
    transition: .3s ease-in-out;
    transform: translate(0px, -15px);
    cursor: pointer;
}


.card ul li {
    margin-bottom: 10px;
    margin-top: 10px;
}

.cards-sec span {
    color: #f75700;
}

/************ Javascript Widget *****************/

.widget-container {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.controls label {
    display: block;
    margin-top: 15px;
}

.controls {
    width: 300px;
    display: block;
    background-color: #f5f5f5;
    border-radius: 20px;
}

.cs-java-widget-container .widget h2 {
    margin-bottom: 40px;
    margin-top: 10px;
}

div#benefitsText {
    margin-top: 30px;
    margin-bottom: 10px;
}

.controls select {
    width: 80%;
    padding: 8px;
    border-radius: 5px;
}

.preview img {
    width: 150px;
}

.cs-java-widget {
    width: 100%;
    float: left;
    display: block;
    background-color: #075e92;
}

.cs-java-widget-container {
    padding: 80px 300px;
    width: 100%;
    float: left;
    display: block;
}

.cs-java-widget-container .widget {
    background-color: #fff;
    border-radius: 30px;
    padding: 20px;
    text-align: center;
}

.cs-java-widget-container .widget span {
    color: #f78503;
}

/************* Why Is Speculative Decoding Important? ********************/

.cs-why-speculative-main {
    width: 100%;
    float: left;
    display: block;
    padding-top: 70px;
    padding-bottom: 70px;
    background-color: #fff;
}

.cs-why-speculative-container {
    width: 100%;
    float: left;
    display: block;
    padding: 0px 80px;
}

.cs-why-speculative-one {
    width: 62%;
    float: left;
    display: block;
    margin-left: 2%;
    text-align: left;
}

.cs-why-speculative-one-container {
    float: left;
    display: block;
    width: 100%;
    margin-top: 20px;
}

.cs-why-speculative-one-column {
    width: 48%;
    float: left;
    display: block;
    margin-right: 2%;
    background-color: #f78503;
    padding: 20px;
    border-radius: 20px;
    border: solid 1px #fdb2d3;
    text-align: center;
    min-height: 350px;
    color: #fff;
}

.cs-why-speculative-one-column img, .cs-why-speculative-two-column img {
    width: 150px;
}

.cs-why-speculative-two-column {
    width: 48%;
    float: left;
    display: block;
    margin-left: 2%;
    background-color: #025d9b;
    padding: 20px;
    border-radius: 20px;
    border: solid 1px #025d9b;
    text-align: center;
    min-height: 350px;
    color: #fff;
}

.cs-why-speculative-two {
    width: 34%;
    float: left;
    margin-right: 2%;
    display: block;
}

.cs-why-speculative-one span {
    color: #f7b727;
}

.cs-why-speculative-two img {
    width: 100%;
    border-radius: 20px;
}

/*********** Tabs ************/

.cs-experiments-head {
    padding-top: 0px;
    text-align: center;
    padding-bottom: 50px;
}

/* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
  margin-bottom: 30px;
    background-color: #00000000 !important;
    border: solid 0px;
}


/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
  margin: 0px 20px 0px 0px;
  color: #000;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #f75700;
    border-radius: 50px;
    color: #fff;
}

/* Create an active/current tablink class */

.tab button.active {
    background-color: #f75700;
    color: #fff;
    border-radius: 30px;
    padding: 15px 25px;
}


/* Style the tab content */
.tabcontent {
    padding: 40px 40px;
    border: 1px solid #ccc;
    border-top: none;
    width: 100%;
    background-color: #ffffff;
    float: left;
    color: #000;
    border-radius: 30px;
    box-shadow: 0px 0px 16px 2px #00000029;
}

.section-intro {
    font-size: 16px;
    color: #000;
}

.cs-points-tabs {
    width: 100%;
    display: block;
    margin: 0 auto;
    padding: 80px 100px 80px 100px;
    float: left;
    background-color: #f5f5f5;
}

.cs-points-tabs div img {
    width: 100%;
    border-radius: 20px;
}

.tab-inside-div {
    width: 48%;
    float: left;
    display: block;
    margin-left: 2%;
    text-align: left;
}

.tab-inside-image {
    width: 48%;
    float: left;
    display: block;
    margin-right: 2%;
}


.tab-inside-div h3 {
    font-size: 30px;
}

.tab-inside-div p {
    line-height: 1.7em;
    font-size: 16px;
    color: #000;
}

.cs-points-tabs .tab {
    border-radius: 10px 10px 0px 0px;
}

.tab-inside-div ul {
    padding-left: 20px;
}

.tab-inside-div ul li {
    line-height: 1.4em;
    border-bottom: solid 1px #eee;
    padding-bottom: 8px;
    padding-top: 8px;
}

/************* 4 cards ******************/

.card-one img {
    width: 100%;
}

.cards-one-thumb {
    border-radius: 20px;
    border: solid 3px #fff;
}

.cards-one {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    padding: 4rem;
    background-color: #f78503;
}

.card-one {
    padding: 0.5rem;
    border-radius: 12px;
    animation: fadeIn 1s ease;
    color: #fff;
    transition: .3s ease-in-out;
    text-align: center;
}

.card-one:hover {
    transform: scale(1.07);
    cursor: pointer;
    transition: .3s ease-in-out;
}

.card-one h4 {
    font-size: 23px;
}

.card-one p {
    font-size: 15px;
}

.cs-crads-number-one {
    width: 60px !important;
    margin-top: 18px;
    margin-bottom: 5px;
}

/************* Parallax Section ******************/

.cs-parallax-sec {
    width: 100%;
    float: left;
    display: block;
    padding-top: 80px;
    padding-bottom: 80px;
    background-size: cover;
    background-attachment: fixed;
}

.cs-parallax-sec-container {
    width: 100%;
    float: left;
    display: block;
    padding: 0px 100px;
}

.cs-parallax-sec-one {
    width: 48%;
    float: left;
    display: block;
    margin-left: 2%;
}

.cs-parallax-sec-one img {
    width: 100%;
    border-radius: 20px;
    border: solid 5px #f7b727;
}

.cs-parallax-sec-two {
    width: 48%;
    float: left;
    display: block;
    margin-right: 2%;
    text-align: left;
    color: #fff;
}

.cs-parallax-sec-two span {
    color: #f7b727;
}

.cs-parallax-sec-two h2 {
    font-size: 40px;
}

.cs-parallax-sec-two p {
    font-size: 17px;
    line-height: 2em;
    font-weight: 600;
}

/************** Footer ********************/

.cs-footer-sec {
    width: 100%;
    float: left;
    display: block;
    background-color: #0f172a;
    padding: 30px 0px;
}

.cs-footer-sec-container {
    width: 100%;
    float: left;
    display: block;
    padding: 0px 100px;
    color: #fff;
    text-align: center;
}

.cs-footer-sec-container img {
    width: 150px;
}

.cs-footer-sec h3 {
    margin-bottom: 20px;
}

.cs-foot-copyright {
    font-size: 16px;
}

/*********** Mobile Responsive *************/

@media only screen and (max-width: 980px) {

h1 { font-size: 35px !important; }

h2 { font-size: 30px !important; }

h3 { font-size: 20px !important; }

/******* Menu ********/

.navigation-menu {
    position: absolute;
}

.menu-container ul li {
    display: inline-flex;
    margin-bottom: 5px;
    margin-top: 5px;
}

/******* Banner ******/

.header-main {
    padding: 300px 0px 30px 00px;
}

.header-main-box-one {
    width: 90%;
}

.header-paragraph {
    font-size: 15px;
    margin-bottom: 0px;
}

.header-list-btn li {
    display: inline-flex;
}

.header-main-box-two img {
    margin-top: 0px;
}

.cs-why-speculative-two img {
    width: 60%;
}

/******************************/

.cs-banner-area-main-container {
    padding: 40px 30px;
}

.cs-banner-area-main-container h1 {
    font-size: 40px;
}

.banner-img {
    width: 80%;
}

.cards {
    display: block;
}

.card {
    margin-bottom: 30px;
}

.cs-banner-list li {
    margin-bottom: 40px;
}

/************** Java Widget **************/

.cs-java-widget-container {
    padding: 30px 30px;
}

.controls {
    width: 400px;
    padding: 20px;
}

.cs-why-speculative-main {
    padding-top: 30px;
    padding-bottom: 30px;
}

.cs-why-speculative-container {
    padding: 0px 30px;
}

.cs-why-speculative-two {
    width: 100%;
    margin-right: 0%;
}

    .cs-why-speculative-one {
        width: 100%;
        margin-left: 0%;
        margin-top: 20px;
    }

.cs-why-speculative-one-column {
    width: 100%;
    margin-right: 0%;
    margin-bottom: 30px;
}

.cs-why-speculative-two-column {
    width: 100%;
    margin-left: 0%;
}

/******* Tabs *********/

.cs-points-tabs {
    padding: 40px 30px 40px 30px;
}

.tabcontent {
    padding: 20px 20px;
}

.tab-inside-image {
    width: 100%;
    margin-right: 0%;
}

.tab-inside-div {
    width: 100%;
    margin-left: 0%;
}

.tab-inside-div h3 {
    font-size: 24px;
}

.cs-parallax-sec {
    padding-top: 0px;
    padding-bottom: 0px;
}

.cs-parallax-sec-container {
    padding: 40px 40px;
}

.cs-footer-sec-container {
    padding: 0px 30px;
}

.cs-parallax-sec-two {
    width: 100%;
    margin-right: 0%;
}

.cs-parallax-sec-one {
    width: 100%;
    margin-left: 0%;
}

}

@media only screen and (max-width: 768px) {

h1 { font-size: 28px !important; }

h2 { font-size: 25px !important; }

h3 { font-size: 18px !important; }

/********** Tabs *************/

.cards-one {
    display: inline-block;
    padding: 2rem;
}

.cards-one-thumb {
    width: 80% !important;
    margin: 0 auto;
    display: block;
}

#experiments {
    padding: 20px 20px 0px 20px;
}

}
