* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #0f1419 0%, #1a2332 100%);
  color: white;
  overflow-x: hidden;
}

.branding-section {
  min-height: 100vh;
  padding: 4rem 2rem;
  position: relative;
  background: linear-gradient(135deg, #0a1628 0%, #1e3a8a 50%, #1e40af 100%);
}

/* Animated Background Elements */
.bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.floating-element {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.floating-element:nth-child(3) {
  width: 60px;
  height: 60px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(90deg);
  }
  50% {
    transform: translateY(-40px) rotate(180deg);
  }
  75% {
    transform: translateY(-20px) rotate(270deg);
  }
}

/* Header Section */
.header-section {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInUp 1s ease-out;
}

.main-title {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  text-shadow: 0 0 30px rgba(96, 165, 250, 0.3);
}

.subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Main Content Grid */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.image-section {
  position: relative;
  animation: slideInLeft 1s ease-out 0.3s both;
}

.main-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s ease;
}

.main-image:hover {
  transform: scale(1.05) rotateY(5deg);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 58, 138, 0.8) 0%,
    rgba(30, 64, 175, 0.6) 100%
  );
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-section:hover .image-overlay {
  opacity: 1;
}

.services-section {
  animation: slideInRight 1s ease-out 0.5s both;
}

.services-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #fff;
  position: relative;
}

.services-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  border-radius: 2px;
}

/* Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::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 ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
  border-color: rgba(59, 130, 246, 0.5);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
  transform: rotateX(360deg);
}

.service-icon:hover {
  transform: rotateY(180deg);
}

.service-icon svg {
  width: 30px;
  height: 30px;
  color: white;
}

.service-name {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #fff;
}

.service-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Statistics Section */
.stats-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  animation: fadeInUp 1s ease-out 0.7s both;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #60a5fa;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  font-weight: 500;
}

