/**--------------------------------
Main CSS File for themes and animations
-----------------------------------**/

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}


/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Main Global Theme */
:root {
  --background-color: #fff; /* This color is for the whole website */
  --default-text-color: #221d1d; /* This is for the text color displayed on the website */
  --heading-color: #364EB6; /* This is for the main headings like H1, H2 & H3 */
  --alt-color: #fff; /* This is for unique brand effects, used on links, hover, buttons, animations, etc. */
  --box-color: #fff; /* This is the box element color */
  --alt-text-color: #c83645ce; /* This is for contrast text color, used on different backgrounds */
  --nav-hover-color: #a80c0ce8; /* Hover color when mouse hovers over the navbar */
  --nav-color: #3841a9; /* Default link color for better contrast on white background */
  --nav-dropdown-color: #fff; /* Dropdown list color when mouse hovers on a particular link */
  --nav-background-color: #364EB6; /* Navbar background color */
  --nav-dropdown-background-color: #a80c0ce8; /* Background color of the dropdown when clicked */
}

/* Applying the theme color to their respective element */

body {
  background-color: var(--background-color);
  font-family: var(--default-font);
}

h1,
h2,
h3 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

h4,
h5,
h6 {
  color: var(--alt-text-color);
  font-family: var(--default-font);
}

a {
  color: var(--nav-color);
  text-decoration: none;
  transition: 0.5s;
}

a:hover {
  color: color-mix(in srgb, var(--alt-text-color), transparent 30%);
  text-decoration: none;
}


.header {
  background-color: #fff;
  color: var(--background-color);
  font-style: var(--alt-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo img {
  max-height: 72px;
  margin-left: 4px;
}

.header .header-social-links {
  padding-right: 15px;
  font-size: 20px;
}

@media (max-width: 1200px) {
  .logo .header {
    order: 1;
  }

  .header-social-links .header {
    order: 2;
  }

  .navmenu .header {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 1px 0 18px #0000001a;
  background-color: var(--background-color);
  font-style: var(var(--alt-text-color));
}

/* navbar desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
  position: relative; /* To position the line effect */
  color: var(--alt-text-color);
  padding: 18px 16px;
  font-size: 20px;
  font-family: var(--nav-font);
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  white-space: nowrap;
  transition: color 0.3s ease;
  }

  .navmenu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--nav-color); /* Color of the hover line */
    transition: width 0.3s ease; /* Smooth transition for the line */
  }

  .navmenu a:hover::after {
    width: 100%; /* Expand the line on hover */
  }
  

  .navmenu i a,
  .navmenu a:focus i {
    font-size: 17px;
    margin-left: 6px;
    line-height: 0;
    transition: transform 0.3s ease; /* Add smooth transition to icons */
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-color); /* Ensure the hover and active colors are distinct */
  }

  .navmenu .dropdown ul {
    margin: 0;
    background: var(--alt-color);
    padding: 15px 0;
    display: block;
    visibility: hidden;
    position: absolute;
    left: 0; /* Center the dropdown */
    top: 120%;
    opacity: 0;
    transition: visibility 0.2s, opacity 0.2s, transform 0.2s ease-in-out;
    border-radius: 8px;
    z-index: 99;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1; /* Fully visible on hover */
    top: 100%;
    visibility: visible;
    transform: translateY(0); /* Adds a subtle animation */
  }

  .navmenu .dropdown ul li {
    min-width: 130px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 16px;
    text-transform: none;
    color: var(--nav-dropdown-background-color);
    transition: background-color 0.3s ease;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--heading-color);
    background-color: var(--alt-hover-color); /* Optional background change on hover */
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -100%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navbar Mobile */
@media (max-width: 768px) {
  /* Hide the normal navbar on mobile */
  .navmenu ul {
    display: none;
    flex-direction: column;
    background: var(--alt-color); /* Ensure the mobile background is set */
    position: absolute;
    top: 70px; /* Position below the header */
    left: 0;
    width: 100%;
    padding: 15px;
    z-index: 9999;
  }

  .navmenu ul.active {
    display: flex; /* Show menu when toggled */
  }

  .navmenu ul li {
    margin: 10px 0; /* Add space between mobile menu items */
  }

  /* Hamburger icon */
  .mobile-nav-toggle {
    display: block; /* Show on mobile */
    font-size: 30px;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 10000;
  }

  .mobile-nav-toggle.active {
    transform: rotate(90deg); /* Optionally animate the hamburger icon */
  }

  /* Hide social icons on mobile if necessary */
  .header-social-links {
    display: none;
  }
}



