/* Font Family */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@300&family=IBM+Plex+Sans:wght@200;300;400;500&family=Lato:wght@300;400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@400&display=swap');

:root {
    --main-color: #02000D;
    --white-0: #FFFFFF;
    --marigold: #F2A52B;
    --grey: #d9d9d9;
    --grey-1: #ebebeb;
    --purple-0: #7A3CEA;
    --purple-1: #6347D9;
    --purple-2: #2E205F;
    --purple-3: #B4A6E6;
    --purple-4: #826CE1;
    --ebony-1: #A29FA9;
}

body {
    font-family: 'IBM Plex Sans', sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

::-webkit-scrollbar {
    width: 0;/* This will hide the scrollbar */
}

#dark-theme{
    background-color: var(--main-color);
}
/*NAVBAR*/

.navbar {
    font-family: 'Lato', sans-serif;
    display: flex;
    align-items: center;
    width: 100vw;
    font-size: 16px;
    background-color: var(--main-color);
    font-weight: 400 !important;
}

.navbar .nav-item.active .nav-link,
.navbar .nav-item .nav-link:active,
.navbar .nav-item .nav-link:focus,
.navbar .nav-item:hover .nav-link {
    color: var(--purple-0);
    text-decoration: none;
}

.nav-item:hover .dropdown-menu {
    display: block;
}

/* ---- LOGO FIX (Professional Size + Consistent Across Devices) ---- */

.navbar-brand img {
    height: 50px;       /* Perfect professional size */
    width: auto;        /* Keeps correct aspect ratio */
    object-fit: contain;
}

/* Mobile: slightly smaller to fit the layout */
@media (max-width: 767.98px) {
    .navbar-brand img {
        height: 30px;
    }
}





.social-icon {
  display: inline-block;
  margin: 0 10px; /* spacing between icons */
}

.social-icon a {
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icon svg {
  width: 40px;  /* controls the size */
  height: 40px; /* keeps aspect ratio */
  display: block;
  fill: #ffffff; /* color of the icon */
}

/* Hover effect */
.social-icon a:hover svg {
  transform: scale(1.1);
  opacity: 0.8;
}



.main-gradient {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  z-index: -2;
  pointer-events: none;
}

.hero-bg-lower {
  position: absolute;
  top: 70%;             /* adjust to push it near "Get a Demo" */
  left: 50%;
  width: 150%;          /* cover horizontally */
  height: 300%;         /* cover vertically */
  transform: translate(-50%, -50%);
  z-index: -1;          /* behind buttons/video */
  pointer-events: none;
}







.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-nav li {
    margin-right: 16px;
}

.navbar-nav li:last-child {
    margin-right: 0;
}

.navbar .nav-item a {
    color: var(--white-0);
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.navbar .dropdown-menu {
    background: var(--main-color);
    border: 1px solid rgba(180, 166, 230, 0.2);
    box-shadow: 0px 1px 4px 2px rgba(165, 149, 233, 0.2);
    border-radius: 5px;
    min-width: 7rem;
}

.navbar .dropdown-menu .dropdown-item:hover {
    color: var(--purple-0);
    background: var(--main-color);
}

.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}
.dropdown-toggle::after{
    display: none;
}

#try-now-btn, #book-demo-btn {
    display: inline-block;
    text-decoration: none;
    padding: 8px 8px;
    border-radius: 6px;
    color: var(--white-0);
    font-size: 14px;
    line-height: 1.5;
    margin: 0 4px;
}

#try-now-btn {
    background: var(--marigold);
    border: 1px solid var(--marigold);
}

#try-now-btn:hover {
    background: #ffca28;
}

#book-demo-btn {
    background: var(--purple-0);
    border: 1px solid var(--purple-0);
}

#book-demo-btn:hover {
    background: var(--purple-4);
    border-color: var(--purple-4);
}

.hero-btn-container {
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  width: 100%;
  padding: 0px;
}

#get-demo-btn {
  background-color: var(--purple-0);
  color: var(--white-0);
  text-decoration: none;
  font-size: 20px;
  font-weight: 400;
  padding: 10px 20px;
  border-radius: 10px;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  width: 180px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Lato', sans-serif;
}

