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

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont,
    sans-serif;
  background: #f8fafc;
  color: #1a202c;
  scroll-behavior: smooth;
  line-height: 1.6;
}

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

/* Header styles with asymmetrical design */
header {
  background: #5d0d1d;
  color: #fff;
  padding: 20px 0px 20px 40px;
  position: relative;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  scroll-behavior: smooth;
}

/* Navigation bar container */
nav {
  display: flex;
  align-items: center;
  max-width: 100vw;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding-right: 0;
}

.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
  margin-left: 50px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
  margin-right: 15px;
}

.menu-toggle {
  display: none;
}

@media (max-width: 1300px) {
  .nav-center {
    position: fixed !important;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, #5d0d1d 0%, #7a1b2b 100%);
    display: flex !important;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 100px;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    z-index: 1002;
    backdrop-filter: blur(10px);
    margin: 0;
  }

  .nav-center.active {
    right: 0 !important;
  }

  .nav-center .nav-links {
    display: flex !important;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
  }

  .nav-center .nav-links li {
    margin: 15px 0;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.3s ease;
  }

  .nav-center.active .nav-links li {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-center.active .nav-links li:nth-child(1) {
    transition-delay: 0.1s;
  }
  .nav-center.active .nav-links li:nth-child(2) {
    transition-delay: 0.2s;
  }
  .nav-center.active .nav-links li:nth-child(3) {
    transition-delay: 0.3s;
  }
  .nav-center.active .nav-links li:nth-child(4) {
    transition-delay: 0.4s;
  }
  .nav-center.active .nav-links li:nth-child(5) {
    transition-delay: 0.5s;
  }
  .nav-center.active .nav-links li:nth-child(6) {
    transition-delay: 0.6s;
  }

  .nav-center .nav-links li a {
    font-size: 18px;
    padding: 15px 30px;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    min-width: 200px;
    border: 2px solid transparent;
  }

  .nav-center .nav-links li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
  }

  .nav-right {
    flex-direction: column;
    gap: 8px;
    margin-right: 15px;
  }

  .menu-toggle {
    display: flex !important;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    transition: transform 0.3s ease;
  }

  .menu-toggle:hover {
    transform: scale(1.1);
  }

  .menu-toggle .bar {
    height: 3px;
    width: 25px;
    background-color: white;
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
  }

  .menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
  }

  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  #lang-toggle {
    font-size: 11px;
    padding: 6px 12px;
    min-width: 65px;
  }
}

/* Logo with a floating effect */
.logo {
  display: flex;
  align-items: center;
  animation: float 3s ease-in-out infinite;
}
.logo img {
  height: 60px;
  margin-right: 15px;
}

.logo h1 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #fff;
  text-transform: uppercase;
}

/* Floating animation for logo */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* Fade-in animation for page transitions */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.7s ease;
}

/* Navigation links with creative hover effects */
.nav-links {
  font-family: "Lora", sans-serif;
  list-style: none;
  display: flex;
  gap: 25px;
  scroll-behavior: smooth;
  margin: 0;
}

.nav-links li {
  position: relative;
  transition: transform 0.3s ease;
  scroll-behavior: smooth;
}

.nav-links li:hover {
  transform: translateY(-5px); /* Slight lift on hover */
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  padding: 10px 15px;
  border-radius: 50px;
  transition: all 0.3s ease;
  scroll-behavior: smooth;
}
.nav-links li a img {
  display: flex;
  width: 24px;
  height: auto;
}

/* Modern hover effect */
.nav-links li a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.menu-toggle .bar {
  height: 3px;
  width: 25px;
  background-color: white;
  margin: 4px 0;
  transition: all 0.3s ease;
}
#lang-toggle {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.5px;
  min-width: 80px;
  text-align: center;
}

#lang-toggle:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.1)
  );
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

#lang-toggle:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
/* Asymmetrical background shadow */
header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  z-index: 1;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
}

