/* Base Styles (Desktop) */
body {
  background-color: #FFFFFF; /* Light Gray */
  color: #333333; /* Dark Gray */
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  padding-top: 64px; /* Ensure content is not hidden behind the fixed header */
}

/* Ensure the top app bar remains fixed */
.mdc-top-app-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #1a1a1a; /* Dark Gray */
  padding: 10px 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for a clean design */
}

.mdc-top-app-bar__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.logo-section {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 20px;
}

.header__text {
  font-size: 24px;
  font-weight: bold;
  color: #ffffff; /* White text color */
  margin-right: 20px;
}

.navigation-primary {
  flex: 2;
  display: flex;
  justify-content: center;
}

.navigation-primary .submenu {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
  gap: 20px; /* Increase space between menu items */
}

.navigation-primary .menu-item {
  margin: 0;
}

.navigation-primary .menu-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 12px;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease; /* Smooth transition */
  border-radius: 4px; /* Subtle radius for a modern look */
}

.navigation-primary .menu-link:hover {
  /*background-color: rgba(255, 69, 0, 0.8);  Softer background hover color */
  color: #FF4500;
  border-radius: 20px; /* Rounded corners */
  transform: scale(1.05); /* Slight scale effect for interactivity */
  
}

.mdc-top-app-bar__section--align-end {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-shrink: 0;
  margin-left: 20px;
}

.menu-link:last-child {
  display: flex;
  align-items: center;
  gap: 5px;
}

.header__cta-button {
  display: inline-block;
  padding: 6px 16px;
  background-color: transparent;
  border: 2px solid #FF4500;
  border-radius: 20px;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  font-weight: 500;
  margin-right: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.header__cta-button:hover {
  background-color: #FF4500;
  color: #000000;
}

.hero-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
  background-color: #000000; /* Black */
  color: #FFFFFF; /* White */
  border-radius: 20px;
  margin: 20px;
}

.hero-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.hero-text {
  flex: 1;
  padding: 20px;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  margin: 0;
}

.hero-text p {
  font-size: 18px;
  margin: 20px 0;
}

.hero-video {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  overflow: hidden;
}

.hero-video video {
  width: 800px;
  height: 450px;
  max-width: 600px;
  max-height: 300px;
  border-radius: 15px;
  object-fit: cover;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.services-section {
  text-align: center;
  margin: 50px 0;
}

.services-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.services-cards-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
}

.services-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  width: 100%;
  border: 1px solid #E0E0E0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.service-icon img {
  max-width: 50px;
  height: auto;
  margin-bottom: 10px;
}

.service-icon {
  margin-bottom: 10px;
}

.service-icon span {
  font-size: 50px;
  color: #8A2BE2;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0;
}

.service-card p {
  font-size: 14px;
  margin: 10px 0;
}

.service-link {
  color: #59CBE8;
  text-decoration: none;
  font-weight: 500;
  display: block;
  margin-top: 20px;
  transition: color 0.3s ease;
}

.new-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
  background-color: #f8f9fa;
  color: #333333;
  border-radius: 20px;
  border: 2px solid #333;
  margin: 20px;
}

.new-section-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.new-section-text {
  flex: 1;
  padding: 20px;
}

.new-section-text h3 {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
}

.new-section-text h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 10px 0;
}

.new-section-button {
  margin-top: 20px;
}

.new-section-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.new-section-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.tabbed-section {
  text-align: center;
  margin: 50px 0;
}

.tabbed-section .tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.tabbed-section .tab-button {
  padding: 10px 20px;
  border: none;
  background-color: #f5f5f5;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  border-radius: 20px;
}

.tabbed-section .tab-button.active {
  background-color: #e0e0e0;
}

.tabbed-section .tab-content {
  display: none;
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
}

.tabbed-section .tab-content-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.tabbed-section .tab-content-inner img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.tabbed-section .tab-content-text {
  flex: 1;
}

.tabbed-section .tab-content-text h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 10px;
}

.tabbed-section .tab-content-text p {
  font-size: 16px;
  margin: 10px 0;
}

.tabbed-section .tab-link {
  color: #FF4500; /* Bright Red */
  text-decoration: none;
  font-weight: 500;
  display: block;
  margin-top: 10px;
}

.tabbed-section .tab-content.active {
  display: block;
}

.mdc-card__primary-action .mdc-card__media {
  background-size: cover;
  height: 200px;
}

.accent-color {
  color: #8A2BE2; /* Violet */
}

h2 {
  color: #8A2BE2; /* Violet */
}

.partner-logo {
  width: 100px;
  height: auto;
  margin: 10px;
}

.testimonials-section {
  text-align: center;
  padding: 50px 0;
  background-color: #f8f9fa;
  color: #333333;
  border-radius: 20px;
  border: 2px solid #333;
  margin: 20px;
}

.client-logos {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
  background-color: #f8f9fa;
  background-size: cover;
  background-position: center;
  border: 2px solid #333;
  border-radius: 20px;
  margin: 20px;
}

