/* Global Styles */
body {
  font-family: 'Roboto', sans-serif;
  color: #333;
}

h1, h2, h3, h4, h5 {
  font-weight: 700;
}

p {
  font-weight: 300;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Navbar Styles */
#navbar {
  transition: background-color 0.5s ease, box-shadow 0.5s ease;
  text-shadow: 1px 1px #333333;
  padding: 1rem 10px;
}

#navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  text-shadow: none;
}

#navbar .logo {
  background-image:url("../images/sysdialogo_light.svg");
  background-repeat: no-repeat;
  width: 150px;
  height: 50px;
}

#navbar.scrolled .logo {
  background-image:url("../images/sysdialogo.svg");
}

#navbar .navbar-toggler {
  background-color: rgba(0,0,0,0.2);
}

#navbar .nav-link {
  color: #fff !important;
  font-weight: 500;
  font-size: 1.3em;
  margin-right: 1rem;
  transition: color 0.3s ease;
}

#navbar .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

#navbar.scrolled .nav-link:hover {
  background-color: rgba(0,0,0,0.1);
}

#navbar.scrolled .nav-link,
#navbar.scrolled .navbar-brand {
  color: #333 !important;
}

#navbar .navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
}

/* Hero Section Styles */
#hero .carousel-item {
  height: 100vh;
  min-height: 600px;
}

#hero .carousel-item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

#hero .carousel-caption {
  bottom: 5%;
}

#hero h1 {
  font-weight: 500;
  text-shadow: 3px 3px #333333;
  font-size: 3rem;
}

#hero h1 span {
  color: #334ca3;
}

#hero .btn-primary {
  background-color: #007bff;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  border-radius: 2rem;
}

/* About Section */
#about h2 {
  font-size: 1.5rem;
}

#about h2 span {
  color: #334ca3;
}

#about .lead {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

#about .btn-outline-primary {
  border-color: #007bff;
  color: #007bff;
}

#about .btn-outline-primary:hover {
  background-color: #007bff;
  color: #fff;
}

#about hr {
  margin: 40px;
}

#about img {
  margin-bottom: 20px;
}

#about .rounded {
  border-radius: 0.95rem !important;
}

/* Services Section */
#services {
  background-color: #007bff;
}

#services h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

#services .service-box i {
  color: #fff;
  margin-bottom: 1rem;
}

#services .service-box h4 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

#services .service-box p {
  color: #f8f9fa;
}

/* Contact Section */
#contact h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

#contact form {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

#contact .form-control {
  border-radius: 0;
}

#contact .btn-primary, #contact .btn-warning {
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  border-radius: 2rem;
}

#contact .btn-primary {
  background-color: #334ca3;
}

#contact a {
  color: inherit;
}

#contact a:hover {
  text-decoration: none;
  color: #007bff;
}

#email-thankyou {
display: none;
text-align: center;
}

#email-thankyou .btn-link {
padding: 10px 0px;
}

/* Testimonials Section */
#testimonials {
  background-color: #f8f9fa;
}

#testimonials h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.testimonial {
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.testimonial p {
  font-style: italic;
  font-weight: 300;
}

.testimonial img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}

.testimonial h5 {
  margin-bottom: 0;
}

.testimonial small {
  color: #666;
}

#clients {
  text-align: center;
  background-color: #f1f1f1;
}

#clients img {
  margin: 20px;
}

/* Footer Styles */
footer {
  background-color: #222;
  color: #ccc;
}

footer h5 {
  color: #fff;
  margin-bottom: 1.5rem;
}

footer p, footer li, footer a {
  font-weight: 300;
  color: #ccc;
}

footer a {
  text-decoration: none;
}

footer a:hover {
  color: #007bff;
}

footer ul {
  list-style: none;
  padding-left: 0;
}

footer li {
  margin-bottom: 0.5rem;
}

footer .fa {
  margin-right: 0.5rem;
}

footer .text-center {
  border-top: 1px solid #444;
  padding-top: 1rem;
  margin-top: 2rem;
}

footer .copyright {
  font-size: 0.8em;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Media Queries */
@media (max-width: 768px) {
  #hero .carousel-caption {
    bottom: 30%;
  }

  #hero h1 {
    font-size: 2rem;
  }

  #hero .lead {
    font-size: 1rem;
  }

  #navbar .nav-link {
    margin-right: 0;
    padding: 0.5rem 1rem;
  }
}
