/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
.logos-section {
    padding: 20px 0;
}

.logos-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px; /* Space between logos */
}


/* Top Logo Bar */
.header-logo-bar {

  background-color: #ffffff;
  padding: 16px 0px 0px;
  border-bottom: 1px solid #e6e6e6;
          z-index: 1000; /* same as navbar or above */

}
.fixed-header {
  position: fixed;
  top: 0;
  width: 100%;
  max-width: 100vw;
  background: white;
  z-index: 1000;
  overflow-x: visible;
  display: flex;
  flex-direction: column; /* stack logo and nav vertically */
  transition:1s;

}


.logo-container {
  max-width: 1200px;
  /* margin: 0 auto; */
  text-align: left;

}

.header-logo {

    height: 68px;
   margin-left: -7px;

}
html, body {
  overflow-x: hidden;
  width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 6%;
}

.arrow-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-right: 20px; /* optional spacing */
  margin-top:-190px;
}

.arrow-icon {
  width: 24px;
  height: 24px;
  fill: #9c9696;
  cursor: pointer;
  transition: transform 0.2s;
}

.arrow-icon:hover {
  transform: scale(1.2);
}

/* Navigation */
.navbar {
    position: relative;
    width: 100%;
    height: 60px;
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    z-index: 1000;
	transition: top 0.3s;
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding-top: 1%;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: #36506f;
    text-decoration: none;
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #f4bc43;
}

.nav-dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 16px;
    z-index: 1001;
}

.dropdown-content a {
    display: block;
    padding: 8px 0;
    color: #36506f;
    text-decoration: none;
    font-size: 16px;
}

.dropdown-content a:hover {
    color: #f4bc43;
}

.nav-dropdown:hover .dropdown-content {
    display: block;
}

.cta-button {
    background: #36506f;
    color: #f4bc43;
    border: none;
    border-radius: 10px;
    height: 42px;
    width: 170px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background: #2a3e56;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 670px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
	
}

.hero-title {
  font-size: clamp(28px, 6vw, 64px);
    font-weight: 400;
    line-height: 1.2;
    color: white;
    margin-bottom: 24px;
}

.hero-title .highlight {
    color: #f4bc43;
}

.hero-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    color: white;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-button {
    background: #ffcd54;
    color: #081b2c;
    border: none;
    border-radius: 10px;
    padding: 20px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero-button:hover {
    background: #f4bc43;
}

/* Main Content */
.main-content {
    background: white;
}

.intelligence-engine {
    padding: 64px 0;
}

.section-title {
font-size: clamp(28px, 6vw, 64px);
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 64px;
}

.title-primary {
    color: #075258;
}

.title-accent {
    color: #f4bc43;
}

/* Enterprise OS Section */
.enterprise-os {
    display: flex;
    gap: 32px;
    margin-bottom: 64px;
}

.content-left {
    flex: 1;
	max-width:500px;
}

.content-right {
    flex: 1;
}

.separator {
    width: 465px;
    height: 1px;
    background: #111010;
    margin: 24px 0;
}

.subsection-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.45;
    color: #000f18;
    margin-bottom: 24px;
}

.subsection-description {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.45;
    color: #1c3551;
    margin-bottom: 24px;
}

.highlight-text {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.45;
    color: #cc9511;
    margin-bottom: 24px;
}

.final-text {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.45;
    color: #1c3551;
    margin-bottom: 24px;
}

.image-container {
    position: relative;
    width: 100%;
	height:95%;
}

.base-image {
    width: 100%;
	height:100%;
    border-radius: 8px;
}

.overlay-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Integration Section */
.integration-section {
    display: flex;
    gap: 32px;
    border-radius: 8px;
    margin-bottom: 64px;
}

.integration-content {
	    background: #e4e4e4;
		padding:1% 5%;
flex:1;
   
}

.integration-title {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.2;
    color: #36506f;
    margin-bottom: 24px;
}

.integration-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    color: black;
    margin-bottom: 24px;
}

