@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@300;400;600;700&display=swap'); 
@import url('https://fonts.cdnfonts.com/css/helvetica-neue-5');
@font-face {
    font-family: 'Nunito';
    src: url('/assets/fonts/static/Nunito-Regular.ttf') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Nunito';
    src: url('/assets/fonts/static/Nunito-Bold.ttf') format('woff2');
    font-weight: 700;
    font-style: normal;
}
:root {
    /* === Brand Colors === */
    --color-green: #37a873;

    /* === Text Colors === */
    --color-text-white: #FFFFFF;

    /* === Background Colors === */
    --color-bg-main: #0F0F0F;
    --color-bg-dark: #232323;
    --color-bg-card: #181818;
    --color-bg-black: #14151F;

    /* Font scale variables (optional, for easy global tuning) */
   --font-small: clamp(12px, 1vw, 14px);         
  --font-base: clamp(14px, 1.2vw, 16px);        
  --font-medium: clamp(16px, 1.5vw, 22px);       
  --font-large: clamp(24px, 2.2vw, 32px);        
  --font-xlarge: clamp(32px, 3vw, 40px);         
  --font-xxlarge: clamp(30px, 4.2vw, 60px);     
}

body {
    overflow-x: hidden !important;
    background-color: var(--color-bg-main);
    color: var(--color-text-white);
    font-family: 'Nunito', sans-serif;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

.wrapper {
    width: 100%;
    max-width: 3000px;
    margin: 0 auto;
}

ul li {
    list-style: none;
    text-decoration: none;
}

a {
    text-decoration: none;
}

.global-padding {
    padding: 4rem 10rem;
}

.p-text {
    font-size: var(--font-small);
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    font-style: 'regular';
    line-height: 22px;
    color: var(--color-text-white);
    vertical-align: middle;
    letter-spacing: 0px;
}


.sub-heading {
    font-family: 'urbanist', sans-serif;
    font-weight: 700;
    font-style: Bold;
      font-size: var(--font-medium);
    line-height: 100%;
    letter-spacing: 0px;
    vertical-align: middle;
}

.green-heading {
    font-family: 'urbanist', sans-serif;
    font-weight: 700;
    font-style: Bold;
    font-size: var(--font-xlarge);
    line-height: 1.1;
    letter-spacing: 0px;
    vertical-align: middle;
    color: var(--color-green);
}

.white-heading {
    font-family: 'urbanist', sans-serif;
    font-weight: 700;
    font-style: Bold;
    font-size: var(--font-xlarge);
    line-height: 1.1;
    letter-spacing: 0px;
    vertical-align: middle;
    color: var(--color-text-white);
}

.gradient-heading {
    font-family: 'urbanist', sans-serif;
    font-weight: 700;
    font-size: var(--font-xlarge);
    letter-spacing: 0px;
    color: #39a374;
}

.linear-text {
    background: linear-gradient(90deg,
            hsla(215, 35%, 33%, 1) 0%,
            hsla(215, 35%, 33%, 1) 50%,
            hsla(153, 58%, 45%, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.btn {
    font-size: var(--font-small);
    font-family: 'Nunito', sans-serif;
    background-color: var(--color-green);
    color: var(--color-text-white);
    font-weight: 500;
    padding: 12px 18px;
    border-radius: 10px;
    border: none;
    
}

.btn:hover {
    background-color: #2f815b;
}

/*---------- Navbar------------ */
.custom-navbar {
    background-color: var(--color-bg-main);
    padding: 10px 30px;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 10;
   box-shadow: 0 0.1px 10px #9de0c1;
}

.custom-navbar .navbar-brand img {
    max-height: 35px;
}

.custom-navbar .navbar-nav {
    margin: 0 auto;
}

.custom-navbar .nav-link {
    font-family: 'Nunito', sans-serif;
    color: #BDBFC1 !important;
    margin: 0 15px;
    font-weight: 700;
    font-size: var(--font-small);
}

/* Mobile Fullscreen Menu Styles */

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg-main);
    color: var(--color-text-white);
    z-index: 9999;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.mobile-menu-overlay.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem;
}

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

.close-btn {
    background: transparent;
    border: none;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--color-text-white);
    cursor: pointer;
    line-height: 1;
    transition: transform 0.2s ease, color 0.3s;
}

.close-btn:hover {
    transform: rotate(90deg);
    color: var(--color-green);
}

/* Mobile Nav Links */
.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
    text-align: center;
}