@media (max-width: 768px) {
  .navbar-nav {
      flex-direction: column;
      align-items: center; /* Center the items */
  }

  .navbar-nav li {
      margin: 10px 0; /* Space between items */
  }
}


@media (max-width: 768px) {
  body, html {
      width: 100%;
      margin: 0;
      padding: 0;
      overflow-x: hidden; /* Disable horizontal scroll */
  }

  .container, .content, .hero, .section {
      width: 100%; /* Full width of the screen */
      max-width: 100%; /* Prevent going beyond screen width */
      padding: 0 15px;
      box-sizing: border-box;
  }

  img, video, iframe {
      max-width: 100%; /* No overflow for media */
      height: auto;
  }

  /* Example flexbox fix */
  .flex-container {
      display: flex;
      flex-direction: column; /* Stack items vertically on mobile */
      align-items: center; /* Center horizontally */
  }
}






@media (max-width: 768px) {
  .container, .content, .section {
      text-align: center; /* Center text content */
  }

  .button, .hero h1, .hero p {
      margin: 0 auto; /* Center block elements */
  }
}


@media (max-width: 768px) {
  .flex-container {
      display: flex;
      flex-direction: column; /* Stack items vertically on mobile */
      align-items: center; /* Center items horizontally */
  }
}

@media (max-width: 768px) {
  .content, .section {
      padding: 10px;
      margin: 0; /* Remove excessive margin */
  }

  .hero {
      padding: 20px;
  }
}



@media (max-width: 768px) {
  .hero {
      padding: 20px;
  }

  .hero h1 {
      font-size: 2em;
  }

  .hero p {
      font-size: 1em;
  }
}

@media (max-width: 480px) {
  .hero h1 {
      font-size: 1.5em;
  }

  .hero p {
      font-size: 0.9em;
  }
}


/* Show the hamburger menu (three dots) only on mobile */
@media (max-width: 768px) {
  .mobile-nav-toggle {
    display: block; /* Make sure the toggle is visible */
    position: absolute;
    right: 20px; /* Adjust position as needed */
    top: 15px;
    font-size: 28px;
    cursor: pointer;
    color: var(--alt-text-color); /* Use your custom color */
  }

  /* Hide the desktop menu on mobile */
  .navmenu ul {
    display: none;
  }

  /* Display menu when the toggle is clicked */
  .navmenu.open ul {
    display: block;
    position: absolute;
    top: 60px; /* Adjust as needed */
    left: 0;
    right: 0;
    background-color: var(--alt-color); /* Customize as per your theme */
    padding: 20px;
    list-style: none;
    text-align: center;
  }

  .navmenu ul li {
    margin: 15px 0;
  }
}

/* Hide the mobile toggle on desktop */
@media (min-width: 768px) {
  .mobile-nav-toggle {
    display: none;
  }

  .navmenu ul {
    display: flex;
    justify-content: space-between;
  }
}




/* Hide dropdown content initially */
.navmenu .dropdown ul {
  display: none; /* Hide the dropdown on mobile */
}

/* Show the dropdown content when the parent is clicked */
.navmenu .dropdown.active ul {
  display: block; /* Show dropdown when active */
}

/* Optional: transition effect for smooth opening/closing */
.navmenu .dropdown ul {
  transition: height 0.3s ease-in-out;
}





/* Footer Style for all Pages */

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-text-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 88px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}


/* Section Style */


/*--------------------------------------------------------------
# Contact Section with Parallax
--------------------------------------------------------------*/
.contact {
  position: relative;
  --background-color: color-mix(in srgb, var(--heading-color), transparent 95%);
  padding: 60px 0;
  z-index: 1;
}

.contact .info-wrap {
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-top: 3px solid #c83645ce; /* Red */
  border-bottom: 3px solid #3841a9; /* Blue */
  padding: 30px;
  border-radius: 10px;
  height: 100%;
}

@media (max-width: 575px) {
  .contact .info-wrap {
    padding: 20px;
  }
}

.contact .info-item {
  margin-bottom: 40px;
}

