/* Default styles for larger screens */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
}

body {
  font-family: Poppins, Arial, Helvetica, sans-serif;
  color: #333;
}

:root {
  --primary: #FF5722;
  --dark: #1A1A1A;
  --light-dark: #332e2e;
  --light: #ffdcdc;
  --turquoise: #40E0D0;
  --coral: #FF7F50;
  --gold: #DAA520;
  --primary-blue: #2b4364;
  --primary-white: #f1f1f1;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 5px;
  background-color: #000000;
  margin: 3px 0px;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
}

/* Hide mobile menu by default */
nav.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: #333;
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  z-index: 10;
}

nav.mobile-menu a {
  margin: 15px 0;
}

/** Hero Section starts */

.dark-backgroud {
  background: linear-gradient(to bottom, #0c2a49, #304869) !important;
}

.hero-section h1 {
  font-size: 3.5em;
}

.hero-section p {
  font-size: 1.5em;
}

.hero-section {
  color: var(--primary-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
}

.hero-content-left {
  flex: 2;
  padding-right: 20px;
}

.hero-content-left p {

  margin-bottom: 15px;;
  /* Adjust based on your design */
}

.hero-content-right {
  flex: 1;
}

.hero-content-right img {
  width: 100%;
  max-width: 600px;
  /* Adjust the max-width based on your design */
}

/** Carousel**/

.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #d6e7ef !important;
  text-align: center;
  justify-content: center;
  ;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  text-align: center;
  justify-content: center;
}

.carousel-item {
  min-width: 150px;
  margin: 15px 12px;
  background: #fff;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-item img {
  max-width: 100px;
  height: auto;
}

.carousel-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.carousel-button {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 50%;
}

.carousel-button:hover {
  background: rgba(0, 0, 0, 0.7);
}

/* Challenges Section */

.challenges-section {
  background-color: #ffffff;
  padding: 30px 0;
  width: 85%;
  margin: 0 auto;
}

.challenges-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: bold;
  color: #004d99;
}

.challenges-section .challenges-description {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  color: #666;
}

.challenges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: left;
}

.challenges-item {
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.challenges-item img {
  max-width: 80px;
  margin-bottom: 15px;
}

.challenges-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #004d99;
}

.challenges-item p {
  font-size: 1rem;
  color: #666;
}

.challenges-item:hover {
  transform: translateY(-5px);
  border: 1px solid #004d99;
}

/* Strip Sections */

.strip-section {
  background-color: #d5e6ee;
  padding: 0px 0;
  text-align: center;
  color: #000000;
}

.strip-section p {
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
}


/* Services Section */
.services-section {
  background-color: #ffffff;
  padding: 2rem 2rem;
  width: 85%;
  margin: 0 auto;
}

.services-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: bold;
  color: #004d99;
}

.services-section .services-description {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #666;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: left;
}

.services-grid h4{
  background: #ff5722;
  padding: 5px 10px;
  text-align: right;
  border-radius: 10px;
  width: fit-content;
}


.service-item {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.service-item img {
  max-width: 80px;
  margin-bottom: 15px;
}

.service-item h3 {
  font-size: 1.5rem;
  
  color: #004d99;
}

.service-item p {
  font-size: 1rem;
  color: #666;
  padding: 5px;
}

.service-item:hover {
  transform: translateY(-5px);
  border: 1px solid #004d99;
}


/* General Styling for Sections */
section {
  padding: 4rem 2rem;
  text-align: center;
  color: #333;
}

/* Why Choose Us Section */
.why-choose-us-section {
  background-color: #2b4364;
  width: 100%;
  margin: 0 auto;
  color: #fff;
}

.why-choose-us-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: bold;
  color: #fff;
}

.why-choose-us-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.why-choose-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-choose-us-grid .reason {
  background-color: #2e4d6d;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.why-choose-us-grid .reason h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #e65c00;
}

.why-choose-us-grid .reason p {
  font-size: 1rem;
  color: #f1e4e4;
}

