/* Header Dark Theme */
.header-dark {
  background-color: #1e1e1e; /* dark gray */
  padding: 0.75rem 1rem;
}

.navbar-brand {
  color: #ffffff;
  font-size: 1.5rem;
}

.navbar-brand:hover {
  color: #0d6efd;
}

.nav-link {
  color: #e0e0e0 !important;
  margin: 0 0.5rem;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #0d6efd !important;
}

/* Social icons */
.navbar .fa-brands {
  font-size: 1.1rem;
  color: #ccc;
  transition: color 0.3s;
}

.navbar .fa-brands:hover {
  color: #0d6efd;
}

/* Make right section responsive */
@media (max-width: 991px) {
  .navbar .fa-brands {
    display: none;
  }
}
/* ---------- HERO SLIDER ---------- */

/* Gradient overlay + Ken‑Burns zoom */
.hero-img {
  height: 100vh;                 /* full viewport height */
  object-fit: cover;
  animation: kenburns 12s ease-in-out infinite;
}
@keyframes kenburns {
  0%   { transform: scale(1)   translateY(0); }
  50%  { transform: scale(1.08) translateY(-2%); }
  100% { transform: scale(1)   translateY(0); }
}

/* Make captions pop over a translucent black strip */
.carousel-caption {
  bottom: 40%;                  /* vertically higher than default */
  transform: translateY(40%);   /* starting offset for fade-up */
  opacity: 0;
  animation: captionFade 1.3s ease-out 0.4s forwards;
  text-align: left;
  max-width: 650px;
}
@keyframes captionFade {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.carousel-caption h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  color: #aa3535;
  line-height: 1.2;
}
.carousel-caption p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #0c0b0b;
  margin-top: .5rem;
}

/* Dots (indicators) */
.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #090a0a;
  opacity: 0.6;
}
.carousel-indicators .active {
  opacity: 1;
}

/* Custom arrow styling */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
  background-size: 100% 100%;
  filter: invert(1);
}
.carousel-control-prev,
.carousel-control-next {
  width: 4rem;
  height: 4rem;
  top: 50%;
  transform: translateY(-50%);
}
.carousel-control-prev,
.carousel-control-next {
  background: rgba(0, 0, 0, 0.35);
  border-radius: 50%;
  transition: background .3s;
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(0, 0, 0, 0.6);
}

/* Fade transition between slides */
.carousel-fade .carousel-item {
  opacity: 0;
  transition-duration: 1s;
  transition-property: opacity;
}
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
  opacity: 1;
}
/* Hero Slider */
.carousel-item img {
  height: 600px;
  object-fit: cover;
}

.carousel-caption {
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
}

.carousel-caption h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #6393a0;
}

.carousel-caption p {
  font-size: 1.2rem;
  color: #78ca8b;
}
/* About Hero Section */
.about-hero {
  height: 60vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('https://source.unsplash.com/1600x800/?corporate,office') center/cover no-repeat;
}

/* Section Headings */
h2 {
  font-weight: 700;
  color: #333;
}

/* List icons styling */
ul li i {
  color: #0d6efd;
}
/* Section Title */
.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

/* Feature List Styling */
.list-features {
  list-style: none;
  padding-left: 0;
}

.list-features li {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.list-features i {
  font-size: 1.3rem;
}

/* Card hover effect */
.about-section .border:hover {
  background-color: #101111;
  transition: background-color 0.3s ease-in-out;
}
/* Hero Section */
.pricing-hero {
  height: 60vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('https://source.unsplash.com/1600x800/?pricing,business') center/cover no-repeat;
}

/* Pricing Card Custom */
.pricing-card {
  background-color: #fff;
  border-radius: 10px;
  transition: transform 0.3s;
}

.pricing-card:hover {
  transform: translateY(-8px);
}

/* Featured Plan */
.featured {
  border: 2px solid #0d6efd;
  background-color: #f0f8ff;
}

/* Pricing Price */
.card-price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
/* Pricing Section */
.pricing-card {
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
}

.pricing-card:hover {
  transform: translateY(-6px);
}

/* Featured Plan Styling */
.featured {
  border: 2px solid #0d6efd;
  background-color: #f0f8ff;
}

/* Card Price */
.card-price {
  font-size: 2.2rem;
  font-weight: 700;
}
/* Set background color for the entire page */
body {
  background-color: #f8f9fa; /* Light gray or any color you prefer */
  color: #333;               /* Optional: default text color for contrast */
}
.about-section {
  background-color: #f0f2f5;  /* Soft light gray-blue */
  color: #212529;             /* Dark text for readability */
}

/* Optional: style text & spacing for better visual */
.about-section h2 {
  font-weight: 700;
  font-size: 2.5rem;
}

.about-section p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
}
/* Hero Section Background */
.services-hero {
  height: 50vh;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6)),
              url('https://source.unsplash.com/1600x800/?technology,services') center/cover no-repeat;
}

/* Service Card */
.service-card {
  border-radius: 12px;
  background-color: #f8f9fa;
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
/* Services Section Styling */
.services-section {
  background-color: #f8f9fa; /* soft light background */
}

.service-box {
  background: #ffffff;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}
/* Services Section Style */
.services-section {
  background-color: #f8f9fa;
  font-family: 'Segoe UI', sans-serif;
}

.service-card {
  background: #fff;
  border-radius: 15px;
  transition: all 0.3s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.08);
}

/* Circular icon */
.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: background 0.3s ease;
}