.contact .info-item i {
  font-size: 24px;
  color: #3841a9; /* Blue */
  background: rgba(75, 121, 255, 0.1); /* Light Blue */
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #333;
}

.contact .info-item p {
  font-size: 14px;
  color: #666;
}

.contact .info-item:hover i {
  background: #c83645ce; /* Red */
  color: #fff;
}

.contact .php-email-form {
  background-color: #fff;
  padding: 30px;
  border-top: 3px solid #3841a9; /* Blue */
  border-bottom: 3px solid #c83645ce; /* Red */
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 12px 15px;
  border-radius: 5px;
  background-color: #f1f1f1;
  border: 2px solid #ddd;
  color: #333;
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: #3841a9; /* Blue */
  background-color: #fff;
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: #aaa;
}

.contact .php-email-form button[type=submit] {
  background: #c83645ce; /* Red */
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  transition: 0.4s;
  font-size: 16px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #ff7878; /* Lighter Red */
}

.contact .php-email-form .error-message,
.contact .php-email-form .sent-message,
.contact .php-email-form .loading {
  display: none;
  padding: 15px;
  margin-bottom: 24px;
  border-radius: 5px;
}

.contact .php-email-form .error-message {
  background: #c83645ce;
  color: #fff;
}

.contact .php-email-form .sent-message {
  background: #3841a9;
  color: #fff;
}

.contact .php-email-form .loading {
  background: #f1f1f1;
  color: #333;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #c83645ce; /* Red */
  border-top-color: transparent;
  animation: animate-loading 1s linear infinite;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}




/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  text-transform: uppercase;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, #a20b0b, transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 85px;
  height: 2px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/* Section style end */

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding-bottom: 5px;
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--alt-text-color);
}

.about .read-more {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 40px;
  letter-spacing: 1px;
  padding: 8px 28px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--alt-text-color);
}


/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--alt-text-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--nav-color), transparent 70%);
}


/* Global Breadcrumb end */


/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us {
  --background-color: color-mix(in srgb, var(--heading-color), transparent 95%);
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.why-us .content {
  max-width: 300px; /* Adjust as needed for your layout */
}

.why-us .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.why-us .content p {
  color: color-mix(in srgb, var(--default-text-color), transparent 30%);
}

.why-us .faq-container {
  width: 100%;
  max-width: 800px; /* Adjust as needed for your layout */
}

.why-us .faq-container .faq-item {
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px color-mix(in srgb, var(--default-text-color), transparent 90%);
  background-color: var(--background-color);
  overflow: hidden;
}

.why-us .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.why-us .faq-container .faq-item h3 {
  font-weight: 500;
  font-size: 17px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
}

.why-us .faq-container .faq-item h3 span {
  color: var(--accent-color);
  padding-right: 5px;
  font-weight: 600;
}

.why-us .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.why-us .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.why-us .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.why-us .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 22px;
  line-height: 0;
  transition: 0.3s;
  color: var(--accent-color);
}

.why-us .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.why-us .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.why-us .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.why-us .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.why-us .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

.why-us .why-us-img {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px; /* Adjust as needed */
}

.why-us .why-us-img img {
  max-height: 70%;
}




/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/

/*** Services Start ***/

.services .services-item {
  box-shadow: 0 0 60px #00000033;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  padding: 10px 0;
  position: relative;
}


.services-content::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  border-radius: 10px 10px 0 0;
  background: #364EB6;
  transition: .5s;
}

.services-content::after {
  top: 0;
  bottom: auto;
  border-radius: 10px 10px 10px 10px;
}

.services-item:hover .services-content::after {
  height: 100%;
  opacity: 1;
  transition: .5s;
}

.services-item:hover .services-content-icon {
  position: relative;
  z-index: 2;
}

.services-item .services-content-icon i,
.services-item .services-content-icon p {
  transition: .5s;
}

.services-item:hover .services-content-icon i {
  color: #ce3737e8 !important;
}

.services-item:hover .services-content-icon p {
  color: #ffffff;
}

.services-item:hover .services-content-icon h4 {
  color: #ffffff;
}
/*** Services End ***/

.icon-1 {
  font-size: 80px;
}

.icon-2 {
  font-size: 80px;
}

.icon-3 {
  font-size: 80px;
}

.icon-4 {
  font-size: 80px;
}

.icon-5 {
  font-size: 80px;
}