#home {
  padding: 80px 20px;
  background-color: #f4f7fb;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
}

#home .split-container {
  display: flex;
  max-width: 1200px;
  width: 100%;
  gap: 40px;
  align-items: center;
}

/* Split container within the hero */
#home .split-container {
  display: flex;
  max-width: 1200px;
  width: 100%;
  gap: 40px; /* Space between left and right sides */
  align-items: center;
}

/* Left side of hero */
#home .left-side {
  flex: 1;
  text-align: left;
}

#home .left-side h1 {
  font-size: 48px;
  color: #5d0d1d;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

#home .left-side p {
  font-size: 20px;
  color: #555;
  line-height: 1.6;
}

/* Right side card in hero */
#home .right-side {
  flex: 1;
  display: flex;
  justify-content: center;
}

#home .card {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 500px;
  text-align: left;
}

/* Card hover effect in hero */
#home .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

#home .card p {
  font-size: 18px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Button styling in hero */
#home .btn {
  display: inline-flex;
  align-items: center;
  background: #5d0d1d;
  color: #fff;
  padding: 18px 36px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(93, 13, 29, 0.4);
  position: relative;
  overflow: hidden;
}

#home .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.5s;
}

#home .btn:hover::before {
  left: 100%;
}

/* Button hover effect in hero */
#home .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(93, 13, 29, 0.6);
  background: #7a1b2b;
}

/* Responsive styling for smaller screens */
@media (max-width: 768px) {
  #home .split-container {
    flex-direction: column;
    text-align: center;
  }

  #home .left-side,
  #home .right-side {
    flex: unset;
    width: 100%;
    margin-bottom: 30px;
  }

  #home .left-side h1 {
    font-size: 36px;
  }

  #home .left-side p {
    font-size: 18px;
  }

  #home .card {
    padding: 20px;
  }
}

/* General Section Styling */
section {
  padding: 100px 20px;
  background-color: #f4f7fb;
}

/* Container for About Us */
/* Container for About Us */
.about-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Left Side: Image Styling */
.about-image {
  flex: 1;
}

.about-image .section-img {
  width: 50%;
  height: auto;
}

/* Right Side: Text and Button */
.about-content {
  flex: 1;
  text-align: left;
}

.about-content h2 {
  font-size: 48px;
  color: #5d0d1d;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 20px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 600px;
}

/* Button Styling */
.btn {
  display: inline-block;
  background-color: #5d0d1d;
  color: #fff;
  padding: 15px 35px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  margin-top: 10px;
}

/* Button Hover Effect */
.btn:hover {
  background-color: #3c0510;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Layout */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column; /* Stacks elements vertically on smaller screens */
    text-align: center;
  }

  .about-content {
    text-align: center;
  }

  .about-content h2 {
    font-size: 36px; /* Reduce heading size on smaller screens */
  }

  .about-content p {
    font-size: 18px;
    margin: 0 auto;
  }

  .about-image {
    margin-bottom: 20px;
  }
}

/* General Section Styling */
#services {
  padding: 100px 20px;
  background: #f0f4f8;
  text-align: center;
}

#services h2 {
  font-size: 48px;
  margin-bottom: 60px;
  color: #5d0d1d;
}

/* Services Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.service {
  background: linear-gradient(135deg, #ffffff, #f0f4f8);
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-content {
  padding: 40px 20px;
  position: relative;
  z-index: 1;
}

.service img {
  width: 80px; /* Small icon size */
  margin-bottom: 20px;
  opacity: 0.9;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.service:hover img {
  opacity: 1;
  transform: scale(1.1); /* Slight zoom on hover */
}

.service h3 {
  font-size: 28px;
  color: #5d0d1d;
  margin-bottom: 15px;
  font-weight: bold;
}

.service p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Button Styling */
.service .btn {
  background-color: #5d0d1d;
  color: white;
  padding: 15px 35px;
  font-size: 16px;
  text-decoration: none;
  border-radius: 30px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 2;
  margin-top: 10px;
}

