/* =========================================
   GLOBAL STYLES
========================================= */
body {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  scroll-behavior: smooth;
  color: #333;
}

/* =========================================
   HERO SECTION & CAROUSEL
========================================= */
#heroCarousel {
  position: relative;
  padding: 0;
}

.carousel-item {
  height: 80vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 1s ease, opacity 1s ease;
}

.carousel-overlay {
  background: rgba(0, 0, 0, 0.55);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-text {
  color: #fff;
  max-width: 700px;
  animation: fadeUp 1.5s ease-out;
}

.hero-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #f0f0f0;
}

/* Buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: #0084ff;
  color: #fff;
  border: 2px solid #0084ff;
}
.btn-primary:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-secondary:hover {
  background: #0084ff;
  border-color: #0084ff;
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideUp 1.5s ease-out forwards;
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Gradient Hero Section */
.hero-section {
  background: linear-gradient(135deg, #ff5e00, #800080, #ff5e00);
  background-size: 300% 300%;
  animation: gradientBG 10s ease infinite;
  min-height: 80vh;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}
.hero-section h1, .hero-section p {
  position: relative;
  z-index: 1;
}
@keyframes gradientBG {
  0%,100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* =========================================
   INFO CARDS / QUICK LINKS
========================================= */
.info-card {
  background-color: #fff;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(255, 94, 0, 0.25);
}

/* Outline Buttons */
.btn-outline-success, .btn-outline-primary {
  border-color: #ff5e00;
  color: #ff5e00;
  font-weight: 500;
}
.btn-outline-success:hover, .btn-outline-primary:hover {
  background: linear-gradient(45deg, #ff5e00, #800080);
  color: #fff;
  border-color: #ff5e00;
}

/* CTA Button */
.btn-cta {
  background: linear-gradient(45deg, #fffffe, #800080, #ff5e00);
  background-size: 200% 200%;
  color: #fff;
  font-size: 1.2rem;
  padding: 12px 30px;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  box-shadow: 0 0 20px rgba(255,94,0,0.5);
  transition: all 0.4s;
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(255,94,0,0.5); }
  50% { box-shadow: 0 0 35px rgba(255,94,0,0.7); }
}
.btn-cta:hover {
  transform: translateY(-3px);
  background-position: 100% 0;
}

/* =========================================
   SERVICE / TESTIMONIAL CARDS
========================================= */
.service-card, .testimonial-card {
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
}
.service-card::before, .testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(120deg, #ff5e00, #800080, #ff5e00);
  opacity: 0.2;
  transition: all 0.5s;
}
.service-card:hover::before, .testimonial-card:hover::before {
  left: 0;
  opacity: 0.4;
}
.service-card:hover, .testimonial-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 30px rgba(255,94,0,0.3);
}

/* =========================================
   NAVBAR
========================================= */
.navbar {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.navbar-nav .nav-link {
  position: relative;
  color: #333;
  font-weight: 500;
  padding: 10px 15px;
  transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover {
  color: #ff5e00;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #800080;
  transition: width 0.3s ease;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}
.navbar-nav .nav-link.active {
  color: #ff5e00 !important;
  text-shadow: 0 0 8px rgba(255,94,0,0.6);
}
.navbar.scrolled {
  background-color: #fff !important;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* =========================================
   BREADCRUMB
========================================= */
.breadcrumb {
  background: transparent;
  margin-bottom: 0;
}
.breadcrumb a {
  text-decoration: none;
  color: #ff5e00;
  font-weight: 500;
}
.breadcrumb-item + .breadcrumb-item::before {
  color: #6c757d;
}
.breadcrumb .text-secondary {
  color: #6c757d;
  text-transform: capitalize;
}

/* =========================================
   FOOTER
========================================= */
.footer {
  background-color: #111;
  color: #ccc;
  padding: 60px 0;
  
}
.footer h5, .footer h6 {
  color: #fff;
}
.footer-link {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-link:hover {
  color: #ff5e00;
}
.footer .btn-outline-light:hover {
  background: linear-gradient(45deg, #ff5e00, #800080);
  border-color: #ff5e00;
  color: #fff;
}
.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  text-decoration:none;
}
.footer-social a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #00b25d;
  color: #fff;
  font-size: 1.1rem;
  transition: all 0.3s;
  text-decoration: none;
}
.footer-social a:hover {
  background: #00924f;
  transform: scale(1.1);
}

/* =========================================
   BACK TO TOP BUTTON
========================================= */
#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(45deg, #ff5e00, #800080);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  cursor: pointer;
  z-index: 1000;
}

/* =========================================
   FLOATING CONTACT ICONS
========================================= */
.floating-icons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}
.floating-icons a {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff5e00, #800080);
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}
.floating-icons a:hover {
  transform: scale(1.2);
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

/* =========================================
   HEADER SECTION (Logo + Tagline)
========================================= */
.header-section {
  background-size: cover;
  background-position: center;
  text-align: left;
  
}
.header-section h1, .header-section p, .header-section h5 {
  color: #fff;
}
.header-section img {
  max-height: 80px;
  

}
.logo-tagline {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
  text-align: left;
  padding: 10px;
}
.header-logo {
  width: 120px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.1));
}
.tagline h1 {
  font-size: 4rem;
  margin: 0;
  color: #6b21a8;
  font-weight: 800;
  font-style: bold;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 1px;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(255,255,255,0.7),
        -1px -1px 1px rgba(0,0,0,0.05);;
}
.tagline span {
  color: #f59e0b;
        -webkit-text-stroke: 0.5px #f59e0b;
}
.tagline p {
  margin: 5px 0 0;
      font-size: 1.2rem;
      color: #6b21a8;
      font-weight: 500;
      text-shadow: 0.5px 0.5px 1px rgba(255,255,255,0.7);
}

/* =========================================
   ANIMATIONS
========================================= */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.5s ease-out forwards;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 768px) {
  .carousel-item { height: 60vh; }
  .hero-text h2, .hero-content h2 { font-size: 1.6rem; }
  .hero-text p, .hero-content p { font-size: 1rem; }
  .hero-section { padding: 80px 10px; }
  .hero-section h1 { font-size: 2.2rem; }
  .service-card, .info-card { margin-bottom: 20px; }
  .logo-tagline { flex-direction: column; gap: 10px; justify-content: center; }
  .tagline h1 { display: flex; font-size: 2rem; justify-content: center;text-align: center; }
  .header-logo { width: 120px;
  align-content: center;}

}

/* =========================================
   CONTACT FORM MESSAGE
========================================= */
#contactMessage span {
  display: block;
  font-weight: 500;
  margin-top: 5px;
}
