/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
    scroll-behavior: smooth;
}

/* Background Gradient */
body {
    background: linear-gradient(-45deg, #014C82 0%, #00172e 100%);
    color: #ffffff;
    overflow-x: hidden;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*padding: 10px 50px;*/
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 50px;
  padding-right:  50px;
  /*background: transparent;*/
  background: linear-gradient(-45deg, #09111B 0%, #07345E 50%, #09111B 100%);
  color: #ffffff;
  font-weight: bold;
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: transform 0.3s ease-in-out;
}

/* Logo image */
.logo-img {
  height: 40px;
}

header nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

header nav a {
  text-decoration: none;
  color: #fff !important;
  font-size: 16px;
  font-weight: 600;
  padding: 5px 10px;
}

header nav a:hover {
  color: #0093ff  !important;
}

header.hide {
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
}

/* Auth Buttons */
.auth-buttons {
  display: flex;
  gap: 10px;
}

.login-btn {
  background-color: #ffffff;
  color: #000648;
  border-radius: 25px;
  padding: 10px 20px;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

/* Dropdown */
.dropdown-wrapper {
  position: relative;
}

.dropdown-hover-area {
  display: flex;
  flex-direction: column;
  position: relative;
}

.dropdown-toggle {
  background: none;
  border: none;
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: default;
  display: flex;
  align-items: center;
  gap: 5px;
}

.arrow {
  font-size: 12px;
}

/* Keeps the dropdown stable on hover */
.dropdown-hover-area:hover .dropdown-menu {
  display: flex;
}

/* Dropdown Menu */
.dropdown-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0px; /* remove any gap */
  background: linear-gradient(to bottom right, #f9a932, #FDA423);
  border-radius: 12px;
  padding: 10px 0;
  z-index: 999;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  min-width: 220px;
}

/* Dropdown Items */
.dropdown-menu a {
  color: rgb(255, 255, 255) !important;
  padding: 14px 20px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
  border-radius: 8px;
}

/* Hover effect */
.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff !important;
}

/* Disabled Link Style */
.dropdown-menu .disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* Responsive layout adjustments */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

.nav-auth-container {
  display: flex;
  align-items: center;
  gap: 20px;
}


    /* Overlay */
    .overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.6);
      z-index: 900;
    }
    .overlay.show {
      display: block;
    }
    .innovation-btn{
        background-color: #ffffff;
  color: #000648;
  border-radius: 25px;
  padding: 10px 20px;
  font-weight: bold;
  border: none;
  cursor: pointer;
    }
    /* Dropdown Wrapper */
    .dropdown-wrapper {
      position: relative;
    }

    /* Main Dropdown */
    .main-dropdown {
      display: none;
      position: absolute;
      top: 100%;
      right: 0;
      width: 280px;
      margin-top: 12px;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 6px 16px rgba(0,0,0,0.2);
      overflow: hidden;
      z-index: 1001;
      animation: fadeIn 0.3s ease;
    }
    .main-dropdown.show {
      display: block;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(-10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Dropdown Sections */
    .dropdown-section {
      border-bottom: 1px solid #eee;
      overflow: hidden;
      background: #fff;
    }
    .dropdown-section:last-child {
      border-bottom: none;
    }

    .dropdown-header {
      padding: 14px 16px;
      background: #f9f9f9;
      cursor: pointer;
      font-weight: 600;
      color: #2c3e50;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: background 0.2s;
    }
    .dropdown-header:hover {
      background: #f1f1f1;
    }

    .dropdown-header:before {
      content: "";
      display: inline-block;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      margin-right: 10px;
    }
    .ready .dropdown-header:before { background: #2ecc71; }
    .mvp .dropdown-header:before { background: #f39c12; }
    .progress .dropdown-header:before { background: #3498db; }

    .dropdown-header span {
      transition: transform 0.3s ease;
    }
    .active .dropdown-header span {
      transform: rotate(90deg);
    }

    .dropdown-links {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      background: #fff;
    }
    .dropdown-links a {
      display: block;
      padding: 10px 20px 10px 36px;
      text-decoration: none;
      color: #34495e;
      font-size: 14px;
      position: relative;
      transition: background 0.2s, color 0.2s;
    }
    .dropdown-links a:before {
      content: "•";
      position: absolute;
      left: 20px;
      color: #000;
    }
    .dropdown-links a:hover {
      background: #f8f9fa;
      color: #4776E6;
    }
    .dropdown-section.active .dropdown-links {
      max-height: 400px;
    }

    /* Page content */
    .content {
      padding-top: 100px;
      text-align: center;
    }
  </style>

/* Mobile view */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .logo {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .menu-toggle {
    display: block;
  }

  .nav-auth-container {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 10px;
  }

  .nav-auth-container.active {
    display: flex;
  }

  nav {
    flex-direction: column;
    gap: 10px;
  }

  .auth-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    min-width: unset;
    box-shadow: none;
  }

  .mega-dropdown {
  position: static;
  min-width: unset;
  box-shadow: none;
  padding: 20px 0;
}

.mega-grid {
  grid-template-columns: 1fr;
  gap: 15px;
}

}

/* Mega Dropdown Styles */
.mega-dropdown-wrapper {
  position: relative;
}

.mega-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%; /* Start from middle */
  transform: translateX(-50%); /* Center it */
  background: #ffffff;
  color: #000;
  padding: 30px;
  min-width: 700px;
  max-width: 90vw; /* Prevent overflow */
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  border-radius: 12px;
  z-index: 999;
  white-space: normal;
}


.mega-dropdown h3 {
  margin-bottom: 20px;
  font-size: 20px;
  color: #000648;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.mega-grid a {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  text-decoration: none;
  color: #000;
  padding: 10px;
  border-radius: 10px;
  transition: background 0.3s ease;
}

.mega-grid a:hover {
  background: #f0f4ff;
}

.mega-grid .icon {
  font-size: 28px;
  color: #037be4;
}

.mega-grid h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color:#000;
}

.mega-grid p {
  margin: 5px 0 0 0;
  font-size: 14px;
  color: #444;
}

/* Show mega dropdown on hover */
.dropdown-hover-area:hover .mega-dropdown {
  display: block;
}





/* Hero Section */
.hero {
    position: relative;
    padding-top: 70px;
    padding-bottom: 70px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(ellipse at bottom, #037be4 0%, #090a0f 100%);
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    position: relative;
    z-index: 2;
}

/* Text Container */
.text-container {
    max-width: 50%;
    color: #ffffff;
}

.text-container h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 900;
}

.text-container p {
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Image Container */
.image-container {
    border-radius: 30px;
    padding: 40px;
    position: relative;
}
.image-container img {
    width: 600px;
    border-radius: 30px;
}

/* Tabs */
.tabs {
    display: flex;
    justify-content: center;
    margin: 30px 0;
    gap: 15px;
}

.tabs .tab {
    background-color: #f0f4ff;
    color: #3483eb;
    border-radius: 20px;
    padding: 10px 20px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.tabs .tab.active {
    background-color: #3483eb;
    color: #fff;
}

.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent url('stardust.png') repeat;
    background-size: contain;
    animation: twinkle 2s infinite alternate;
    z-index: 0; /* Push to background */
}
.stars::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent url('stardust.png') repeat;
    background-size: contain;
    animation: twinkle 2s infinite alternate;
    opacity: 0.6;
}



/* Floating Icons */
.floating-icon {
    position: absolute;
    width: 50px;
    height: 50px; /* Fix size to prevent aspect-based scaling */
    object-fit: contain;
    animation: floatRotateAlt 8s ease-in-out infinite alternate;
    z-index: 1;
    opacity: 0.8;
}


.icon1 {
    top: 25%;
    left: -37%;
}

.icon2 {
    bottom: 20%;
    right: -42%;
}

/* Star Twinkling Animation */
@keyframes twinkle {
    0% { opacity: 0.2; }
    100% { opacity: .8; }
}

/* Floating + Rotation Animation */
@keyframes floatRotate {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
    100% { transform: translateY(0px) rotate(360deg); }
}

@keyframes floatRotateAlt {
    0% {
        transform: translateY(0px) rotate(-15deg);
    }
    50% {
        transform: translateY(-15px) rotate(15deg);
    }
    100% {
        transform: translateY(0px) rotate(-15deg);
    }
}

@media (max-width: 1024px) {
  .text-container h1 {
    font-size: 3rem;
  }

  .image-container img {
    width: 450px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    gap: 40px;
  }

  .text-container {
    max-width: 100%;
  }

  .text-container h1 {
    font-size: 2.5rem;
  }

  .text-container p {
    font-size: 1rem;
  }

  .image-container img {
    width: 90%;
    max-width: 400px;
  }

  .floating-icon {
    width: 40px;
  }
}

@media (max-width: 480px) {
  .text-container h1 {
    font-size: 2rem;
  }

  .text-container p {
    font-size: 0.95rem;
  }

  .floating-icon {
    width: 30px;
  }
}




/* More than Note Section */
.more-than-note {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(180deg, #f9faff 0%, #ffffff 100%);
}

.more-than-note h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 30px;
    color: #333;
}

/* Tabs */
.tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background-color: #f0f4ff;
  color: #3483eb;
  border-radius: 20px;
  padding: 20px 15px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s, transform 0.3s;
  width: 150px;
}

.tab span {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}


.tab-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}