.service .btn:hover {
  background-color: #3f0612;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Layout for Smaller Screens */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-content {
    padding: 30px;
  }
}
#aligned-services {
  padding: 80px 20px;
  background: #f0f4f8;
  text-align: center;
}

#aligned-services h2 {
  font-size: 36px;
  color: #5d0d1d;
  margin-bottom: 40px;
  position: relative;
}

#aligned-services h2::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #5d0d1d;
  display: block;
  margin: 10px auto 0;
}

.aligned-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.aligned-service {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aligned-service:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.icon-circle {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: #5d0d1d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle img {
  width: 50px;
  height: 50px;
}

.service-text {
  text-align: left;
}

.service-text h3 {
  font-size: 20px;
  color: #5d0d1d;
  margin-bottom: 10px;
}

.service-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}
/* Add styles to make the entire service box clickable */
.aligned-service {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none; /* Remove link underline */
  color: inherit; /* Inherit text color */
}

.aligned-service:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.aligned-service .icon-circle {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: #b91d3c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aligned-service .icon-circle img {
  width: 50px;
  height: 50px;
}

.aligned-service .service-text {
  text-align: left;
}

.aligned-service .service-text h3 {
  font-size: 20px;
  color: #5d0d1d;
  margin-bottom: 10px;
}

.aligned-service .service-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .aligned-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .aligned-services-grid {
    grid-template-columns: 1fr;
  }

  .aligned-service {
    flex-direction: column;
    text-align: center;
  }

  .service-text {
    text-align: center;
  }
}

/* General Section Styling */
#testimonials {
  padding: 100px 20px;
  background: #f9fafc;
  text-align: center;
}

#testimonials h2 {
  font-size: 48px;
  color: #5d0d1d;
  margin-bottom: 40px;
}

/* Projects Container */
.projects-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Cube Slider Container */
.cube-slider {
  width: 300px;
  height: 300px;
  perspective: 1000px;
  position: relative;
  margin: 0 auto;
}

.cube {
  width: 100%;
  height: 100%;
  position: absolute;
  transform-style: preserve-3d;
  animation: rotateCube 10s infinite ease-in-out;
}

.cube-face {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column; /* Stack image and text vertically */
  justify-content: center;
  align-items: center;
  padding: 10px;
  box-sizing: border-box;
}

.cube-face img {
  width: 80%; /* Adjust image width */
  margin-bottom: 10px; /* Space between image and text */
}

.cube-face p {
  font-size: 14px; /* Smaller font size for text */
  color: #555;
  margin: 5px 0; /* Smaller margin */
  text-align: center; /* Center text */
}

.cube-face strong {
  font-size: 16px;
  color: #5d0d1d;
}

/* Position the cube faces */
.cube-face.front {
  transform: translateZ(150px);
}
.cube-face.back {
  transform: rotateY(180deg) translateZ(150px);
}
.cube-face.left {
  transform: rotateY(-90deg) translateZ(150px);
}
.cube-face.right {
  transform: rotateY(90deg) translateZ(150px);
}

/* Animation for rotating the cube */
@keyframes rotateCube {
  0% {
    transform: rotateY(0deg);
  }
  25% {
    transform: rotateY(-90deg);
  }
  50% {
    transform: rotateY(-180deg);
  }
  75% {
    transform: rotateY(-270deg);
  }
  100% {
    transform: rotateY(-360deg);
  }
}