.integration-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.integration-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.feature-button {
    background: #ffcd54;
    color: black;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.feature-button:hover {
    background: #f4bc43;
}

.feature-points {
    max-width:400px;
    display: flex;
    flex-direction: column;
	flex:1;
}

.feature-point {
    padding: 16px 0;
    text-align: center;
}

.feature-point.highlight p {
    color: #f4bc43;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.45;
}

.feature-point p {
    color: black;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.45;
}

.separator-line {
    width: 100%;
    height: 1px;
    background: #ccc;
}

/* Future Readiness Section */
.future-readiness {
    position: relative;
    width: 100%;
    height: 463px;
    background-image: url('public/image4.png');
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 64px;
}

.future-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.future-title {
font-size: clamp(28px, 6vw, 64px);
    font-weight: 400;
    line-height: 1.2;
    color: white;
    margin-bottom: 32px;
}

.future-description {
    font-size: clamp(14px, 4vw, 18px);
    font-weight: 400;
    line-height: 1.4;
    color: white;
    margin-bottom: 32px;
}

.prepare-button {
    background: #ffcd54;
    color: black;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: clamp(14px, 4vw, 16px);
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.prepare-button:hover {
    background: #f4bc43;
}

/* Key Benefits Section */
.key-benefits {
    margin-bottom: 64px;
}

.benefits-title {
    font-size: 64px;
    font-weight: 400;
    line-height: 1.2;
    color: black;
    margin-bottom: 32px;
}

.benefits-container {
    display: flex;
    align-items: center;
    gap: 24px;
}

.arrow-left,
.arrow-right {
    width: 75px;
    height: 75px;
    border: 3px solid #757575;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.arrow-left:hover,
.arrow-right:hover {
    border-color: #f4bc43;
}

.arrow-left img,
.arrow-right img {
    width: 46px;
    height: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    flex: 1;
}

.benefit-card {
    position: relative;
    height: 391px;
    border-radius: 12px;
    overflow: hidden;
}

.benefit-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefit-content {
    position: absolute;
    bottom: 24px;
    left: 16px;
    right: 16px;
}

.benefit-content h3 {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 600;
    line-height: 1.45;
    color: white;
}

/* Mission Section */
.mission-section {
    position: relative;
    width: 100%;
    min-height: 395px;
    background-image: url(public/image9.png);
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    padding: 40px 0%;
    box-sizing: border-box;
    flex-wrap: wrap;
}
@media (max-width: 480px) {
  .mission-section {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
  }
}

.mission-content {
    text-align: left;
    max-width: 800px;
    padding: 0 5%;
	width:63%;
}
@media (min-width: 992px) {
    .mission-content {
        width: 63%;
        padding: 0 17px;
    }
}
.mission-title {
font-size: clamp(28px, 6vw, 64px);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
}

.mission-our {
    color: white;
}

.mission-highlight {
    color: #ffcd54;
}

.mission-description {
    font-size: clamp(14px, 4vw, 18px);
    font-weight: 400;
    line-height: 1.6;
    color: white;
    margin-bottom: 18px;
	width:80%;
}


.mission-buttons {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.demo-button {
	width:29%;
    background: #ffcd54;
    color: #081b2c;
    border: none;
    border-radius: 8px;
    height: auto;
    padding: 20px 24px;
    font-size: clamp(14px, 4vw, 16px);
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .demo-button {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }
}

.demo-button:hover {
    background: #f4bc43;
}

.contact-button {
	width:29%;
    background: transparent;
    color: #ffcd54;
    border: 2px solid #ffcd54;
    border-radius: 8px;
    height: auto;
    padding: 20px 24px;
    font-size: clamp(14px, 4vw, 16px);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .contact-button {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }
}

.contact-button:hover {
    background: rgba(255, 205, 84, 0.1);
}

.mission-arrow-left,
.mission-arrow-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 75px;
    height: 75px;
    border: 3px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mission-arrow-left {
    left: 75px;
}

.mission-arrow-right {
    right: 87px;
}

.mission-arrow-left img,
.mission-arrow-right img {
    width: 46px;
    height: auto;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    /* margin-bottom: 64px; */
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 4px;
    cursor: pointer;
}

.dot.active {
    background: #a7a6a6;
}

.dot:not(.active) {
    border: 1px solid #a8a6a6;
    background: transparent;
}

/* Call to Action Section */
.cta-section {
    border-radius: 8px;
  
    margin-bottom: 64px;
}

.cta-content {
	    background: #081b2c;

    display: flex;
}

.cta-text {
    width:65%;
    padding: 32px;
	padding-bottom:10%;
}

.cta-title {
font-size: clamp(28px, 6vw, 64px);
    font-weight: 400;
    line-height: 1.2;
    color: #ffcd54;
    margin-bottom: 32px;
}

.cta-subtitle {
    font-family: 'STZhongsong-Regular', Helvetica;
    font-size: clamp(24px, 5vw, 49px);
    line-height: 1.2;
    color: white;
    margin-bottom: 24px;
}

.cta-description {
	width:62%;
    font-size: clamp(14px, 3vw, 18px);
    font-weight: 400;
    line-height: 1.4;
    color: white;
    margin-bottom: 32px;
}

.cta-demo-button {
    background: #ffcd54;
    color: black;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-demo-button:hover {
    background: #f4bc43;
}

.cta-images {
    flex: 1;
    position: relative;
	background:#fff !important;
}

.cta-main-image {
    position: relative;
    width: 360px;
    height: 80%;
    left: -28%;
    top: 27%;
}

.cta-overlay-1 {
    position: absolute;
    top: 30px;
    right: 0%;
    width: 266px;
    height: 270px;
    object-fit: cover;
}

.cta-overlay-2 {
    position: absolute;
    bottom: 11%;
    left: -69%;
    width: 265px;
    height: 252px;
    object-fit: cover;
}
/* Footer */
.footer {
    background: #1c3551;
    padding: 25px 0 10px;
	
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 6%;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.footer-section {
    color: white;
}

.footer-logo {
height:56px;
    max-width: 424px;
    margin-bottom: 24px;
}

.footer-heading {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 16px;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 29px;
    height: 28px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    opacity: 0.7;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.45;
    margin-bottom: 16px;
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f4bc43;
}

.contact-form {
    display: flex;
    margin-bottom: 24px;
}

.contact-input {
    flex: 1;
    height: 69px;
    background: #d9d9d9;
    border: none;
    border-radius: 8px 0 0 8px;
    padding: 0 16px;
    font-size: 12px;
    font-weight: 500;
    color: #081b2c;
}

.contact-submit {
    background: #ffcd54;
    color: black;
    border: none;
    border-radius: 0 8px 8px 0;
    height: 69px;
    padding: 0 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-submit:hover {
    background: #f4bc43;
}

.address {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
}

.footer-separator {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 12px 0;
}

.footer-copyright {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
      .about-images {
    position: static !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-top: 15%;
  }

  .about-images img {
    position: static !important;
    width: 90% !important;
    height: auto !important;
    transform: none !important;
  }


    .benefit-card {
    height: auto;
    min-height: 300px;
  }
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 36px;
		padding-top:20%;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .enterprise-os {
        flex-direction: column;
    }
    
    .integration-section {
        flex-direction: column;
    }
    
    .benefits-container {
        flex-direction: column;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
.mission-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .contact-form {
		        align-items: stretch; /* Makes children take full width */

    }
    
    .contact-input {
        border-radius: 8px 8px 0 0;
    }
    
    .contact-submit {
		width:100%;
        border-radius: 0 0 8px 8px;
    }
}

.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #36506f;
}

@media (max-width: 768px) {
	.mission-content{width:100%}
	.cta-text {
		width:100%;
	}
	.mission-arrow-left,
  .mission-arrow-right {
    width: 48px;
    height: 48px;
    border: 2px solid white;
    top: auto;
    bottom: 10px;
    transform: none;
  }

  .mission-arrow-left {
    left: 10px;
  }

  .mission-arrow-right {
    right: 10px;
  }

  .mission-arrow-left img,
  .mission-arrow-right img {
    width: 24px;
  }
  .hamburger {
    display: block;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    gap: 16px;
    background: white;
    padding: 16px;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1002;
  }

  .nav-menu.active {
    display: flex;
  }
  
   .integration-images {
    grid-template-columns: 1fr;
  }
  
  .cta-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    gap: 20px;
  }
  .cta-main-image,
  .cta-overlay-1,
  .cta-overlay-2 {
	  padding-top:1%;
    position: static !important;
    width: 80%;
    height: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .header-logo-bar {
    padding: 12px 16px;
  }
.logo-container,
  .nav-container {
    padding: 0 16px;
  }

  .cta-button {
    width: auto;
    padding: 0 16px;
  }
}
@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-container {
    padding: 0 20px;
  }
}

.about-hero {
  background-image: url(public/about-banner.png);
  background-size: cover;
  background-position: center;
  box-sizing: border-box;
  color: white;
}
.about-flex{
	padding: 18% 0px;
    display: flex;
    /* width: 100%; */
    margin-bottom: 64px;
	
}
.about-content {
  flex: 1;
  /* min-width: 280px; */
  max-width: 521px;
  text-align: left;
}

.about-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  margin-bottom: 8px;
}

.about-subtitle span {
  font-weight: bold;
}

.about-title {
  font-size: clamp(28px, 6vw, 64px);
  line-height: 1.2;
  margin-bottom: 24px;
  font-weight: 400;
  color: #ffcd54;
}

.about-description {
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.6;
  margin-bottom: 24px;
}

.about-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.about-images {
  position: relative;
   flex: 1
   }

.about-images img {
  position: absolute;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.img-3 {
    top: 55%;
    height: 64%;
    width: 47%;
    left: 32%;
    transform: translateX(-50%);
}
/* Image positions */


.img-1 {
    width: 53%;
    height: 49%;
}

.img-2 {
    height: 66%;
    width: 40%;
    left: 60%;
}
/* Leadership section */
.leadership-section {
  background: #fff;
      background: linear-gradient(180deg, #ffffff 0%, #d5d5f2 100%);
padding-bottom:30px
}

.leadership-heading {
  text-align: left;
font-size: clamp(28px, 6vw, 64px);
  margin-bottom: 48px;
  font-weight:400;
}

.leader {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 60px;
}

.leader-right {
  justify-content: flex-end;
  text-align: left;
}

.leader-left {
  justify-content: flex-start;
  text-align: left;
}

.leader-content {
  max-width: 600px;
}

.leader-name {
  font-size: 32px;
  /* font-family: Georgia, serif; */
  margin-bottom: 8px;
}

.leader-role {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 12px;
}

.leader-description {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}


.leader h3 {
font-size: clamp(28px, 6vw, 64px);
  font-weight: 400;
  margin-bottom: 8px;
}

.leader p {
  font-size: clamp(14px, 2.5vw, 18px);
  line-height: 1.6;
  margin-bottom: 12px;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
	.about-flex{display:block}
	
	 .about-hero {
    flex-direction: column;
    padding: 40% 10% 0%;
    text-align: center;
  }

  .about-content,
  .about-images {
    width: 100%;
  }
  .products-hero {
    flex-direction: column;
    padding: 40% 10%;
    text-align: center;
  }

  .products-content,
  .products-images {
    width: 100%;
  }
  .services-hero {
    flex-direction: column;
    padding: 40% 10%;
    text-align: center;
  }

  .services-content{
    width: 100%;
  }
	.leader {
    flex-direction: column;
    text-align: left !important;
  }

  .leader-right,
  .leader-left {
    justify-content: center;
  }
  .about-content, .about-images {
    flex: 1 1 100%;
    text-align: center;
  }

  .about-buttons {
    justify-content: center;
  }
   .products-content, .products-images {
    flex: 1 1 100%;
    text-align: center;
  }

  .products-buttons {
    justify-content: center;
  }
  .services-content{
    flex: 1 1 100%;
    text-align: center;
  }

  .services-buttons {
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .about-images {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    gap: 16px;
  }

  .products-images img {
    position: static;
    transform: none;
    width: 100%;
    max-width: 250px;
	margin-top:8%;
  }
  .products-images {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    gap: 16px;
  }

  .products-images img {
    position: static;
    transform: none;
    width: 100%;
    max-width: 250px;
	margin-top:8%;
  }
}
@media (max-width: 1024px) {
    .arrow-stack {
        margin-top: -120px;
        gap: 8px;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    .arrow-stack {
        margin-top: -80px;
        gap: 6px;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .arrow-stack {
        margin-top: -33px;
        margin-right: 10px;
        gap: 5px;
    }
}
.products-hero {
  background-image: url(public/about-banner.png);
  background-size: cover;
  background-position: center;
  box-sizing: border-box;
  color: white;
}

.products-content {
  /* width:600px; */
  text-align: left;
}

.products-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  margin-bottom: 8px;
}

.products-subtitle span {
  font-weight: bold;
}

.products-title {
  font-size: clamp(28px, 6vw, 64px);
  line-height: 1.2;
  margin-bottom: 24px;
  font-weight: 400;
  
}

.colour-text{
	color: #ffcd54;
}
.products-description {
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.6;
  margin-bottom: 24px;
}

.products-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.products-images {
  position: relative;
   flex: 1
   }

.products-images img {
  position: absolute;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.pr-img-1 {
    width: 70%;
    height: 35%;
    top: 57%;
    left: -4%;
}

.pr-img-2 {
    height: 100%;
    width: 78%;
    left: 21%;
}

.product-summary {
  background-color: #ffffff;
  margin-bottom:45px
}
.services-hero {
  background-image: url(public/about-banner.png);
  background-size: cover;
  background-position: center;
  box-sizing: border-box;
  color: white;
}

.services-content {
  width:600px;
  text-align: left;
}

.services-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  margin-bottom: 8px;
}

.services-subtitle span {
  font-weight: bold;
}

.services-title {
  font-size: clamp(28px, 6vw, 64px);
  line-height: 1.2;
  margin-bottom: 24px;
  font-weight: 400;
  
}

.colour-text{
	color: #ffcd54;
}
.services-description {
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.6;
  margin-bottom: 24px;
}

.services-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}


.summary-grid {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.summary-header {
  display: block;
}
.services-summary-header{padding: 0% 12%}
.summary-title {
display:block;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  line-height: 1.3;
  color: #081b2c;
}
.summary-description {
  display: block;
  max-width: 600px;
  margin-left: auto;   /* Push to right */
  text-align: left;
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.6;
  color: #222;
}
.services-summary-description {
	  text-align: center;

    font-weight: 600;
    margin-bottom: 10%;
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.6;
}

.services-summary{margin-bottom:30px}
.orange	{color: #e94e1b;}
.blue {color:#2c4d79;}
.highlight-blue {
  color: #2c4d79;
  font-weight: 700;
}

.highlight-orange {
  color: #e94e1b;
  font-weight: 700;
}


.summary-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.services-summary-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 1px solid #a8a4a4;
  padding-left: 24px;
}

.feature-icon {
  width: 45px;
  height: 30px;
}

.feature-box h3 {
  font-size: 20px;
  font-weight: 600;
  color: #000f18;
}

.feature-box p {
  font-size: 16px;
  color: #444;
  line-height: 1.5;
}
.quarter-line {
  display: block; /* forces new line */
  margin-top: 0;  /* remove default space */
  line-height: 1.2; /* adjust as needed */
}
/* Mobile Responsive */
@media (max-width: 768px) {
  .services-summary-features {
    grid-template-columns: 1fr;
    gap: 24px;
  }
.summary-features {
    grid-template-columns: 1fr;
  }
  .feature-box {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid #ccc;
    padding-top: 16px;
  }
}

.performance-section {
}

.performance-title {
    font-size: clamp(32px, 5vw, 48px);
  text-align: left;
  margin-bottom: 15px;
  line-height: 1.3;
  font-weight:400;
}

.performance-row {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.performance-card {
  background: #7cb2bf14;
  border-radius: 12px;
  overflow: hidden;
  flex: 1 1 calc(50% - 20px); /* 2 cards per row */
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.image-bg-left,
.image-bg-right {
padding: 26px 26px 0px 26px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-bg-left {
background: linear-gradient(to right, #a1c4dc, #6a7e94);}

.image-bg-right {
background: linear-gradient(to right, #a1c4dc, #6a7e94);}

.image-bg-left img,
.image-bg-right img {
width:100%;
height: auto;
  border-radius: 8px;
}

.performance-content {
  padding: 24px;
}

.performance-content h3 {
  font-size: clamp(16px, 2vw, 20px);
  margin-bottom: 10px;
}

.performance-content p {
    font-size: clamp(14px, 4vw, 16px);
  margin-bottom: 10px;
  color: #333;
}

.performance-content ul {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}

.performance-content ul li {
  margin-bottom: 6px;
    font-size: clamp(14px, 4vw, 16px);
  color: #333;
}

/* Responsive: stack cards vertically on small screens */
@media (max-width: 768px) {
  .performance-row {
    flex-direction: column;
  }
  .performance-card {
    flex: 1 1 100%;
  }
  .smarter-section {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
  }
}
.smarter-section {
    position: relative;
    width: 100%;
    min-height: 395px;
    background-image: url(public/image9.png);
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    padding: 5% 2%;
    box-sizing: border-box;
    flex-wrap: wrap;
}
@media (max-width: 480px) {
  .smarter-section {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
  }
  
  
}

.smarter-content {
    text-align: left;
    max-width: 800px;
    padding: 0 5%;
	width:63%;
}
@media (min-width: 992px) {
    .smarter-content {
        width: 63%;
        padding: 0 17px;
    }
}
.smarter-title {
font-size: clamp(28px, 6vw, 64px);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
}

.smarter-our {
    color: white;
}

.smarter-highlight {
    color: #ffcd54;
}

.smarter-description {
    font-size: clamp(14px, 4vw, 18px);
    font-weight: 400;
    line-height: 1.6;
    color: white;
    margin-bottom: 18px;
	width:80%;
}


.smarter-buttons {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.sterilisation-section {
}

.container-sterile {
	padding: 5% 0% 5% 0%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
}

.sterile-left {
  flex: 1 1 30%;
}

.sterile-left h2 {
  font-size: 48px;
  line-height: 1.2;
  font-weight:400;
}

.sterile-right {
  flex: 1 1 50%;
  display: flex;
  gap: 20px;
  position: relative;
  flex-wrap: wrap;
}

.card {
  background-color: #fff;
  border: 1px solid #000;
  border-top-left-radius: 23px;
  border-top-right-radius: 23px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  width: calc(50% - 10px);
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.card-image {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid #ccc;
}

.card-body {
  padding: 20px;
}

.card-body h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.card-body ul {
  padding-left: 18px;
  margin: 0;
}

.highlight-rhq {
  color: #e94f1d;
  font-weight: bold;
}

.arrow-icons {
  position: absolute;
  top: -50px;
  right: 0;
  display: flex;
  gap: 10px;
}
.arrowpleft,
.arrowpright {
    width: 75px;
    height: 75px;
    border: 3px solid #757575;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.3s ease;
}
.arrow {
  font-size: 32px;
  color: #777;
  cursor: pointer;
  border: 2px solid #ccc;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.arrow:hover {
  background-color: #f0f0f0;
}
.arrowpleft{margin-top:-89px}

.arrowpright{margin-top:-32px}

.services-feature-container{
    background: #d2e8e633;
    padding: 5% 0;
}

feature-box ul {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}

.feature-box ul li {
  margin-bottom: 6px;
    font-size: clamp(14px, 4vw, 16px);
  color: #333;
}
.rehealth-way-section {
  background: url('public/imageblue.png') no-repeat center center;
  background-size: cover;
  color: white;
  text-align: center;
  padding: 5% 0%;
}




.section-description {
  font-size: 1.2rem;
  line-height: 1.8;
}

.rehealth-way-title{
	    font-size: clamp(24px, 5vw, 35px);

}
.rehealth-way-content
{padding:0% 12%}

.partner-section {
  padding: 5% 0%;
  background-color: #fff;
}



.partner-heading {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.partner-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.partner-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.partner-image {width:40%}


.partner-text {
  flex: 1;
  font-size: 1.2rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .partner-content {
    flex-direction: column;
    text-align: center;
  }

  .partner-text {
    max-width: 100%;
  }
}
.tracking-section {
}

.tracking-title {
    font-size: clamp(32px, 5vw, 64px);
  text-align: center;
  margin-bottom: 15px;
  line-height: 1.3;
  font-weight:400;
}

.tracking-row {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tracking-card {
  background: #3a3f4014;
  border-radius: 25px;
  overflow: hidden;
  flex: 1 1 calc(50% - 20px); /* 2 cards per row */
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.image-tr-left,
.image-tr-right {
  display: flex;
  justify-content: center;
  align-items: center;
}


.image-tr-left img,
.image-tr-right img {
width:100%;
  height: auto;
  border-radius: 8px;
}

.tracking-content {
  padding: 24px;
}

.tracking-content h3 {
  font-size: clamp(16px, 2vw, 20px);
  margin-bottom: 10px;
}

.tracking-content p {
    font-size: clamp(14px, 4vw, 16px);
  margin-bottom: 10px;
  color: #333;
}

.tracking-content ul {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}

.tracking-content ul li {
  margin-bottom: 6px;
    font-size: clamp(14px, 4vw, 16px);
  color: #333;
}
.tracking-description {
	  text-align: center;

padding:0 14%;
  margin-bottom: 3%;
    font-size: clamp(14px, 2vw, 16px);
  line-height: 1.6;
}

.tracking-bold {
	  text-align: center;

padding:0 12%;
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 600;
  line-height: 1.6;
}
/* Responsive: stack cards vertically on small screens */
@media (max-width: 768px) {
  .tracking-row {
    flex-direction: column;
  }
  .tracking-card {
    flex: 1 1 100%;
  }
 }
 
 .contact-section {
 background: 
    linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%), /* vertical fade */
    linear-gradient(to right, #fef7e9, #fbd489); 
	padding: 14% 0% 5%;}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.contact-content h2 {
	  font-size: clamp(28px, 6vw, 64px);
height:80px;
  font-weight:400;
}

.contact-intro {
  font-weight: 500;
  font-size: 16px;
}

.subheading {
  font-size: 18px;
  color: #444;
  margin-bottom: 20px;
}

.contact-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.contact-content a {
  color: #000;
  text-decoration: underline;
}

.contactpage-button {
	margin-top:5%;
	width:45%;
  background-color: #1f3b78;
  color: #f4bc43;
  padding: 16px 24px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.contact-image img {
  width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    text-align: center;
	padding-top:35%
  }

  .contact-image img {
    margin: 0 auto;
  }

  .contactpage-button {
    margin-top: 20px;
  }
}
.map-section {
  padding: 0;
  margin: 0;
  background-color: #f4f4f4;
}

.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  flex-direction: column;
}

.video-overlay video {
  max-width: 90%;
  max-height: 80%;
  border: 4px solid white;
  border-radius: 10px;
  background: black;
}

.close-video {
  margin-top: 20px;
  background-color: transparent;
  border: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

.privacy-policy-section {
  padding: 170px 0px 50px;
  background-color: #f9f9f9;
  color: #333;
}

.privacy-policy-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.privacy-policy-section h3 {
  font-size: 20px;
  margin-top: 20px;
  color: #1c3551;
}

.privacy-policy-section p {
  font-size: 16px;
  line-height: 1.6;
}

.terms-of-service-section {
  padding: 170px 0px 50px;
  background-color: #ffffff;
  color: #333;
  border-top: 1px solid #eee;
}

.terms-of-service-section h2 {
  font-size: 28px;
}

.terms-of-service-section h3 {
  font-size: 20px;
  margin-top: 20px;
  color: #1c3551;
}

.terms-of-service-section p {
  font-size: 16px;
  line-height: 1.6;
}
.legal-section {
  padding: 170px 0px 50px;
  line-height: 1.8;
}

.legal-section h1 {
  font-size: 32px;
  margin-bottom: 20px;
}

.legal-section h2 {
  font-size: 24px;
  margin-top: 30px;
  color: #333;
}

.legal-section p, .legal-section ul {
  font-size: 16px;
  color: #444;
}

.legal-section ul {
  padding-left: 20px;
}

#loadingOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* dark background */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.spinner {
  border: 8px solid #f3f3f3; /* Light grey */
  border-top: 8px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

