@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

body{
    font-family: Manrope , sans-serif;
    overflow-x: hidden;
}

/* Desktop nav-cta always visible */
.nav-cta-desktop {
  display: block;
}

/* Cancel Button Styles */
.nav-cancel {
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border: none;
  color: #fff;
  z-index: 1101;
}

.nav-cancel .cancel-bar {
  font-size: 2rem;
  line-height: 1;
}

/* Nav Toggle Styles */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: none;
  cursor: pointer;
  z-index: 1100;
}

.nav-toggle .bar {
  display: block;
  width: 28px;
  height: 4px;
  margin: 4px 0;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Navigation Styling */
.hero-nav {
  top: 30px;
  z-index: 1000;
  transition: all 0.3s ease;
}

.hero-nav-contact {
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  background: #00000072;
  backdrop-filter: blur(20px);
}

.hero-nav.scrolled {
  top: 0;
  background: #00000072;
  backdrop-filter: blur(20px);
}

.nav-container {
  height: 80px;
  max-width: 1200px;
}

/* Nav logo image and text styles */

.nav-logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.nav-logo-text {
  color: #fff;
  font-size: 1.5rem;
  transition: color 0.3s, background 0.3s;
}

.nav-links {
  display: flex;
}

.nav-links a {
  color: #fff;
  transition: color 0.3s;
}


.nav-links a::after {
  content: '';
  position: absolute;
  inset: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: #64b5f6;
}

/* Hero Section */
.hero-section {
  padding-top: 80px;
}

.hero-video {
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  background: #0000006e;
  z-index: 1;
}

.hero-content {
  z-index: 2;
  color: #fff;
  max-width: 1400px;
  min-height: 60vh;
}

.content-wrapper {
  max-width: 800px;
}

.main-title {
  margin-top: 80px;
  font-size: 2.3rem;
}

.main-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.mobile-mockup-image {
  max-width: 280px;
  border-radius: 12px;
}

/* Glass Cards Styling */
.cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-top: 0;
  padding: 0 10rem;
}

/* Floating Mockup Images */
.mockup-image {
  z-index: 10;
  padding: 0 80px;
  transition: transform 0.4s ease;
  left: 35px;
}

.mockup-image img {
  margin-bottom: -45px;
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 12px;
  transition: all 0.4s ease;
}

.card-wrapper:hover .mockup-image {
  transform: translateY(-10px);
}

.card-wrapper:hover .mockup-image img {
  transform: scale(1.02);
}

/* Glass Cards */
.glass-card {
  background: #ffffff0d;
  backdrop-filter: blur(15px);
  border: 1px solid #ffffff1a;
  transition: all 0.4s ease;
  box-shadow: 0 8px 32px #0000001a;
  z-index: 5;
}

.card-wrapper:hover .glass-card::before {
  left: 100%;
}

.card-content {
  text-align: center;
}

.btn {
  font-size: 0.7rem;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  min-width: 120px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #fff3, transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px #667eea66;
}

/* =========================
   Media Queries
   ========================= */


