*{
  padding: 0%;
  margin: 0%;
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

/* Hero section styling with background image */
.hero-section {
  background: url('./images/CT_B&DR_hero.jpeg') no-repeat center center; /* Add your image path here */
  background-size: cover;
  height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; /* Stack elements vertically */
  text-align: center; /* Center text horizontally */
  color: #5bb949;
  position: relative;
  /* margin-top: 90px; */
  /* border: 2px solid blue; */
}

/* Overlay to darken the background for better readability */
.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
} 

/* Hero text styling */
.hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Text shadow for contrast */
/* text-align: center; */
z-index: 3;
padding: 5px;

}
.hero-content p{
  z-index: 4;
  font-size: 20px;
  /* color: #007bff; */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Text shadow for contrast */

}
.hero-content{
  position: relative;
  z-index: 4;
  color: #f8f9fa;
  animation: fadeInaz 1s ease-in-out forwards, scaleInaz 1s ease-in-out forwards;
}
@keyframes fadeInaz {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleInaz {
  from {
    transform: scale(0.8); /* Start smaller */
  }
  to {
    transform: scale(1); /* End at normal size */
  }
}
@media screen and (min-width: 340px) and (max-width: 480px) {

  .hero-content h1{
    font-size: 29px;
    padding: 10px;
  }
  .hero-content p{
    font-size: 16px;
  }
}

.backup-section {
  padding: 20px 0;
  background-color: #fff;
  margin: 0;
}

.backup-section .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.backup-section h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.backup-section p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
}

.backup-section .backup-list {
  list-style-type: none;
  padding-left: 0;
}

.backup-section .backup-list li {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.backup-section .backup-list li i {
  color: #5bb949; /* Icon color */
  margin-right: 10px;
  font-size: 2rem;
}

.backup-section img {
  max-width: 100%;
  height: 500px;
  border-radius: 8px;
}
.dotted-underline {
  border: none; /* Remove the default border */
  border-top: 2px dotted black; /* Set the dotted border */
  margin: 0 ; /* Space around the underline */
  margin-left: 100px;
  margin-right: 100px;
}

.overview-section {
  padding: 20px 0; /* Ample padding for a spacious feel */
  background-color: #ffffff; /* Clean white background */
  border-top: 4px solid #0056b3; /* Strong corporate accent color */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  margin: 0;
  /* border: 2px solid green; */
  position: relative;
}

.overview-content {
  max-width: 900px;
  margin: auto;
  text-align: left; /* Left-aligned text for a formal appearance */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Professional font */
}

.text-box h3 {
  font-size: 24px; /* Larger font for heading */
  margin-bottom: 15px; /* Spacing below heading */
  color: #333333; /* Darker text for contrast */
  text-align: center;
}

.text-box p {
  font-size: 16px; /* Readable font size */
  line-height: 1.6; /* Improved line height */
  color: #555555; /* Soft gray for paragraph text */
}

.infographic {
  display: flex;
  justify-content: space-between; /* Space between items */
  margin-top: 10px; /* Increased margin for separation */
}

.infographic-item {
  flex: 1;
  padding: 10px;
  background: #f8f9fa; /* Light background for item */
  border: 1px solid #e0e0e0; /* Subtle border */
  border-radius: 8px; /* Rounded corners for a modern touch */
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
  transition: transform 0.2s; /* Smooth hover effect */
  margin: 20px;
}

.infographic-item:hover {
  transform: translateY(-2px); /* Subtle lift on hover */
}

.infographic-item h4 {
  font-size: 20px; /* Heading size */
  color: #0056b3; /* Corporate blue color */
  margin-bottom: 10px; /* Space below headings */
  margin-left: 20px;

}

.infographic-item p {
  font-size: 14px; /* Smaller font for descriptions */
  color: #666666; /* Neutral color for descriptions */
  
}

.infographic-icons {
  display: flex;
  justify-content: flex-end; /* Align icons to the right */
  margin-top: 30px; /* Space between text and icons */
}

.infographic-icon {
  font-size: 30px; /* Icon size */
  color: #0056b3; /* Corporate blue color */
  margin-left: 21.5rem; /* Space between icons */
  /* margin */
  position: absolute;
  /* top: 10%; */
  bottom: 25%;
}

.chocolate-icon {
  color: #5bb949; /* Chocolate color */
}

.backup-disaster-recovery {
  padding: 20px 0;
  background-color: #ffffff;
  /* border: 2px solid; */
}

.backup-disaster-recovery h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333; /* Darker heading color */
}