.tab.active {
    background-color: #3483eb;
    color: #ffffff;
    transform: scale(1.05);
}

.tab.active .tab-icon {
  filter: brightness(0) invert(1);
}

.tab:hover {
    background-color: #3483eb;
    color: #ffffff;
}

/* Description */
.description {
    color: #666;
    margin-bottom: 50px;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.description a {
    color: #3483eb;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.description a:hover {
    color: #7289da;
}

/* Tab Content */
.tab-content {
    display: none;
    text-align: left;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
    width: 90%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.95);
}

.tab-content.active {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    opacity: 1;
    transform: scale(1);
}

.tab-content img {
    width: 50%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}

.tab-content img:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.tab-details {
    flex: 1;
    padding: 20px;
    transition: all 0.3s ease;
}

.tab-details h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #333;
}

.tab-details p {
    font-size: 1.2rem;
    color: #555;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .tab-content {
        flex-direction: column;
        align-items: center;
    }

    .tab-content img {
        width: 90%;
        margin-bottom: 20px;
    }

    .tab-details {
        text-align: center;
        padding: 0;
    }
}




/* Trusted Section Styles */
.trusted-section {
    text-align: center;
    padding: 50px 0;
    background-color: #ffffff;
}

.trusted-section h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 30px;
    color: #333;
}

