* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* --primary-color: #ff9900; */
  --primary-color: #094065;
  --primary-bg-color: #f1f1f1;
  /* --secondary-color: #ff9900; */
  --dark-light-color: #5c5c5c;
  --text-primary: #fff;
  --text-secondary: #000;
  --dark-bg: #1a1a1a;
  --card-bg: #242424;
}

body {
  background-image: url("../assets/images/project_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  object-fit: cover;
  height: 100vh;
  width: 100%;
  backdrop-filter: brightness(0.8);
}


/* Navbar Styles */



/* Navbar Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: transparent;
  background-image: url("../assets/images/nihal.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-primary);
  height: 8rem;
  border-bottom: 1px solid rgba(128, 128, 128, 0.3); /* semi-transparent grey */
  width: 100%;
  position: absolute; /* Changed to relative positioning */
  z-index: 1000;
  background-blend-mode: multiply;
}

/* Ensure body doesn't create scroll issues */

.logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.logo-image {
  max-height: 120px;
  width: 140px;
  position: relative;
  top: 12px;
}

.nav-menu ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  gap: 48px;
  margin: 0;
  padding: 0;
}

.nav-menu ul li a {
  text-decoration: none;
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu ul li a:hover {
  color: var(--secondary-color);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background-color: var(--text-primary);
  margin-bottom: 4px;
  transition: all 0.3s ease;
}

/* Media query for responsive behavior */
@media (max-width: 768px) {
  .navbar {
    background-image: none;
    background-color: rgba(255, 255, 255, 0.9); /* semi-transparent white for mobile */
    position: relative; /* Changed to relative */
    height: 80px;
  }

  body {
    padding-top: 0; /* Removed padding completely */
  }

  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding-top: 100px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 30px;
    padding: 20px;
  }

  .logo-image {
    max-height: 80px;
    width: 100px;
    top: 0;
  }
}
/* Navbar Ends */



/* Navbar Ends */

/* Navbar Ends */

.project-hero {
  display: flex;
  background-color: transparent;
  background-image: linear-gradient(270deg, #ffffff00 0.02%, #1e1e1ebf 100%);
  justify-content: flex-start;
  align-items: center;
  padding-left: 160px;
  height: 60vh;
  width: 100%;
  padding-bottom: 6rem;
  color: var(--text-primary);
}

.project-hero .main-heading h1 {
  font-size: 4rem;
  font-weight: 100;
  padding-top: 6rem;
  font-family: "Manrope", sans-serif;
}


/* industry served start  */

.industries-Served {
  display: flex;
  background-color: var(--text-primary);
  justify-content: flex-start;
  align-items: center;
  padding: 0px 160px;
  height: 120vh;
  width: 100%;
  padding-top: 6rem;
  color: var(--text-secondary);
}

.industries-served {
  position: relative;
  padding: 6rem 10%;
  background-color: var(--text-primary); 
  color: var(--text-secondary);
  overflow: hidden;
  width: 100%;
}

/* metallic micro-pattern */
.industries-served::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.07) 20%,
    transparent 20%,
    transparent 50%,
    rgba(255, 255, 255, 0.07) 50%,
    rgba(255, 255, 255, 0.07) 80%,
    transparent 80%
  );
  background-size: 6px 6px;
  opacity: 0.25;
  z-index: 0;
}

.is-main-container {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* HEADING STYLES */
.is-heading-wrapper {
  margin-bottom: 1.5rem;
  width: 100%;
}

.is-main-heading {
  font-size: 3rem;
  font-weight: 100;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-secondary);
  font-family: "Manrope", sans-serif;
}

.is-main-heading span {
  font-weight: 600;
  
}



/* INTRO TEXT */
.is-intro-text {
  font-size: 1.4rem;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 3rem;
  max-width: 100%;
}

/* CARDS CONTAINER */
.is-cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
}

