body {
  margin: 0;
  font-family: Arial, sans-serif;
  text-align: center;
}

h3.heading {
  font-size: 24px;
  line-height: 32px;
  font-weight: bold;
}

h4.subheading {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
}

/* Adjust font sizes for mobile screens */
@media (max-width: 768px) {
  .text-5xl {
    font-size: 1.8rem !important; /* Force font size for large headings */
    line-height: 2.2rem !important; /* Force line height */
  }

  .font-bold {
    font-weight: 700 !important; /* Ensure bold text remains consistent */
  }

  .leading-tight {
    line-height: 1.5 !important; /* Adjust line height for better readability */
  }

  .text-lg {
    font-size: 0.9rem !important; /* Reduce font size for paragraphs */
    line-height: 1.4rem !important; /* Adjust line height */
  }
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.375rem;
}

.alert-dismissible {
  padding-right: 3rem;
}

.alert-dismissible .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 1.25rem;
  background: transparent;
  border: none;
  opacity: 0.5;
  padding: 12px 18px;
  font-weight: 700;
}

.alert-dismissible .btn-close:hover {
  opacity: 1;
}

/* Alert Colors */
.alert-primary {
  background-color: #cfe2ff;
  border-color: #b6d4fe;
  color: #084298;
}

.alert-success {
  background-color: #d1e7dd;
  border-color: #badbcc;
  color: #0f5132;
}

.alert-danger {
  background-color: #f8d7da;
  border-color: #f5c2c7;
  color: #842029;
}

.alert-warning {
  background-color: #fff3cd;
  border-color: #ffecb5;
  color: #664d03;
}

.subheading {
  color: cyan;
}

.heading {
  color: antiquewhite;
}

.header-intro-section-bg {
  background: linear-gradient(136deg, black, black, black, black, black, #C084FC, #b66aff);
}

.header.desktop-header {
  display: none;
}
@media (min-width: 768px) {
  .header.desktop-header {
    display: flex;
    justify-content: center;
  }
}
.header.desktop-header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  background: black;
  box-shadow: 0 1px lightblue;
  width: 90%;
  border-radius: 11px;
}

/* Mobile Header (Hamburger Menu) */
.mobile-header {
  display: none;
  background-color: #000;
  padding: 15px 20px;
  color: white;
}
@media (max-width: 768px) {
  .mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100vw;
  }
  .header-intro-section-bg {
    padding-top: 70px; /* Add padding equal to header height to prevent content hiding */
  }
}

.menu-icon {
  font-size: 24px;
  cursor: pointer;
}

/* Sidebar Navigation */
.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  top: 0;
  left: 0;
  background-color: black;
  overflow-x: hidden;
  transition: 0.3s;
  padding-top: 60px;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5); /* Highlight only the panel */
  z-index: 1000;
}

.sidenav a {
  padding: 10px 20px;
  text-decoration: none;
  font-size: 20px;
  color: white;
  display: block;
  transition: 0.2s;
}

.sidenav a:hover {
  background-color: #575757;
}

.sidenav .close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
}

.multikon-header-logo {
  height: 50px;
  border-radius: 12px;
}

.logo-container {
  display: flex;
  align-items: center;
  position: relative;
  width: 16rem;
  /* Initially, only the logo width */
  overflow: hidden;
  transition: width 0.5s ease-in-out;
}

.logo {
  width: 50px;
  /* Smaller logo size */
  transition: transform 0.5s ease-in-out;
}