#get-demo-btn:hover{
    transform: translateY(-3px) scale(1.005) translateZ(0);
    transition: transform 0.3s ease;
}

/*LANDING PAGE */
.landing-container {
    padding-top: 150px;
    position: relative;
    letter-spacing: 0.03em;
    width: 100%;
    font-family: 'IBM Plex Sans', sans-serif;
}

 .main-heading {
    font-size: 60px;
    margin-bottom: 30px;
    font-weight: 300;
}
.sub-heading {
    font-size: 30px;
    font-weight: 400;
}

.sub-heading strong{
    color: var(--marigold);
}

  .feature-highlights {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-top: 40px;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }

  .feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    max-width: 320px;
  }

  .checkmark {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--purple-0);
    color: #000;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 16px;
    font-weight: bold;
    flex-shrink: 0;
  }

  .feature p {
    margin: 0;
  }

.video-container {
    height: 576px;
    width: 1024px;
    border: 1px solid #7A3CEA;
    border-radius: 20px;
    margin-top: 60px;
    background: var(--main-color);
}
.video-container video {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.main-gradient {
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.light-gradient {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    width: 100%;
}

.git-text{
    font-size: 30px;
    letter-spacing: 1.5px;
    line-height: 48px;
    font-family: 'IBM Plex Mono', sans-serif;

}

.fa-github{
    font-size: 90px;
    color: var(--white-0);
}

/* Vertical Tabs  */
a:hover,
a:focus {
    text-decoration: none;
    outline: none;
}

.vertical-tab {
    display: table;
    height: 500px;
    margin: auto;
    margin-top: 40px;
    font-family: 'IBM Plex Mono', monospace;
    width: 90%;
}

.vertical-tab .tab-content {
    color: #ffffff;
    font-size: 18px;
    display: table-cell;
    padding-left: 30px;
    font-family: 'Lato', sans-serif;
    letter-spacing: 1.4px;
    font-weight: 300;
    line-height: 28px;
}
.vertical-tab .tab-content .row{
    padding: 30px 0;
}

.vertical-tab .tab-content h3 {
    color: #9B54F8;
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 20px;
    font-family: 'IBM Plex Sans', monospace;
    letter-spacing: 1.6px;
}

.para-light{
    color: #c1c3c7;
    font-size: 17px;
    letter-spacing: 1.1px;
    font-weight: 200;
    line-height: 30px;
    font-family: 'Lato', sans-serif;
}

.para-light a{
    color: var(--purple-0);
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
}

/* Bottom Cards  */

.bottom-cards{
    color: var(--white-0);
    padding: 40px;
    border: 1px solid #ffffff37;
    border-radius: 5px;
    cursor: pointer;
    min-height: 250px;
}
.git-card{
    border-right: none;
    border-radius: 5px 0 0 5px;
}
.community-card{
    border-radius: 0 5px 5px 0;
}
.bottom-cards .heading{
    font-size: 20px;
}

.fa-star , .fa-slack{
    font-size: 32px;
}

.git-card:hover, .community-card:hover{
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(99, 71, 217, 0.05) 100%);
    cursor: pointer;
}

.git-card:hover .fa-star{
    color: var(--marigold);
}

.community-card:hover .fa-slack{
    display: none;
    color: #36C5EF;
}

.slack-icon{
    display: none;
}

.community-card:hover .slack-icon{
    display: block;
    height: 30px;
}



.light-gradient {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70%;
    transform: translate(-50%, -40%);
    z-index: -1;
    opacity: 0.8;
    pointer-events: none;
}




/* Founder Section Styles */
.founder-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(30, 144, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-image-wrapper:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(147, 112, 219, 0.4);
}

.founder-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    display: block;
}

.founder-content h2 {
    font-size: 32px;
    color: #fff;
}

.founder-content h5 {
    font-size: 18px;
    font-weight: 500;
}

.founder-content p {
    color: rgba(255, 255, 255, 0.9);
    text-align: justify;
}