/* CARD STYLES */
.industry-card {
  /* background: rgba(255, 255, 255, 0.05); */
  background-color: var(--primary-bg-color);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.industry-icon-svg {
  fill: #fff; /* makes every <path> inside this SVG white */
  height: 42px;
  width: 42px;
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.card-top .industry-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background-color: var(--primary-color);
  /* background: linear-gradient(135deg, #42a5f5, #1e88e5); */
  display: grid;
  place-items: center;
}

.industry-card h3 {
  margin: 0.8rem 0;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.industry-features {
  list-style-type: none;
  padding-left: 0;
  margin-top: 0.5rem;
}

.industry-features li {
  position: relative;
  padding-left: 0.2rem;
  line-height: 1.4;
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 0.5rem;
}



/* RESPONSIVE */
@media (max-width: 1200px) {
  .is-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .is-cards-container {
    grid-template-columns: 1fr;
  }
  
  .is-main-heading {
    font-size: 2.2rem;
  }
  
  .industries-served {
    padding: 4rem 5%;
  }
}

/* Clint section Starts */

.clint-secton {
  display: flex;
  background-color: var(--text-primary);
  justify-content: flex-start;
  align-items: center;
  padding: 0px 160px;
  height: 120vh;
  width: 100%;
  padding-top: 6rem;
  font-family: "Manrope", sans-serif;
  color: var(--text-secondary);
}

/* Client section */
.client-section {
  background-color: var(--text-primary);
  padding: 6rem 10%;
  width: 100%;
  font-family: "Manrope", sans-serif;
  color: var(--text-secondary);
  overflow: hidden;
}

.cl-main-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Content styling */
.cl-content {
  width: 100%;
  margin-bottom: 4rem;
}

.cl-heading {
  font-size: 3rem;
  font-weight: 100;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.cl-heading span {
  font-weight: 600;
}

.cl-subheading {
  font-size: 1.8rem;
  font-weight: 450;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.cl-description {
  font-size: 1.19rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  max-width: 100%;
}

/* Improved logo carousel styling */
.cl-logos-wrapper {
  position: relative;
  width: 100%;
  padding: 2rem 0;
  background: var(--primary-bg-color);
}

.cl-logos-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.cl-logos-track {
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 3rem;
  will-change: transform;
}

.client-logo {
  flex: 0 0 auto;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 200px;
  height: 120px;
}

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

.client-logo img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

/* Add fade effect on the sides */
.cl-logos-container::before,
.cl-logos-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.cl-logos-container::before {
  left: 0;
  background: linear-gradient(to right, var(--text-primary), transparent);
}

.cl-logos-container::after {
  right: 0;
  background: linear-gradient(to left, var(--text-primary), transparent);
}

/* Media Queries */
@media screen and (max-width: 1200px) {
  .client-section {
    padding: 4rem 5%;
  }
}

@media screen and (max-width: 768px) {
  .cl-heading {
    font-size: 2.5rem;
  }
  
  .cl-subheading {
    font-size: 1.5rem;
  }
  
  .cl-description {
    font-size: 1rem;
  }
  
  .client-logo {
    width: 160px;
    height: 100px;
    padding: 1.2rem;
  }
}

@media screen and (max-width: 576px) {
  .cl-heading {
    font-size: 2rem;
  }
  
  .client-logo {
    width: 140px;
    height: 90px;
    padding: 1rem;
  }
}

/* Clint section Ends */

/* OUR CLIENT SAY Starts */

.our-client {
  display: flex;
  background-color: var(--text-primary);
  justify-content: flex-start;
  align-items: center;
  padding: 0px 160px;
  height: 120vh;
  width: 100%;
  color: var(--text-secondary);
}

.client-main-container {
  display: flex;
  width: 100%;
  height: 100%;
  padding-top: 8rem;
}

.client-left-side {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
}

.client-right-side {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
}

.our-client {
  display: flex;
  background-color: var(--text-primary);
  justify-content: flex-start;
  align-items: center;
  padding: 0px 160px;
  height: 120vh;
  width: 100%;
  color: var(--text-secondary);
}

.client-main-container {
  display: flex;
  width: 100%;
  height: 100%;
  padding-top: 8rem;
}

.client-text {
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
  font-family: "Manrope", sans-serif;
}

.client-text i {
  color: var(--primary-color);
  margin-right: 6px;
}

.client-left-side {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
}

.left-img img {
  border-radius: 30px;
  width: 100%;
  height: 90%;
  object-fit: cover;
}

.client-right-side {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
}

/* Client image styling */
.client-image {
  width: 90%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Right side content styling */
.client-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.client-heading {
  /* border: 2px solid red; */
  margin-top: 3rem;
  width: 100%;
  font-family: "Manrope", sans-serif;
}

.client-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  font-weight: 100;
  margin-bottom: 40px;
}

.highlight {
  display: block;
  font-weight: 800;
}

/* Testimonials styling */
.testimonials-container {
  width: 100%;
  position: relative;
  margin-bottom: 30px;
  background-color: transparent;
  border-radius: 10px;
  padding: 30px;
  font-family: "Manrope", sans-serif;
}

.testimonial-item {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.testimonial-item.active {
  display: block;
  opacity: 1;
}

.rating {
  margin-bottom: 20px;
}

.star-icon {
  color: #f9a826;
  font-size: 24px;
}

.testimonial-text {
  font-size: 20px;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 30px;
  color: #555;
}

.client-info {
  display: flex;
  align-items: center;
}

.client-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 16px;
  border: 2px solid #f9a826;
}

.client-name {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: #333;
}

.client-position {
  font-size: 16px;
  color: #888;
  margin: 5px 0 0;
}

/* Navigation buttons */
.testimonial-navigation {
  display: flex;
  gap: 16px;
  position: relative;
  bottom: 60px;
  justify-content: flex-end;
}

.nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 20%;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 24px;
}

.nav-btn:hover {
  background-color: var(--dark-bg);
}

.arrow-left,
.arrow-right {
  font-size: 24px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .our-client {
    padding: 0 80px;
  }
}

@media (max-width: 992px) {
  .client-main-container {
    flex-direction: column;
  }

  .client-left-side,
  .client-right-side {
    width: 100%;
  }

  .client-left-side {
    margin-bottom: 50px;
  }

  .client-image {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .our-client {
    padding: 0 40px;
    height: auto;
  }

  .client-title {
    font-size: 36px;
  }
}

/* Our Client Animation Styles */
.our-client {
  overflow-x: hidden;
}

.left-img img,
.client-text,
.client-title,
.testimonial-item,
.nav-btn {
  will-change: transform, opacity;
}

/* Main elements transition */
.left-img img,
.client-text,
.client-title,
.testimonial-item,
.nav-btn {
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Star rating animation */
.star-icon {
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  transform-origin: center;
}

/* Testimonial navigation buttons */
.nav-btn {
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Client info animation */
.client-info {
  transition: all 0.8s ease-out 0.2s;
}
/* OUR CLIENT SAY Ends */

.footer {
  display: flex;
  flex-direction: column;
  background-color: var(--dark-bg);
  justify-content: flex-start;
  padding: 0px 160px;
  height: 100vh;
  width: 100%;
  color: var(--text-primary);
  background-image: linear-gradient(
      rgba(26, 26, 26, 0.85),
      rgba(26, 26, 26, 0.85)
    ),
    url("https://via.placeholder.com/1920x1080");
  background-size: cover;
  background-position: center;
  position: relative;
}

.contact-button {
  position: absolute;
  top: 100px;
  right: 100px;
  background-color: var(--primary-color);
  color: white;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  overflow: visible;
}

.rotating-container {
  position: relative;
  width: 100%;
  height: 100%;
  animation: rotate 20s linear infinite;
}

.circular-text {
  position: absolute;
  width: 120px;
  height: 120px;
  top: 0;
  left: 0;
}

.circular-text text {
  fill: white;
  font-size: 6.5px;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
}

.arrow {
  position: absolute;
  z-index: 2;
  width: 30px;
  height: 30px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 2s infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

.header-section {
  margin-top: 100px;
  margin-bottom: 50px;
}
.header-section h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-family: "Manrope", sans-serif;
}
.header-section p {
  font-size: 18px;
  font-family: "Lora", serif;
}
.divider {
  width: 100%;
  height: 1px;
  background-color: #333;
  margin: 20px 0;
  font-family: "Lora", serif;
}
.main-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 20px;
  font-family: "Lora", serif;
}
.logo-section {
  display: flex;
  flex-direction: column;
  width: 25%;
}
.logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.logo-icon {
  width: 150px;
  height: 80px;
  background-color: transparent;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.logo-icon img {
  max-width: 100%;
  height: auto;
  display: block;
}
.logo-text {
  margin-bottom: 20px;
  font-size: 16px;
}
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  font-family: "Lora", serif;
}
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  cursor: pointer;
}
.links-section {
  display: flex;
  gap: 100px;
  flex-grow: 1;
  justify-content: center;
  font-family: "Lora", serif;
}
.link-column {
  display: flex;
  flex-direction: column;
}
.link-column h3 {
  font-size: 20px;
  margin-bottom: 30px;
  font-family: "Lora", serif;
}
.link-column a {
  color: var(--text-primary);
  text-decoration: none;
  margin-bottom: 20px;
  font-size: 16px;
}
.contact-section {
  width: 25%;
}
.contact-section h3 {
  font-size: 20px;
  margin-bottom: 30px;
  font-family: "Lora", serif;
}
.contact-section p {
  margin-bottom: 20px;
  font-size: 16px;
}
.copyright {
  margin-top: auto;
  padding-bottom: 30px;
  padding-top: 30px;
  text-align: center;
  border-top: 1px solid #333;
  font-family: "Manrope", sans-serif;
} /* Mobile Responsiveness */
@media screen and (max-width: 768px) {
  .footer {
    padding: 0 20px;
    height: auto;
  }
  .contact-button {
    position: static;
    margin: 30px auto;
    width: 100px;
    height: 100px;
  }
  .circular-text {
    width: 100px;
    height: 100px;
  }
  .circular-text text {
    font-size: 5.5px;
  }
  .header-section {
    margin-top: 50px;
    margin-bottom: 30px;
    text-align: center;
  }
  .header-section h1 {
    font-size: 32px;
  }
  .header-section p {
    font-size: 16px;
  }
  .main-content {
    flex-direction: column;
    align-items: center;
  }
  .logo-section,
  .links-section,
  .contact-section {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
  .links-section {
    flex-direction: column;
    gap: 30px;
  }
  .link-column {
    align-items: center;
  }
  .social-icons {
    justify-content: center;
  }
  .copyright {
    padding: 20px 10px;
  }
} 

/* footer Ends */