.contact-card {
  text-align: center;
  padding: 20px 40px;
  background-image: url('/img/_.jpeg'); /* Background image */
  border-radius: 15px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-card h2 {
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.contact-button {
  margin-top: 20px;
}

.contact-button-link {
  display: inline-block;
  padding: 15px 30px;
  background-color: #e02f1f; /* Vibrant color */
  color: white;
  border-radius: 50px; /* Fully rounded button */
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.contact-button-link:hover {
  background-color: #e04a2b; /* Darker shade for hover effect */
}

.subscription-status {
  margin-top: 20px;
  font-size: 14px;
  color: #4CAF50; /* Green for subscribed status */
}

.footer {
  background-color: #333333; /* Dark Gray */
  color: #FFFFFF; /* White */
  padding: 20px;
}

.footer .custom-color {
  color: #59CBE8; /* Replace with your desired color code */
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-company-info {
  flex: 1 1 25%;
  margin-bottom: 20px;
}

.footer-column {
  flex: 1 1 18%;
  margin-bottom: 20px;
}

.footer-heading {
  color: #e74c3c; /* Accent color */
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-column h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
}

.footer-column ul {
  list-style-type: none;
  padding: 0;
}

.footer-column ul li {
  margin: 5px 0;
}

.footer-column ul li a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 0.9em;
}

.footer-column ul li a:hover {
  color: #e74c3c; /* Accent color on hover */
}

.social-media-icons a {
  display: inline-block;
  margin-right: 10px;
  transition: opacity 0.3s;
}

.social-media-icons a:hover {
  opacity: 0.7;
}

.careers-link a {
  color: #e74c3c; /* Accent color */
  font-weight: bold;
  display: block;
  margin-top: 20px;
  text-decoration: none;
}

.careers-link a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.8em;
}

a:hover {
  text-decoration: underline;
}

.bento-button__text__after {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 5px;
  border-right: 2px solid #59CBE8; /* Adjust the color */
  border-bottom: 2px solid #59CBE8;
  transform: rotate(-45deg); /* Rotates the element to form an arrow */
  content: '';
}

.service-link {
  color: #59CBE8; /* Adjust to match your design */
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.service-link.rounded-button {
  color: #000; /* Default text color */
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px; /* Padding for the button look */
  border-radius: 20px; /* Rounded corners */
  background-color: transparent; /* No background by default */
  transition: background-color 0.3s ease, color 0.3s ease;
  display: inline-flex;
  align-items: center;
  border: 1px solid transparent; /* Border for better visual balance */
}

.service-link.rounded-button:hover {
  background-color: #f1f3f4; /* Light background color on hover */
  color: #202124; /* Text color on hover */
  border: 1px solid #59CBE8; /* Add a subtle border on hover */
}

.bento-button__text__after {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 5px;
  border-right: 2px solid #202124; /* Arrow color */
  border-bottom: 2px solid #202124;
  transform: rotate(-45deg); /* Creates the arrow shape */
  content: '';
  transition: margin-left 0.3s ease;
}

.service-link.rounded-button:hover .bento-button__text__after {
  margin-left: 8px; /* Moves the arrow slightly to the right on hover */
}

/* Responsive Design */

/* Tablets */
@media (max-width: 1024px) {
  .mdc-top-app-bar__row {
    padding: 0 10px;
    flex-direction: column;
  }

  .logo-section {
    margin-bottom: 10px;
  }

  .navigation-primary {
    justify-content: space-around;
    margin-bottom: 10px;
  }

  .hero-content {
    flex-direction: column;
  }

  .hero-video {
    width: 100%;
  }

  .services-cards-container {
    grid-template-columns: 1fr; /* Single column for cards */
    gap: 40px;
  }

  .new-section-content {
    flex-direction: column;
    text-align: center;
  }

  .tabbed-section .tab-content-inner {
    flex-direction: column;
  }

  .tabbed-section .tabs {
    flex-wrap: wrap;
  }
}

/* Mobile Devices */
@media (max-width: 768px) {
  .header__text {
    font-size: 20px;
  }

  .navigation-primary {
    flex-direction: column;
  }

  .navigation-primary .submenu {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .mdc-top-app-bar__section--align-end {
    flex-direction: column;
    align-items: flex-start;
  }

  .header__cta-button {
    margin: 10px 0;
  }

  .hero-section {
    padding: 30px 0;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .hero-video {
    width: 100%;
    height: auto;
  }

  .services-cards-container {
    grid-template-columns: 1fr; /* Single column for cards */
    gap: 20px;
  }

  .new-section-content {
    padding: 0;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-company-info,
  .footer-column {
    width: 100%;
    text-align: center;
  }
}

/* Startup Section Styles */
.startup-section {
  padding: 60px 20px;
  background-color: #f8f9fa;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
  border: 2px solid #333;
  margin: 20px;
}

.startup-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin-bottom: 40px;
}

.header-left {
  grid-column: 1 / 2;
  text-align: left;
}

.header-left h2 {
  font-size: 2.5rem;
  color: #8A2BE2;
  font-weight: 700;
  margin: 0;
}

.header-right {
  grid-column: 2 / 3;
  text-align: right;
  max-width: 500px;
}

.header-right p {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #333;
  margin: 0 0 20px 0;
}

.cta-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #f5f5f5;
  border: 2px solid #e02f1f;
  color: #333;
  text-decoration: none;
  border-radius: 20px;
  font-weight: 500;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

.cta-button:hover {
  background-color: #e02f1f;
}

.startup-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.startup-card {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
  text-align: left;
  transition: transform 0.3s ease-in-out;
}

.startup-card:hover {
  transform: translateY(-10px);
  background-color: #e0e0e0;
  border: 1px solid #8A2BE2;
}

.card-icon {
  font-size: 36px;
  margin-bottom: 20px;
  color: #333;
}

.startup-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #333;
  font-weight: 700;
}

.startup-card p {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #333;
  line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .startup-header {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }

  .header-left h2,
  .header-right p {
    text-align: center;
  }

  .header-right {
    margin-top: 20px;
    text-align: center;
  }
}




