/* ============================
   Panchaveda Innovations Theme
   Dark Blue + Gold (Clean)
   ============================ */

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.7;
  padding-top: 80px;
}

/* Top Bar */
.top-bar {
  background: #0a1f44;
  border-bottom: 1px solid #ddd;
}

/* Logo */
.top-logo { height: 65px; }
.nav-logo { height: 50px; }

@media (max-width: 768px) {
  .top-logo { height: 45px; }
  .nav-logo { height: 40px; }
}

/* Navbar */
.navbar {
  padding: 0.8rem 1rem;
  background: #0a1f44;
}

.navbar-brand {
  font-size: 20px;
  color: #fff !important;
}

.navbar-nav .nav-link {
  font-weight: 500;
  padding: 10px 15px;
  color: #fff !important;
  margin-right: 10px;
  transition: 0.3s;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: #ffc107 !important;
}

/* Dropdown */
.dropdown-menu {
  border-radius: 10px;
  padding: 10px;
}

.dropdown-item:hover {
  background: #0a1f44;
  color: #fff;
}

/* Hero Carousel */
.carousel-item img {
  height: 550px;
  object-fit: cover;
}

.carousel-caption {
  background: rgba(10, 31, 68, 0.7);
  padding: 25px;
  border-radius: 10px;
}

.carousel-caption h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.carousel-caption p {
  color: #f1f1f1;
}

/* Sections */
section {
  padding: 60px 0;
}

section h1, section h2 {
  font-weight: 700;
  margin-bottom: 20px;
  color: #0a1f44;
}

section p.lead {
  font-size: 1.1rem;
  color: #555;
}

/* Cards */
.card {
  border: none;
  border-top: 4px solid #ffc107;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.card h5 {
  color: #0a1f44;
}

/* Buttons */
.btn-primary {
  background: #0a1f44;
  border: none;
}

.btn-primary:hover {
  background: #ffc107;
  color: #0a1f44;
}

/* Counter */
.counter-box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.counter {
  font-size: 2rem;
  font-weight: 700;
  color: #0a1f44;
}

/* Services */
.service-card {
  border-radius: 12px;
  border: 1px solid #eee;
  background: #fff;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  border-top: 3px solid #ffc107;
}

.icon-box {
  font-size: 2rem;
  color: #ffc107;
}

/* Team */
.team-card {
  transition: 0.3s;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}

/* Footer */
footer {
  background: #0a1f44;
  color: #fff;
  padding: 20px;
}

.footer-link {
  color: #eee;
  display: block;
  margin: 5px 0;
  text-decoration: none;
  transition: 0.3s;
}

.footer-link:hover {
  color: #ffc107;
  transform: translateX(5px);
}

footer .btn-outline-light:hover {
  background: #ffc107;
  color: #000;
}






.testimonial-section {
  padding: 60px 0;
  background: linear-gradient(to right, #f8fafc, #eef2f7);
  text-align: center;
}

.testimonial-section h2 {
  font-weight: 700;
  margin-bottom: 40px;
  color: #1e293b;
}

.testimonial-slider {
  display: flex;
  gap: 20px;
  justify-content: center;
  animation: slide 12s infinite linear;
}

.testimonial-slider:hover {
  animation-play-state: paused;
}

.testimonial-card {
  min-width: 280px;
  max-width: 300px;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  font-size: 15px;
  color: #334155;
}

/* Hover effect */
.testimonial-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Animation */
@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


.swiper-slide {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}