.why-choose-us-grid .reason:hover {
  transform: translateY(-5px);
  border: 1px solid #004d99;
}



/* Process Section */

.process-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  position: relative;
  flex-wrap: wrap;
}


/* Process Section */
.process {
  padding: 4rem 5%;
  background: #f5f5f5;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-card {
  text-align: center;
  padding: 2rem;
}

.process-icon {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Comparison Section */
.comparison {
  padding: 4rem 5%;
  background: var(--light);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.comparison-column {
  padding: 2rem;
  border-radius: 8px;
}

.comparison-column.without {
  background: #2b4364;
    color: #ede0e0;
}

.comparison-column.with {
  background: var(--primary);
  color: var(--light);
}

.comparison-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}


/* Client Testimonials Section */
.testimonials-section {
  width: 85%;
  padding: 4rem 2rem;
  color: #333;
  text-align: center;
  /* border-top: 5px solid #004d99; */
  margin: 0 auto;
}

.testimonials-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: bold;
  color: #004d99;
}

.testimonials-section p {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  color: #777;
}

/* Testimonials Styling */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  flex-wrap: wrap;
}

.testimonial-item {
  background-color: #004d99a0;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  flex: 1;
  color: #fff;
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-item:hover {
  transform: translateY(-5px);
}

.testimonial-item h4 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 1rem;
  color: #004d99;
}

.testimonial-item p {
  font-size: 1rem;
  color: #eeeded;
  margin-bottom: 1rem;
}

.reviews {
  text-align: left;
  margin-top: 2rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

.yellow {
  color: rgb(237, 207, 11);
}

.review-star {
  display: flex;
  flex-wrap: nowrap;
  gap: 2px;
}

/* Client Name & Title Styling */
.testimonial-item h4,
.testimonial-item p {
  margin: 0;
}




/* Contact Form */
.contact-form {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.contact-form button {
  padding: 1rem 2rem;
  background-color: #ff6600;
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 1.2rem;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #e65c00;
}

/* Button Styling */
.cta-btn {
  padding: 1rem 2rem;
  background-color: #ff6600;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-size: 1.2rem;
  display: inline-block;
  margin-top: 0rem;
}

.cta-btn:hover {
  background-color: #e65c00;
  transition: background-color 0.3s ease-in-out;
}

/* Header Section */
header {
  color: #000000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 2rem;
  background-color: #fff !important;
}

.logo {
  flex: 1;
}

header .logo img {
  max-width: 100%;
}

header .desktop-menu {
  display: flex;
  flex: 2;
  justify-content: flex-end;
  align-items: center;
}

header .desktop-menu a {
  color: #000000;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0px;
}




.challenges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  /* Responsive grid */
  grid-gap: 20px;
}

.challenge {
  text-align: center;
  border: 1px solid #ddd;
  padding: 15px;
}

.challenge img {
  max-width: 80px;
  margin-bottom: 15px;
}

.solution {
  text-align: center;
  margin-top: 30px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #004d99;
  color: #fff;

  text-decoration: none;
  border-radius: 5px;
}

@media screen and (max-width: 768px) {

  /* Adjust grid for tablets */
  .challenges-grid {
    grid-template-columns: 1fr;
    /* One column for smaller screens */
  }

  .container {
    width: 100% !important;
    margin: 0 auto;
    padding: 10px !important;
  }

  .arrow {
    display: none;
  }
}

@media screen and (max-width: 480px) {

  /* Adjust grid for phones */
  .challenges-grid {
    grid-template-columns: 1fr;
    /* One column for smaller screens */
  }

  .arrow {
    display: none;
  }
}



.highlight {
  color: #f05f40;
  /* Orange color */
  font-weight: bold;
}

/** Our process */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 36px;
  color: #0066cc;
  font-weight: bold;
}

.section-title p {
  font-size: 18px;
  color: #777;
}



/* Arrow Styling */
.arrow {
  width: 25px;
  height: 25px;
  background-color: #0066cc;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
}

