/* Reset some default styles */
body, h1, h2, p, ul, li {
  margin: 0;
  padding: 0;
}

/* Basic styling */
body {
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Navbar styles */
.header {
  background-image: url('images/backtest.jpg'); /* Correct image path */
  background-size: cover;
  background-position: center;
  color: #00008B;
  padding: 50px 0;
  text-align: center;
}

/* Navbar styles */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9); /* Change to your desired background color */
  z-index: 1000;
  transition: background-color 0.3s;
}
Navbar styles
.navbar.scroll {
  background-color: rgba(255, 255, 255, 1); /* Change to your desired background color */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Add shadow when scrolled */
}

.nav-links a:hover {
  text-decoration: none;
  color: #000000;
  font-weight: bold;
  font-size: 18px; /* Change the font size to your desired value */
  color: #ff7733; /* Change to the desired hover color */
}
.logo {
  font-size: 20px;
  text-decoration: none;
  color: #fff;
  margin-right: auto;
  transition: transform 0.3s;
}
.logo:hover {
  transform: rotate(360deg); /* Rotate the logo by 360 degrees */
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-right: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #000000;
  font-weight: bold;
  font-size: 20px;
}

/* Hero section styles */
.hero {
  
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 50px 0;
  text-align: center;
   color: #000000;
  font-weight: bold;
}
.hero:hover {
  color: #ff7733; /* Change to the desired hover color */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Add a text shadow on hover */
}

.hero h1 {
  font-size: 28px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 16px;
  margin-bottom: 30px;
}

.cta-btn {
  background-color: #ff5500;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
  animation: spin 5s linear infinite; /* Add this line for animation */
}

.cta-btn:hover {
  background-color: #ff7733;
}

/* Other section styles */
.services, .about, .projects, .contact {
  padding: 60px 0;
}

/* Footer styles */
.footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 5px 0;
}

/* Contact form styles */
.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

textarea.form-control {
  resize: vertical;
}

.btn-primary {
  background-color: #ff5500;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #ff7733;
}

/* Services section styles */
.services {
  background-color: #ffffff;
  padding: 80px 0;
}

.services h2 {
  text-align: left;
  margin-bottom: 40px;
}

.programs-item {
  text-align: center;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  margin-bottom: 20px;
}

.programs-item i {
  font-size: 48px;
  color: #f39c12;
  margin-bottom: 20px;
}

.programs-item h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.programs-item p {
  font-size: 16px;
  color: #555;
}

.programs-item:hover {
  transform: translateY(-5px);
}

/* Add animation properties to the rotated-logo class */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Apply animation properties to the cta-btn class (Free Estimate button) */
.cta-btn {
  animation: spin 5s linear infinite; /* Adjust the animation duration as needed */
}

/* Media queries and other responsive styles... */
/*.scrolling-text {
  overflow: hidden;
  white-space: nowrap;
  animation: scrollText 15s linear infinite;
}*/

@keyframes scrollText {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