/* User Avatars */
.user-avatars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.user-avatars img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 2px solid #ffffff;
}

.user-avatars span {
    font-size: 2rem;
    font-weight: 700;
    color: #777;
}

/* Marquee Effect */
.logo-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin: 30px 0;
}

.marquee-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 60px;
  width: max-content;
  animation: scroll 100s linear infinite;
  will-change: transform;
}

.marquee-track img {
  height: 70px;
  width: auto;
  flex-shrink: 0;
}


.logo-marquee:hover .marquee-track {
  animation-play-state: paused;
}

/* Scrolling Animation */
@keyframes scroll {
    0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .marquee-content img {
        width: 100px;
    }

    .trusted-section h2 {
        font-size: 1.5rem;
    }
}




/* Recent Projects */
.how-quests-work {
    text-align: center;
    padding: 50px 20px;
    background-color: #000000;
}

.how-quests-work h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.how-quests-work h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1;
}

.how-quests-work p {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.quest-steps {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.quest-card {
    background: linear-gradient(180deg, #037be4 0%, #090a0f 100%);
    border-radius: 50px;
    padding: 20px;
    width: 360px;
    max-height: 640px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    color: #ffffff;
    transition: transform 0.3s;
}

.quest-card:hover {
    transform: translateY(-10px);
}

.quest-card img {
    width: 100%;
    border-radius: 40px;
    margin-bottom: 20px;
}


/*Projects 2*/
/* Grid Layout */
.apple-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 40px;
  background: linear-gradient(180deg, #FFFFFF 0%, #9fcfff 50%, #FAFCFE 100%);
}

/* Grid Item Styling */
.grid-item {
  position: relative;
  height: 560px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  padding: 60px;
  color: black;
  background-color: #f5f5f5;
  box-shadow: 0 8px 16px rgba(0, 162, 255, 0.486);
}

.grid-item.dark {
  color: white;
  background-color: #000;
}

.grid-item.light {
  color: black;
}

.grid-item.stretch {
  grid-column: 1 / -1;
}

/* PNG Image Placement */
.grid-img {
  position: absolute;
  width: auto;
  height: auto;
  max-width: 400px;
  max-height: 300px;
  object-fit: contain;
  pointer-events: none;
  z-index: 0;
  transition: transform 0.3s ease;
}

/* Centered Top */
.grid-item[data-img-position="top"] .grid-img {
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
}

/* Centered Bottom */
.grid-item[data-img-position="bottom"] .grid-img {
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
}

/* Centered Bottom */
.grid-item[data-img-position="bottom-3d-db"] .grid-img {
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  height: 500px;
}

/* Centered Middle */
.grid-item[data-img-position="center"] .grid-img {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}



/* Content Block */
.content {  
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  align-items: center;
  width: 100%;
  z-index: 1;
}

/* Vertical Alignment */
.top {
  align-self: flex-start;
}
.center {
  align-self: center;
}
.bottom {
  align-self: flex-end;
}

/* Typography */
h3 {
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
}

p {
  font-size: 1rem;
  margin: 0;
  max-width: 500px;
}

/* Button Row */
.buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Button Styles */
.btn {
  background: #0071e3;
  color: white;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.3s ease;
}

.btn.light {
  background: #e0e0e0;
  color: #000;
}

.btn:hover {
  opacity: 0.85;
}

/* Caption Styling */
.caption {
  font-size: 0.9rem;
  color: #666;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(to right, #f900bf, #007aff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Responsive Stack */
@media (max-width: 768px) {
  .apple-grid {
    grid-template-columns: 1fr;
  }
}






/* Why Choose Us */
.why-quests h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 40px;
    color: #000000;
}

.why-quests {
    text-align: center;
    padding: 100px 50px;
    background: linear-gradient(180deg, #FFFFFF 0%, #9fcfff 50%, #FAFCFE 100%);
}

.feature-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-card {
    background-color: #ffffff;
    border-radius: 40px;
    padding: 40px 40px;
    width: 330px;
    text-align: left;
    color: #000000;
    transition: transform 0.3s ease;
    box-shadow: 0 8px 16px rgba(0, 162, 255, 0.486);
}

.feature-card:hover {
    transform: translateY(-10px);
}


.feature-card img {
    height: 100px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 2rem;
    font-weight:600;
    margin-bottom: 10px;
    color: #1e1e1e;
}

.feature-card p {
    font-size: 1rem;
    color: #2c2c2c;
    line-height: 1.5;
}


/* Products */
.quest-stories {
    text-align: center;
    padding: 50px 20px;
    background-color: #000000;
}

.quest-stories h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 40px;
}

.stories-slider {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.story-card {
    background: linear-gradient(180deg, #037be4 0%, #090a0f 100%);
    border-radius: 60px;
    padding: 30px;
    width: 400px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    color: #ffffff;
    transition: transform 0.3s;
}

.story-card h3{
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.story-card button {
    background-color: #ffffff;
    color: #000000;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    margin-top: 20px;
    cursor: pointer;
    font-weight: bold;
}

.story-card:hover {
    transform: translateY(-10px);
}

.story-card img {
    width: 100%;
    border-radius: 35px;
    margin-bottom: 20px;
}


/* Request a Quote */
.launch-wrapper {
    --outer-bg: #000000; /* Default outer background */
    background: var(--outer-bg);
    padding: 60px 20px;
}

/* Launch Quest section */
.launch-quest {
    --inner-bg: radial-gradient(ellipse at center, #000000, #0191ff); /* Default inner background */
    position: relative;
    text-align: center;
    padding: 100px 20px;
    background: var(--inner-bg);
    color: #ffffff;
    border-radius: 60px;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
}

.launch-quest h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.launch-quest p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.launch-quest button {
    background-color: #ffffff;
    color: #000000;
    border-radius: 12px;
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.launch-quest button:hover {
    background-color: #e6e6e6;
}

.launch-quest .coin {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 120px;
    transform: rotate(-15deg);
}

.launch-quest .pan {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 130px;
    transform: rotate(30deg);
}



/* Footer */
/* Base Styles */
.footer {
  padding: 60px 40px;
  display: flex;
  flex-wrap: wrap;
  font-family: 'Segoe UI', sans-serif;
  gap: 60px;
  transition: all 0.3s ease;
}

.footer-logo {
  width: 250px;
  margin-bottom: 30px;
}

/* DARK THEME */
.footer.dark-theme {
  background: linear-gradient(180deg, #000000 0%, #006aff 100%);
  color: white;
}

.footer.dark-theme .column h4,
.footer.dark-theme .column a,
.footer.dark-theme .column.contact p,
.footer.dark-theme .social-icons label {
  color: white;
}

.footer.dark-theme .column a:hover {
  text-decoration: underline;
}

/* LIGHT THEME */
.footer.light-theme {
  background: linear-gradient(180deg, #ffffff 10%, #c1dbff 50%, #006aff 100%);
  color: #000000;
}

.footer.light-theme .column h4,
.footer.light-theme .column a,
.footer.light-theme .column.contact p,
.footer.light-theme .social-icons label {
  color: #000000;
}

.footer.light-theme .column a:hover {
  text-decoration: underline;
}

/* Social Icons Shared */
.icons a {
  margin-right: 10px;
}

.icons img {
  width: 24px;
  height: 24px;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.icons img:hover {
  opacity: 1;
}


.footer-left {
  flex: 1 1 250px;
  max-width: 300px;
}

.footer-logo {
  width: 250px;
  margin-bottom: 30px;
}

.social-icons label {
  display: block;
  margin-bottom: 10px;
  color: #bdbdbd;
  font-size: 14px;
}

.icons a {
  margin-right: 10px;
}

.icons img {
  width: 24px;
  height: 24px;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.icons img:hover {
  opacity: 1;
}

.footer-columns {
  display: flex;
  flex: 4;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}

.column {
  flex: 1 1 220px;
  min-width: 220px;
}

.column h4 {
  font-weight: bold;
  margin-bottom: 20px;
  color: #bdbdbd;
  font-size: 16px;
}

.column a {
  display: block;
  margin-bottom: 10px;
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.column a:hover {
  text-decoration: underline;
}

.column.contact p {
  font-size: 14px;
  margin-bottom: 10px;
  color: white;
}






/* About US */
.about-us {
  position: relative;
  min-height: 100vh;
  background: radial-gradient(ellipse at bottom, #037be4 0%, #090a0f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  overflow: hidden;
}

.about-us .content {
    max-width: 1024px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.about-us h1 {
  font-size: 2rem;
  font-weight: 900;
  margin: 0;
  line-height: 1.1;
}

.about-us p {
  font-size: 1.3rem;
  margin-top: 20px;
  max-width: 700px;
  line-height: 1.6;
}

.about-us .icon {
  position: absolute;
  width: 100px;
  height: auto;
  animation: float 4s ease-in-out infinite;
  opacity: 20%;
}

.icon.left {
  top: 20%;
  left: 5%;
}

.icon.right {
  bottom: 10%;
  right: 5%;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}


/* Vision Mission */
.vision-mission {
  background: #000;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.vision-mission h2 {
  font-size: 54px;
  font-weight: 900;
  margin-bottom: 10px;
}

.vision-mission p {
  text-align: center;
}
.vision-mission h2 span {
  color: #fff;
}

.vision-mission .subtitle {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 40px;
}

.vision-mission .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 2fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.vision-mission .card {
  background: #1a1a1a;
  border-radius: 25px;
  padding: 30px 25px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

}

.vision-mission .icon {
  background: rgba(255, 255, 255, 0.1);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 20px;
}

.vision-mission .card h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0;
  color: #fff;
}

.vision-mission .card p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 10px;
}

.vision-mission .card small {
  font-size: 12px;
  color: #999;
}

.vision-mission .card:hover{
    background: linear-gradient(135deg, #037be4, #003c70);
}


/*People*/
.featured-creators {
  background: linear-gradient(180deg, #037be4, #000000);
  color: white;
  padding: 50px;
  position: relative;
  text-align: center;
}

.featured-creators h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.view-all-btn {
  position: absolute;
  right: 50px;
  top: 50px;
  background: #4c6ef5;
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
}

.creator-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns */
  gap: 20px;
  margin-top: 40px;
  justify-content: center;
}


.creator-card {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
  cursor: pointer;
}


.creator-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.creator-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 10px;
  background: linear-gradient(135deg, #037be4, #003c70);
  text-align: center;
  color: white;
  font-weight: bold;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s ease;
}

.creator-card:hover img {
  filter: grayscale(0%);
}

.creator-card:hover .creator-info {
  opacity: 1;
  transform: translateY(0);
}


/* Kalithas-specific styles */
.creator-kalithas {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
}

.creator-kalithas .image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.creator-kalithas .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

/* Show grayscale by default */
.creator-kalithas .static-img {
  filter: grayscale(100%);
  z-index: 1;
  opacity: 1;
}

/* Hide hover image by default */
.creator-kalithas .hover-img {
  z-index: 2;
  opacity: 0;
}

/* On hover: hide grayscale image and show hover image */
.creator-kalithas:hover .static-img {
  opacity: 0;
}

.creator-kalithas:hover .hover-img {
  opacity: 1;
}

/* Creator info always visible on hover */
.creator-kalithas .creator-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 10px;
  background: linear-gradient(135deg, #037be4, #003c70);
  text-align: center;
  color: white;
  font-weight: bold;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s ease;
  z-index: 3;
}

.creator-kalithas:hover .creator-info {
  opacity: 1;
  transform: translateY(0);
}



/* Partner Section Styles - About us */
.partners-section {
    text-align: center;
    padding: 50px 0;
    background-color: #ffffff;
}

.partners-section h2 {
    font-size: 3rem;
    font-weight:900;
    color: #333;
    margin-bottom: 30px;
}

/* Marquee Effect */
.partners-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin: 0px 0;
    display: flex;
    justify-content: center;
}

.partners {
  display: flex;
  flex-wrap: nowrap;
  gap: 60px;
  width: max-content;
  will-change: transform;
}

.partners img {
  height: 120px;
  width: auto;
  flex-shrink: 0;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .marquee-content img {
        width: 100px;
    }

    .partners-section h2 {
        font-size: 1.5rem;
    }
}



/* collaborators Section Styles - About Us */
.collaborators-section {
    text-align: center;
    padding: 50px 0;
    background-color: #ffffff;
}

.collaborators-section h2 {
    font-size: 3rem;
    font-weight:900;
    color: #333;
    margin-bottom: 30px;
}

 /*Marquee Effect */
.collaborators-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin: 0px 0;
    display: flex;
    justify-content: center;
}

.collaborators {
  display: flex;
  flex-wrap: nowrap;
  gap: 60px;
  width: max-content;
  will-change: transform;
}

.collaborators img {
  height: 80px;
  width: auto;
  flex-shrink: 0;
}

 /*Mobile Styles */
@media (max-width: 768px) {
    .marquee-content img {
        width: 100px;
    }

    .collaborators-section h2 {
        font-size: 1.5rem;
    }
}
 
/* Contact Us */
.contact-container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
  min-height: 100vh;
  background: radial-gradient(ellipse at bottom, #037be4 0%, #090a0f 100%);
}

.contact-inner {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  width: 100%;
}



.contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center; /* Ensure all text is centered */
}

.contact-info h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 20px;
  color: #ffffff;
  max-width: 400px;
}

.info-block p {
  margin-bottom: 15px;
  font-size: 16px;
}

.contact-form {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  flex: 1.2;
  position: relative;
  z-index: 1;
}


form .row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.input-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.input-group label {
  margin-bottom: 5px;
  font-weight: 500;
}

.input-group input,
.input-group textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.input-group textarea {
  resize: vertical;
  height: 100px;
}

.full-width {
  width: 100%;
  margin-bottom: 20px;
}

.checkbox-group {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.checkbox-group input {
  margin-right: 10px;
}

.captcha-submit {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.captcha-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.captcha-box button {
  padding: 10px 20px;
  border: 1px solid #ccc;
  background: #f9f9f9;
  border-radius: 6px;
  cursor: pointer;
}

.refresh {
  font-size: 20px;
  cursor: pointer;
}

.submit-btn {
  background-color: #001a57;
  color: white;
  padding: 12px 40px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.submit-btn:hover {
  background-color: #00267c;
}


/*Pricing Website*/
.nitro-section {
  position: relative;
  min-height: 100vh;
  background: radial-gradient(ellipse at bottom, #037be4 0%, #090a0f 100%);
  color: white;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px;
  overflow: hidden;
}

.rmspricing-section {
  position: relative;
  min-height: 100vh;
  
  background: linear-gradient(180deg, #037be4 0%, #000000 100%);
  color: white;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px;
  overflow: hidden;
}

.nitro-heading h1 {
  font-size: 3rem;
  font-weight: 900;
}

.nitro-heading p {
  max-width: 500px;
  margin: 20px auto 40px;
}

.nitro-heading.light-theme h1,
.nitro-heading.light-theme p{
  color: black;
}

.nitro-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.nitro-card {
  background: white;
  color: black;
  border-radius: 20px;
  padding: 30px;
  width: 300px;
  text-align: left;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s;
}

.nitro-card.basic {
  background: linear-gradient(to bottom, #00f9fe 0%, #01bbd4 20%, #0073ff 100%);
  color: white;
}

.nitro-card.full {
  background: linear-gradient(to bottom, #ffea01 0%, #ffaf01 20%, #f87400 100%);
  color: white;
}

.nitro-card.rmsbasic {
  background: linear-gradient(to bottom, #ffffff 0%, #a7f5ff 20%, #90ecff 100%);
  color: black;
}

.nitro-card.rmspremium {
  background: linear-gradient(to bottom, #00f9fe 0%, #01bbd4 20%, #0073ff 100%);
  color: white;
}

.nitro-card.rmspower {
  background: linear-gradient(to bottom, #ffea01 0%, #ffaf01 20%, #f87400 100%);
  color: white;
}

.nitro-card h2 {
  font-weight: 800;
  margin-bottom: 20px;
}

.nitro-card:hover {
  transform: translateY(-10px);
}

.nitro-card.basic button:hover {
  background: #ffe600;
  color: #000000;
}

.nitro-card.full button:hover {
  background: #00a2ff;
  color: #ffffff;
}

.nitro-card ul {
  list-style: none;
  padding: 0;
  line-height: 2;
  text-align: left;
  margin-bottom: 20px;
}

.nitro-card button {
  margin-top: 20px;
  background: white;
  color: black;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.price {
  font-size: 1.8rem;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 20px;
}

.rmsbasic .price {
  font-size: 1.8rem;
  color: #000000;
  font-weight: 700;
  margin-bottom: 20px;
}




/*Pricing2*/
.feature-compare {
  padding: 60px 40px;
  font-family: sans-serif;
}

.feature-compare h2 {
  text-align: center;
  margin-bottom: 30px;
}

.feature-compare table {
  width: 100%;
  border-collapse: collapse;
}

.feature-compare th, .feature-compare td {
  padding: 15px;
  border: 1px solid #ddd;
  text-align: center;
}

.feature-compare thead {
  background-color: #f0f0f0;
}

.feature-compare td:first-child {
  text-align: left;
}



/*Pricing3*/
.pricing-table {
  padding: 60px 40px;
  font-family: sans-serif;
}

.pricing-table h2 {
  text-align: center;
  margin-bottom: 20px;
}

.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.pricing-table th, .pricing-table td {
  padding: 15px;
  border: 1px solid #ccc;
}

.pricing-table thead {
  background: #f7f7f7;
}

.pricing-table .highlight {
  background: #e0f0ff;
}

.pricing-table td:first-child {
  text-align: left;
}

.pricing-table .note {
  text-align: center;
  margin-top: 20px;
  color: gray;
  font-size: 14px;
}


.apple-style-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 140px 20px 60px;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1d1d1f;
}

/* Product Header */
/* Left Side Enhancements */
.product-left {
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 30px;
  border: 1px solid #eaeaea;
}

.product-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 0;
  color: #1d1d1f;
}

.section-title {
  font-size: 16px;
  font-weight: 600;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
}

.info-grid {
  display: grid;
  grid-template-columns: 140px 1fr;
  row-gap: 12px;
  column-gap: 10px;
  font-size: 15px;
}

.info-grid .label {
  color: #6e6e73;
  font-weight: 500;
}

.info-grid .value {
  color: #1d1d1f;
  font-weight: 600;
}

.about-text {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  margin-top: -10px;
}

.product-left a {
  color: #0071e3;
  text-decoration: none;
  font-weight: 500;
}

.product-left a:hover {
  text-decoration: underline;
}


/* Right Side Enhancements */
.product-right {
  text-align: center;
}

.main-image {
  width: 100%;
  max-width: 480px;
  margin-bottom: 24px;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.main-image:hover {
  transform: scale(1.02);
}

.thumbnail-gallery {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.thumbnail-gallery img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.thumbnail-gallery img:hover {
  transform: scale(1.08);
  border-color: #0071e3;
}

/* Responsive */
@media (max-width: 900px) {
  .apple-style-product {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .product-left {
    text-align: center;
    padding: 24px;
  }

  .thumbnail-gallery {
    justify-content: center;
  }
}


/* Product Description */
.network-section {
  padding: 80px 20px;
  background: linear-gradient(to bottom right, #f9fbff, #ffffff);
}

.network-inner {
  max-width: 1140px;
  margin: auto;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
}

.network-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
  color: #1d1d1f;
}

.network-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.network-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.network-block {
  background: #ffffff;
  border: 1px solid #e2e6ea;
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
}

.network-block:hover {
  transform: translateY(-5px);
}

.network-block h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1d1d1f;
  display: flex;
  align-items: center;
  gap: 10px;
}

.network-block ul {
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.8;
  color: #444;
}

.network-block li {
  margin-bottom: 10px;
}

.network-footer {
  font-size: 18px;
  font-weight: 500;
  color: #1a1a1a;
  text-align: center;
  margin-top: 80px;
  padding: 0 10px;
  line-height: 1.8;
  max-width: none; /* ensures full width */
}


/* Mobile view */
        @media (max-width: 1024px) {
            header {
                padding: 15px 20px;
            }
            
            header nav {
                display: none;
            }
            
            .menu-toggle {
                display: block;
            }
            
            .mobile-nav {
                display: flex;
                flex-direction: column;
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: linear-gradient(-45deg, #09111B 0%, #07345E 100%);
                padding: 20px;
                z-index: 999;
                transform: translateY(-100%);
                transition: transform 0.3s ease-in-out;
            }
            
            .mobile-nav.active {
                transform: translateY(0);
            }
            
            .mobile-nav a {
                padding: 15px 10px;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .mobile-nav .auth-buttons {
                flex-direction: column;
                margin-top: 20px;
                gap: 15px;
            }
            
            .mobile-nav .dropdown-wrapper {
                width: 100%;
            }
            
            .mobile-nav .main-dropdown {
                position: static;
                width: 100%;
                margin-top: 10px;
                box-shadow: none;
            }
            
            .mobile-nav .innovation-btn {
                width: 100%;
                text-align: left;
            }
        }


/* Students Recruitment Section */
.recruitment-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 10%;
  flex-wrap: wrap;
  gap: 40px;
}

.recruitment-image img {
  width: 100%;
  max-width: 600px;
  border-radius: 50px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.recruitment-text {
  max-width: 600px;
}

.recruitment-text h1 {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
}

.recruitment-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #eeeeee;
}

.recruitment-text .placement {
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  border: 2px solid #ffffff;   /* Blue border */
  padding: 5px 10px;           /* Space around the text */
  border-radius: 8px;          /* Rounded corners */
  font-weight: bold; 
  margin-bottom: 30px;
}



/* Careers Hero Section */
.careers-hero {
  background: radial-gradient(ellipse at bottom, #037be4 0%, #090a0f 100%);
  padding: 60px 30px;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 140px;
}

.careers-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1024px;
  gap: 30px;
}

.careers-text {
  max-width: 960px;
  color: white;
  margin: 0 auto;
}

.careers-text h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
}

.careers-text p {
  font-size: 18px;
  line-height: 1.7;
  text-align: center;
  display: block;
  width: 100%;
  max-width: none;
}

.career-btn {
  background-color: white;
  color: #000;
  padding: 10px 25px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  margin-top: 20px;
  transition: 0.3s;
}

.career-btn:hover {
  background-color: #f9a932;
  color: #000;
}

.careers-subtext {
  color: #e0e0e0;
  font-size: 16px;
  margin-top: 10px;
}

.careers-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.careers-card {
  width: 200px;
  height: 260px;
  border-radius: 20px;
  color: #fff;
  padding: 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.careers-cards a {
  text-decoration: none;
  color: inherit; /* Optional: ensures it takes color from parent */
}

.careers-card:hover {
  transform: scale(1.05);
  cursor: pointer;
}

.careers-card.survey {
  background: #ffc710;
}
.careers-card.quiz {
  background: #3c88e2;
}

.careers-card h2 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

.careers-card img {
  width: 140px;
  height: auto;
}