.mobile-nav-links li {
    margin-bottom: 1.5rem;
}

.mobile-nav-links a {
    color: #cfd1d4;
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-nav-links a:hover {
    color: var(--color-text-white);
}

.mobile-btn-container {
    text-align: center;
}


/* Navbar Toggler (Hamburger Icon) */

.navbar-toggler {
    border: none;
    background: none;
    padding: 0.25rem 0.5rem;
    outline: none;
}

.navbar-toggler-icon {
    display: inline-block;
    width: 22px;
    height: 2px;
    background-color: var(--color-text-white);
    position: relative;
    border-radius: 1px;
    transition: background 0.3s ease;
    background-image: none;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background-color: var(--color-text-white);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: -7px;
}

.navbar-toggler-icon::after {
    top: 7px;
}

/* Hide Bootstrap collapse menu on mobile */
@media (max-width: 992px) {
    .navbar-collapse {
        display: none !important;
    }
}

/*----------- Hero section--------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  color: #fff;
  display: flex;
  justify-content: center; 
  align-items: center;     
  flex-direction: column; 
  text-align: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.5);
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
  /* max-width: 800px; */
  padding-top: 98px;
}

.hero-content h1 {
  font-family: 'urbanist', sans-serif;
  font-size: var(--font-xxlarge);
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 9rem;
}