.icon-6 {
  font-size: 80px;
}


/* Career Page */

.form-section {
  background-color: #ffffff; /* Matching your space-themed design */
  color: rgb(30, 28, 28);
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.form-control, .btn-primary {
  border-radius: 10px;
}


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
#footer {
  background: #3841a9;
  padding: 50px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 30px;
}

#footer .footer-about {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

#footer .footer-about img {
  max-width: 150px;
  margin-right: 30px;
}

#footer h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

#footer ul {
  list-style: none;
  padding: 0;
  line-height: 1.7;
}

#footer ul li {
  margin-bottom: 10px;
}

#footer ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

#footer ul li a:hover {
  color: #ce3737e8;
  padding-left: 5px;
  text-decoration: wavy;
}

#footer .footer-links i {
  color: var(--alt-color);
  margin-right: 5px;
  font-size: 12px;
}

#footer .social-links a {
  font-size: 20px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 10px;
  text-align: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: var(--alt-color);
  color: #ce3737e8;
}

#footer .copyright {
  font-size: 13px;
  padding-top: 20px;
}

.sitename {
  color: #fff;
  font-weight: 700;
}

@media (max-width: 767px) {
  #footer .footer-top {
    text-align: center;
  }

  #footer .footer-about {
    justify-content: center;
    margin-bottom: 30px;
  }
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--heading-color) transparent var(--nav-hover-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/

@media (max-width: 640px) {
  .clients .client-logo img {
    padding: 30px;
    max-width: 50%;
  }
}

.clients .client-logo:hover img {
  transform: scale(1.1);
}


 .video-background {
        width: 100%;
        height: auto;
        object-fit: cover;
 }


 .text-container {
  text-align: justify; /* Justifies the text */
}
.justify-text {
  list-style-type: disc;
  margin: 0;
  padding: 0;
  text-align: left; /* Ensures the list is aligned left */
}
.col-md-6 {
  padding: 15px; /* Adds some padding to columns for spacing */
}


/* Floating Image */
.floating-image {
  position: absolute;
  top: 25%; /* Set to 50% to center in parent */
  left: 950px; /* Adjust to control the horizontal position */
  transform: translateY(-50%); /* Only one translateY for centering */
  animation: float 6s ease-in-out infinite;
  z-index: 10; /* Ensure it's above other elements */
}

/* Image Styling */
.floating-image img {
  width: 865px; /* Adjust the size of the image */
  max-width: 100%; /* Fixes the issue of max-width exceeding 100% */
  height: auto;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5)); /* Adds a soft shadow for depth */
}

/* Floating Animation */
@keyframes float {
  0%, 100% {
    transform: translateY(-10px); /* Just move it up */
  }
  50% {
    transform: translateY(10px); /* Just move it down */
  }
}



  .typing-container {
    color: white;
    display: inline-block;
    overflow: hidden; /* Hide the overflow to simulate typing effect */
    white-space: nowrap; /* Prevent text from wrapping */
    font-size: 2.3rem; /* Adjust font size */
    margin-right: 20px;
    border-right: 2px solid; /* Simulates the cursor */
  }
  
  .cursor {
    display: inline-block;
    background-color: #fff;
    animation: blink 0.7s steps(1) infinite;
  }
  
  @keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
  }
  




/* Footer styles */
.footer-center-logos {
  margin-top: 20px; /* Add some spacing above the logos */
  text-align: center;
}

.footer-logo {
  height: 80px; /* Adjust logo size */
  width: auto;
  margin: 0 15px; /* Spacing between logos */
}

/* Adjust responsiveness */
@media (max-width: 768px) {
  .footer-logo {
      height: 30px; /* Adjust size for smaller screens */
  }
}

.swiper {
  width: 100%;
  padding: 20px 0;
}

.swiper-wrapper {
  display: flex;
  align-items: center;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 140px; /* Adjust based on logo sizes */
}