/* CTA Section */
.cta-section {
  text-align: center;
  margin-top: 4rem;
  animation: fadeInUp 1s ease-out 0.9s both;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.cta-button svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.cta-button:hover svg {
  transform: translateX(5px);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .main-title {
    font-size: 2.8rem;
  }

  .content-grid {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .branding-section {
    padding: 2rem 1rem;
  }

  .main-title {
    font-size: 2.2rem;
  }

  .subtitle {
    font-size: 1.1rem;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .stats-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 1.8rem;
  }

  .services-title {
    font-size: 2rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .stats-section {
    grid-template-columns: 1fr;
  }
}

/* /////////////////////////////////////////////////////////////////////////////////////////////// */
/* /////////////////////////////////////////////////////////////////////////////////////////////// */
/* /////////////////////////////////////////////////////////////////////////////////////////////// */
/* /////////////////////////////////////////////////////////////////////////////////////////////// */
/* /////////////////////////////////////////////////////////////////////////////////////////////// */
.header-section {
  background: linear-gradient(135deg, #1a2c5b, #0f1937);
  color: white;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.header-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: rotate 25s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.breadcrumb {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 0.9rem;
  opacity: 0.8;
  z-index: 2;
  background: transparent;
}

.breadcrumb a {
  color: transparent;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.header-title {
  color: white;
  font-size: 3.5rem;
  font-weight: 300;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  letter-spacing: 2px;
}

.header-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}
/* //////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* //////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* //////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* //////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/* Navbar Container */
.ldcb-revampweb-navbar-container {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  background-color: white;
  /* Dark Blue */
  color: #fff;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Logo Section */
.ldcb-revampweb-logo {
  display: flex;
  align-items: center;
}

.ldcb-revampweb-logo-box {
  background-color: #1a2c5b;
  /* Slightly lighter dark blue */
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 2em;
  font-weight: 700;
  margin-right: 15px;
  letter-spacing: 1px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
}

.ldcb-revampweb-logo-text h1 {
  margin: 0;
  font-size: 1.5em;
  font-weight: 600;
}

.ldcb-revampweb-logo-text img {
  width: 300px !important;
  height: 95px;
}

.ldcb-revampweb-logo-text p {
  margin: 0;
  font-size: 0.9em;
  color: #bbb;
}

.ldcb-revampweb-logo-text small {
  display: block;
  font-size: 0.7em;
  color: #999;
}

/* Main Navigation */
.ldcb-revampweb-main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.ldcb-revampweb-main-nav ul li {
  position: relative;
  margin: 0 15px;
}

.ldcb-revampweb-main-nav ul li a {
  color: #0f1e3d;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 0;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  position: relative;
  display: block;
}

.ldcb-revampweb-main-nav ul li a:hover,
.ldcb-revampweb-main-nav ul li a.active {
  color: #0f1e3d;
  /* Lighter blue for hover/active */
}

.ldcb-revampweb-main-nav ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  background-color: #0f1e3d;
  /* Lighter blue underline */
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.ldcb-revampweb-main-nav ul li a:hover::after,
.ldcb-revampweb-main-nav ul li a.active::after {
  width: 100%;
}

/* Dropdown Menu */
.ldcb-revampweb-dropdown-content {
  display: none;
  position: absolute;
  background-color: #1a2c5b;
  /* Slightly lighter dark blue for dropdown */
  min-width: 160px;

  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  z-index: 1;
  border-radius: 5px;
  overflow: hidden;
  left: 0;
  top: 100%;
  /* Position below the parent link */
  padding: 10px 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.ldcb-revampweb-dropdown:hover .ldcb-revampweb-dropdown-content {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ldcb-revampweb-dropdown-content a {
  color: #fff !important;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
  /* margin-left: 40px; */
  padding-left: 20px;
}

.ldcb-revampweb-dropdown-content a:hover {
  background-color: #2b3e6b;
  /* Even lighter dark blue on hover */
  color: #7abaff !important;
}

.ldcb-revampweb-dropdown-content a::after {
  display: none;
  /* Remove underline for dropdown items */
}

/* Contact Info */
.ldcb-revampweb-contact-info a {
  color: #0f1e3d;
  /* Lighter blue for phone number */
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95em;
  padding: 8px 15px;
  border: 2px solid #7abaff;
  border-radius: 50px;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.ldcb-revampweb-contact-info a:hover {
  background-color: #7abaff;
  color: #0f1e3d;
}

.ldcb-revampweb-contact-info i {
  margin-right: 8px;
}

/* Hero Section / Slider */
.ldcb-revampweb-hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: -1px;
  /* To prevent gap with navbar */
  background: linear-gradient(to right, #0f1e3d, #1a2c5b);
  /* Dark blue gradient */
  padding: 80px 0;
  /* Add some vertical padding */
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.ldcb-revampweb-slider-container {
  width: 90%;
  /* m-width: 1700px; */
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  background-color: #0d1a33;
  /* Even darker blue for slider background */
}

.ldcb-revampweb-slider-inner {
  display: flex;
  transition: transform 0.8s ease-in-out;
  width: 100%;
  /* Each slide takes full width */
}

.ldcb-revampweb-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px;
  box-sizing: border-box;
  color: #fff;
  text-align: left;
  gap: 30px;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  position: absolute;
  /* Position slides absolutely for layering */
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.ldcb-revampweb-slide.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
  /* Make active slide relative to occupy space */
}

.ldcb-revampweb-slide-content {
  flex: 1;
  max-width: 50%;
  padding-right: 30px;
}

.ldcb-revampweb-slide-content h2 {
  font-size: 3.5em;
  margin-bottom: 15px;
  color: #7abaff;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  font-family: "Montserrat", sans-serif;
}

.ldcb-revampweb-slide-content p {
  font-size: 1.2em;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 30px;
  font-family: "Montserrat", sans-serif;
}

.ldcb-revampweb-learn-more-btn {
  background-color: #7abaff;
  color: #0f1e3d;
  border: none;
  padding: 15px 30px;
  font-size: 1.1em;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.ldcb-revampweb-learn-more-btn:hover {
  background-color: #fff;
  transform: translateY(-3px);
}

.ldcb-revampweb-slide-image {
  flex: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: relative;
}

.ldcb-revampweb-branding-slide .ldcb-revampweb-slide-image {
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
}

.ldcb-revampweb-brand-items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  width: 100%;
  /* max-width: 00px; */
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
  height: 400px;
}

.ldcb-revampweb-brand-items img {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  height: 400px;
}

.ldcb-revampweb-document-previews {
  display: flex;
  gap: 20px;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translateY(20%);
  /* Lift slightly */
  z-index: 10;
}

.ldcb-revampweb-doc-preview {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: rotate(5deg);
}

.ldcb-revampweb-doc-preview:nth-child(2) {
  transform: rotate(-5deg);
  margin-top: 50px;
}

.ldcb-revampweb-slide-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Slider Navigation Arrows */
.ldcb-revampweb-prev,
.ldcb-revampweb-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  padding: 16px;
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 20;
}

.ldcb-revampweb-prev {
  left: 20px;
  border-radius: 3px 0 0 3px;
}

.ldcb-revampweb-next {
  right: 20px;
  border-radius: 3px 0 0 3px;
}

.ldcb-revampweb-prev:hover,
.ldcb-revampweb-next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Dots for slider navigation */
.ldcb-revampweb-dots-container {
  text-align: center;
  position: absolute;
  bottom: 20px;
  width: 100%;
  z-index: 20;
}

.ldcb-revampweb-dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 7px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.ldcb-revampweb-dot.active,
.ldcb-revampweb-dot:hover {
  background-color: #7abaff;
}

/* Welcome Section */
.ldcb-revampweb-welcome-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #fff;
  max-width: 1200px;
  margin: 40px auto;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  color: #333;
}

.ldcb-revampweb-welcome-section h2 {
  font-size: 2.8em;
  color: #0f1e3d;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.ldcb-revampweb-welcome-section h2::after {
  content: "";
  position: absolute;
  width: 80%;
  height: 4px;
  background-color: #7abaff;
  bottom: -10px;
  left: 10%;
  border-radius: 2px;
}

.ldcb-revampweb-welcome-section p {
  font-size: 1.1em;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-section:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 2rem 0 0;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .footer-section .contact-form {
    padding: 1.5rem;
  }

  .form-intro h3 {
    font-size: 1.3rem;
  }

  .contact-item {
    flex-direction: column;
    gap: 0.5rem;
  }

  .contact-icon {
    align-self: flex-start;
  }

  .social-links {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem 1rem;
  }

  .footer-bottom-right {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .footer-section .contact-form {
    padding: 1rem;
  }

  .form-intro h3 {
    font-size: 1.2rem;
  }

  .form-intro p {
    font-size: 0.9rem;
  }

  .footer-contact-form,
  #message {
    padding: 0.75rem;
    font-size: 0.9rem;
  }

  .submit-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 1.1rem;
  }

  .contact-text {
    font-size: 0.9rem;
  }

  .social-link {
    width: 36px;
    height: 36px;
  }

  .social-link svg {
    width: 18px;
    height: 18px;
  }

  .footer-bottom-right {
    gap: 0.75rem;
  }

  .footer-bottom-right a {
    font-size: 0.85rem;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .ldcb-revampweb-navbar-container {
    padding: 10px 20px;
  }

  .ldcb-revampweb-main-nav ul {
    margin-top: 10px;
  }

  .ldcb-revampweb-main-nav ul li {
    margin: 0 10px;
  }

  .ldcb-revampweb-slide {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .ldcb-revampweb-slide-content {
    max-width: 100%;
    padding-right: 0;
    margin-bottom: 30px;
  }

  .ldcb-revampweb-slide-content h2 {
    font-size: 2.5em;
  }

  .ldcb-revampweb-slide-image {
    flex-direction: column;
  }

  .ldcb-revampweb-document-previews {
    position: relative;
    transform: translateY(0);
    margin-top: 20px;
    flex-direction: row;
    width: auto;
    justify-content: center;
  }

  .ldcb-revampweb-doc-preview:nth-child(2) {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .ldcb-revampweb-navbar-container {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 10px;
  }

  .ldcb-revampweb-logo {
    margin-bottom: 15px;
  }

  .ldcb-revampweb-main-nav ul {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .ldcb-revampweb-main-nav ul li {
    margin: 5px 10px;
  }

  .ldcb-revampweb-contact-info {
    margin-top: 15px;
    width: 100%;
    text-align: center;
  }

  .ldcb-revampweb-contact-info a {
    display: block;
    width: fit-content;
    margin: 0 auto;
  }

  .ldcb-revampweb-prev,
  .ldcb-revampweb-next {
    font-size: 18px;
    padding: 10px;
  }

  .ldcb-revampweb-welcome-section {
    margin: 20px auto;
    padding: 40px 15px;
  }

  .ldcb-revampweb-welcome-section h2 {
    font-size: 2em;
  }
}

@media (max-width: 480px) {
  .ldcb-revampweb-logo-text h1 {
    font-size: 1.2em;
  }

  .ldcb-revampweb-logo-text p {
    font-size: 0.8em;
  }

  .ldcb-revampweb-main-nav ul li a {
    font-size: 0.9em;
    padding: 8px 0;
  }

  .ldcb-revampweb-dropdown-content {
    min-width: 120px;
  }

  .ldcb-revampweb-slide-content h2 {
    font-size: 2em;
  }

  .ldcb-revampweb-slide-content p {
    font-size: 1em;
  }

  .ldcb-revampweb-learn-more-btn {
    padding: 12px 20px;
    font-size: 1em;
  }

  .ldcb-revampweb-brand-items {
    flex-direction: column;
    align-items: center;
  }

  .ldcb-revampweb-document-previews {
    flex-direction: column;
    align-items: center;
  }
}
