/* Custom CSS for <?php echo $data['productName'] ?? "HELP";?> */

#navbarNav .nav-link{
  font-size:14px;
  color: #000;
  font-weight: 400;
  padding:10px 15px;
}

#navbarNav .dropdown-menu .nav-link{
  font-size:14px;
  color: #000;
}

#navbarNav .nav-link:focus, .nav-link:hover{
  color:#3b82f6;
}
#navbarNav .dropdown-item{
  padding: 8px 18px;
}
#navbarNav .dropdown-menu{
 font-size:14px; 
 color: #000;
 --bs-dropdown-min-width:14rem;
  font-weight: 400;
}
#navbarNav .dropdown-submenu>.dropdown-toggle::after{
  margin-right:0px;
}
#navbarNav .dropdown-item:focus, #navbarNav .dropdown-item:hover{
  background-color: #f1f5f9;
}
.ptb-80{
  padding:80px 0px;
}

body {
    font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Logo */
.logo {
  height: 40px;
  width: auto;
}

/* Hero Section */
.hero-section {
  background: #f2f6f9;
}

.hero-title {
  font-size: 58px;
  font-weight: 700;
  color: #475569;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #6c757d;
  margin-bottom: 2rem;
}




.hero-buttons .btn-outline-dark:hover {
  transform: translateY(-2px);
}

/* Features Section */
.features-section {
  padding: 80px 0;
}

.feature-nav-btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: all 0.3s ease;
}

.feature-nav-btn:hover {
  transform: scale(1.1);
}

.feature-nav-btn.active {
  background-color: #0d6efd;
  color: white;
}

/* Templates Section */
.templates-section {
  padding: 80px 0;
}