.social-links a {
    color: #fff;
    font-size: 24px;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    color: #1E90FF;
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .founder-content {
        padding-left: 0 !important;
        padding-right: 0 !important;
        text-align: center;
    }
    
    .founder-content p {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
        display: flex;
    }
    
    .founder-image-wrapper {
        max-width: 300px;
        margin: 0 auto;
    }
}













/*FOOTER SECTION */
#footer {
    margin-top: 90px;
    padding-top: 10px;
    background: var(--main-color);
    color: var(--ebony-1);
    font-weight: 200;
    position: relative;
    font-size: 16px;
}

#footer form input {
    border-bottom: 1px solid var(--ebony-1) !important;
}

::-webkit-input-placeholder {
    font-size: 14px !important;
}

#footer .footer-links a {
    color: var(--white-0);
    margin-right: 32px;
    font-weight: 200;
    letter-spacing: 0.03em;
}

#footer .footer-links a:hover {
    color: var(--purple-0);
    text-decoration: none;
}

.footer-nav-heading {
    color: var(--ebony-1) !important;
    font-weight: 400;
    font-family: 'Lato', sans-serif;
}

.credits{
    font-size: 14px;
    color: #d3d3d3;
}

.credits a{
    color: var(--purple-0);
}

.icon-container{
    border: 1px solid #C6B1DD;
    background: linear-gradient(180deg, rgba(154, 77, 237, 0.29) 0%, rgba(198, 177, 221, 0.15) 80.73%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white-0);
    font-size: 18px;
}

/* Button  */
.btn {
    background-color: var(--purple-0);
    color: var(--white-0);
    letter-spacing: 0.03em;
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    text-align: center;
    font-size: 16px;
}

.btn:hover{
    cursor: pointer;
    background-color: var(--purple-0) !important;

}

.btn a {
    text-decoration: none !important;
    color: var(--white-0) !important;
}

/* Getting Started  */

.getting-started-container{
    border-radius: 10px;
    padding: 0 10px;
    margin-bottom: 100px;
    position: relative;
}

.getting-started-container .light-gradient{
    width: 150%;
    top: 100%;
}

.code{
    font-family: 'Source Code Pro', monospace;
    font-size: 16px;
    color: var(--white-0);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 30px 40px;
    border-radius: 10px;
    width: 60%;
    background-color: rgba(255, 255, 255, 0.06);
    line-height:32px;
    margin: auto;
    margin-top: 40px;
    text-align: left;
    overflow-x: auto;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.fa-clone{
    right: 20px;
    cursor: pointer;
    color: #9772db;
    opacity: 1;
    z-index: 10;
}

.nav-tabs {
    display: block;
    border-bottom: 0;
    display: flex;
    margin-bottom: 20px;
    justify-content: center;
    font-size: 16px;
}

.nav-tabs .nav-item .nav-link {
    border: none;
    color: var(--white-0);
    letter-spacing: 0.03em;
    font-weight: 200;
    padding: 5px 20px;
    margin: 10px;
    cursor: pointer;
    font-family: 'IBM Plex Sans', monospace;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    border-radius: 30px;
    border: 1px solid #C6B1DD;
    position: relative;
    background: linear-gradient(180deg, rgba(154, 77, 237, 0.29) 0%, rgba(198, 177, 221, 0.15) 80.73%);
    font-weight: 400;

}

.tab-content .para-bold{font-size: 16px !important;
line-height: 26px;}
.tab-content .para-bold a:hover ,.tab-content .para-bold a{
    color: var(--purple-1) !important;
}

/* why siglens  */

#why-siglens .main-heading{
    padding-bottom: 30px;
}

#why-siglens .container{
    min-width: 90%;
}

.carousel-item div {
    width: 89%;
    margin: auto;
}
.carousel-control-next{
    right: -50px;
}
.carousel-control-prev{
    left: -50px;
}

.carousel-item h3{
    color: var(--marigold);
}

.carousel-item p{
    color: var(--white-0);
    padding-bottom: 20px;
}