.swiper-slide img {
  max-width: 140px;
  max-height: 85px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.swiper-slide img:hover {
  transform: scale(1.1);
}





/* Container for the space theme within the hero section */
.space-theme {
  position: relative;
  width: 100%;
  height: 85vh;
  background-color: #364eb6;
  overflow: hidden;
  animation: colorChange1 7s infinite alternate;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Base styling for stars */
.stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 3px;
  background: white;
  border-radius: 50%;
  animation: moveStars linear infinite, randomTrail ease-in-out infinite;
}

/* Add more layers of stars for a denser look */
.layer1 {
  animation-duration: 60s, 3s;
  animation-delay: 0s, 1s;
  box-shadow: 200px 300px #fff, 500px 400px #fff, 800px 600px #fff, 1100px 200px #fff, 1400px 100px #fff,
              1600px 800px #fff, 1800px 900px #fff, 1900px 1100px #fff, 2100px 1300px #fff;
}

.layer2 {
  animation-duration: 70s, 4s;
  animation-delay: -2s, 1.5s;
  box-shadow: 400px 200px #fff, 600px 300px #fff, 700px 500px #fff, 1000px 400px #fff, 1300px 300px #fff,
              1600px 200px #fff, 1700px 700px #fff, 1900px 900px #fff, 2100px 1200px #fff;
}

.layer3 {
  animation-duration: 80s, 5s;
  animation-delay: -4s, 2s;
  box-shadow: 300px 100px #fff, 500px 400px #fff, 700px 600px #fff, 900px 800px #fff, 1200px 600px #fff,
              1400px 900px #fff, 1600px 1100px #fff, 1800px 1400px #fff, 2000px 1700px #fff;
}



/* Keyframes for endless upward movement */
@keyframes moveStars {
  0% {
    transform: translateY(100vh);
  }
  100% {
    transform: translateY(-100vh);
  }
}

/* Randomized trail effect */
@keyframes randomTrail {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  50% {
    opacity: 0.5;
    transform: translateY(-10px) scale(1.05);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px) scale(1.1);
  }
}

/* Background color transition between blue and red */
@keyframes colorChange1 {
  0% {
    background-color: #364eb6;
  }
  100% {
    background-color: #a80c0ce8;
  }
}

/* Cosmic glow pulsing effect */
@keyframes cosmicPulse {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 0.6;
  }
}





/* Nebula Effect */
.nebula {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(128, 0, 128, 0.3), transparent 70%),
              radial-gradient(circle at 20% 80%, rgba(255, 0, 128, 0.2), transparent 70%),
              radial-gradient(circle at 80% 20%, rgba(0, 128, 255, 0.2), transparent 70%);
  filter: url(#nebula-filter);
  animation: moveNebula 30s infinite linear;
  pointer-events: none; /* Prevents interfering with other elements */
  z-index: 1; /* Behind the text */
}

@keyframes moveNebula {
  0% {
    transform: translate(-10px, 0px) scale(1);
  }
  50% {
    transform: translate(10px, 10px) scale(1.05);
  }
  100% {
    transform: translate(-10px, 0px) scale(1);
  }
}

/* SVG Filter for Nebula Texture */
svg {
  position: absolute;
  width: 0;
  height: 0;
}

svg defs {
  filter: url(#nebula-filter);
}

#nebula-filter {
  filter: url(#displacementFilter);
}




/* Card Mouse Hover effects */

/* Container for the cards */
.card-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px; /* Space between the cards */
  padding: 60px; /* Add padding around the container */
  flex-wrap: wrap; /* Allow cards to wrap on smaller screens */
}

/* Card styles */
.card {
  width: 400px;
  height: 200px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.5s ease, background 0.5s ease;
  background: rgb(255, 255, 255); /* Default background */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
  background: radial-gradient(circle at 30% 30%, rgba(255, 0, 0, 0.6), transparent), 
              radial-gradient(circle at 70% 70%, rgba(0, 0, 255, 0.6), transparent), 
              #121212; /* Simulates a space theme */
  color: white;
}

.card .content {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: color 0.5s ease;
}

.card .default-text {
  font-size: 24px;
  color: #333;
  transition: opacity 0.5s ease;
}