.section-title {
          font-size: 1.875rem;
        line-height: 2.25rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.template-card {
  border: 1px solid #e9ecef;
  border-radius: 12px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.template-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.template-icon img {
  width: 48px;
  height: 48px;
  object-fit: cover;
}

.template-card .badge {
  font-size: 0.75rem;
  padding: 0.5rem 1rem;
}

/* Carousel Section */
.carousel-section {
  padding: 80px 0;
}

.service-card {
  border: none;
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-icon {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.service-icon i {
  font-size: 1.5rem;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
}

.cta-card {
  padding: 4rem 2rem;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.cta-bg-circle {
  position: absolute;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-radius: 50%;
  opacity: 0.6;
}

.cta-bg-circle-1 {
  top: -100px;
  left: -100px;
}

.cta-bg-circle-2 {
  bottom: -100px;
  right: -100px;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #212529;
}

.cta-subtitle {
  font-size: 1.125rem;
  color: #6c757d;
}

.cta-image {
  max-width: 200px;
}

/* Footer */

.footer-title {
  font-weight: 600;
  color: #000;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  color: #6c757d;
  font-size:14px;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #0d6efd;
}

.footer-description {
  color: #6c757d;
  font-size:15px;
  line-height: 1.6;
}

.footer-copyright {
  font-size: 0.875rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #f8f9fa;
  color: #6c757d;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: #0d6efd;
  color: white;
  transform: translateY(-2px);
}

/* Floating Buttons */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: white;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 3px solid white;
}

.floating-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.floating-btn img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .floating-buttons {
    bottom: 15px;
    left: 15px;
  }
  
  .floating-btn {
    width: 50px;
    height: 50px;
  }
  
  .floating-btn img {
    width: 24px;
    height: 24px;
  }
}

/* Custom animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.template-card,
.service-card {
  animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom button styles */
.btn {
     font-size: 13px;
    line-height: 1.25rem;
    font-weight: 500;
    padding:8px 15px;
    border-radius: .5rem;
}

.btn-primary {
  color: #fff;
background-color: #3b82f6;
}
.btn-primary:hover {
  color: #fff;
background-color: #2563eb;
}
.bg-gray-50{
  background-color: #f8fafc;
}
.btn-2 {

  color: #000;
  background-color: #fff;
}

.btn-2:hover {
  background-color: #e2e8f0;
  color: #000;

}
.tab-1 .nav-tabs .nav-item.show .nav-link, .tab-1 .nav-tabs .nav-link.active{
background-color: #3b82f6;
    border: 1px solid #3b82f6;
    color: #fff !important;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    padding: 6px 10px;
    border-bottom: none;
}
.tab-1 .nav-tabs .nav-link{
  background-color: transparent;
  background-color: transparent;
    border: 1px solid transparent;
    color: #ccc !important;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    padding: 6px 10px;
    margin-bottom: 15px;
}
.tab-1 .font-1{
  font-weight: 800;
   color: #3b82f6;
}
.tab-1 .nav-tabs{
  --bs-nav-tabs-border-color:transparent;
}
/* Pricing Page Styles */
.pricing-hero-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0 60px;
}

.billing-toggle .btn-group {
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
}

.billing-toggle .btn {
  padding: 12px 24px;
  font-weight: 600;
  border: none;
}

.billing-toggle .btn-check:checked + .btn {
  background-color: #0d6efd;
  color: white;
}

.pricing-plans-section {
  padding: 60px 0;
}

.pricing-card {
  border: 2px solid #e9ecef;
  border-radius: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-color: #0d6efd;
}

.pricing-card-popular {
  border-color: #ffc107;
  transform: scale(1.05);
}

.pricing-card-popular:hover {
  transform: scale(1.05) translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.popular-badge .badge {
  padding: 8px 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.plan-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.plan-icon i {
  font-size: 2rem;
}

.plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #212529;
}

.plan-price {
  margin-bottom: 1.5rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: #0d6efd;
}

.price-period {
  font-size: 1rem;
  color: #6c757d;
  font-weight: 500;
}

.plan-description {
  color: #6c757d;
  font-size: 1rem;
  line-height: 1.6;
}

.plan-features {
  text-align: left;
}

.plan-features li {
  padding: 8px 0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}

.features-comparison-section {
  padding: 80px 0;
}

.comparison-table {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.comparison-table th {
  font-weight: 600;
  padding: 1.5rem 1rem;
  border: none;
}

.comparison-table td {
  padding: 1.25rem 1rem;
  vertical-align: middle;
  border-color: #e9ecef;
}

.comparison-table tbody tr:hover {
  background-color: #f8f9fa;
}

.faq-section {
  padding: 80px 0;
}

.accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.accordion-button {
  background: white;
  border: none;
  padding: 1.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  color: #212529;
}

.accordion-button:not(.collapsed) {
  background: #fff;
  color: #0d6efd;
  box-shadow: none;
  border-color: none;
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-body {
  padding: 1.5rem;
  background: white;
  color: #6c757d;
  line-height: 1.7;
}

/* Active navigation link */
.nav-link.active {
  color: #0d6efd !important;
  font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .pricing-card-popular {
    transform: none;
  }
  
  .pricing-card-popular:hover {
    transform: translateY(-10px);
  }
  
  .price-amount {
    font-size: 2.5rem;
  }
  
  .plan-icon {
    width: 60px;
    height: 60px;
  }
  
  .plan-icon i {
    font-size: 1.5rem;
  }
  
  .comparison-table {
    font-size: 0.875rem;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem 0.5rem;
  }
}

/* Animation for pricing cards */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pricing-card {
  animation: slideInUp 0.6s ease-out;
}

.pricing-card:nth-child(2) {
  animation-delay: 0.1s;
}

.pricing-card:nth-child(3) {
  animation-delay: 0.2s;
}

.pricing-card:nth-child(4) {
  animation-delay: 0.3s;
}

.pricing-card:nth-child(5) {
  animation-delay: 0.4s;
}

/* About Page Styles */
.about-hero-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0 60px;
}

.mission-section {
  padding: 80px 0;
}

.story-section {
  padding: 80px 0;
}

.story-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #6c757d;
}

.values-section {
  padding: 80px 0;
}

.value-card {
  border: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  height: 100%;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.value-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon i {
  font-size: 2rem;
}

.team-section {
  padding: 80px 0;
}

.team-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.team-avatar {
  width: 120px;
  height: 120px;
  overflow: hidden;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats-section {
  padding: 80px 0;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 0;
}

/* Auth Pages Styles */
.auth-body {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: 100vh;
}

.auth-section {
  padding: 60px 0;
}

.auth-card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.auth-title {
  font-size: 2rem;
  font-weight: 700;
  color: #212529;
}

.auth-form .form-control {
  padding: 12px 16px;
  border-radius: 8px;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
}

.auth-form .form-control:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.auth-features-section {
  padding: 60px 0;
}

.feature-item {
  padding: 2rem 1rem;
}

.feature-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i {
  font-size: 2rem;
}

/* Service Page Styles */
.service-hero-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
}

.service-icon-large {
  width: 120px;
  height: 120px;
  background: white;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-icon-large img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.service-title {
  font-size: 3rem;
  font-weight: 700;
  color: #212529;
}

.service-subtitle {
  font-size: 1.25rem;
  color: #6c757d;
  line-height: 1.7;
}

.service-buttons .btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.service-demo-video {
  position: relative;
}

.video-placeholder {
  height: 300px;
  border: 2px dashed #dee2e6;
}

.service-features-section {
  padding: 80px 0;
}

.feature-card {
  border: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.how-it-works-section {
  padding: 80px 0;
}

.step-card {
  padding: 2rem 1rem;
}

.step-number {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.demo-section {
  padding: 80px 0;
}

.demo-card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.demo-form .form-control,
.demo-form .form-select {
  padding: 12px 16px;
  border-radius: 8px;
  border: 2px solid #e9ecef;
}

.demo-results {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
}

.use-cases-section {
  padding: 80px 0;
}

.use-case-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}

.use-case-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.use-case-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.use-case-icon i {
  font-size: 1.5rem;
}

/* Responsive adjustments for new pages */
@media (max-width: 768px) {
  .service-title {
    font-size: 2.5rem;
  }
  
  .service-icon-large {
    width: 80px;
    height: 80px;
  }
  
  .service-icon-large img {
    width: 60px;
    height: 60px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .auth-title {
    font-size: 1.75rem;
  }
}

/* Animation for new elements */
.value-card,
.feature-card,
.use-case-card {
  animation: fadeInUp 0.6s ease-out;
}

.step-card {
  animation: fadeInUp 0.6s ease-out;
}

.step-card:nth-child(2) {
  animation-delay: 0.1s;
}

.step-card:nth-child(3) {
  animation-delay: 0.2s;
}

.step-card:nth-child(4) {
  animation-delay: 0.3s;
}
/* css Begin */
.text-sm {
    font-size: .875rem;
    line-height: 1.25rem;
}
.bg-gray-50{
  background-color:#f8fafc;
}
.owl-carousel{
    position: relative;
}

/* NAVIGATION */
.owl-carousel .owl-nav{
    position: relative;
    margin-top: 50px;
    text-align: center;
}

/* Arrow Buttons */
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next{
    background:#ccc !important;
    color:#fff !important;
    width:45px;
    height:45px;
    border-radius:50%;
    font-size:22px !important;
    margin:5px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}


.owl-carousel .owl-dots button.owl-dot.active{
    background:#ccc !important;
}
.font-semibold {
    font-weight: 600;
}
.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}
.pt-80{
  padding-top:80px;
}
.pb-30{
  padding-bottom:30px;
}
.service-card-2{
      padding: 1.5rem;
      border:1px solid #e2e8f0;
}
.rounded-md{
      border-radius: .5rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}
p{
  font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 400;
    color: #6c757d;
}
.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}
.font-normal {
    font-weight: 400;
}
.capitalize {
    text-transform: capitalize;
}
.social-link.facehook:hover{
  background-color: #2563eb;
  color:#fff;
}

.social-link.youtube:hover{
  background-color:#dc2626;
  color:#fff;
}

.social-link.twitter:hover{
  background-color:#000; /* X color */
  color:#fff;
}

.social-link.linkdin:hover{
  background-color:#1d4ed8;
  color:#fff;
}


 .pricing-section {
         background: #f5f7fb;
         }
         .pricing-card {
         background: #fff;
         border-radius: 16px;
         padding: 25px;
         box-shadow: 0 5px 20px rgba(0,0,0,0.05);
         transition: 0.3s;
         border: 1px solid #eee;
         position: relative;
         }
         .pricing-card:hover {
         transform: translateY(-6px);
         }
         .plan-badge {
         display: inline-block;
         padding: 4px 10px;
         font-size: 12px;
         border-radius: 20px;
         background: #eee;
         margin-bottom: 10px;
         }
         .price {
         font-size: 26px;
         font-weight: 700;
         }
         .old-price {
         text-decoration: line-through;
         color: #999;
         font-size: 14px;
         }
         .discount {
         color: red;
         font-size: 12px;
         }
         .feature-list li {
         font-size: 14px;
         margin-bottom: 8px;
         }
         .feature-list i {
         color: #0d6efd;
         }
         /* Highlight Card */
         .popular {
         border: 2px solid #ff7a00;
         }
         .popular-badge {
         position: absolute;
         top: -10px;
         right: 15px;
         background: #ff7a00;
         color: #fff;
         font-size: 11px;
         padding: 4px 10px;
         border-radius: 20px;
         }
         .mt-50{
          margin-top: 50px;
         }
         .bg-secondary-bagde{
          font-size: .875rem;
    line-height: 1.25rem;
    padding-top: .75rem;
    padding-bottom: .75rem;
padding-left: 1rem;
    padding-right: 1rem;
        border-radius: .5rem;
        color: #000;
        background-color: #f8f8f8;
        margin-bottom: 10px;
         }
/* css End */
 .login-container {
            min-height: 100vh;
        }
        /* Left Side Purple Background */
        .left-panel {
            background-color: #5d5fef; /* Image ka purple color */
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }
        .illustration-img {
            max-width: 80%;
            height: auto;
        }
        /* Right Side Form Styling */
        .right-panel {
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #ffffff;
        }
        .form-box {
            width: 100%;
            max-width: 400px;
            padding: 20px;
        }
        .google-btn {
            border: 1px solid #ddd;
            border-radius: 5px;
            padding: 10px;
            font-weight: 500;
            color: #444;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .divider {
            display: flex;
            align-items: center;
            text-align: center;
            margin: 20px 0;
            color: #ccc;
        }
        .divider::before, .divider::after {
            content: '';
            flex: 1;
            border-bottom: 1px solid #eee;
        }
        .divider:not(:empty)::before { margin-right: .5em; }
        .divider:not(:empty)::after { margin-left: .5em; }

        .form-control {
            padding: 12px;
            border-radius: 6px;
            background-color: #f8f9fa;
        }
        .btn-signin {
            background-color: #5d5fef;
            color: white;
            padding: 12px;
            font-weight: 600;
            border: none;
            width: 100%;
            border-radius: 6px;
        }
        .btn-signin:hover {
            background-color: #4a4cd8;
            color: white;
        }
        .forgot-link {
            font-size: 0.9rem;
            text-decoration: none;
            color: #5d5fef;
        }
        .signup-text {
            color: #777;
            font-size: 0.9rem;
        }
        /* Responsive Mobile View */
        @media (max-width: 991px) {
            .left-panel { display: none; } /* Mobile par image hide kar di hai */
        }
        .contact-card{
          border:1px solid #ccc;
          padding:2rem;
        }
        .contact-card {
    background: #fff;
    border-radius: 14px;
    padding: 25px 20px;
    text-align: center; /* ✅ Center text */
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
}

/* Image same size */
.contact-card img {
    width: 60px;      /* ✅ same width */
    height: 60px;     /* ✅ same height */
    object-fit: contain; /* image distort nahi hogi */
    margin-bottom: 15px;
}

/* Title */
.contact-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

/* Text */
.contact-card p {
    font-size: 14px;
    color: #6c757d;
}

/* Links */
.contact-card a {
    text-decoration: none;
    color: #0d6efd;
}
.fs-10{
  font-size:10px;
}
.certificate-card {
    border-radius: 10px;
    height: 100%;
}

.certificate-img-container {
    height: 180px; /* ✅ Fixed height */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
    border: 1px solid #eee;
    padding: 10px;
}

/* Image control */
.certificate-img-container img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain; /* ✅ No crop, proper fit */
}
.index-1 .template-card{
      background: #fff !important;
}
.index-1 .template-icon img{
  background-color: #fff;
}
.index-1 .hero-section{
  background-color: #080c12;
  background: #080c12;
}
.index-1 .hero-title{
  color: #fff;
}
/* .index-1 .bg-gray-50 {
    background: #fff;
} */

.index-1 .footer.footer.bg-white.py-5 {
    background: #000 !important;
}
.index-1 .footer-title{
color: #6c757d !important;
}

.index-1 .social-link{
border: 1px solid #6c757d !important;
}
.index-1 .card-body {
    background: #fff;
}

.index-1 .tab-1 .nav-tabs .nav-link{
  color: #000 !important;
}
.index-1 section.templates-section.ptb-80.bg-white{
background: #000 !important;
}

.index-1 section.templates-section.ptb-80.bg-white .section-title{
  color: #fff;
}
.index-1{
  font-family: "Inter", sans-serif;
}

.index-2 .template-card{
      background: #fff !important;
}
.index-2 .template-icon img{
  background-color: #fff;
}
.index-2 .hero-section{
  background-color: linear-gradient(135deg, #1e3c72, #2a5298);
  background: linear-gradient(135deg, #1e3c72, #2a5298);
}
.index-2 .hero-title{
  color: #fff;
}
/* .index-1 .bg-gray-50 {
    background: #fff;
} */

.index-2 .footer.footer.bg-white.py-5 {
    background: linear-gradient(135deg, #1e3c72, #2a5298) !important;
}
.index-2 .footer-title{
color: #6c757d !important;
}

.index-2 .social-link{
  background-color: #fff;
border: 1px solid #fff !important;
}
.index-2 .card-body {
    background: #fff;
}

.index-2 .tab-1 .nav-tabs .nav-link{
  color:  #1e3c72 !important;
}
.index-2 section.templates-section.ptb-80.bg-white{
background: linear-gradient(135deg, #1e3c72, #2a5298) !important;
}

.index-2 section.templates-section.ptb-80.bg-white .section-title{
  color: #fff;
}
.index-2{
  font-family: "Inter", sans-serif;
}
.index-2 .footer-description{
color: #fff;
}
.index-2 .footer-title {
    color: #fff !important;
}

.index-2 footer p {
    color: #fff !important;
}
.index-2 .footer-links a{
  color: #fff !important;
}
.text-blue{
  color:#3b82f6;
}
.fw-700{
  font-weight: 700;
}
.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}
.text-xs {
    font-size: .75rem;
    line-height: 1rem;
}
#enquiryModal .modal-content {
  border-top: 8px solid #3b82f6;
}
.upi-btn {
        position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    cursor: pointer;
}
.carousel-indicators{
  bottom: -14%;
}