/* Project Info Box */
.project-info {
  background-color: #5d0d1d;
  color: white;
  padding: 40px;
  border-radius: 10px;
  width: 45%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.project-info h3 {
  font-size: 32px;
  margin-bottom: 20px;
}

.project-info p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Read More Button */
.btn-readmore {
  background-color: #ff6600;
  color: white;
  padding: 12px 30px;
  font-size: 16px;
  text-decoration: none;
  border-radius: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-readmore:hover {
  background-color: #ff3300;
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
  .projects-container {
    flex-direction: column;
    gap: 30px;
    align-items: center; /* Center items for mobile */
  }

  .cube-slider {
    width: 80%; /* Adjust slider width */
    height: auto; /* Maintain aspect ratio */
  }

  .project-info {
    width: 90%; /* Full width on smaller screens */
    margin-left: 0; /* Reset margin */
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .projects-container {
    flex-direction: column; /* Stack elements on small screens */
    align-items: center; /* Center align items */
  }

  .cube-slider {
    display: none; /* Hide the cube slider on mobile */
  }

  .project-info {
    width: 90%; /* Use more space on small screens */
    margin: 0; /* Remove left margin */
  }

  #testimonials h2 {
    font-size: 28px; /* Smaller heading for mobile */
  }

  .project-info h3 {
    font-size: 20px; /* Smaller heading for project info */
  }

  .project-info p {
    font-size: 14px; /* Smaller text for project info */
  }
}
#blog {
  padding: 80px 20px;
  background-color: #f4f7fb;
  text-align: center;
}

#blog h2 {
  font-size: 48px;
  color: #5d0d1d;
  margin-bottom: 60px;
  font-weight: 700;
}

.audit-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.audit-box {
  background: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid #5d0d1d;
  text-align: left;
}

.audit-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.audit-box h3 {
  font-size: 24px;
  color: #5d0d1d;
  margin-bottom: 20px;
  font-weight: 600;
}

.audit-box p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
}

.audit-box .btn {
  background-color: #5d0d1d;
  color: white;
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 10px;
}

.audit-box .btn:hover {
  background-color: #3c0510;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .audit-boxes {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .audit-box {
    padding: 30px 20px;
  }

  #blog h2 {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .contact-container {
    flex-direction: column;
    gap: 30px;
  }

  .contact-form,
  .contact-map {
    width: 100%;
  }

  .contact-map {
    margin-left: 0;
  }

  .map-container {
    height: 250px;
  }
}

/* Contact Section */
#contact {
  padding: 80px 20px;
  background-color: #f4f7fb;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-form {
  flex: 1;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #5d0d1d;
}

.contact-form p {
  font-size: 14px;
  color: #333;
  margin-bottom: 20px;
}

form label {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  font-weight: bold;
  color: #333;
}

form input,
form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

form input:focus,
form textarea:focus {
  border-color: #5d0d1d;
}

form button {
  background-color: #5d0d1d;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #5d0d1d;
}

/* Google Map Section */
.contact-map {
  flex: 1;
  margin-left: 20px;
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-header {
  padding: 25px;
  background: linear-gradient(135deg, #5d0d1d, #7a1b2b);
  color: #fff;
  text-align: center;
}

.map-header h2 {
  font-size: 24px;
  margin: 0 0 8px 0;
  font-weight: 600;
}

.map-header p {
  font-size: 14px;
  margin: 0;
  opacity: 0.9;
}

.map-container {
  height: 300px;
  padding: 15px;
  background-color: #f8f9fa;
}

.map-container iframe {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.map-container:hover iframe {
  transform: scale(1.02);
}

/* Footer */
footer {
  background-color: #5d0d1d;
  color: #ffffff;
  text-align: center;
  padding: 10px 0;
  width: 100%;
  font-size: 14px;
  margin-top: 50px;
  padding: 30px;
  bottom: 0;
  left: 0;
  height: 130px;
}

footer .footer-content {
  max-width: 1200px;
  margin: auto;
}

.socials {
  list-style: none;
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.socials li {
  margin: 0 15px;
}

.socials li a {
  color: #fff;
  font-size: 20px;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.socials li a:hover {
  transform: scale(1.1);
}
/* General Styles */
#about-us-section {
  background-color: #f5f5f5;
  padding: 50px 40px;
}
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    gap: 20px;
    padding: 0 15px;
  }

  .contact-form {
    width: 100%;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .contact-map {
    width: 100%;
    margin-left: 0;
  }

  .map-container {
    height: 250px;
  }

  .contact-form h2 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #5d0d1d;
  }

  .contact-form p {
    font-size: 14px;
    color: #333;
    margin-bottom: 20px;
  }
}
.about-us-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Flex Row for Title and Partners */
.about-us-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 40px;
}

.about-us-title {
  font-size: 36px;
  color: #5d0d1d;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.about-us-partners {
  text-align: center;
}

.about-us-heading {
  font-size: 28px;
  color: #5d0d1d;
  margin-top: 15px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

/* Partners Section */
#partners {
  text-align: center;
}

.partners-list {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.partner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 150px;
  text-align: center;
}

.partner a {
  text-decoration: none;
  color: inherit;
}

.partner-logo {
  width: 80px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  object-fit: contain;
}

.partner-logo:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.partner-name {
  font-size: 14px;
  color: #333;
  font-weight: bold;
  margin-top: 8px;
}

/* Responsive Adjustments */
@media screen and (min-width: 768px) {
  .about-us-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 40px;
  }

  .about-us-title {
    margin-bottom: 0;
  }

  .partners-list {
    gap: 40px;
  }

  .partner-logo {
    width: 100px;
  }
}