.card .hover-text {
  font-size: 20px;
  color: white;
  position: absolute;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.card:hover .default-text {
  opacity: 0;
}

.card:hover .hover-text {
  opacity: 1;
  transform: translateY(0);
}


.client-logo {
  display: none; /* Hide all logos initially */
  padding: 17px;
  text-align: center;
  border: 2px solid #ffffff; /* Light border around the logo */
  border-radius: 8px; /* Rounded corners */
  background-color: #f9f9f9; /* Light background color */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for effects */
}

.client-logo img {
  max-width: 140px; /* Adjust based on your logo sizes */
  max-height: 85px;
  object-fit: contain;
  margin-bottom: 10px; /* Space between the image and border */
}

.client-logo:hover {
  transform: translateY(-5px); /* Lift the logo slightly on hover */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
  border-color: #364eb6; /* Change border color on hover */
}


/* Space-themed filter buttons */
.filter-btn {
  margin: 5px;
  padding: 10px 20px;
  border: none;
  background: #ffffff; /* Initial white background */
  color: #000000; /* Black text initially */
  font-size: 16px;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.filter-btn:hover {
  background: linear-gradient(135deg, #364eb6, #212e75); /* Space-themed gradient */
  color: #ffffff; /* White text on hover */
  box-shadow: 0 8px 15px rgba(54, 78, 182, 0.5), 0 0 10px #a80c0ce8, 0 0 15px #a80c0ce8;
}

/* Active state styling */
.filter-btn.active {
  background: linear-gradient(135deg, #364eb6, #212e75); /* Keep space-themed gradient */
  color: #ffffff; /* Keep white text */
  box-shadow: 0 8px 15px rgba(54, 78, 182, 0.5), 0 0 10px #a80c0ce8, 0 0 15px #a80c0ce8; /* Highlighted glow effect */
  outline: none;
}


/* Keyframes for color-changing animation */
@keyframes colorChange {
  0% {
      color: #364eb6; /* Blue color */
  }
  50% {
      color: #ce3737e8; /* Red color */
  }
  100% {
      color: #364eb6; /* Back to blue */
  }
}





/* Apply animation to icons */
.why-item i {
  font-size: 45px;
  animation: colorChange 3s infinite; /* 3s duration for a smooth transition */
}

/* Why Us Section */
#why-us {
  padding: 60px 20px;
  background-color: #f8f9fa; /* Light background for contrast */
  position: relative;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #364eb6; /* Accent color matching the space theme */
  margin-bottom: 30px;
  position: top;
  align-self: center;
}

.section-title h2::after {
  content: '';
  width: 50px;
  height: 4px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
}

.why-item h2 {
  justify-content: center;
  align-items: center;
}


.why-item h4 {
  justify-content: left;
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: 600;
  color: #212529;
  margin-bottom: 15px;
}

.why-item p {
  color: #6c757d;
  line-height: 1.6;
  font-size: 16px;
  justify-content: left;
  align-content: left;
}

.content1 {
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: white;
}

.content1:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-title h2 {
      font-size: 28px;
  }
  .why-item h4 {
      font-size: 18px;
  }
  .why-item p {
      font-size: 15px;
  }
}



.infrapara {
  font-size: 20px;
  color: #000000;
}

.infrapara h3 {
  font-size: 32px;
}

.infrapara ul {
    padding-left: 10px; 
    list-style-position: inside;
    margin-top: 20px;
    margin-bottom: 25px;
}

.infrapara li {
  margin-left: 20px;
}

.infrapara p {
  margin-top: 20px;
  margin-bottom: 20px;
}

.odoo1 {
  height: 475px;
  width: auto;
}

.breadcrumb-container {
  padding: 15px 20px;
  background-color: #f8f9fa; /* Light background for contrast */
}

.breadcrumb a {
  text-decoration: none;
}

.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  padding: 0 5px;
}

.job {
  margin-block-start: 50px;
  margin-left: 30px;
  margin-right: 30px;
  margin-top: 30px;
}

/* Base styles for the popup */
.popup {
  display: none; /* Start hidden */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  overflow-y: auto; /* Add scroll if content overflows */
}

/* Popup content styles */
.popup-content {
  width: 100%; /* Adjust width to make the popup larger */
  max-width: 1000px; /* Limit maximum width */
  height: 65vh; /* Use a viewport height to make it taller */
  max-height: 90vh; /* Limit maximum height */
  margin: auto; /* Center horizontally */
  padding: 30px;
  background-color: white;
  border-radius: 8px;
  text-align: left; /* Align text to the left for readability */
  position: relative;
  transform: translateY(-30px);
  transition: transform 0.3s ease, opacity 0.3s ease;
  overflow-y: auto; /* Allow scrolling within the popup */
}

/* Show class for animations */
.popup.show {
  display: flex; /* Use flex to center content */
  opacity: 1;     /* Fade in */
}

.popup.show .popup-content {
  transform: translateY(0); /* Slide down */
  opacity: 1;               /* Ensure opacity is fully visible */
}

/* Hide content animation */
.popup.hide .popup-content {
  transform: translateY(-30px); /* Slide up */
  opacity: 0;                   /* Fade out */
}

/* Remove the popup from view */
.popup.hide {
  opacity: 0; /* Fade out */
}

/* Close button styles */
.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 18px;
  cursor: pointer;
}

