#particles-js {
    background-image: 
        linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
        url(images/Background\ websiter.webp);
    height: 200px;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
}

.websiter-banner {
  margin-top: -140px;
  margin-bottom: 90px;
    font-family: sans-serif;
    color: #ffffff;
    text-align: center; /* Ensure text inside is centered */
}

.websiter-banner h1 {
  z-index: 10;
  position: relative;
    font-size: 42px;
    margin: 0;
}

.breadcrumb {
  z-index: 10;
  position: relative;
    font-size: 16px;
    color: #dddddd;
    margin-top: 10px;
}
.services {
  max-width: 1400px;
  margin: 0 auto; 
  text-align: center; 
  margin-bottom: -15px;
}

.services h2{
  text-align: center;
  font-size: 32px;
}

.services h3{
  text-align: center;
  font-size: 22px;
  font-weight: 200;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: solid 3px #0F6AE1 ;
 
}

/* Responsive Design */
@media (max-width: 1024px) {
  .services h2 {
    font-size: 22px;
  }

  .services h3 {
    font-size: 20px;
  }
}



/* Section 1 Styling */
.servicesmain h3{
  color: #3438F9;
  font-size: 22px;

}
.servicesmain h2{
  font-size: 32px;

}
.section-1 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
}

.container {
  display: flex;
  justify-content: space-between;
  gap: 20px;  /* Adds space between the columns */
}

.row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.col-6 {
  width: 48%;
  padding: 20px;
}

h3, h2, p {
  margin-bottom: 20px;
}



.contact-btn {
  padding: 10px 27px;
  background: linear-gradient(90deg, #1065F6, #5F02FE);
  background-size: 200% 200%;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: white;
  border-radius: 5px; /* Optional, for rounded corners */
  transition: background-position 0.5s ease; /* Smooth transition for the gradient movement */
}

.contact-btn:hover {
  background-position: 100% 0;
}

@keyframes movingGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.contact-btn {
  animation: movingGradient 3s infinite ease-in-out;
}


/* Styling for the images */
.section-image {
  width: 100%;
  height: auto;
}

/* Section 2 Styling with black background */
.section-2 {
  background-color: #000;
  color: #fff;
  padding: 50px 20px;
  position: relative;
  width: 100%; /* Full width of the viewport */
}

.section-2 .container {
  max-width: 1200px;  /* Apply max-width to the container only */
  margin: 0 auto;     /* Center the container */
}

.section-2:before {
  content: '';
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 30px solid #000;
}

.section-2:after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 30px solid #ffffff;
}
#graphic-design-section:after {
  display: none;
}


/* Mobile responsive styling */
@media (max-width: 768px) {
  .container {
    flex-direction: column; /* Stack columns vertically on mobile */
  }

  .col-6 {
    width: 100%; /* Make each column take full width on mobile */
    padding: 15px; /* Reduce padding for mobile */
  }

  .section-1, .section-2 {
    padding: 30px 15px; /* Adjust padding for smaller screens */
  }

  h3, h2 {
    font-size: 18px; /* Adjust font size for smaller screens */
  }

  .contact-btn {
    width: 100%; /* Full-width button on mobile */
    padding: 15px; /* Increase padding for a larger button on mobile */
    font-size: 18px; /* Larger text for button on mobile */
  }
}


/*privacy policy*/
/* Basic styles for privacy policy */
.privacy-policy-section {
  padding: 50px;
  background-color: #f9f9f9;
  font-family: Arial, sans-serif;
}

.privacy-policy-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.privacy-policy-container h1 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

.privacy-policy-container h2 {
  font-size: 1.5rem;
  color: #333;
  margin-top: 20px;
}

.privacy-policy-container p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.privacy-policy-container ul {
  list-style-type: disc;
  margin-left: 20px;
}

.privacy-policy-container a {
  color: #007BFF;
  text-decoration: none;
}

.privacy-policy-container a:hover {
  text-decoration: underline;
}

/* Contact Info Section */
.contact-info {
  margin-top: 20px;
}

.contact-info p {
  font-size: 1rem;
  color: #555;
}

.contact-info .phone-icon,
.contact-info .email-icon {
  margin-right: 10px;
  font-size: 1.2rem;
  vertical-align: middle;
}



.contact-info a:hover {
  text-decoration: underline;
}
.contact-info:before{
  display: none;
}

/*faq*/
/* Basic styles for the FAQ page */
.faq-section {
    padding: 50px;
    background-color: #f9f9f9;
    font-family: Arial, sans-serif;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.faq-container h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-item h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.faq-container a {
    color: #007BFF;
    text-decoration: none;
}

.faq-container a:hover {
    text-decoration: underline;
}