/* Step Styling */
.process-step {
  text-align: center;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 200px;
  position: relative;
  transition: transform 0.3s ease;
  margin: 20px 0;
  flex: 1;
}

.process-step:hover {
  transform: scale(1.1);
}

.process-step .step-number {
  font-size: 40px;
  color: #fff;
  background-color: #0066cc;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

.process-step h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 16px;
  color: #555;
}

/* Highlighting the Top 5-10% Candidates */
.top-candidate {
  position: absolute;
  top: 5px;
  left: 5px;
  background-color: #ffcc00;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: bold;
  color: #333;
  font-size: 14px;
}

/* Call to Action */
.cta-container {
  text-align: center;
  margin-top: 40px;
}

.cta-button {
  background-color: #0066cc;
  color: #fff;
  padding: 15px 30px;
  font-size: 18px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

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

.step-number.final-step {
  background-color: #ffcc00 !important;
}

.process-step.final-step {
  background-color: #f4f4f4;
  border: 2px solid #0066cc;
}


.footer-rights {
  background: var(--light-dark);
  text-align: center;
  padding: 20px;
  color: #fff;
}

.footer-rights p{
  text-align: end;
}

.footer {
  background: var(--primary-blue);
  color: var(--light);
  padding: 2rem 5% 1em 5%;
  border-top: 5px solid #ff6600;
  text-align: left;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 30px;
}

.footer-column h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}
.footer-column a{
  color: #f5e3e3;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--light);
  text-decoration: none;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: var(--light);
  text-decoration: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}




/* Media Queries */
@media (max-width: 1020px) {
  .desktop-menu {
    display: none !important;
  }

  .mobile-menu {
    display: block;
    position: absolute;
    top: 50px;
    right: 20px;
    background-color: #004d99;
    padding: 1rem;
    border-radius: 8px;
  }

  .mobile-menu a {
    color: white;
    text-decoration: none;
    display: block;
    margin: 1rem 0;
    font-size: 1.5rem;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu.active {
    display: block;
  }

  .services-section {
    width: 100%;
  }

  .why-choose-us-section {
    width: 100%;
  }

  .testimonials-section {
    width: 100%;
  }

  .why-choose-us-grid {
    gap: 10px;
  }

  .testimonials {
    gap: 10px;
  }
}




/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero,
  .contact-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .geometric-pattern {
    max-width: 300px;
  }
}

/* Responsive */
@media screen and (max-width: 778px) {
  header nav {
    display: none;
  }

  .hamburger {
    display: flex;
    padding: 0px;
    margin-left: 10px;
  }

  .benefit-item,
  .feature-item {
    width: 100%;
  }

  .dicom-section img,
  .integration-section img {
    width: 100px;
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 50%;
    padding: 15px;
    overflow-clip-margin: border-box;
  }

  .services-section {
    padding: 2rem;
  }

  .section {
    padding: 2rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-choose-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials {
    grid-template-columns: repeat(2, 1fr);
  }


  .fixed-width {
    width: 100% !important;
  }

  .hero-section {
    flex-direction: column;
    padding: 20px;
  }

  .hero-content-left {
    text-align: center;
    padding-right: 0;
    margin-bottom: 20px;
  }

  .hero-content-right {
    width: 100%;
  }

  .hero-content-right img {
    width: 100%;
    max-width: 600px;
    /* Ensure it doesn't grow too large */
    height: auto;
    /* Maintain aspect ratio */
  }

  .cta-btn {
    padding: 10px 20px;
    font-size: 16px;
  }
}

@media screen and (max-width: 578px) {
  .services-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .why-choose-us-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .testimonials {
    grid-template-columns: repeat(1, 1fr);
  }
  .fixed-width {
    width: 100% !important;
  }

  .hero-section {
    padding: 10px;
  }

  .hero-content-left h1 {
    font-size: 24px;
    /* Adjust based on your design */
  }

  .hero-content p {
    font-size: 14px;
    margin-bottom: 15px;;
    /* Adjust based on your design */
  }
}





 