.p-width {
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Marquee logos full width */
.brand-logos {
  width: 100%;
  margin-top: 3rem;
}


/*------------- foundation section--------------- */

.foundation-bg {

    background: url('/assets/images/AI-native-foundation-2.png') no-repeat center center;
    background-size: cover;
    border-radius: 20px;
    padding: 3rem;

}
.star{
    height: 160px;
    width: 200px;
}
.video-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.ai-bg {
    border-radius: 20px;
    padding: 1rem 3rem;
    background: linear-gradient(to left, #007766 40%, #181818 60%);
}

.ai-bg p a {
    color: var(--color-text-white);
}


.ai-bg .p-text:hover {
    text-decoration: underline;
    cursor: pointer;
}

.foundation-spacing {
    padding: 0rem 12rem 0rem 0rem;
}

.card {
    background-color: #181818;
    border-radius: 20px;
    padding: 3rem !important;
    color: var(--color-text-white);
    height: 100%;
}

.card-green {
    background: radial-gradient(circle at bottom center, #37a873 0%, #14151F 55%);
    border-radius: 20px;
    padding: 1.5rem 1rem 1.5rem 3rem !important;
    color: var(--color-text-white);
    height: 100%;
}

.advantage-bg {
    background: url('https://octopus.s3.us-east-1.amazonaws.com/hybrid+1.svg') no-repeat center;
}

.box-shadow {
    box-shadow: 0 -10px 40px -10px #37a873, 0 10px 40px -10px #37a873;
}

.bg-dark {
    background-color: var(--color-bg-dark) !important;
}

.right-border {
    position: relative;
}

.right-border::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -0.5px;
    transform: translateY(-50%);
    width: 1px;
    height: 150px;
    background-color: #37a873;
}

.hybrid-section-container {
    z-index: 2;
}

.hybrid-section .card {
    height: 350px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 3rem !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.Streamlined-Integrations .card,
.Streamlined-Integrations .card-green {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 1.5rem 1rem 1.5rem 3rem !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


.hybrid-section .card-bg {
    position: absolute;
    top: 75px;
    left: -32px;
    z-index: 0;
}

.hybrid-section .card-bg-2 {
    position: absolute;
    top: 24px;
    left: 50px;
    z-index: 0;
}

.hybrid-section .card-bg img,
.hybrid-section .card-bg-2 img {
    height: 347px;
    opacity: 0.8;
    object-fit: cover;
    display: block;
    transform: translateX(-20%);
}

.hybrid-section .card-content {
    position: relative;
    z-index: 1;
}


/*----------- grid cards------------- */
.feature-card {
    perspective: 1000px;
    position: relative;
}

.card-inner {
    position: relative;
    width: 100%;
    min-height: 180px;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.card-front,
.card-back {
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    backface-visibility: hidden;
    padding: 1rem 1.5rem;
    background: var(--color-bg-dark);
    color: var(--color-text-white);
    box-sizing: border-box;
    align-items: end;
}

.card-back {
    transform: rotateY(180deg);
    background: linear-gradient(180deg, #1d6fa5 0%, #28a66a 100%) !important;
    display: flex;
    align-items: center;
}

.feature-card:hover .card-inner,
.feature-card.show-back .card-inner {
    transform: rotateY(180deg);
}

.feature-grid {
    padding-bottom: 4rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    justify-content: center;
}

.feature-card .p-text {
    font-size: 0.7rem !important;
    line-height: 1.4;
    margin: 0;
    color: var(--color-text-white);
}

.feature-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
}

.show-back .card-inner {
    transform: rotateY(180deg);
}

/* Default — show desktop image, hide mobile */
.desktop-img {
    display: inline-block;
}

.mobile-img {
    display: none;
}

/* Below 755px — switch images */
@media (max-width: 755px) {
    .desktop-img {
        display: none;
    }

    .mobile-img {
        display: inline-block;
        width: 90%;
        max-width: 400px;
        margin-top: 1.5rem;
    }
}

/*--------- CTA Section----------- */
.digital {
    background: url('https://octopus.s3.us-east-1.amazonaws.com/octopus-digital.png') no-repeat center;
    border-radius: 20px;
    background-size: cover;
    padding: 3rem 4rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
}

/* ---------slider sections-------- */

.beyond-core-section {
    margin-bottom: 5rem;
    margin-top: 5rem;
    margin-left: -3rem;
    margin-right: -3rem;
    overflow: hidden;
}

.no-side-padding {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* --- Section 1 --- */

.laptop-slider-section {
    text-align: center;
    color: var(--color-text-white);
    overflow: hidden;
    position: relative;
}

.laptop-slider-section {
    margin-right: -49px !important;
}


.laptop-slider {
    margin-right: 0 !important;
    width: 85%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    transition: transform 0.7s ease-in-out;
    gap: 1rem;
}

.laptop-img {
    width: 76%;
    max-width: 800px;
    flex-shrink: 0;
    opacity: 0.7;
    transition: all 0.6s ease;
}

.laptop-img.active {
    opacity: 1;
    transform: scale(1);
}

.tabs-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70%;
    margin: 1.5rem auto 0;
    overflow: hidden;
    position: relative;
}

.tabs {
    display: flex;
    position: relative;
    gap: 4rem;
    overflow-x: scroll;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.tab {
    font-family: 'urbanist', sans-serif;
    color: #69696D;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.tabs::-webkit-scrollbar {
    display: none;
}

.tab.active {
    background: linear-gradient(90deg, #1d6fa5 0%, #28a66a 100%);
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.underline {
    position: absolute;
    bottom: -1px;
    left: 0;
    height: 2px;
    width: 150px;
    background-color: #69696D;
    border-radius: 2px;
    transition: transform 0.4s ease;
}


.tab-arrow {
    color: #69696D;
    font-size: 22px;
    margin: 0rem 1rem;
    cursor: pointer;
    user-select: none;
}

#tabDescription2 {
    transition: opacity 0.3s ease-in-out;
    width: 70%;
    margin: 2.5rem auto 0;
    padding-bottom: 3rem;
}

#tabDescription2.fade {
    opacity: 0;
}

.right-no-spacing {
    margin-right: -50px;
}


/* --- section 2 --- */
.laptop-slider-section-2 {
    text-align: center;
    color: var(--color-text-white);
    overflow: hidden;
    position: relative;
    margin-right: -49px !important;
}

.laptop-slider-2 {
    margin-right: 0 !important;
    width: 85%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.slider-track-2 {
    display: flex;
    transition: transform 0.7s ease-in-out;
    gap: 1rem;
}

.laptop-img-2 {
    width: 76%;
    max-width: 800px;
    flex-shrink: 0;
    opacity: 0.7;
    transition: all 0.6s ease;
}

.laptop-img-2.active {
    opacity: 1;
    transform: scale(1);
}

.tabs-wrapper-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 75%;
    margin: 1.5rem auto 0;
    overflow: hidden;
    position: relative;
}

.tabs-2 {
    display: flex;
    position: relative;
    gap: 4rem;
    overflow-x: scroll;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.tabs-2::-webkit-scrollbar {
    display: none;
}

.tab-2 {
    font-family: 'urbanist', sans-serif;
    color: #69696D;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.tab-2.active {
    background: linear-gradient(90deg, #1d6fa5 0%, #28a66a 100%);
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.underline-2 {
    position: absolute;
    bottom: -1px;
    left: 0;
    height: 2px;
    width: 150px;
    background-color: #69696D;
    border-radius: 2px;
    transition: transform 0.4s ease;
}

.tab-arrow-2 {
    color: #69696D;
    font-size: 22px;
    margin: 0rem 1rem;
    cursor: pointer;
    user-select: none;
}

#tabDescription22 {
    transition: opacity 0.3s ease-in-out;
    width: 70%;
    margin: 2.5rem auto 0;
    padding-bottom: 3rem;
}

#tabDescription22.fade {
    opacity: 0;
}

.laptop-slider-section-2 {
    margin-right: -49px !important;
}

/* ---------footer------ */
.footer-icons .social-icon {
    background: var(--color-text-white);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
}

.para-width {
    width: 350px;
}

.small-heading {
    font-weight: 400;
    font-size: var(--font-small);
    color: var(--color-green);
}

.background-black {
    background-color: #181818;
}

.white-line {
    border: none;
    height: 1px;
    background-color: var(--color-text-white);
}

.footer-padding {
    padding: 4rem 4rem 1rem 4rem;
}

/* Contact Us Section  */
.hero-section-contact {
  position: relative;
  min-height: 75vh;
  color: var(--color-text-white, #fff);
  display: flex;
  background: radial-gradient(circle at 50% 44%, #37a873 0%, rgba(23, 22, 27, 0.8) 63%, rgba(17, 16, 21, 0.8) 100%),
              linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  z-index: 2;
}

.hero-section-contact h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-section-contact .p-text {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.hero-section-contact .hero-content {
  padding-top: 0;
}
 
@media (min-width: 1200px) {
  .hero-section-contact {
    min-height: 90%;
    padding: 100px 40px;
  }

  .hero-section-contact h1 {
    font-size: 3.5rem;
  }

  .hero-section-contact .p-text {
    font-size: 1.2rem;
  }
}
 
@media (max-width: 1199px) and (min-width: 768px) {
  .hero-section-contact {
    min-height: 40vh;
    padding: 80px 70px;
  }

  .hero-section-contact h1 {
    font-size: 2.5rem;
  }

  .hero-section-contact .p-text {
    font-size: 1rem;
  }
}
 
@media (max-width: 767px) {
  .hero-section-contact {
    min-height: 40vh;
    padding: 60px 20px;
    background: radial-gradient(circle at 50% 50%, #37a873 10%, rgba(17, 16, 21, 0.9) 90%);
  }

  .hero-section-contact h1 {
    font-size: 1.8rem;
  }

  .hero-section-contact .p-text {
    font-size: 0.95rem;
    padding: 0 10px;
  }
}


.form-container-calender {
    background: var(--color-bg-main);
    border-radius: 16px;
    max-width: 1000px;
    width: 100%;
    height: 100%;
}

.form-container {
    background: var(--color-bg-main);
    border-radius: 16px;
    padding: 50px;
    max-width: 869px;
    width: 100%;
    height: 100%;
}

.form-control,
.form-control:focus {
    background-color: transparent;
    border: 1px solid #69696DCC;
    border-radius: 20px;
    color: #69696D;
    padding: 14px 18px;
    transition: all 0.3s ease;
     font-family: 'Nunito', sans-serif;
    font-weight: 400;
    font-size: var(--font-small);
    line-height: 22px;

}

.form-control:focus {
    border-color: #69696de7;
    box-shadow: none;
    outline: none;
}

.form-control::placeholder {
    color: #6a6a8e;
    opacity: 1;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-label {
    color: #8a8aa8;
    font-size: 13px;
    margin-bottom: 8px;
    font-weight: 400;
}

.mb-custom {
    margin-bottom: 24px;
}

.btn-submit {
    background: var(--color-green);
    border: none;
    border-radius: 10px;
    color: var(--color-text-white);
    padding: 10px 18px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 16px;
    font-style: Bold;
    font-size: var(--font-small);
    font-family: 'Nunito', sans-serif;
    letter-spacing: 0%;
    font-weight: 400;
}


.btn-submit:hover {
    background-color: #2f815b;
}

.btn-submit:active {
    transform: translateY(0);
}

.contact-bar {
    margin-top: 5rem;
}
@media (max-width: 767px) {
 .contact-bar {
    margin-top: 0rem;
 }
}
.contact-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  flex-wrap: wrap; 
  text-align: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 20px;
}

.contact-item img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.contact-item span {
  color: #919291;
}

.address-text {
  display: flex;
  flex-direction: column;
  color: #919291;
  text-align: left;
}

/* ✅ Tablet (768px - 1199px) */
@media (max-width: 1199px) and (min-width: 768px) {
  .contact-info {
    gap: 60px;
  }

  .contact-item {
    font-size: 18px;
  }

  .contact-item img {
    width: 26px;
    height: 26px;
  }
}

/* ✅ Mobile (below 768px) */
@media (max-width: 767px) {
  .contact-info {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
    padding: 0 20px;
  }

  .contact-item {
    width: 100%;
    font-size: 16px;
    justify-content: flex-start;
  }

  .contact-item img {
    width: 24px;
    height: 24px;
  }

  .address-text {
    font-size: 15px;
    line-height: 1.4;
  }

  .contact-item span {
    display: block;
    word-break: break-word;
  }
}



/* 📱 Responsive Design  */
@media (max-width: 1200px) {
    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Medium screens */
@media (max-width: 992px) {

    .hero-content h1 {
        font-size: var(--font-xxlarge);
        line-height: 1.3;
        font-weight: 700;
        margin-bottom: 6rem;
        padding: 0 0rem;
    }

    .p-width {
        padding-top: 4rem;
        width: 450px;
    }

    .laptop-slider-section {
        margin-right: -25px !important;
    }

    .laptop-slider-section-2 {
        margin-right: -25px !important;
    }

    .global-padding {
        padding: 3rem 4rem;
    }

    .foundation-spacing {
        padding-right: 8rem;
    }


    .hybrid-section-container {
        position: relative;
        z-index: 3;
        margin-top: -712px;
        margin-bottom: 0;
    }

    .tabs {
        gap: 4rem;
    }

    .tab {
        font-size: 0.9rem;
    }


    .digital {
        background: url('https://octopus.s3.us-east-1.amazonaws.com/octopus-digital.png') no-repeat center;
        border-radius: 20px;
        background-size: cover;
        padding: 2rem 2rem;
        margin-top: 4rem;
        margin-bottom: 4rem;
    }


    .tabs {
        width: 70%;
        overflow: hidden;
        justify-content: center;
        gap: 2rem;
    }


    .tab.active {
        display: block !important;
        text-align: center;
    }

    .laptop-slider {
        width: 100%;
    }
 .laptop-slider-2 {
        width: 100%;
    }

    .laptop-slider-section .laptop-slider {
        margin-left: 37px;
    }


    .laptop-slider-section-2 .laptop-slider-2 {
        margin-left: 37px ;
    }

    .simple-laptop-slider-section .tabs {
        width: 90%;
        overflow: hidden;
        justify-content: center;
        gap: 0;
    }



    .simple-laptop-slider-section .tab {
        display: none;
        font-size: 1rem;
    }

    .simple-laptop-slider-section .tab.active {
        display: block !important;
        text-align: center;
    }


    .simple-laptop-slider-section .tab {
        display: block !important;
        font-size: 0.9rem;
    }

    .tabs-wrapper {
        width: 100%;
    }

    .tabs-wrapper-2 {
        width: 100%;
    }


    #tabDescription2,
    #tabDescription3 {
        width: 85%;

    }


    #ai-engine .global-padding {
        padding: 0;
    }
    .hybrid-section .card {
        padding: 2rem !important;
    }

    .foundation-bg {
    padding: 2rem;
}

.Streamlined-Integrations .card, .Streamlined-Integrations .card-green {
    padding: 1.5rem 1rem 1.5rem 2rem !important;
   
}
}
@media (max-width: 991px) {
    /* you can change 991px to 755px if you prefer */
    br {
        display: none;
    }

    .hero-section br {
        display: inline;
    }

    .beyond-core-section {
        text-align: center;
    }
}
@media (max-width: 854px) {

    
    .box-shadow {
        box-shadow: none;
    }

    #ai-engine .card {
        background-color: transparent;
        border-radius: 0px !important;
        padding: 0rem !important;
        height: 100%;
    }
    .p-width {
        padding-top: 3rem;
        width: 450px;
    }

    .footer .col-6,
    .footer .col-3 {
        width: 100%;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .footer .text-end {
        text-align: center !important;
    }

    .footer .footer-icons {
        justify-content: center !important;
    }

    .footer .para-width {
        width: 100%;
    }
}

/* Small screens (phones: ≤768px) */
@media (max-width: 768px) {   
     .foundation-bg {
        background-size: cover;
        padding: 1.5rem;
    }

       .p-width {
        padding-top: 3rem;
        width: 300px;
    }

    .tabs-2 {
        justify-content: flex-start;
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
        padding: 0 40px;
    }

    .tab-2 {
        flex: 0 0 100%;
        text-align: center;
        scroll-snap-align: center;
    }


    .global-padding {
        padding: 2rem;
    }

    .green-heading,
    .white-heading {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .sub-heading {
        font-size: 1rem;
    }

    .p-text {
        font-size: 0.9rem;
        line-height: 1.4;
    }


    .foundation-spacing {
        padding-right: 0;
    }

    .foundation-section .row.g-4>div {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .hybrid-section .card-bg img {
        height: 220px;
        transform: translateX(-10%);
    }

    .hybrid-section .card {
        padding: 1.5rem !important;
    }

    .card{
        padding: 1.5rem !important;
    }

    
.Streamlined-Integrations .card,
.Streamlined-Integrations .card-green {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
  padding: 1.5rem 1rem 1.5rem 1.5rem !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

    .card .row>div {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .card img {
        max-width: 70%;
    }


    .beyond-core-section {
        margin-left: -25px;
        margin-right: -25px;
    }

    .right-border::after {
        content: "";
        position: absolute;
        top: auto;
        bottom: 6.5px;
        left: 50%;
        transform: translateX(-50%);
        width: 150px;
        height: 1px;
     background: var(--color-green);
    }

    .beyond-core-section .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
        border: none !important;
        padding: 2rem 1rem;
    }


    .footer-padding {
        padding: 2rem 1rem;
    }

    .contact-info {
        gap: 25px;
        padding: 0 20px;
    }

    .contact-item {
        font-size: 13px;
    }

    .contact-item i {
        font-size: 16px;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

}

@media (max-width: 681px) {
    .tab {
        display: none;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {

    .footer .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    .form-container {
        padding: 30px 20px;
    }


    .contact-info {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    /* .contact-item {
        justify-content: center;
    } */

}
@media (max-width: 480px) {
    .global-padding {
        padding: 1.5rem;
    }

    .green-heading,
    .white-heading {
        font-size: 1.4rem;
    }

    .p-text {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .card-inner {
        min-height: 150px;
    }
}


/* ===== AI Core Loader Styles ===== */
#preloader {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, #0b0f0e 0%, #000 90%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease, visibility 1s ease;
    overflow: hidden;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

/* ===== Core Container ===== */
.ai-core {
    position: relative;
    text-align: center;
}

.core-logo {
    width: 100px;
    z-index: 3;
    position: relative;
    animation: pulseLogo 2s ease-in-out infinite, float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 25px rgba(0, 255, 153, 0.8));
}

/* ===== Rotating Rings ===== */
.ring {
    position: absolute;
    border: 1.5px solid rgba(0, 255, 153, 0.3);
    border-radius: 50%;
    animation: spin 6s linear infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring1 {
    width: 140px;
    height: 140px;
    animation-duration: 7s;
}

.ring2 {
    width: 180px;
    height: 180px;
    animation-duration: 9s;
    border-color: rgba(0, 255, 153, 0.15);
}

.ring3 {
    width: 220px;
    height: 220px;
    animation-duration: 12s;
    border-color: rgba(0, 255, 153, 0.1);
}

/* ===== Core Glow ===== */
.core-glow {
    position: absolute;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(0, 255, 153, 0.25) 0%, transparent 80%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: corePulse 2.5s ease-in-out infinite;
}

/* ===== Loading Text ===== */
.loading-text {
    margin-top: 1.8rem;
    letter-spacing: 1px;
    animation: fadeIn 2s ease-in-out;
}

.loading-text .highlight {
    color: #00ff99;
    font-weight: 600;
}

/* ===== Animations ===== */
@keyframes spin {
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes pulseLogo {

    0%,
    100% {
        filter: drop-shadow(0 0 20px rgba(0, 255, 153, 0.6));
    }

    50% {
        filter: drop-shadow(0 0 35px rgba(0, 255, 153, 1));
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes corePulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.5;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding-top: 5rem;
}

/* --- Scrolling Track --- */
.marquee-content {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-shrink: 0;
    width: max-content;
    /* ✅ ensure it stretches to fit both sets */
    animation: scroll 60s linear infinite;
}

/* --- Smooth Infinite Animation --- */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- Logo Base Style --- */
.marquee-content img {
    height: auto;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 1s ease;
}

.marquee-content img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* --- Individual Logo Sizes --- */
.logo-amazon {
    width: 130px;
    height: auto;
}

.logo-aws {
    width: 50px;
    height: auto;
}

.logo-azure {
    width: 100px;
    height: auto;
}

.logo-copilot {
    width: 100px;
    height: auto;
}

.logo-dropbox {
    width: 110px;
    height: auto;
}

.logo-firebase {
    width: 130px;
    height: auto;
}

.logo-gdrive {
    width: 120px;
    height: auto;
}

.logo-msteams {
    width: 152px;
    height: auto;
}

.logo-n8n {
    width: 60px;
    height: auto;
}

.logo-onedrive {
    width: 135px;
    height: auto;
}

.logo-openai {
    width: 125px;
    height: auto;
}

.logo-sendgrid {
    width: 120px;
    height: auto;
}

.logo-shopify {
    width: 110px;
    height: auto;
}

.logo-slack {
    width: 100px;
    height: auto;
}

.logo-webflow {
    width: 100px;
    height: auto;
}

.logo-zapier {
    width: 120px;
    height: auto;
}

.logo-sns {
    width: 100px;
    height: auto;
}


.marquee-content img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}




/* pdf viewer */

.pdf-viewer-container {
    width: 100%;
    height: calc(100vh - 80px);
    margin-top: 80px;
    position: relative;
    /* padding: 4rem 10rem; */
}

#pdfCanvasContainer {
    width: 100%;
    height: 100%;
    overflow: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 4rem 10rem;
}

#pdfCanvas {
    max-width: 100%;
    height: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.pdf-controls {
    position: absolute;
    bottom: 20px;
    right: -49px;
    transform: translateX(-50%);
    padding: 9px 20px;
    border-radius: 30px;
    gap: 15px;
    align-items: center;
    z-index: 100;
}

.pdf-controls button{
    font-size: var(--font-small);
    font-family: 'Nunito', sans-serif;
    display: flex;
    background: var(--color-green);
    width: 43px;
    height: 39px;
    border-radius: 5px;
    border: 0px;
    justify-content: center;
    align-items: center;
}

.pdf-controls button:hover {
    background-color: #2f815b;
}

.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(0, 255, 136, 0.2);
    border-top-color: var(--color-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.error-message {
    color: var(--color-text-white);
    text-align: center;
    padding: 40px;
}

.error-message h3 {
    color: var(--color-green);
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .pdf-viewer-container {
        height: calc(100vh - 70px);
        margin-top: 70px;
    }

    .pdf-controls {
        bottom: 10px;
        padding: 8px 15px;
        font-size: 12px;
    }

    .pdf-controls button {
        padding: 6px 12px;
    }
}



.copy-right p a {
    color: var(--color-text-white);
}

.copy-right p a:hover {
    color: #ccc;
    text-decoration: underline;
}

.footer .logo-img{
    height: 50px;
}
.back-to-top {
  cursor: pointer;

}
.disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: default;
}