/* For screens <= 968px */
@media (width < 968px) {
  .nav-cta-desktop {
    display: none;
  }

  .nav-cta-mobile .nav-btn {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
    border-radius: 25px;
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 4px 15px #667eea4d;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }

  .nav-cta {
    display: none;
  }

  .nav-cta.open {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    inset: 0;
    background: #4B006E;
    display: none;
    z-index: 1001;
    min-height: 100vh;
    width: 100vw;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-cta-mobile {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    font-size: 1.5rem !important;
    color: #fff;
  }

  .hero-nav.scrolled .nav-links a {
    color: #fff;
  }

  .nav-links {
    display: none;
  }

  .cards-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .mockup-image img {
    max-width: 300px;
  }
}

/* Small Laptops (1024px - 1366px) */
@media (width > 1024px) and (width < 1366px) {
  /* Your styles here */
  .card-description{
    font-size: 10px;
  }

  .card-content{
    padding: 10px 5%;
  }

  .card-title{
    margin-top: 22px;
  }

  .mockup-image{
    left : 60px;
    width: 302px;
  }

  .main-title{
    font-size: 33px;
  }

  .main-description{
    font-size: 17px;
  }
  
  .nav-links{
    font-size: 13px;
  }
}

/* Work smart section */
.cta-card {
  background: 
    linear-gradient(135deg, black 5%, #282828 95%),
    url('/assets/images/intro_bg.png') center/cover;
  border-radius: 16px;
  padding: 30px;
  height: 100%;
  display: flex;
  display: flex;
  flex-direction: column; /* Stack children vertically */
  justify-content: flex-end; /* Push content to the bottom */
  box-shadow: 0 15px 30px #0000000f;
  position: relative;
  isolation: isolate; /* Ensures the blur effect stays inside the card */
  overflow: hidden; /* Prevents blur from leaking outside */
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/images/intro_bg.png') center/cover;
  filter: blur(3px); /* Adjust blur strength (e.g., 4px, 8px, 12px) */
  z-index: -1;
  opacity: 0.4; /* Makes the image slightly transparent */
}

.features-intro{
  border-radius: 20px;
  box-shadow: #00000019 0 0 20px 0;
}

.feature-points {
  font-size: 12px;
  text-align: left;
  list-style-type: none; /* Remove default bullets */
  padding-left: 0; /* Remove default padding */
  font-weight: bold;
}

.feature-points li {
  position: relative;
  padding-left: 20px; /* Space for the icon */
  margin-bottom: 8px; /* Optional: Spacing between items */
}

.feature-points li::before {
  content: "✓"; /* Unicode arrow (can also use "✓", "•", "🟢", etc.) */
  position: absolute;
  left: 0;
  color: #572487; /* Optional: Change icon color */
}

.intro-title{
  color: #cf88b9 !important;
}

.into-description{
  color:  white;
  font-size: 14px !important;
  font-weight: 600 !important;
  margin-top: -10px !important;
  margin-bottom: 20px !important;
}

.card-custom {
  /* Converted Hex to RGBA with 0.1 opacity */
  background: linear-gradient(45deg, #6a11cb1a 0%, #2575fc1a 100%);
  border: 1px solid #e1e4e8;
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px #0000000d;
  height: 100%;
}

.card-custom:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px #00000014;
}

.provider-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.border-gradient {
  position: relative;
  overflow: hidden;
}

.border-gradient::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg, #6a11cb 0%, #2575fc 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 14px;
}

.border-gradient:hover::before {
  opacity: 0.1;
}

.bg-soft-primary {
  background-color: #0d6efd1a;
  color: #0d6efd;
}

.usecase-card {
  display: inline-block;
  white-space: normal;
  width: 400px;
  margin-right: 26px;
  vertical-align: top;
  display: contents!important;
  height: 100px !important;
}

.usecase-card{
  width: 253px !important;
}

.usecase-card{
  display: contents !important;
}

.feature-card {
  max-width: 400px;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 6px color(0, 0, 0,  10%);
  height: 100%;
  font-size: 14px;
  background: linear-gradient(45deg, #6a11cb1a 0%, #2575fc1a 100%);
}

.orcaa-suite-feature-card {
  background: #ffffffa6;
  border-radius: 15px;
  padding: 15px;
  position: relative;
  transition: transform 0.3s ease;
  overflow: hidden;
  min-width: 320px;
  max-width: 320px;
}

.orcaa-suite-feature-card:hover {
  transform: translateY(-5px);
}

.orcaa-suite-feature-row {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 20px !important;
  padding: 10px 5px !important;
}

.feature-card
  {
    margin-top: 10px!important;
  }

  .usecase-scroll {
  overflow-x: auto !important;
  white-space: nowrap !important;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.usecase-scroll::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

@media (width > 1200px) {
  .usecase-scroll {
      display: flex;
      justify-content: center;
      overflow-x: visible;
  }
}

.feature-item {
  border-radius: 6px;
  padding: 8px;
  cursor: pointer;
}

.feature-item:hover {
  background-color: #f6f8fa;
}

.feature-description {
  margin-left: 28px;
  margin-top: 8px;
  padding: 8px;
  font-size: 12px;
  color: #57606a;
  background-color: #f6f8fa;
  border-radius: 6px;
  display: none;
}

.feature-item.expanded .feature-description {
  display: block!important;
}

.feature-item i {
  color: #6e7681;
  transition: transform 0.2s;
}

.feature-item.expanded i {
  transform: rotate(90deg);
}

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

.feature-list li {
  margin: 15px 0;
  color: #666;
  position: relative;
  padding-left: 25px;
}

#feature-setion .feature-list li::before{ 
display: none;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4169E1;
}

.feature-header {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.feature-text {
  font-size: 12px;
  flex-grow: 1;
  font-weight: bold;
  color: black;
}

.h-70
{
  height: 70px !important;
}

.orcaa-nav {
    background: #e7e7e7;
    padding: 5px;
    border-radius: 50px;
    box-shadow: 0 4px 20px #0000000d;
    display: inline-flex;
    flex-wrap: wrap;
}

.orcaa-nav .nav-link {
    color: #666;
    border-radius: 40px;
    padding: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 9px;
}

.orcaa-nav .nav-link:hover {
    color: var(--orcaa-purple);
    background-color: #6f42c10d;
}

.orcaa-nav .nav-link.active {
    background-color: var(--orcaa-purple);
    color: white;
    box-shadow: 0 4px 10px #6f42c14d;
}

.nav-link.active {
    width: auto;
    border-radius: 20px; 
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    position: relative;
    color: white !important;
    font-family: Manrope, sans-serif; 
}

/* Ensure that there is no border or shadow around the tabs */
.nav-link::before,
.nav-link:hover::before {
    content: '';
    display: block;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Style for tab links */
.nav-link {
    width: auto;
    margin: 5px;
}

.nav-tabs .nav-link
{
width: max-content;
}

.orcaa-card{
  background-color: #eee;
  padding: 50px;
}

.card-img-top {
  width: 100% !important; /* Ensure the image takes the full width of the card */
  height: auto !important; /* Set a fixed height for the card image */
  object-fit: cover !important; /* Ensure the image covers the entire card area without distortion */
}

/* Hire section */
.sectors-card {
    width: 100%; /* Make the width 100% to fit the container */
    max-width: 1300px; /* Ensure it doesn’t get too wide on larger screens */
    height: auto; /* Allow height to adjust based on content */
    margin-top: 30px;
    margin-bottom: 105px;
    background: #f3f3f300;
    border: 0;
    border-radius: 20px;
    padding: 10px; /* Add padding inside the card */
    display: flex;
    flex-wrap: wrap; /* Ensure the contents wrap on smaller screens */    
}

.btn-purple {
  color: #fff;
  background-color: #621fe4;
  border-color: #621fe4;
  border-radius: 10px;
}

.btn-purple:hover {
  color: #fff;
  background-color: #611fe4ec;
  border-color: #611fe4ec;
  border-radius: 10px;
}

.image-card .image-one {
    width: 100% !important; /* Make the image fill the width of the card */
    height: 100% !important; /* Make the image fill the height of the card */
    object-fit: cover !important; /* Ensures the image covers the card without distortion */
    display: block !important; /* Remove default margins and paddings */
}

/* Pricing */

.pricing-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
  height: auto !important;
  position: relative;
  box-shadow: 0 4px 6px #0000001a;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.gb-amount {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.card-header {
  background: #621fe4;
  color: white;
  padding: 20px;
  text-align: center;
}

.orcaa-price {
  font-size: 2rem;
  font-weight: bold;
  margin: 20px 0;
  text-align: center;
}

.free-connection {
  color: #666;
  font-size: 0.9rem;
  margin-top: 15px;
  text-align: center;
}

.recommended {
  border: 2px solid #ffc107;
}

.recommendation-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ffc107;
  padding: 5px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.recommendation-badge i {
  color: white;
}

.order-btn {
  background: #621fe4;
  color: white;
  border: none;
  padding: 12px 40px;
  border-radius: 25px;
  margin-top: 20px;
  transition: background 0.3s ease;
}

.order-btn:hover {
  background: #3251b7;
}

.contact-us-image {
  height: auto !important; /* Full height of the viewport */
  width: 100vw;  /* Full width of the viewport */
  background-image: url('/assets/images/Contact_us_background.png'); /* Replace with your image path */
  background-size: cover; /* Cover the entire page */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Prevent image repetition */
  position: relative; /* Relative position for child elements */
  margin-top: -100px !important;
}

.contact-us-content{
  font-family: Manrope, sans-serif;
}

.contact-info{
  margin-top: 90px !important;
} 

.contact-form{
  margin-top: 200px !important;
}

.form-control{
  border-radius: 10px;
  border: 1px solid #ffb0f398;
}

 .login-button{
  border: none;
  border-radius: 15px !important;
  font-size: 18px;
  display: inline-block;
  outline: 0;
  border: 0;
  cursor: pointer;
  will-change: box-shadow, transform;
  background: radial-gradient(100% 100% at 100% 0%, #ff70f8 0%, #572487 100%);
  box-shadow: 0 0.01em 0.01em #2d234266, 
              0 0.3em 0.7em -0.01em #2d23424d, 
              inset 0 -0.01em 0 #3a416f80;
  border-radius: 0.3em;
  color: #fff;
  height: 2.6em;
  text-shadow: 0 1px 0 #0006;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
  padding-left: 2em;
  padding-right: 2em;
}

.login-button:hover {
  box-shadow: 0 0.1em 0.2em #2d234266, 
              0 0.4em 0.7em -0.1em #2d23424d, 
              inset 0 -0.1em 0 #572487;
  transform: translateY(-0.1em);
}

.login-button:active {
  box-shadow: inset 0 0.1em 0.6em #572487;
  transform: translateY(0);
}

 .footer-background{
    background: url('/assets/images/footer_background.png') no-repeat center center scroll;
    background-size: cover;
    height: auto; /* Full viewport height */
    width: 100vw; /* Full viewport width */
    margin: 0;
    padding: 0;
    overflow: hidden;
  }

  .footer-content{
    font-family: Manrope, sans-serif;
  }
  
  .icon-circle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px; /* Adjust size as needed */
  height: 50px; /* Adjust size as needed */
  border-radius: 50%;
  background-color: #fffc; /* Circle background */
  margin-right: 10px; /* Space between icon and text */
}

.icon {
  width: 24px; /* Adjust size as needed */
  height: 24px; /* Adjust size as needed */
}

.text-xxs
{
  font-size: 10px !important;
}

.bg-grey
{
  background-color: #e8e8e8 !important;
}

.orcaa-video{
  border-radius: 15px !important;
  box-shadow: 0 4px 6px #00000038 !important;
}

.mobile-btn{
  font-size: 12px !important;
}

.icon{
  color: white !important;
}

.experience-card{
  border-radius: 20px;
}

.experience-bg {
  background-image: url('/assets/images/demo-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}