.feature-slide {
    background: linear-gradient(135deg, #0c0025, #000000);
    transition: all 0.3s ease;
    width: 100%;
    margin: auto;
    padding: 5px;
    border: 1px solid rgba(198, 177, 221, 0.4);
    box-shadow: 0 0 10px rgba(198, 177, 221, 0.5);
    border-radius: 20px;
    min-height: 530px;
    display: flex;
    align-items: center;
  }

  .feature-slide-block {
    flex: 1;
    padding: 20px;
  }

  .carousel-item h3 {
    color: var(--marigold);
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 20px;
  }

  .carousel-item p {
    color: #e0e0e0;
    font-size: 1.1em;
    margin-bottom: 20px;
  }

  .feature-img {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 25px;

  }
  .feature-img img {
    width: 450px;
    height: 450px;
    border-radius: 10px;
  }

  .carousel-indicators {
    position: relative;
    margin-top: 10px;
  }
  .carousel-indicators li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
  }
  .carousel-indicators li.active {
    background-color: #fff;
  }

  #getting-started {
    scroll-margin-top: 80px; 
  }
/* SigLens Differentiator  */

#differentiator-section .main-heading{
    padding-bottom: 30px;
}

.differentiator-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    width: 90%;
    margin: auto;
  }

  .comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    justify-items: stretch;
  }

  .comparison-card {
    background: linear-gradient(135deg, #040306, #150045);
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
    padding: 50px 30px;
    text-align: center;
    border: 1px solid rgba(198, 177, 221, 0.4);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
  }

  .comparison-card:hover {
    transform: translateY(-5px);
    border: 1px solid var(--purple-0);
  }

  .card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
    width: 100%;
  }

  .vs-title {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--marigold);
  }

  .card-benchmark-text {
    font-size: 1.3rem;
    line-height: 1.5;
    margin: 0;
    color: var(--white-0);
    flex-grow: 1;
    font-weight: 300;
  }

  .highlight {
    font-weight: 500;
  }

.cmd-box {
    white-space: pre-wrap;
    word-break: break-all;
}

.cmd-title {
    width: 60%;
    display: flex;
    margin: auto;
    margin-top: 40px;
    color: white;
    justify-content: center;
    margin-bottom: 30px;
    font-weight: 400;
    font-family: 'IBM Plex Sans', monospace;
    letter-spacing: 0.03em;
    font-size: 16;
}

.ingest-Cmd {
    margin-top: 10px;
}

.cmd-title::before {
    content: "\00a0";
}
.check-mark {
    width: 26px;
    height: 26px;
    stroke: #9176d5;
    fill: none;
    opacity: 0;
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    transition: opacity 0.8s ease-in-out, stroke-dashoffset 0s ease-in-out;
    position: absolute;
    right: 15px;
    stroke-width: 2px;
}

.check-mark.show {
    opacity: 1;
    stroke-dashoffset: 0;
}
.check-mark-data {
    width: 26px;
    height: 26px;
    stroke: #9176d5;
    fill: none;
    opacity: 0;
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    transition: opacity 0.8s ease-in-out, stroke-dashoffset 0s ease-in-out;
    position: absolute;
    right: 10px;
    stroke-width: 2px;
}

.check-mark-data.show {
    opacity: 1;
    stroke-dashoffset: 0;
}
.disappear {
    display: none;
}

.purple-btn{
    font-size: 16px;
    height: 48px;
    border-radius: 10px;
    width: 240px;
    font-weight: 600;
}

.purple-btn:hover{
    transform: translateY(-3px) scale(1.005) translateZ(0);
    transition: transform 0.3s ease;
}

#flashy-news{
    height: 60px;
    background-color: #FA8BFF;
    background-image: linear-gradient(90deg, #FA8BFF 0%, #2BD2FF 52%, #2BFF88 90%);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 18px;
}