/* General Section Styles */
#consulting-section {
  padding: 60px 20px;
  background-color: #e1f5fe;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  margin: 0 auto;
}

#consulting-section h2 {
  font-family: "Montserrat", sans-serif;
  color: #01579b;
  font-size: 36px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.consulting-content-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.consulting-img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  border: 4px solid #ddd;
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.15);
}

.consulting-description {
  flex: 1;
  font-family: "Open Sans", sans-serif;
  color: #333;
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
  max-width: 700px;
}

/* Button Container */
.button-area {
  margin-top: 30px;
}

.download-button,
.contact-button {
  padding: 15px 30px;
  font-family: "Arial", sans-serif;
  font-size: 18px;
  text-decoration: none;
  border-radius: 25px;
  transition: background-color 0.3s ease;
}

.download-button {
  background-color: #00796b;
  color: #fff;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.15);
}

.download-button:hover {
  background-color: #004d40;
  box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.25);
}

.contact-button {
  margin-left: 20px;
  background-color: #0288d1;
  color: #fff;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.15);
}

.contact-button:hover {
  background-color: #01579b;
  box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.25);
}

/* Responsive Design */
@media (max-width: 768px) {
  .consulting-content-wrapper {
    flex-direction: column;
    text-align: left;
  }

  .consulting-img {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .consulting-description {
    max-width: 100%;
  }
}
/* General Section Styles */
#compliance-audit-section {
  padding: 50px 20px;
  background-color: #f0f4f8;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  margin: 0 auto;
}

