/* ========== Global Reset & Base Styles ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
}

/* ========== About Us Section ========== */
.about-section,
.dark-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
  background-color: #ffffff;
  max-width: 1200px;
  margin: 50px auto;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-content,
.dark-content {
  flex: 1;
  padding: 20px;
}

.about-content h2,
.dark-content h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #2c3e50;
}

.about-content p,
.dark-content p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #555;
}

.about-content .btn,
.dark-content .btn {
  display: inline-block;
  padding: 12px 25px;
  background-color:#23597e;
  color: #f7f7f7;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.about-content .btn:hover,
.dark-content .btn:hover {
  background-color: #0e0d0d;
}

.about-image,
.dark-image {
  flex: 1;
  padding: 20px;
}

.about-image img,
.dark-image img {
  width: 100%;
  height: auto;
  border-radius: 50% / 40%; /* Oval shape */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .about-section,
  .dark-section {
    flex-direction: column;
  }

  .about-image,
  .dark-image,
  .about-content,
  .dark-content {
    padding: 10px;
  }

  .about-content h2,
  .dark-content h2 {
    font-size: 2em;
  }
  /* clinet saction css */
}
.our-portfolio {
  padding: 80px 0;
  background-color: #f9f9f9;
  text-align: center;
}

.our-portfolio .section-heading {
  margin-bottom: 50px;
}

.our-portfolio .section-heading h2 {
  font-size: 36px;
  font-weight: 700;
  color: #333;
}

.our-portfolio .section-heading h2 span {
  color: #e74c3c;
}

/* === Owl Carousel Items === */
.owl-portfolio .item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.owl-portfolio .item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.owl-portfolio .thumb img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* === Hover Overlay === */
.hover-effect {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  border-radius: 12px;
}

.item:hover .hover-effect {
  opacity: 1;
  visibility: visible;
}

/* === Company Name (h4) === */
.hover-effect .inner-content h4 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.hover-effect .inner-content h4:hover {
  color: #e74c3c;
}

/* === Category (span) === */
.hover-effect .inner-content span {
  font-size: 14px;
  font-weight: 400;
  color: #f1f1f1;
  letter-spacing: 0.5px;
  display: block;
  text-transform: capitalize;
  opacity: 0.9;
}

/* === Text Animation on Hover === */
.hover-effect .inner-content {
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}

.item:hover .hover-effect .inner-content {
  transform: translateY(0);
  opacity: 1;
}

/* === Owl Carousel Nav Buttons === */
.owl-portfolio .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.owl-portfolio .owl-nav button {
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  padding: 8px 15px;
  font-size: 18px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
  pointer-events: all;
}

.owl-portfolio .owl-nav button:hover {
  background: #e74c3c;
}

/* === Owl Dots === */
.owl-portfolio .owl-dots {
  margin-top: 20px;
  text-align: center;
}

.owl-portfolio .owl-dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background: #1b1717;
  border-radius: 50%;
  display: inline-block;
  transition: background 0.3s ease;
}

.owl-portfolio .owl-dot.active {
  background: #e74c3c;
}

/* === VIEW MORE BUTTON === */
.view-more-btn {
  display: inline-block;
  margin-top: 40px;
  padding: 12px 30px;
  background: linear-gradient(135deg, #573bd4, #551f9b);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  text-decoration: none;
}

.view-more-btn:hover {
  background: linear-gradient(135deg, #211275, #5d45e6);
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