/* Press & News */
.press-card{
    border: 1px solid rgba(198, 177, 221, 0.5);
    backdrop-filter: blur(24px);
    border-radius: 20px;
    width: 100%;
    max-width: 340px;
    height: auto;
    min-height: 350px;
    background-color: var(--main-color);
    cursor: pointer;
    transition: all 0.3s ease-out;
    position: relative;
    background-image: url('../assets/press-card-img.png');
    background-size: cover;
    background-position: center;
}
.press-card .site-name{
    color: var(--marigold);
}
.press-card .card-body{
    padding: 32px;
    letter-spacing: .02rem;
}
.press-card .card-title{
    color: var(--white-0);
    font-weight: 500;
    font-size: 24px;
}

.press-card .date{
    color: #9B54F8;
    font-size: 16px;
    font-weight: 500;
    margin-top: 14px;
}

.press-card .read-btn {
    color: var(--white-0);
    font-size: 15px;
    font-weight: 500;
    margin-top: 6px;
    position: relative;
    display: inline-block;
}

.read-btn i {
    color: var(--marigold);
    font-size: 15px;
    position: absolute;
    top: 20%;
    right: -20px;
}

.read-btn:hover .fa-arrow-right {
    transform: translateX(5px);
    transition: transform 0.3s ease;
}

.press-card:hover{
    border-color: rgb(155, 84, 247);
    transform: translateY(-3px) scale(1.005) translateZ(0);
    box-shadow: 0 0 14px rgba(198, 177, 221, 0.5);
}

/* Book Demo */
.demo-section {
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.demo-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -25%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at center, rgba(122, 60, 234, 0.1) 0%, rgba(2, 0, 13, 0) 70%);
    z-index: -1;
}

.demo-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.demo-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.demo-text {
    flex: 1;
    padding-right: 40px;
    padding-top: 40px;
}

.demo-text h1 {
    font-size: 4rem;
    margin-bottom: 30px;
    color: var(--white-0);
    font-weight: 300;
}

.demo-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 30px;
}

.demo-text ul {
    list-style: none;
    padding: 0;
}

.demo-text ul li {
    color: #ccc;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.demo-text ul li::before {
    content: '•';
    color: var(--purple-0);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -2px;
}

.calendly-inline-widget {
    flex: 1;
    height: 700px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(122, 60, 234, 0.2);
    box-shadow: 0 4px 24px rgba(122, 60, 234, 0.1);
}

.investors-screen, .angel-card a{
    color: #fff;
}

.angel-card{
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.05);
}

