

/* Root Variables */
:root {
  --primary-color: #0d4f8b;
  --primary-dark: #0a3d6b;
  --secondary-color: #e67e22;
  --text-dark: #333;
  --text-muted: #666;
  --bg-light: #f8f9fa;
  --white: #fff;
}

@font-face {
  font-family: content_font;
  src: url("./assets/font/Roboto/static/Roboto-Regular.ttf");
}

@font-face {
  font-family: heading_font;
  src: url("./assets/font/Poppins/Poppins-Regular.ttf");
}
.heading_font_class{
font-family: heading_font;
}

.content_font_class{
font-family: content_font;
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* General Styles */
body {
  font-family: content_font;
  color: var(--text-dark);
  overflow-x: hidden;
  background-color: #f2f2f2;
}

/* Logo */
.logo-text {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-color);
  letter-spacing: 2px;
}

.logo-text-footer {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
}

.logo-highlight {
  color: var(--secondary-color);
}

/* Navigation */
.navbar {
  padding: 0.5rem 0;
}

.nav-link {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dark) !important;
  padding: 0.5rem 0.8rem !important;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

.navbar_logo_wrap{
  width: 12rem;
}
.navbar_logo_wrap img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* .btn-contact {
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
  border-radius: 4px;
} */

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: url("/placeholder.svg?height=800&width=1400") center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(13, 79, 139, 0.7) 0%, rgba(230, 126, 34, 0.5) 100%);
}

.hero-title {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.4;
  text-transform: none;
}

.hero-title .highlight-text {
  font-family: "Georgia", serif;
  font-style: italic;
  font-weight: 400;
}

/* Section Titles */
.section-title {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
  text-transform: capitalize;
}

/* Innovation Section */
.innovation-section {
  /* background: var(--white); */
}

.innovation-card {
  text-align: center;
    /* border: 1px solid red; */
    padding: 3rem 0px;
    /* border-radius: 1rem; */
    background-color: #022844;
}

.icon-box {
  width: 80px;
  height: 80px;
  border: 2px solid var(--primary-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.3s;
}

.icon-box i {
  font-size: 2rem;
  color: var(--primary-color);
}

.icon-box:hover {
  background-color: var(--primary-color);
}

.icon-box:hover i {
  color: var(--white);
}

.innovation-card p {
  font-size: 1.25rem;
  color: #fff;
}

/* Video Wrapper */
.video-wrapper {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.video-wrapper img {
  width: 100%;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s;
}

.play-button i {
  font-size: 1.5rem;
  color: var(--white);
  margin-left: 4px;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  padding: 5px 15px;
  font-size: 0.85rem;
  border-radius: 4px;
}

/* Strategy List */
.strategy-list {
  list-style: none;
  padding: 0;
}

.strategy-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Stats Section */
.stats-section {
  background: var(--white);
}

.stat-card {
  padding: 4rem;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  border-radius: 10px;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: var(--text-dark);
}

.stat-label {
  color: var(--text-muted);
  font-size: 1.45rem;
}

/* Service Cards */
.service-card {
  background: var(--white);
  /* border-radius: 10px; */
  overflow: hidden;
  /* box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1); */
  height: 100%;
}

.service-img {
  height: 25rem;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.service-card:hover .service-img img {
  transform: scale(1.05);
}

.service-content {
  padding: 20px;
}

.service-content h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
}

.service-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.read-more {
  color: var(--primary-color);
  font-size: 0.8rem;
  text-decoration: none;
  font-weight: 600;
}

.read-more:hover {
  text-decoration: underline;
}

/* Industry Cards */
.industry-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
   /* position: relative; */
}

.industry-img {
 
  height: 150px;
  overflow: hidden;
}

.industry-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry-label {
  
  
  /* transform: translateY(-50%) rotate(-90deg); */
  background: var(--primary-color);
  color: var(--white);
  padding: 5px 15px;
  font-size: 0.85rem;
  font-weight: 600;
  transform-origin: left center;
      position: relative;
    width: 3rem;

}
.industry-label p{
position: absolute;
    transform: rotate(270deg);
    top: 40%;
    left: -44px;
    letter-spacing: 0.1rem;
    font-size: 1.5rem;
}

.industry-list {
  list-style: none;
  padding: 15px;
  margin: 0;
}

.industry-list li {
  font-size: 1rem;
  padding: 4px 0;
  color: var(--text-muted);
  position: relative;
  padding-left: 15px;
}

.industry-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

/* Process Section */
.process-section {
  background: var(--white);
}

.process-list {
  list-style: none;
  padding: 0;
  font-size: 0.85rem;
}

.process-list li {
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
  color: var(--text-muted);
}

.process-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.process-circle {
  width: 150px;
  height: 150px;
  border: 3px solid var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  text-align: center;
  font-weight: 600;
  color: var(--primary-color);
  font-size: 0.9rem;
}

/* ISO Section */
.iso-section {
  background: var(--primary-color);
}

.video-wrapper-iso {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.play-button-lg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.play-button-lg i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-left: 5px;
}

/* Benefits Section */
.benefits-section {
  background: var(--primary-dark);
  color: var(--white);
}

.benefit-card {
  display: flex;
  gap: 15px;
  padding: 20px;
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon i {
  font-size: 1.3rem;
  color: var(--white);
}

.benefit-content h5 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.benefit-content p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
}

/* Footer */
.footer-section {
  color: var(--white);
  padding: 50px 0 0;
  background-color: #003b5e;
    background-image: url(https://catalyst-sourcing.com/wp-content/uploads/2022/06/bg-footer.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: inherit;
    background-position: center center;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--white);
}

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

.footer-links li {
  padding: 5px 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--secondary-color);
}

.social-links a {
  display: inline-flex;
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  color: var(--white);
  transition: background 0.3s;
}

.social-links a:hover {
  background: var(--secondary-color);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 15px 0;
  margin-top: 30px;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .nav-link {
    font-size: 0.85rem;
  }
}




.my_navbar .nav-link{
  font-size: 1rem;
  font-family: heading_font;
}

.my_diverse_solutions_heading{
  display: flex;
}

.my_bg_white{
  background-color: #fff;
}
.my_text_blue{
  color:#0d4f8b!important

}
.int_gbl_str_fontSize{
  font-size: 1.1rem;
}
.font_bold{
  font-weight: bold;
}
.service-content_filled{
  background-color: #022844;
}
.service-content_filled p,
.service-content_filled h5,
.service-content_filled a{
  color: #fff!important;

}

.sourcing_process{
  width: 100%;
}

.sourcing_process img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}