.compliance-title {
  font-family: "Poppins", sans-serif;
  color: #1e3d58;
  font-size: 32px;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.compliance-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.compliance-img {
  width: 100%;
  max-width: 450px;
  border-radius: 10px;
  border: 3px solid #ddd;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.compliance-description {
  flex: 1;
  font-family: "Lora", sans-serif;
  color: #333;
  font-size: 18px;
  line-height: 1.8;
  max-width: 650px;
  margin: 0;
  text-align: left;
}

/* Download Button Container */
.compliance-button-area {
  margin-top: 30px;
}

.compliance-download-btn {
  padding: 15px 35px;
  font-family: "Arial", sans-serif;
  font-size: 18px;
  color: #fff;
  background-color: #00796b;
  border-radius: 25px;
  text-decoration: none;
  box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.compliance-download-btn:hover {
  background-color: #004d40;
  box-shadow: 0px 7px 12px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .compliance-content-wrapper {
    flex-direction: column;
    text-align: left;
  }

  .compliance-img {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .compliance-description {
    max-width: 100%;
  }
}
/* General Styles for Section */
#process-improvement-section {
  padding: 80px 20px;
  background-color: #fff; /* White background */
  border-radius: 20px;
  text-align: center;
  box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 0;
}

/* Header Section */
.process-header {
  margin-bottom: 30px; /* Reduced space between header and content */
}

.process-title {
  font-family: "Orbitron", sans-serif;
  color: #5d0d1d; /* Deep Red */
  font-size: 48px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .process-title {
    font-size: 28px;
    letter-spacing: 1px;
    line-height: 1.2;
  }
}

.process-subtitle {
  font-family: "Lora", serif;
  font-size: 22px;
  color: #5d0d1d;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
}

/* Content Wrapper for Image and Description */
.process-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px; /* Reduced space between image and text */
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* Image Styles */
.process-image {
  flex: 1;
  max-width: 45%; /* Smaller width for image */
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.process-img {
  width: 100%;
  border-radius: 20px;
  border: 5px solid #5d0d1d; /* Deep red border */
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.process-img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Description Section */
.process-description {
  flex: 2;
  font-family: "Lora", sans-serif;
  color: #333;
  font-size: 18px;
  line-height: 1.8;
  max-width: 55%; /* Narrowed down description width */
  text-align: left;
  position: relative;
  z-index: 1;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
}

/* Download Button Section */
.process-button-area {
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.process-download-btn {
  padding: 18px 50px;
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  color: #fff;
  background-color: #5d0d1d; /* Deep red */
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.4s ease;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
}

.process-download-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.35);
  background-color: #8a1b2d; /* Lighter red on hover */
}

/* Floating Background Animation */
#process-improvement-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("floating-background.svg");
  background-size: cover;
  z-index: -1;
  animation: floating 10s linear infinite;
}

@keyframes floating {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .process-content-wrapper {
    flex-direction: column;
    text-align: left;
  }

  .process-img {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .process-description {
    max-width: 100%;
    padding: 20px;
  }

  .process-download-btn {
    width: 100%;
    text-align: center;
  }
}
/* Project Gallery Section */
#project-gallery {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.gallery-header .gallery-title {
  font-family: "Orbitron", sans-serif;
  color: #5d0d1d;
  font-size: 48px;
  margin-bottom: 15px;
}

.gallery-header .gallery-subtitle {
  font-family: "Lora", serif;
  font-size: 18px;
  color: #333;
  max-width: 800px;
  margin: 0 auto 60px;
}

/* Project Cards Container */
.gallery-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
}

/* Individual Project Card */
.project-item {
  background-color: #fff;
  width: calc(33.33% - 20px);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
  position: relative;
}

/* Hover Effect on Cards */
.project-item:hover {
  transform: translateY(-10px);
  box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.15);
}

/* Image in Project Cards */
.project-image {
  width: 100%;
  height: 200px;
  object-fit: fill;
  border-bottom: 5px solid #5d0d1d;
}

/* Project Content */
.project-details {
  padding: 20px;
}

.project-name {
  font-family: "Orbitron", sans-serif;
  font-size: 24px;
  color: #5d0d1d;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.project-name:hover {
  color: #8a1b2d;
}

.project-description {
  font-family: "Lora", serif;
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .project-item {
    width: calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .project-item {
    width: 100%;
  }
}
.buttn {
  display: inline-block;
  background-color: #5d0d1d;
  color: #fff;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.buttn:hover {
  background-color: #3c0510;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Adds depth on hover */
}
#iso-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
  background: #e0f7fa;
  margin-top: 50px;
}

.section-container {
  display: flex;
  flex-direction: row;
  width: 90%;
  max-width: 1200px;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
}

.image-container {
  flex: 1;
  overflow: hidden;
}

.cert-image {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transform: scale(1.05);
  transition: transform 0.5s ease;
}

.image-container:hover .cert-image {
  transform: scale(1.15);
}

.content-container {
  flex: 2;
  padding: 40px;
  background: #f8f9fa;
}