/* Mobile View  */
@media (max-width: 767.98px) {
    /* navbar */
    #navbarSupportedContent {
        width: 100vw;
    }

    .navbar-nav {
        border: 1px solid rgba(180, 166, 230, 0.2);
        box-shadow: 0px 1px 4px 2px rgba(165, 149, 233, 0.2);
        border-radius: 10px;
    }

    .navbar-nav li.nav-item {
        padding: 2px 0;
    }

    .navbar-nav li {
        margin-right: 0;
        background: var(--main-color);
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 0;
        padding-bottom: 0;
    }

    .navbar-toggler:active,.navbar-toggler:focus{
        outline: none;
    }

    .navbar-nav .nav-item {
        padding: 0;
    }

    .nav-item.dropdown>.dropdown-menu.show {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .nav-item.dropdown>.dropdown-menu.show a {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .nav-item.dropdown>.dropdown-menu {
        display: none;
    }

    .main-heading {
        font-size: 30px;
        margin-bottom: 20px;
    }
    /* landing page */
    .landing-container{
        overflow-x: clip;
    }

    .sub-heading{
        font-size: 18px;
    }

    .main-gradient {
        width: 200%;
        top: 80%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: -1;
    }

    .video-container{
        width: 100%;
        margin-top: 50px;
        height: 222px;
    }

    .git-text{
        font-size: 20px;
        line-height: 38px;
    }

    .feature-highlights {
        flex-direction: column;
        gap: 30px;
        margin-top: 20px;
        margin-bottom: 0;
        padding: 0 15px;
    }

    .feature {
        max-width: 100%;
        font-size: 16px;
        gap: 10px;
    }

    .checkmark {
        width: 24px;
        height: 24px;
        font-size: 14px;
    }

    /* why siglens */
    #why-siglens .main-heading{
        padding-bottom: 10px;
    }

    .carousel-item div {
        width: 100%;
        margin: 0;
    }

    .carousel-item h3{
        font-size: 18px;
    }

    .carousel-item p{
        font-size: 14px;
    }

    .feature-slide {
        width: 100%;
        min-height: 300px;
        padding: 15px;
        flex-direction: column;
        align-items: stretch;
    }

    .feature-slide-block {
        padding: 15px;
        flex: none;
        width: 100%;
    }

    .feature-img {
        padding: 15px;
        width: 100%;
    }

    .feature-img img {
        max-width: 80%;
        height: auto;
    }

    .carousel-control-next {
        right: 10px;
    }

    .carousel-control-prev {
        left: 10px;
    }

    /* SigLens Differentiator Section */

    #differentiator-section{
        padding-bottom: 10px;
    }

    .differentiator-container {
        padding: 20px 15px;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .comparison-card {
        padding: 20px;
        border-radius: 15px;
    }

    .vs-title {
        font-size: 18px;
    }

    .card-benchmark-text {
        font-size: 14px;
    }

    .carousel-control-next{
        right: -3px;
    }
    .carousel-control-prev{
        left: -3px;
    }

    .code{
        width: 90%;
        padding: 30px 10px 10px 10px;
        font-size: 14px;
    }

    .fa-clone{
        top: 10px;
        right: 10px;
    }
    .check-mark{
        top: 6px;
        right: 6px;
    }

    .git-card,.community-card{
        border: 1px solid #ffffff37;
        border-radius: 10px;
        margin: 10px;
        padding: 20px;
        min-height: auto;
    }

    #footer{
        margin-top: 60px;
        padding-top: 40px;
    }
    #footer .footer-links a {
    margin-right: 26px;
    }

    .footer-links{
        display: flex;
        align-items: center;
        flex-direction: column !important;
    }

    .footer-nav-heading{
        padding-top: 20px;
        display: block;
    }

    .vertical-tab{
        width: 95%;
        text-align: center;
        margin-top: 0px;
    }
    .vertical-tab .tab-content h3 {
        margin-bottom: 12px;
        font-size: 24px;
    }

    .vertical-tab .tab-content {
        font-size: 16px;
        display: block;
        padding: 0;
        border: none;
    }
    .vertical-tab .tab-content .row {
        padding: 20px 0;
    }

    .getting-started-container{
        margin-bottom: 50px;
    }

    #get-demo-btn, .cloud-form #submit-btn{
        width: 160px;
        font-size: 16px;
        height: 40px;
    }

    .purple-btn{
        width: 180px;
        font-size: 16px;
    }
    .demo-content {
        flex-direction: column;
        gap: 30px;
        padding: 10px;
    }

    .demo-text {
        padding-right: 0;
        padding-bottom: 30px;
        width: 100%;
    }

    .demo-text h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .demo-text p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .demo-text ul li {
        font-size: 1rem;
    }

    .calendly-inline-widget {
        min-height: 600px;
        min-height: 700px;
        width: 100%;
        height: auto;
    }
    .calendly-inline-widget iframe {
        min-height: 700px !important;
        height: 100% !important;
        width: 100% !important;
    }

    .demo-section {
        padding: 60px 15px;
    }

    .demo-container {
        padding: 0 15px;
    }
}





.coming-soon-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.notify-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.notify-form h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.email-signup {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.email-signup input {
    flex: 1;
    padding: 0.8rem 1rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.email-signup button {
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.2s;
}

.email-signup button:hover {
    transform: translateY(-2px);
}

.small-text {
    font-size: 0.9rem;
    color: #999;
}




.logo-wrap svg {
  transition: transform 0.25s ease-out, opacity 0.25s ease-out;
}

.logo-wrap:hover svg {
  transform: translateY(-1px) scale(1.02);
  opacity: 0.95;
}




footer svg {
  transition: transform 0.25s ease-out, opacity 0.25s ease-out;
}

footer svg:hover {
  transform: translateY(-1px) scale(1.05);
  opacity: 0.95;
}