.company-name {
  white-space: nowrap;
  font-size: 16px;
  font-weight: bold;
  color: white;
  padding-left: 5px;
  opacity: 0;
  transform: translateX(20px);
  /* Initially shifted right */
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

/* Hover Effect */
.logo-container:hover .company-name {
  opacity: 1;
  transform: translateX(0);
}

.logo-container:hover {
  cursor: pointer;
}

/* Apply initial hidden state */
.header,
.nav,
.logo {
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

.intro-section-text {
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

.intro-section-carousel-img {
  transform: translateX(100%);
  opacity: 0;
  transition: transform 1s ease-out, opacity 1s ease-out;
}

/* Adjust layout for mobile screens */
/* Adjust layout for mobile screens */
@media (max-width: 768px) {
  .intro-section {
    display: flex !important; /* Force stacking elements vertically */
    flex-direction: column !important; /* Stack elements vertically */
    align-items: center !important; /* Center align elements */
    padding: 20px !important; /* Add padding for better spacing */
  }

  .intro-section-text {
    margin-bottom: 20px !important; /* Add spacing below the text */
  }

  .intro-section-carousel-img {
    width: 100% !important; /* Make the carousel take full width */
    height: auto !important; /* Adjust height */
    margin: 0 auto !important; /* Center the carousel */
  }

  .swiper-slide img {
    width: 100% !important; /* Ensure images fit within the container */
    height: auto !important; /* Maintain aspect ratio */
  }
}

/* Slide in effect when the page loads */
body.loaded .header,
body.loaded .nav,
body.loaded .logo {
  transform: translateY(0);
  opacity: 1;
}

body.loaded .intro-section-text {
  transform: translateY(0);
  opacity: 1;
}

body.loaded .intro-section-carousel-img {
  transform: translateX(0);
  opacity: 1;
}

.intro-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}
@media (min-width: 768px) {
  .intro-section {
    flex-direction: row;
    padding: 100px 100px;
  }
}

.swiper {
  width: 80%;
  height: 300px;
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.logo {
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  background: linear-gradient(150deg, #00CFFD, #A855F7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav a {
  margin: 0 15px;
  font-size: 1rem;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.nav a:hover {
  color: #00CFFD;
  text-shadow: 0 0 5px #00CFFD;
}

.btn-get-started {
  color: white;
}

.intro-section-carousel-img {
  height: 25%;
  width: 25%;
}

.service-section-padding {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (max-width: 768px) {
  .service-section-padding {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.service-cards-grid {
  margin: 35px 10px;
}
.service-cards-grid .service-cards {
  background-color: #1E293B;
  /* Initial background color */
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.service-cards-grid .btn-service-card {
  display: block;
  margin-top: 20px;
  width: 30%;
  align-self: center;
}
.service-cards-grid .btn-service-card .fa-arrow-right {
  font-size: 20px;
  color: cyan;
}
.service-cards-grid .btn-service-card .explore-text {
  display: none;
}
.service-cards-grid .service-cards:hover {
  cursor: pointer;
  background-color: rgba(39, 12, 46, 0.3098039216);
  /* Background color on hover */
  transform: scale(1.05) !important;
  /* Slightly scales up the card */
  box-shadow: 0 0 23px 0 rgb(85, 43, 126);
}
.service-cards-grid .service-cards:hover .subheading {
  color: #bfb6f3;
}
.service-cards-grid .service-cards:hover .btn-service-card {
  width: 50%;
}
.service-cards-grid .service-cards:hover .btn-service-card .fa-arrow-right {
  display: none;
}
.service-cards-grid .service-cards:hover .btn-service-card .explore-text {
  display: block;
}
.service-cards-grid.service-cards-grid-row-2 {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
.service-cards-grid.service-cards-grid-row-2 .service-cards {
  width: 35%;
}

/* Adjust layout for mobile screens */
@media (max-width: 768px) {

  .service-cards-grid.service-cards-grid-row-2.hidden {
    display: none !important; /* Hide elements with the 'hidden' class */
  }

  .service-cards-grid.service-cards-grid-row-2 {
    display: grid !important; /* Switch to grid layout for mobile */
    grid-template-columns: 1fr !important; /* Force single-column layout */
    gap: 20px !important; /* Add spacing between cards */
  }

  .service-cards-grid.service-cards-grid-row-2 .service-cards {
    width: 100% !important; /* Ensure cards take full width */
  }
}

.contact-info-section {
  background: linear-gradient(352deg, #C084FC, #111827, #111827, #111827, #111827, #111827, #111827);
  /* Form Container */
  /* Input Fields */
  /* Button */
}
.contact-info-section .contact-cards-grid {
  margin: 40px;
}
.contact-info-section .contact-cards {
  background-color: #1E293B;
  /* Initial background color */
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  margin: 30px 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  padding: 20px;
  width: 500px;
}
.contact-info-section .contact-cards .mobile-details,
.contact-info-section .contact-cards .email-details,
.contact-info-section .contact-cards .join-us-list {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 20px;
  color: #D1D5DB;
  font-weight: 700;
  font-size: 18px;
}
.contact-info-section .contact-cards .phone-icon,
.contact-info-section .contact-cards .email-icon {
  position: relative;
  top: 2px;
  font-size: 20px;
}
.contact-info-section .contact-cards .fa-brands {
  font-size: 24px;
  cursor: pointer;
}
.contact-info-section form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-info-section .input-group {
  display: flex;
  gap: 10px;
}
.contact-info-section .input-group input {
  flex: 1;
}
.contact-info-section input,
.contact-info-section textarea {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: #fff;
  outline: none;
  transition: 0.3s;
}
.contact-info-section input:focus,
.contact-info-section textarea:focus {
  border-color: #c084fc;
}
.contact-info-section .submit-btn {
  background: linear-gradient(90deg, #c084fc, #b66aff);
  border: none;
  position: relative;
  left: 25%;
  margin-top: 10px;
  width: 50%;
  padding: 12px;
  border-radius: 30px;
  font-size: 16px;
  color: white;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}
.contact-info-section .submit-btn:hover {
  background: linear-gradient(90deg, #b66aff, #5d0096);
}

/* ...existing code... */

/* For tablets (769px - 1024px), use side-by-side columns and adjust spacing */
@media (min-width: 769px) and (max-width: 1024px) {
  .contact-cards-grid {
    display: flex !important;
    flex-direction: row !important;
    gap: 24px !important;
  }
}

/* Contact Section Mobile Responsive */
@media (max-width: 768px) {
  #contact-info-section {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .contact-cards-grid {
    display: flex !important;
    flex-direction: column-reverse !important;
    gap: 16px !important;
  }
  .contact-cards {
    width: 100% !important;
    margin: 12px 0 !important;
    padding: 16px !important;
    font-size: 1rem;
  }
  .contact-form-container {
    width: 100% !important;
    margin: 0;
    padding: 0 8px;
  }
  .input-group {
    flex-direction: column;
    gap: 8px;
  }
  .input-group input {
    width: 100%;
    margin-bottom: 8px;
  }
  #contactForm input,
  #contactForm textarea {
    font-size: 1rem;
  }
  .submit-btn {
    width: 100% !important;
    margin-top: 12px !important;
    font-size: 1rem !important;
    left: 0 !important;
  }
  .contact-info-text {
    font-size: 1.3rem;
    margin-bottom: 16px;
  }

  .contact-info-section .contact-cards .mobile-details, .contact-info-section .contact-cards .email-details {
    font-size: 14px;
    letter-spacing: 1px;
  }
}

/* ...existing code... */

.multikon-about-us {
  padding-top: 64px;
  background: linear-gradient(166deg, #C084FC, black, black, black, black);
  width: 100%;
}
.multikon-about-us .about-us-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  width: 100%;
  padding-block: 20px 50px;
}
.multikon-about-us .about-us-container .experience-years {
  width: 30%;
}
.multikon-about-us .about-us-container .experience-years .years-of-experience-text {
  color: #F5F5DC;
  padding-left: 35px;
  font-size: 12px;
}
.multikon-about-us .about-us-container .about-us-content {
  color: white;
  width: 70%;
}

/* ...Mobile view existing code... */
@media (max-width: 768px) {
  .multikon-about-us {
  padding-top: 32px;
  }

  .multikon-about-us .about-us-container {
    flex-direction: column;
    align-items: center;
    padding-block: 10px 20px;
  }
  .multikon-about-us .about-us-container .experience-years {
    width: 100%;
    margin-bottom: 16px;
    text-align: center;
  }
  .multikon-about-us .about-us-container .about-us-content {
    width: 100%;
    text-align: center;
  }
  .multikon-about-us .about-us-content h2 {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .years-of-experience-text {
    font-size: 10px;
    padding-left: 0;
  }
  .working-experience-number {
    font-size: 2rem;
  }
}
/* ...existing code... */

.multikon-detailed-about-us {
  display: flex;
  width: 100%;
  background: black;
}
.multikon-detailed-about-us .detailed-about-us-container {
  font-family: Verdana;
  width: 80%;
  color: #D1D5DB;
  padding: 50px 50px 50px 70px;
  text-align: justify;
  line-height: 30px;
  font-size: 16px;
}
.multikon-detailed-about-us .detailed-about-us-container .aboutus-text {
  padding-top: 20px;
}
.multikon-detailed-about-us .about-us-img-container {
  width: 40%;
  padding: 50px;
}

@media (max-width: 768px) {
  .multikon-detailed-about-us {
    flex-direction: column;
    padding: 24px 0;
  }
  .detailed-about-us-container {
    width: 100% !important;
    padding: 0 12px !important;
    order: 2;
  }
  .about-us-img-container {
    width: 100%;
    margin-bottom: 16px;
    justify-content: center;
    order: 1;
  }
  .multikon-about-us-img {
    max-width: 80vw;
    height: auto;
    margin: 0 auto;
    border-radius: 12px;
  }
  .aboutus-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 12px;
    text-align: center;
  }
  .subheading.pt-10 {
    padding-top: 1rem !important;
    text-align: center;
  }
  .multikon-detailed-about-us .detailed-about-us-container .aboutus-text {
    padding-top: 0 !important;
  }
}

.copy-rights {
  color: #D1D5DB;
}

.view-more-btn.gradient-border-button {
  position: relative;
  overflow: visible;
  z-index: 1;
}

/**Button outline rotate */
.gradient-border-button {
  position: relative;
  padding: 8px 24px;
  font-size: 14px;
  font-weight: bold;
  color: white;
  background-color: #222;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  outline: none;
  border-radius: 50px;
}

.gradient-border-button::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 50px;
  padding: 3px;
  background: linear-gradient(45deg, cyan, magenta, purple, cyan);
  background-size: 300% 300%;
  animation: animate-border 3s linear infinite;
  z-index: -1;
}

@keyframes animate-border {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
/** Mask year */
.working-experience-number.background-designer-image {
  background-image: url(./../assets/years/text-mask-image-two.webp), linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
  background-position: 50%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: auto, auto;
}

.working-experience-number {
  color: white;
  -webkit-text-fill-color: transparent;
  background-image: url(./../assets/years/text-mask-image-two.webp), linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
  background-position: 50%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: auto, auto;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 200px;
  font-weight: 600;
  line-height: 1;
}

/* Animation for headings sliding in from the top */
@keyframes slideInFromTop {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* Animation for cards sliding in from the bottom */
@keyframes slideInFromBottom {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* Slide in from the left */
@keyframes slideInFromLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
/* Slide in from the right */
@keyframes slideInFromRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
/* Initial state for headings and cards */
.expertise-heading,
.service-cards,
.about-us-title,
.about-us-content,
.contact-info-text,
.mobile-card,
.emailCard,
.contact-form-container {
  opacity: 0;
}

/* Active state to trigger animations */
.expertise-heading.active {
  animation: slideInFromTop 0.5s forwards;
}

.service-cards.active {
  animation: slideInFromBottom 0.5s forwards;
}

.about-us-title.active {
  animation: slideInFromTop 0.5s forwards;
}

.about-us-content.active {
  animation: slideInFromRight 0.5s ease-out forwards;
}

.working-experience-number.active {
  animation: slideInFromLeft 0.5s ease-out forwards;
}

.contact-info-text.active {
  animation: slideInFromTop 0.5s forwards;
}

.mobile-card.active {
  animation: slideInFromTop 0.5s forwards;
}

.email-card.active {
  animation: slideInFromBottom 0.5s forwards;
}

.contact-form-container.active {
  animation: slideInFromRight 0.5s ease-out forwards;
}

/* Keyframe animation for fading in */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
    /* Optional: slight upward movement */
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Initial state: hidden */
.detailed-about-us-container p {
  opacity: 0;
  transform: translateY(20px);
  /* Matches the 'from' state of the animation */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Active state: visible */
.detailed-about-us-container p.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Sliding title for mobile view */
.sliding-title {
  display: inline-block;
  position: relative;
  width: 90px;
  height: 32px;
  overflow: hidden;
  vertical-align: middle;
  margin-left: 10px;
}

.title-slide {
  position: absolute;
  left: 0;
  width: 100%;
  font-weight: bold;
  color: #fff;
  font-size: 1.2rem;
  opacity: 0;
  animation: slideTitle 4s infinite;
}

.title-multikon {
  animation-delay: 0s;
}
.title-mit {
  animation-delay: 2s;
}

@keyframes slideTitle {
  0% { opacity: 0; transform: translateY(100%);}
  10% { opacity: 1; transform: translateY(0);}
  40% { opacity: 1; transform: translateY(0);}
  50% { opacity: 0; transform: translateY(-100%);}
  100% { opacity: 0; transform: translateY(-100%);}
}
/*# sourceMappingURL=styles.css.map */