/* Details Column Styling */
.details-column,
.overview-column {
  margin-bottom: 20px;
}

.section-title {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.section-title i {
  margin-right: 10px;
  color: #007bff;
}

.info-list {
  list-style: none;
  padding: 0;
}

.info-list li {
  font-size: 16px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  color: #555;
}
.info-list li span {
  margin-left: 5px;
}
.info-list li i {
  margin-right: 10px;
  color: #007bff;
}

.info-list a {
  color: #007bff;
  text-decoration: none;
  margin-left: 5px;
}

.info-list a:hover {
  text-decoration: underline;
}

/* Overview Column Styling */
.overview-column p {
  font-size: 16px;
  color: #444;
  margin-bottom: 15px;
  line-height: 1.6; /* Increased line height for better readability */
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-container {
    flex-direction: column;
    width: 95%;
    margin: 0 auto;
  }

  .content-container {
    padding: 20px;
  }

  .section-title {
    font-size: 20px;
  }

  .info-list li {
    font-size: 14px;
  }

  .overview-column p {
    font-size: 14px;
  }

  .back-to-blog {
    display: block;
    width: fit-content;
    margin: 30px auto 0;
    padding: 12px 20px;
    font-size: 14px;
  }
}
/* Blog Post Container with Professional Styling */
#blog-post {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 95%;
  max-width: 1100px;
  margin: 160px auto;
  padding: 40px;
  border-radius: 12px;
  background-color: #f9fafb;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #e3e6ea;
}

/* Title Styling with Modern Touch */
.post-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: #333;
  letter-spacing: 0.5px;
}

/* Content Wrapper */
.content-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  width: 100%;
  justify-content: center;
}