.backup-disaster-recovery p {
  font-size: 1rem;
  color: #555; /* Softer paragraph color */
  margin-bottom: 30px;
}

.benefits-list {
  list-style: none;
  padding-left: 0;
}

.benefits-list li {
  font-size: 1.2rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.benefits-list li i {
  color: #0d6efd;
  margin-right: 10px;
  font-size: 1.5rem;
}

.btn-primary {
  background-color: #0d6efd;
  border-color: #0d6efd;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 5px; /* Rounded corners for button */
  transition: background-color 0.3s, border-color 0.3s; /* Smooth transitions */
}

.btn-primary:hover {
  background-color: #0b5ed7;
  border-color: #0a58ca;
}

.img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 10px; /* Optional: Rounded corners for the image */
}

/* Animation Styles */
.animate-fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.animate-fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.animate-fade-in-left.active,
.animate-fade-in-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Add keyframes for loading effect (Optional) */
@keyframes fadeIn {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}

.stat{
  background-color: azure;
}
     
.carousel-item {
  padding: 0 100px; /* Add 100px padding on left and right */
}

.stat p{
  font-size: 20px;
  font-weight: bold;
}
.carousel-item img {
  height: 350px; /* Fixed height for carousel images */
  object-fit: cover; /* Ensure images cover the area */
  border-radius: 10px; /* Soft corners for carousel images */
  width: calc(100% - 200px); /* Adjust width to accommodate padding */
  margin: 0 auto; /* Center the image within the item */
}

.carousel-caption {
  display: none; /* Hide the default caption */
}

.bar-chart {
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 80%; /* Limit width for better alignment */
  margin: 10px auto; /* Centering the bar chart */
}

.chart {
  display: flex;
  align-items: flex-end; /* Align bars to the bottom */
  margin: 20px 0;
  /* border: 2px solid ; */
}

.carousel-item .bar {
  flex: 1;
  margin: 0 10px;
  background: #1078bf; /* Primary color */
  color: #fff;
  text-align: center;
  padding: 15px 0;
  border-radius: 5px;
  transition: height 0.5s ease; /* Smooth height transition */
}

.bar.before {
  height: 60%; /* Example height for before */
}

.bar.after {
  height: 20%; /* Example height for after */
  background: #5bb949; /* Success color for after */
}

.content {
  text-align: center; /* Center the text */
  margin-top: 10px; /* Spacing above content */
  color: #333; /* Darker text color */
}

@media (max-width: 768px) {
  .bar-chart {
      width: 90%; /* Wider bar chart on mobile */
  }

  .infographic {
      flex-direction: column; /* Stack items vertically on mobile */
  }

  .infographic-item {
      margin-bottom: 20px; /* Space between items */
  }
  .infographic-icon{
    position: relative;
    /* left: 0px; */
    right: 100px;
    bottom: 40px;
    color: #5bb949;
    /* top: 0; */
    /* margin-right: 100px; */
  }
}
.services-container {
  max-width: 1200px; /* Adjusted max width */
  margin: auto;
  padding: 0 15px;
}

h2.display-5 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.card-body {
  padding: 20px;
}

.chocolate-icon {
  color: #5bb949;
}

.other-services h3 a{
  text-decoration: none;
}
.other-services i{
  color: #5bb949;
}
.other-services{
  /* border: 2px solid blue; */
 /* padding-top: 10px; */
 /* margin: 0; */
 /* padding: 0; */
 /* height: fit-content; */
background-color: #e5f3ff;
}
.other-services .container{
  /* border: 2px solid ; */
  margin: 0 auto;
}
.other-services  .service-item{
  background-color: #f8f9fa;
border-radius: 10px;
}