/* Map */

.maps {
  height: 480px;
  width: 100vw; /* Takes up full width of the viewport */
  margin: auto;
}


@media (max-width: 768px) {
  .maps {
    height: 300px; /* Adjust the height for smaller screens */
  }
}

@media (max-width: 480px) {
  .maps {
    height: 250px;
    width: 90vw; /* Reduce width slightly for very small screens */
  }
}


/* Smartlink text color */

.smart {
  color: #3841a9; /* Blue color for "Smart" */
}

.link {
  color: #ce3737e8; /* Red color for "L" */
}


#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 5px;
  background: linear-gradient(to right, red, blue); /* Red to blue gradient */
  z-index: 9999;
  transition: width 0.5s ease-out; /* Smooth width transition */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Optional shadow for depth */
}

#progress-bar:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to right, rgba(255, 0, 0, 0.8), rgba(0, 0, 255, 0.8)); /* Smooth fading gradient */
  opacity: 0.8; /* Fade opacity */
}


/* Solar System Container */
.diagram-container {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff; /* White background */
}

/* Solar System */
.solar-system {
  position: relative;
  width: 800px; /* Adjusted size */
  height: 600px; /* Oval shape closer to circle */
}

/* Center Element (SLA in the middle, Sun analogy) */
.center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  color: #364EB6;
  background-color: rgba(54, 78, 182, 0.1);
  padding: 30px;
  border-radius: 100%; /* Perfect circle for the center */
  box-shadow: 0 0 10px rgba(54, 78, 182, 0.2);
  z-index: 2;
}

/* Circular Orbits that are slightly oval but close to circles */
.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 2px dashed rgba(54, 78, 182, 0.5);
  border-radius: 50%; /* Oval shape close to circular */
  transform: translate(-50%, -50%);
}

/* Orbit Sizes (Width slightly greater than height for oval shape) */
.orbit-1 { width: 250px; height: 230px; } /* Slightly oval */
.orbit-2 { width: 350px; height: 330px; }
.orbit-3 { width: 450px; height: 430px; }
.orbit-4 { width: 550px; height: 530px; }
.orbit-5 { width: 650px; height: 630px; }

/* Planets */
.planet {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: 0 0; /* Correct transform origin */
  background: radial-gradient(circle at 30% 30%, #3a76d8, #364EB6); /* Gradient for dimensional effect */
  color: #fff; /* White text */
  padding: 15px 20px; /* Larger planets */
  border-radius: 50%;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 0 15px rgba(54, 78, 182, 0.7), 0 0 30px rgba(54, 78, 182, 0.5); /* Glowing effect */
  animation: orbitAround 30s linear infinite; /* Smooth planet movement */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transitions for hover */
}

.planet-content {
  transform: rotate(0deg); /* Counter-rotate the text to stay upright */
}

/* Hover effect for planets */
.planet:hover {
  transform: scale(1.2); /* Slightly enlarge planet on hover */
  box-shadow: 0 0 25px rgba(54, 78, 182, 0.9), 0 0 40px rgba(54, 78, 182, 0.6); /* Enhance glow on hover */
}

/* Planet orbit animation */
@keyframes orbitAround {
  from {
    transform: rotate(0deg) translateX(125px); /* Half of the orbit width */
  }
  to {
    transform: rotate(360deg) translateX(125px);
  }
}



/* Planet positions and delays */
.orbit-1 .planet { animation-delay: 0s; }
.orbit-2 .planet { animation-delay: -6s; }
.orbit-3 .planet { animation-delay: -16s; }
.orbit-4 .planet { animation-delay: -24s; }
.orbit-5 .planet { animation-delay: -12s; }

/* Planet orbit animation */
@keyframes orbitAround {
  from {
    transform: rotate(0deg) translateX(125px); /* Half of the orbit width */
  }
  to {
    transform: rotate(360deg) translateX(125px);
  }
}