/* Image Styling with Smooth Shadow */
.post-image {
  width: 45%;
  max-width: 450px;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.post-image:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Text Content Styling */
.text-content {
  width: 55%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 18px;
  line-height: 1.8;
  color: #4a4a4a;
}

/* Paragraph styling for readability */
.text-content p {
  margin: 0;
}

/* Link Button Styling with Modern Hover Effect */
.back-to-blog {
  margin-top: 30px;
  text-decoration: none;
  color: #fff;
  background-color: #5d0d1d;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  display: inline-block;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}

.back-to-blog:hover {
  background-color: #39050f;
  box-shadow: 0 4px 12px rgba(58, 3, 3, 0.364);
}

/* Responsive Design */
@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .post-image,
  .text-content {
    width: 100%;
  }

  .post-title {
    font-size: 28px;
  }

  .text-content {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  #blog-post {
    padding: 20px;
  }

  .post-title {
    font-size: 24px;
  }

  .text-content {
    font-size: 15px;
  }

  .back-to-blog {
    padding: 10px 20px;
  }
}

.work-safety-training {
  background-color: #ffffff;
  padding: 40px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin: 50px 0;
}

.work-safety-training h2 {
  font-size: 2.2em;
  color: #333;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
}

.work-safety-training h2::after {
  display: none;
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 4px;
  background-color: #5d0d1d;
}

.work-safety-training p {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
  text-align: center;
}

.work-safety-training ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.work-safety-training ul li {
  font-size: 1.1em;
  color: #444;
  padding: 12px 20px;
  margin-bottom: 15px;
  border-left: 5px solid #5d0d1d;
  transition: all 0.3s ease;
}

.work-safety-training ul li:hover {
  background-color: #f0f8ff;
  transform: translateX(10px);
}

.work-safety-training ul li strong {
  color: #5d0d1d;
  font-weight: 600;
}

.work-safety-training ul li:before {
  content: "✔";
  color: #5d0d1d;
  font-size: 1.5em;
  margin-right: 15px;
  display: inline-block;
  vertical-align: middle;
}
.back-to-blog1 {
  margin-top: 30px;
  text-decoration: none;
  color: #fff;
  background-color: #5d0d1d;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  display: inline-block;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}

.back-to-blog1:hover {
  background-color: #39050f;
  box-shadow: 0 4px 12px rgba(58, 3, 3, 0.364);
}

@media (max-width: 768px) {
  .work-safety-training h2 {
    font-size: 1.8em;
  }

  .work-safety-training p {
    font-size: 1em;
  }

  .work-safety-training ul li {
    font-size: 1em;
  }
  .back-to-blog1 {
    margin-top: 30px;
    text-decoration: none;
    color: #fff;
    background-color: #5d0d1d;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    display: inline-block;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
    font-size: 14px;
  }

  .back-to-blog1:hover {
    background-color: #39050f;
    box-shadow: 0 4px 12px rgba(58, 3, 3, 0.364);
  }
}

/* Manual Carousel - No Auto-scroll */
.carousel {
  width: 100%;
  margin: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Track holds slides in a row */
.carousel-track {
  display: flex;
  width: 200%; /* 2 slides = 200% */
  transform: translateX(0%);
  transition: transform 0.8s ease-in-out;
}

/* Each slide takes equal width (100 / number_of_slides)% */
.carousel-slide {
  flex: 0 0 50%; /* 50% for 2 slides */
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Images fit nicely */
.carousel-slide img {
  width: 55%;
  height: 320px;
  object-fit: cover;
  display: block;
  vertical-align: middle;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin: 20px;
}

/* Slide content - News feed style */
.slide-content {
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  color: #333;
  padding: 30px;
  border-radius: 20px;
  width: 38%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.08);
  margin-left: 20px;
}

.slide-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #5d0d1d, #ff6b35);
  border-radius: 20px 0 0 20px;
}

.slide-content h3 {
  font-size: 22px;
  color: #2c3e50;
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 1.3;
  border-bottom: 2px solid #f8f9fa;
  padding-bottom: 8px;
}

.slide-content p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #6c757d;
  text-align: justify;
}

.carousel-btn-read {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #5d0d1d, #7a1b2b);
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 15px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(93, 13, 29, 0.3);
}

.carousel-btn-read:hover {
  background: linear-gradient(135deg, #3c0510, #5d0d1d);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(93, 13, 29, 0.4);
}

/* Navigation Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(4px);
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
  left: 20px;
}

.carousel-btn-next {
  right: 20px;
}

/* Indicators (bottom center) */
.carousel-indicators {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  display: flex;
  gap: 12px;
  z-index: 5;
}

.carousel-indicators .indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.carousel-indicators .indicator.active {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 1);
}

.carousel-indicators .indicator:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.2);
}

.carousel-indicators .indicator:focus {
  outline: 2px solid rgba(255, 255, 255, 0.9);
}

/* Mobile responsive design */
@media (max-width: 768px) {
  .carousel {
    padding: 0 15px;
  }

  .carousel-slide {
    flex-direction: column;
    align-items: stretch;
    padding: 15px;
  }

  .carousel-slide img {
    width: 100%;
    height: 250px;
    margin: 0 0 15px 0;
    border-radius: 15px;
  }

  .slide-content {
    position: static;
    transform: none;
    width: 100%;
    margin: 0;
    border-radius: 15px;
    padding: 20px;
  }

  .slide-content::before {
    display: none;
  }

  .slide-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .slide-content p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .carousel-btn-read {
    padding: 10px 16px;
    font-size: 13px;
  }

  .carousel-btn {
    width: 35px;
    height: 35px;
  }

  .carousel-btn-prev {
    left: 10px;
  }
  .carousel-btn-next {
    right: 10px;
  }

  .carousel-indicators {
    bottom: 15px;
    gap: 8px;
  }

  .carousel-indicators .indicator {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .carousel-slide img {
    height: 200px;
  }

  .slide-content {
    padding: 15px;
  }

  .slide-content h3 {
    font-size: 18px;
  }

  .slide-content p {
    font-size: 13px;
  }
}