/* Responsive Columns */
@media (max-width: 768px) {
  .col-md-6 {
      flex: 0 0 100%;
      max-width: 100%;
  }
}

/* Section Heading */
.how-we-help h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 40px;
}

/* Card Styles with Gradient Background */
.custom-card {
  border: none; /* Remove default card border */
  border-radius: 12px; /* Rounded corners */
  background: linear-gradient(135deg, #f0f9ff, #cbebff); /* Gradient background for cards */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effect */
  padding: 30px;
}

.custom-card:hover {
  transform: translateY(-10px); /* Lift on hover */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); /* Shadow on hover */
}

/* Icon Styling */
.chocolate-icon {
  color: #5bb949; /* Chocolate color for icons */
}

.card-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
}

.card-text {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .custom-card {
      margin-bottom: 20px;
  }
}

/* Overall Section Styling */
.backup-solution {
  padding: 50px 20px;
  background-color: #f9f9f9;
  font-family: 'Arial', sans-serif;
  color: #333333;
  text-align: center;
}

/* Heading Styles */
.backup-solution__heading h1 {
  font-size: 34px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.backup-solution__heading h2 {
  font-size: 20px;
  font-weight: 400;
  color: #666;
  margin-bottom: 30px;
}

/* Intro Paragraph */
.backup-solution__intro p {
  font-size: 16px;
  color: #555;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

/* Card Container */
.backup-solution__cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

/* Individual Card Styling */
.backup-solution__card {
  background-color: #f3f7fc; /* Light blue background for a subtle pop of color */
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
}

.backup-solution__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  color: #007bff;
}

/* Card Headings */
.backup-solution__card-heading {
  font-size: 18px;
  font-weight: 600;
  color: #0056b3; /* A strong blue color for emphasis */
  margin-bottom: 10px;
}

/* Card Content Text */
.backup-solution__card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* Note Section */
.backup-solution__note p {
  font-size: 14px;
  color: #333;
  font-style: italic;
  margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .backup-solution__heading h1 {
    font-size: 28px;
  }

  .backup-solution__heading h2 {
    font-size: 18px;
  }

  .backup-solution__intro p {
    font-size: 15px;
  }

  .backup-solution__card h3 {
    font-size: 16px;
  }

  .backup-solution__card p {
    font-size: 14px;
  }
}

/*  */
.ct-contactformBr {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: #f8f9fa;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin: 20px auto;
  max-width: 100%;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.ct-contactBr {
  text-align: center;
}

.ct-contactBr h1 {
  font-size: 2.5em;
  color: #084c7f;
  margin-bottom: 20px;
  text-transform: uppercase;
  /* letter-spacing: 2px; */
}

.ct-contactBr h3 {
  font-size: 1.5em;
  color: #666;
  margin-bottom: 20px;
  font-style: italic;
}

.ct-contactBr p {
  font-size: 1em;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.ct-contactBr .transBox {
  font-weight: bold;
  color: #2c3e50;
  /* background-color: #2c3e50ae; */
  padding: 2px 3px;
  border-radius: 3px;
  border: 1px solid #33333385;
  transition: background-color 0.3s ease, color 0.3s ease;
  /* text-decoration: u; */
}

.ct-contactBr .transBox:hover {
  background-color: #084b7fea;
  font-weight: 500;
  color: #fff;
  border: none;
}

@media (max-width: 768px) {
  .ct-contactformBr {
      padding: 30px 10px;
  }

  .ct-contactBr h1 {
      font-size: 2em;
  }

  .ct-contactBr h3 {
      font-size: 1.2em;
  }

  .ct-contactBr p {
      font-size: 0.9em;
  }
}

.ct-contactformBr.in-viewb {
  opacity: 1;
  transform: translateY(0);
}