


.hero_main_container{
    display: flex;
    justify-content: space-between;
    justify-items: center;
    align-items: center;
    
}


/* Stats Section Styles */
.stats-section {
    background: linear-gradient(135deg, #d8e0e8, #e9ecef); /* Light gradient background */
    padding: 60px 0;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.stat-number {
    font-size: 2.5rem;
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

.stat-text {
    font-size: 1.1rem;
    color: #555;
    margin-top: 10px;
    transition: color 0.3s ease-in-out;
}

.stat-number:hover {
    transform: scale(1.1); /* Slight zoom effect */
    color: #ff66c4; /* Highlight color on hover */
}

.stat-text:hover {
    color: #091a32; /* Darker text color on hover */
}

/* Move carousel arrows outside the cards */
.carousel-control-prev,
.carousel-control-next {
    width: 5%; /* Adjust width to position arrows outside */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #ff66c4; /* Set your desired color */
    border-radius: 50%; /* Optional: Make it circular */
    width: 40px;
    height: 40px;
}

.carousel-control-prev {
    left: -50px; /* Move the left arrow outside */
}

.carousel-control-next {
    right: -50px; /* Move the right arrow outside */
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background-color: #128C7E; /* Change color on hover */
}



/* Call to Action Section */
.cta-section {
  background-color: #e3e9ef !important; /* Updated background color */
  border-radius: 10px;
  padding: 60px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.cta-section h2 {
  font-size: 2.5rem;
  color: #091a32;
}

.cta-section p.lead {
  font-size: 1.2rem;
  color: #6c757d; /* Muted text color */
}

.cta-section .btn-primary {
  background-color: #091a32; /* Primary button color */
  border: none;
  transition: all 0.3s ease-in-out;
}

.cta-section .btn-primary:hover {
  background-color: #091a32; /* Darker shade on hover */
}

.cta-section .btn-outline-secondary {
  border-color: #6c757d;
  color: #6c757d;
  transition: all 0.3s ease-in-out;
}

.cta-section .btn-outline-secondary:hover {
  background-color: #6c757d;
  color: #fff;
}

.cta-section a.text-muted {
  font-size: 0.9rem;
  text-decoration: none;
}

.cta-section a.text-muted:hover {
  text-decoration: underline;
}

/* Call to Action Section Success Text */
.cta-section .text-success {
  color: #ff66c4 !important; /* Apply the desired color */
}

.cta-section .text-success i {
  color: #ff66c4 !important; /* Apply the desired color to the icon */
}




/* Animation */
@keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

/* Testimonial Card Styling */
/* What Our Customers Are Saying Section */
.customer-testimonials {
  background-color: #f9f7fc; /* Light background */
  padding: 100px 20px !important;
  border-radius: 10px;
}

.customer-testimonials img {
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.customer-testimonials h5 {
  font-size: 1.2rem;
  color: #ff66c4 !important; /* Highlighted text */
  margin-bottom: 10px;
}

.customer-testimonials h2 {
  font-size: 2.5rem;
  color: #091a32;
  margin-bottom: 20px;
}


#catagoey_filter > button{
  color: #091a32 !important;
  border: 1px solid #091a32;
}

#catagoey_filter > button:hover{
  background-color: #091a32 !important;
  color: white !important;
  border: 1px solid #091a32;
}

.customer-testimonials p.lead {
  font-size: 1.2rem;
  color: #6c757d; /* Muted text */
  margin-bottom: 20px;
}

.customer-testimonials .btn-primary {
  background-color: #091a32; /* Button color */
  border: none;
  transition: all 0.3s ease-in-out;
}

.customer-testimonials .btn-primary:hover {
  background-color: #091a32; /* Darker shade on hover */
}

@media (min-width: 992px) {
  .customer-testimonials .col-lg-6 {
    padding-left: 40px; /* Add gap on the left */
    padding-right: 40px; /* Add gap on the right */
  }
}
/* ===== MODERN BLOG CARD STYLES ===== */
.blog-card {
  perspective: 1000px;
}

.blog-card .card {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  background: linear-gradient(135deg, #ffffff 0%, #f9f9ff 100%);
  transform-style: preserve-3d;
}

.blog-card .card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(108, 99, 255, 0.2);
}

/* Card Image with Gradient Overlay */
.blog-card .card-img-container {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-card .card-img-top {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-card .card:hover .card-img-top {
  transform: scale(1.1);
}

.blog-card .img-gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  z-index: 1;
}

/* ===== CATEGORY FILTER BUTTONS ===== */
#category_filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 2rem;
}

.filter-btn {
  position: relative;
  padding: 10px 24px;
  border: 2px solid transparent;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: white;
  color: #6c63ff;
  box-shadow: 0 4px 15px rgba(108, 99, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  overflow: hidden;
  z-index: 1;
}

.filter-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, #6c63ff 0%, #5145cd 100%);
  z-index: -1;
  transition: width 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.filter-btn:hover {
  color: white;
  border-color: #6c63ff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(108, 99, 255, 0.3);
}

.filter-btn:hover::before {
  width: 100%;
}

.filter-btn[data-filter="all"] {
  background: linear-gradient(135deg, #6c63ff 0%, #5145cd 100%);
  color: white;
}

/* ===== CARD CONTENT STYLING ===== */
.card-body {
  padding: 1.5rem;
  position: relative;
  z-index: 2;
}

/* Dynamic Tags - Rainbow Effect */
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1rem;
}

.card-tags .badge {
  font-size: 0.7rem;
  padding: 6px 12px;
  border-radius: 50px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
}

.card-tags .badge::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right, 
    rgba(255,255,255,0.3) 0%, 
    rgba(255,255,255,0) 60%
  );
  transform: rotate(30deg);
  transition: all 0.3s ease;
}

.card-tags .badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.card-tags .badge:hover::after {
  transform: rotate(30deg) translate(10px, 10px);
}

/* Title with Gradient Text Effect */
.card-title {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, #091a32 0%, #2d3748 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: all 0.4s ease;
}

.blog-card:hover .card-title {
  background: linear-gradient(135deg, #d14a8c 0%, #6c63ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

/* Read More Link with Animated Arrow */
.read-more-link {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  color: #091a32;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.read-more-link span {
  display: inline-block;
  transition: transform 0.4s ease;
}

.read-more-link:hover {
  color: #6c63ff;
}

.read-more-link:hover span {
  transform: translateX(5px);
}

/* ===== MODERN PAGINATION ===== */
.pagination {
  margin-top: 4rem;
  display: flex;
  gap: 8px;
}

.page-item {
  transition: all 0.3s ease;
}

.page-item:not(.active):not(.disabled):hover {
  transform: translateY(-3px);
}

.page-link {
  border: none;
  border-radius: 12px !important;
  min-width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #6c757d;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.page-item.active .page-link {
  background: linear-gradient(135deg, #6c63ff 0%, #d14a8c 100%);
  color: white;
  box-shadow: 0 8px 25px rgba(108, 99, 255, 0.3);
}

.page-item:not(.active):not(.disabled) .page-link:hover {
  background: #f8f9fa;
  color: #6c63ff;
  box-shadow: 0 8px 15px rgba(108, 99, 255, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .filter-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
  
  .blog-card .card-img-container {
    height: 180px;
  }
  
  .card-title {
    font-size: 1.1rem;
  }
  
  .page-link {
    min-width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }
}




