/* style.css file */

/* Custom CSS for eSecretary Template */

/* General & Fonts */
body { font-family: 'Poppins', sans-serif; }
h1, h2, h3, h4, h5, h6, .sitename { font-family: 'Raleway', sans-serif; }

/* Enhanced Navigation Menu Styling */
.navmenu {
  display: flex;
  align-items: center;
  gap: 18px;
}
.navmenu ul {
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.navmenu .nav-link {
  position: relative;
  display: inline-block;
  color: #222;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  background: transparent;
  transition: color 0.25s, background 0.25s;
  overflow: hidden;
}
.navmenu .nav-link:after {
  content: '';
  display: block;
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 6px;
  height: 2.5px;
  background: linear-gradient(90deg, #20c997 60%, #198754 100%);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}
.navmenu .nav-link:hover,
.navmenu .nav-link:focus {
  color: #20c997;
  background: rgba(32,201,151,0.08);
}
.navmenu .nav-link:hover:after,
.navmenu .nav-link:focus:after {
  transform: scaleX(1);
}
.navmenu .nav-link.active,
.navmenu .nav-link[aria-current="page"] {
  color: #fff;
  background: linear-gradient(90deg, #20c997 80%, #198754 100%);
  box-shadow: 0 2px 12px rgba(32,201,151,0.10);
}
.navmenu .nav-link.active:after,
.navmenu .nav-link[aria-current="page"]:after {
  background: #fff;
  transform: scaleX(1);
}
.navmenu .nav-link {
  transition: color 0.25s, background 0.25s, box-shadow 0.25s;
}
.navmenu .nav-link:active {
  color: #198754;
  background: rgba(32,201,151,0.18);
}
.mobile-nav-toggle {
  font-size: 2rem;
  color: #20c997;
  cursor: pointer;
  margin-left: 16px;
  transition: color 0.2s;
}
.mobile-nav-toggle:hover {
  color: #198754;
}

@media (max-width: 991.98px) {
  .navmenu ul {
    flex-direction: column;
    gap: 0;
  }
  .navmenu .nav-link {
    padding: 12px 18px;
    font-size: 1.08rem;
    border-radius: 0;
  }
}

/* Section Title consistency */
.section-title p {
  color: #777;
  margin-bottom: 5px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
}
.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Challenge & Solution Section Styling */
/* .challenge-item, .solution-item {
  border-radius: 10px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); border: 1px solid #eeeeee;
}
.challenge-item { background-color: #fff5f6; }
.solution-item { background-color: #f2fbf5; }
.challenge-item h3, .solution-item h3 { font-weight: 700; font-size: 1.5rem; }
.challenge-item h3 i { color: #dc3545; }
.solution-item h3 i { color: #198754; }
.challenge-item h5, .solution-item h5 { font-weight: 600; font-size: 1.1rem; } */


/* .challenge-item {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    height: 100%;
    background: #ffeaec;
    border-color: #b06168;
}


.esecretary-item {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    height: 100%;
    background: #ffeaec;
    border-color: #68a283;
} */


/* .fw-bold{
    font-weight: 700 !important;       
} */


.point-item { margin-bottom: 1.2rem; }
.point-item p { text-align: left; margin: 0; padding-left: 2rem; }
.point-item i { margin-right: 0.5rem; }

/* Impact/Stats Section Styling */
.impact-section {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop') no-repeat center center;
  background-size: cover; background-attachment: fixed; padding: 80px 0;
}
.impact-section .section-title h2 { color: #fff; margin-bottom: 30px;}
.stat-card {
  background: rgba(255, 255, 255, 0.1); -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px);
  padding: 2rem; border-radius: 10px; height: 100%;
  transition: all 0.3s; border: 1px solid rgba(255, 255, 255, 0.2);
}
.stat-card:hover { transform: translateY(-5px); background: rgba(255, 255, 255, 0.2); }
.stat-card i { font-size: 3rem; margin-bottom: 0.5rem; display: block; color: #fff; }
.stat-number { font-size: 3.5rem; font-weight: 700; color: #fff; }
.stat-number:after { content: '%'; }
.stat-card p { font-size: 1.1rem; font-weight: 300; margin-top: 10px; color: rgba(255, 255, 255, 0.9); }

/* Comparison Table Styling */
#comparison { padding-top: 60px; padding-bottom: 60px; }
.comparison-table {
  vertical-align: middle; font-size: 0.95rem; box-shadow: 0 5px 25px rgba(0,0,0,0.07);
}
.comparison-table thead th { font-weight: 600; font-size: 1rem; }
.comparison-table tbody tr:hover { background-color: #f8f9fa; }
.comparison-table i { font-size: 1.4rem; vertical-align: middle; }

/* Workflow (Pricing) Section Customization */
.pricing-tem h4 { font-size: 1.2rem; font-weight: 600; }
.pricing-tem p { padding: 0 15px; }

/* Testimonials Section Styling */
.testimonials .testimonial-item {
  box-sizing: content-box; text-align: center;
  padding: 30px; margin-top: 30px;
  background: var(--color-background); box-shadow: var(--default-box-shadow);
  border-radius: var(--default-border-radius);
  border-top: 4px solid #f8f9fa; border-bottom: 4px solid #f8f9fa;
  transition: all 0.3s ease-in-out;
}
.testimonials.light-background .testimonial-item, .light-background .testimonials .testimonial-item { background: #fff; }
.testimonials .testimonial-img {
  width: 90px; border-radius: 50%; border: 6px solid var(--color-background);
  margin: -60px 0 0 0; position: relative;
}
.testimonials.light-background .testimonial-img { border-color: #fff; }
.testimonials .testimonial-item h3 { font-size: 18px; font-weight: bold; margin: 10px 0 5px 0; }
.testimonials .testimonial-item h4 { font-size: 14px; color: #777; margin: 0; }
.testimonials .testimonial-item p { font-style: italic; margin: 15px auto 15px auto; }
.testimonials .testimonial-item:hover { transform: translateY(-10px); border-color: var(--color-primary); }

/* Footer Styling */
.site-footer {
  background-color: #1a1a1a; color: #a0a0a0; padding: 60px 0 20px 0; font-size: 0.9rem;
}
.footer-heading {
  color: #fff; font-size: 1rem; font-weight: 600; margin-bottom: 20px;
  position: relative; padding-bottom: 10px;
}
.footer-heading::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 40px; height: 2px; background-color: var(--color-primary);
}
.footer-contact-info li { display: flex; align-items: flex-start; margin-bottom: 10px; }
.footer-contact-info i { color: var(--color-primary); margin-right: 10px; font-size: 1rem; margin-top: 3px; }
.footer-links a { color: #a0a0a0; text-decoration: none; transition: all 0.3s; display: block; padding: 5px 0; }
.footer-links a:hover { color: #fff; padding-left: 5px; }
.footer-map { width: 100%; height: 180px; border:0; border-radius: 5px; }
.footer-bottom {
  border-top: 1px solid #333; padding-top: 20px; margin-top: 20px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
}
.footer-copyright p { margin: 0; text-align: left; }
.social-icons a {
  display: inline-flex; justify-content: center; align-items: center; width: 36px;
  height: 36px; border-radius: 50%; background-color: #333;
  color: #fff; margin-left: 8px; text-decoration: none; transition: background-color 0.3s;
}
.social-icons a:hover { background-color: var(--color-primary); }

@media (max-width: 991.98px) {
  .footer-bottom { flex-direction: column; text-align: center; gap: 15px; }
  .footer-copyright p { text-align: center; }
}

/* Workflow & Architecture Styling */
.workflow-box {
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.workflow-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.workflow-arrow i {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.module-card {
  transition: all 0.3s ease;
  background: #fff;
}

.module-card:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  background: #f8f9fa;
}

.text-purple {
  color: #6f42c1;
}

/* Service Item Enhanced Styling */
.service-item {
  transition: all 0.3s ease;
  padding: 30px 25px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.service-item .icon {
  margin-bottom: 20px;
}

.service-item .icon i {
  font-size: 2.5rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.service-item:hover .icon i {
  transform: scale(1.1);
  color: #198754;
}

/* Challenge Solution Section Enhancements */
.challenge-item,
.esecretary-item {
  transition: all 0.3s ease;
}

.challenge-item:hover,
.esecretary-item:hover {
  transform: translateX(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Testimonials Enhanced */
.testimonial-item {
  transition: all 0.3s ease;
}

.testimonial-item:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* Responsive Workflow */
@media (max-width: 768px) {
  .workflow-box {
    margin: 10px 0;
  }
  
  .module-card {
    margin-bottom: 15px;
  }
}