:root {
  --dark-bg: #0e1423;
  --highlight: #c32127;
  --text-main: #222;
  --text-muted: #777;
  --primary-color: #4d4d4d;
  --accent-color: #ff4d4d;
  --bg-light: #f1f1f6;
  --card-bg: #fff;
  --text-gray: #777;
  --dark-bg: #0e1423;
  --highlight: #c32127;
  --light-bg: #f9f9f9;
  --star-color: #ffcc00;
}


.hero {
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: background-image 1s ease-in-out;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.hero-content {
  color: #fff;
  max-width: 800px;
}

.welcome-text {
  font-size: 1.2rem;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.company-name {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.description {
  font-size: 1.7rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.btn {
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s ease;
}

.btn-primary {
  background-color: #c10c0c;
  color: #fff;
}

.btn-primary:hover {
  background-color: #9e0a0a;
}

.btn-secondary {
  background-color: #fff;
  color: #000;
}

.btn-secondary:hover {
  background-color: #f0f0f0;
}

/* keyframes */
@keyframes fadeUp {
  to {
      opacity: 1;
      transform: translateY(0);
  }
}
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  33.33% {
    transform: translateX(-33.33%); 
  }
  66.66% {
    transform: translateX(-66.66%); 
  }
  100% {
    transform: translateX(0); 
  }
}



.services {
    display: flex;
    justify-content: space-between;
    padding: 50px;
    background: white;
    position: relative;
    top: -70px; 
    z-index: 10;
    flex-wrap: wrap;
}

.service {
    width: 23%;
    background: #ffffff;
    padding: 40px;
    text-align: center;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.service:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service i,
.service h3,
.service p {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
}


.service:hover i,
.service:hover h3,
.service:hover p {
    transform: translateY(-5px);
    opacity: 1;
}

.service:hover i {
    transition-delay: 0.05s;
}
.service:hover h3 {
    transition-delay: 0.1s;
}
.service:hover p {
    transition-delay: 0.15s;
}


.more-btn {
    position: absolute;
    bottom: 15px;
    width: 20px;
    height: 30px;
    right: 15px;
    color: white;
    background-color: gray;
    font-size: 24px;
    text-decoration: none;
}
.icon{
    color: red;
    margin-bottom:20px ;
    font-size: 36px;
}



/* ABOUT US SECTION */
.about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 10%;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    text-align: center;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
}

.about-content {
    flex: 1;
    min-width: 300px;
    padding-left: 40px;
}

.about-title span {
    font-size: 18px;
    font-weight: bold;
    color: #c00; /* Matches the red text */
    display: block;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.about-heading {
    font-size: 28px;
    font-weight: bold;
    color: #222;
    margin-bottom: 20px;
}

.about-text {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}





/* SERVICES SECTION */
.services-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 10%;
    flex-wrap: wrap;
}

.services-content {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    color: #c00;
    margin-bottom: 15px;
}

.section-description {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* BUTTON */
.btn-primary {
    display: inline-block;
    background: #c00;
    color: white;
    padding: 12px 18px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-primary i {
    margin-left: 8px;
}

.btn-primary:hover {
    background: #900;
}

/* IMAGES */
.services-images {
    flex: 1;
    position: relative;
    min-width: 300px;
    text-align: right;
}

.services-images .main-image {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
}

.services-images .overlay-image {
    width: 50%;
    max-width: 250px;
    border-radius: 8px;
    position: absolute;
    bottom: -30px;
    right: -20px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}




  /* Section Styling */
  .mission-section {
    padding: 80px 20px;
    background-color: #ffffff;
    text-align: center;
    line-height: 1.6;
  }
  
  .section-titl{
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
  }
  
  .section-titl::before,
  .section-titl::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 60px;
    height: 2px;
    background-color: #000;
  }
  
  .section-titl::before {
    left: -70px;
  }
  
  .section-titl::after {
    right: -70px;
  }
  
  /* Card Wrapper */
  .mission-cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  /* Card */
  .mission-card {
    background-color: #fff;
    border-radius: 12px;
    width: 100%;
    max-width: 330px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
  }
  
  .mission-card:hover {
    transform: translateY(-5px);
  }
  
  /* Card Image */
  .card-image {
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* Card Content */
  .card-content {
    text-align: center;
    padding: 50px 20px 25px;
    transition: transform 0.4s ease, opacity 0.4s ease;
  }
  
  .mission-card:hover .card-content {
    transform: translateY(-15px);
    opacity: 0.95;
  }
  
  /* Number Badge */
  .card-number {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    background: #f3f3f3;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    margin: -40px auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  /* Title & Description */
  .card-title {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 8px;
  }
  
  .card-description {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
  }
  
  
  


  /* CSS */
.solutions-overview {
    background: url('../images/Embex.html\ 00.3425\ D.png') center center/cover no-repeat;
    padding: 80px 20px;
    text-align: center;
  }
  
  .solutions-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .solutions-subheading {
    text-transform: uppercase;
    color: #00bfff;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }
  
  .solutions-heading {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
  }
  
  .solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .solution-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #000;
  }
  
  .solution-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #00bfff;
  }
  
  .solution-value {
    font-size: 24px;
    font-weight: bold;
  }
  
  .solution-text {
    font-size: 14px;
    margin-top: 5px;
  }
  
 
  


  /* Request Quote Styles */
.quote-section {
    /* background-color; */
    padding: 80px 20px;
  }
  
  .quote-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .quote-left {
    flex: 1;
  }
  
  .quote-left h2 {
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  
  .quote-left p {
    color: #777;
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .underline {
    width: 60px;
    height: 2px;
    background-color: red;
  }
  
  .quote-right {
    flex-shrink: 0;
  }
  
  .quote-btn {
    display: inline-block;
    background-color: #e62828;
    color: white;
    padding: 15px 25px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 3px;
  }
  


 
.logo {
    width: 100%;
    overflow: hidden; /* Hide logos outside the visible area */
    position: relative;
    background-color: #f0f0f0; /* Optional background color */
    padding: 20px 0; /* Padding for spacing */
  }
  
  /* The slider wrapper */
  .slide {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
  }
  
  
  .logo-track {
    display: flex;
    transition: transform 0.5s ease-in-out; 
    width: 100%; 
  }
  
 
  .logo-item {
    flex: 0 0 33.33%; 
    padding: 0 15px; 
  }
  
  /* Logo images */
.logo-item img {
    width: 150px; 
    height: auto; 
  }
  

  

  .logo-track {
    animation: slide 9s infinite; 
  }
  

  


  .testimonial-section {
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 30px;
  }

  .section-heade {
    /* text-align: center; */
    margin-bottom: 40px;
  }

  .section-subtit {
    color: var(--accent-color);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
  }

  .section-tit {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary-color);
  }

  .slider-wrapper {
    position: relative;
    overflow: hidden;
  }

  .slider-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
  }


  .testimonials-wrapper {
    background-color: #f1f1f7;
    padding: 60px 20px;
    text-align: center;
  }

  .testimonials-heading {
    margin-bottom: 40px;
  }

  .testimonials-subtitle {
    color: #c10c0c;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 1px;
  }

  .testimonials-title {
    font-size: 2rem;
    font-weight: bold;
    color: #222;
  }

  .testimonials-container {
    display: flex;
    overflow: hidden;
    justify-content: center;
    position: relative;
  }

  .testimonial-card {
    background: #fff;
    padding: 30px;
    margin: 0 10px;
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    display: none;
    flex-direction: column;
    align-items: center;
    position: relative;
  }

  .testimonial-card.active {
    display: flex;
  }

  .testimonial-heading {
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
  }

  .testimonial-stars {
    color: #f7b900;
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .testimonial-message {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
  }

  .testimonial-date {
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 20px;
  }

  .testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    justify-content: center;
  }

  .testimonial-logo {
    height: 40px;
    width: auto;
  }

  .testimonial-nav {
    margin-top: 30px;
  }

  .testimonial-nav button {
    background-color: transparent;
    border: none;
    font-size: 2rem;
    color: #888;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 10px;
  }

  .testimonial-nav button:hover {
    color: #c10c0c;
  }

 


  
  .faq-contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    background-color: var(--light-bg);
    border-radius: 6px;
    overflow: hidden;
    max-width: 1300px;
    margin: 0 auto;
  }

  .faq-side {
    flex: 1 1 60%;
    padding: 40px 30px;
    background-color: #fff;
  }

  .faq-heading {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
  }

  .faq-subtext {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 25px;
    position: relative;
  }

  .faq-subtext::before {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: var(--highlight);
    margin-bottom: 10px;
  }

  .faq-list {
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
  }

  .faq-item {
    border-top: 1px solid #ddd;
    background-color: #fefefe;
  }

  .faq-item:first-child {
    border-top: none;
  }

  .faq-question {
    padding: 18px 20px;
    background-color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-main);
    transition: background 0.3s ease;
  }

  .faq-question:hover {
    background-color: #f5f5f5;
  }

  .faq-answer {
    padding: 15px 20px;
    font-size: 14px;
    color: var(--text-muted);
    display: none;
    background-color: #f8f8f8;
  }

  .faq-item.active .faq-answer {
    display: block;
  }

  .faq-icon {
    font-size: 16px;
    color: var(--highlight);
  }

  .faq-item.active .faq-icon {
    transform: rotate(180deg);
  }

  .contact-side {
    flex: 1 1 40%;
    background-color: var(--dark-bg);
    color: #fff;
    padding: 40px 30px;
  }

  .info-block {
    margin-bottom: 30px;
  }

  .info-title {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 10px;
  }

  .info-line {
    font-size: 14px;
    line-height: 1.6;
    margin-left: 24px;
    position: relative;
  }

  .info-line::before {
    content: "📍";
    position: absolute;
    left: -24px;
    top: 0;
  }

  .info-line.email::before {
    content: "✉️";
  }

  .info-line.phone::before {
    content: "📞";
  }

  .info-line.website::before {
    content: "🌐";
  }

  .contact-button {
    background-color: var(--highlight);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 3px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .contact-button:hover {
    background-color: #a91c21;
  }

  .contact-button span {
    margin-left: 10px;
    font-size: 18px;
  }


/* Responsive Design */
@media (max-width: 1024px) {
  .services {
      flex-direction: column;
      align-items: center;
  }

  .service {
      width: 80%;
      margin-bottom: 20px;
  }

  .overlay {
      width: 90%;
      padding: 15px;
  }

  h1 {
      font-size: 36px;
  }

  p {
      font-size: 16px;
  }

  .btn {
      font-size: 14px;
      padding: 8px 15px;
  }
  .about {
    flex-direction: column;
    text-align: center;
}

.about-content {
    padding-left: 0;
}

.about-image img {
    max-width: 80%;
}
.services-section {
  flex-direction: column;
  text-align: center;
}

.services-images {
  text-align: center;
  margin-top: 30px;
}

.services-images .overlay-image {
  bottom: -20px;
  right: auto;
  left: 50%;
  transform: translateX(-50%);
}
}


@media (max-width: 900px) {
  .faq-contact-wrapper {
    flex-direction: column;
  }

  .faq-side,
  .contact-side {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .company-name {
    font-size: 2.2rem;
  }

  .description {
    font-size: 0.95rem;
  }

  .buttons {
    flex-direction: column;
  }
  .mission-cards-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .mission-card {
    max-width: 90%;
  }

  .section-titl::before,
  .section-titl::after {
    width: 30px;
  }

  .section-titl::before {
    left: -35px;
  }

  .section-titl::after {
    right: -35px;
  }
  .testimonial-card {
    margin: 0;
  }
}



@media (max-width: 600px) {
  .service {
      width: 100%;
      padding: 30px;
  }

  .overlay {
      width: 100%;
      padding: 10px;
  }

  h1 {
      font-size: 30px;
  }

  p {
      font-size: 14px;
  }

  .btn {
      font-size: 12px;
      padding: 6px 10px;
  }
}


  