/* ====== Base ====== */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

h1, h2, h3, h4, h5 {
  font-weight: 600;
}

header {
  background-color: #0d6efd;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1030;
}



.logo-img {
  width: 60px;
  height: 60px;
  border-radius: 50%; /* makes it round */
  object-fit: cover;
  border: 2px solid #3498db; /* optional: border style */
  background-color: #fff;    /* optional: fallback bg */
}

.nav-menu {
  display: flex;
}

.nav-menu ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu .nav-link {
  margin: 0 15px;
}

.nav-menu .nav-link a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu .nav-link a:hover {
  color: #ffc107; /* Bootstrap warning color */
}
/* Updated Header Overrides (if needed) */
.navbar-nav .nav-link {
  font-weight: 500;
  margin-left: 15px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #ffc107 !important;
}

.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}


/* ====== Hero Section ====== */
.hero-banner {
  background-size: cover;
  background-position: center;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.hero-banner::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
}

.hero-banner .container {
  position: relative;
  z-index: 2;
}

.hero-banner h1 {
  font-size: 3rem;
  color: #fff;
}

.hero-banner p {
  font-size: 1.2rem;
  color: #ddd;
}

/* ====== Service Boxes ====== */
.service-box {
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* ====== Testimonials ====== */
.blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: #444;
}

.carousel-inner {
  padding: 20px;
}

/* ====== Why Choose Us ====== */
#why .p-4 {
  background: #ffffff;
  transition: transform 0.3s ease;
}

#why .p-4:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

/* ====== Contact Form ====== */
form input, form textarea {
  border-radius: 10px;
  border: 1px solid #ddd;
}

form input:focus, form textarea:focus {
  border-color: #007bff;
  box-shadow: none;
}

/* ====== Buttons ====== */
.btn-primary {
  background-color: #0066cc;
  border: none;
  padding: 10px 24px;
  font-weight: 500;
  border-radius: 30px;
}

.btn-primary:hover {
  background-color: #004c99;
}

.btn-warning {
  border-radius: 30px;
  font-weight: 500;
  padding: 10px 24px;
}

/* ====== Responsive tweaks ====== */
@media (max-width: 768px) {
  .hero-banner h1 {
    font-size: 2rem;
  }
  .hero-banner p {
    font-size: 1rem;
  }
}

.footer {
  background-color: #0d6efd;
  color: white;
  padding: 40px 20px 0;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-section h2,
.footer-section h3 {
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-section p,
.footer-section li,
.footer-section a {
  font-size: 14px;
  color: #f1f1f1;
  line-height: 1.6;
  text-decoration: none;
}

.footer-section a:hover {
  color: #ffc107;
}

.social-icons a {
  color: white;
  margin-right: 10px;
  font-size: 18px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ffc107;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 14px;
}
.split-slider-section {
  background-color: #f5f8ff;
}

.content-slide, .avatar-slide {
  display: none;
  transition: all 0.5s ease-in-out;
}

.content-slide.active,
.avatar-slide.active {
  display: block;
}

.avatar-img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  border-radius: 50%;
  background: white;
  padding: 15px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.avatar-img:hover {
  transform: scale(1.05);
}

.slider-buttons {
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #ccc;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.slider-dot.active {
  background-color: #007bff;
}

/* Animated Line Accent */
.animated-bar {
  width: 100%;
  height: 6px;
  background: #e0e0e0;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}

.bar-fill {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(to right, #3498db, #9b59b6);
  animation: slideBar 4s linear infinite;
}

@keyframes slideBar {
  0% {
    left: -100%;
  }
  50% {
    left: 0%;
  }
  100% {
    left: 100%;
  }
}
.tv-animated-section h2 {
  text-shadow: 1px 1px 10px rgba(255,255,255,0.2);
}

.tv-animated-section ul li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}