/* Icon hover effect */
.service-card:hover .icon-circle {
  filter: brightness(1.1);
}
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">

<!-- Font Awesome Icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css">
/* Hero Banner for Testimonials */
.testimonial-hero {
  height: 50vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)),
              url('https://source.unsplash.com/1600x800/?people,business') center/cover no-repeat;
}

/* Testimonials Section */
.testimonials-section {
  background-color: #f8f9fa;
}

.testimonial-card {
  background: #fff;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.stars {
  font-size: 1.2rem;
  color: #ffc107;
}
/* Hero Background */
.contact-hero {
  height: 50vh;
  background: linear-gradient(rgba(126, 157, 105, 0.6), rgba(109, 51, 51, 0.6)),
              url('https://source.unsplash.com/1600x800/?office,contact') center/cover no-repeat;
}

/* Contact Section */
.contact-section {
  background-color: #f9fbfd;
}

.contact-info i {
  color: #0d6efd;
}
/* Soft Background */
body.bg-soft {
  background: #f4f7fb;
  font-family: 'Segoe UI', sans-serif;
}

/* Hero with Gradient Overlay */
.contact-hero {
  height: 55vh;
  background: linear-gradient(rgba(20,20,20,0.6), rgba(20,20,20,0.6)),
              url('https://source.unsplash.com/1600x800/?tech,contact') center/cover no-repeat;
}

/* Glass Card Style */
.glass-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.glass-card:hover {
  transform: scale(1.02);
}

/* Input Focus Animation */
.form-control:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.25rem rgba(13,110,253,.25);
}
body.bg-soft {
  background-color: #f2f6fa;
  font-family: 'Segoe UI', sans-serif;
}

/* Hero with Glass Effect */
.contact-hero {
  height: 60vh;
  background: linear-gradient(rgba(0, 20, 40, 0.6), rgba(0, 20, 40, 0.6)),
              url('https://source.unsplash.com/1600x800/?business,technology') center/cover no-repeat;
}

/* Glass Box */
.glass-box {
  background: rgba(255, 255, 255, 0.65);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.glass-box:hover {
  transform: scale(1.01);
}

/* Floating Label Icons */
.form-floating > label > i {
  margin-right: 6px;
}

/* Gradient Button */
.btn-gradient {
  background: linear-gradient(135deg, #007bff, #00c6ff);
  color: white;
  border: none;
  transition: 0.3s ease-in-out;
}

.btn-gradient:hover {
  background: linear-gradient(135deg, #0062cc, #00b3e6);
  transform: scale(1.02);
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.3);
}
body.bg-soft {
  background-color: #f3f6fa;
  font-family: 'Segoe UI', sans-serif;
}

/* Hero Section */
.contact-hero {
  height: 60vh;
  background: linear-gradient(rgba(0, 30, 60, 0.6), rgba(0, 30, 60, 0.6)),
              url('https://source.unsplash.com/1600x800/?digital,contact') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Glass Box */
.glass-box {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.glass-box:hover {
  transform: scale(1.01);
}

/* Gradient Button */
.btn-gradient {
  background: linear-gradient(135deg, #007bff, #00c6ff);
  color: white;
  border: none;
  transition: all 0.3s ease;
}

.btn-gradient:hover {
  background: linear-gradient(135deg, #0062cc, #00b3e6);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

/* Map Styling */
.map-container {
  width: 100%;
  height: 100%;
  min-height: 400px;
  overflow: hidden;
  border-radius: 15px;
}
.footer-section a:hover {
  color: #00c6ff;
  text-decoration: underline;
}

.footer-section i {
  font-size: 1.2rem;
  transition: 0.3s;
}

.footer-section i:hover {
  color: #00c6ff;
  transform: scale(1.1);
}
.footer-glass {
  background: linear-gradient(to right, rgba(24, 24, 24, 0.85), rgba(36, 36, 36, 0.85));
  backdrop-filter: blur(10px);
  box-shadow: 0 0 30px rgba(0, 198, 255, 0.05);
  font-family: 'Segoe UI', sans-serif;
}

.footer-link {
  display: block;
  color: #ccc;
  text-decoration: none;
  margin-bottom: 6px;
  transition: 0.3s ease-in-out;
}

.footer-link:hover {
  color: #00e0ff;
  padding-left: 8px;
}

.footer-icon {
  display: inline-block;
  color: #aaa;
  font-size: 1.2rem;
  margin-right: 12px;
  transition: 0.3s ease-in-out;
}

.footer-icon:hover {
  color: #00e0ff;
  transform: scale(1.2);
  text-shadow: 0 0 10px rgba(0, 224, 255, 0.6);
}

.footer-glass input.form-control {
  background-color: rgba(255, 255, 255, 0.05);
  border: none;
  color: #fff;
}

.footer-glass input::placeholder {
  color: #ccc;
}

.footer-glass .btn-outline-light:hover {
  background-color: #00e0ff;
  color: #000;
}
/* Hero Section Styles */
.hero-image {
  background-size: cover;
  background-position: center;
}

.carousel-caption h1 {
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
}

.carousel-caption p {
  font-size: 1.2rem;
  color: #fff;
}

.carousel-caption .btn {
  font-size: 1rem;
  padding: 10px 20px;
  margin-top: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .carousel-caption h1 {
      font-size: 2rem;
  }

  .carousel-caption p {
      font-size: 1rem;
  }

  .carousel-caption .btn {
      font-size: 0.9rem;
  }
}
