body {
  background-color: #ebe3f0; /* Matches the background color */
  font-family: 'Poppins', sans-serif; /* Modern stylish font */
}

.logo1 {
  height: auto;
  width: 120px; /* Adjust width as needed */
  max-height: 70px; /* Optional max height */
}

/* Navbar wrapper to add margin */
.navbar-wrapper {
  margin: 20px; 
  border-radius: 15px; 
  overflow: visible; 
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Soft shadow */
}

/* Navbar styles */
.custom-navbar {
  background-color: #eae6f2; /* Light purple */
  padding: 10px 0;
}

.navbar-nav .nav-link {
  font-size: 1.1rem; 
  font-weight: 500;
  color: #000;
  margin-right: 15px;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #8f6cf6; 
  border-bottom: 2px solid #8f6cf6; /* Underline effect */
}

/* Dropdown styles */
.dropdown-menu {
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.custom-btn {
  background-color: #8f6cf6; /* Button color */
  color: #fff;
  font-weight: 500;
  padding: 10px 10px;
  border-radius: 30px;
  display: flex;
  align-items: center;
 
  transition: background-color 0.3s ease;
}

.custom-btn:hover {
  background-color: #7347d8; 
}

.contact-number {
  font-size: 1rem;
  color: #000;
}


  /* Header Section Css */

  .header-section {
    position: relative;
    background-image: url('../img/header.webp'); 
    background-size: cover;
    background-position: center;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
  }
  .header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); 
  }
  .header-content {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.5s ease-out forwards;
  }
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .header-title {
    font-size: 2.5rem;
    font-weight: bold;
  }
  .header-subtitle {
    font-size: 2rem;
    margin-top: 10px;
  }
  .cta-button {
    margin-top: 20px;
    background-color: #f07;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
  }
  .cta-button:hover {
    background-color: #c05;
  }

  /* Heading Styling */

  .container h1 {
    font-size: 3rem;
    font-weight: bold;
    text-align: center; 
    position: relative;
    margin: 0 auto 30px; /* Centered with margin */
    display: inline-block; 
    animation: fadeIn 2s ease-in-out;
  }
  
  .container h1::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0; 
    width: 0;
    height: 3px;
    background-color: #8f6cf6;
    animation: underlineExpand 1s ease-out 1s forwards;
  }
  
  .container p {
    
    font-size: 1rem;
    text-align: center; 
    position: relative;
    margin: 0 auto 30px; 
    display: inline-block; 
    animation: fadeIn 2s ease-in-out;
  }

  /* Animation Keyframes for Underline */
  @keyframes underlineExpand {
    0% {
      width: 0;
    }
    100% {
      width: 100%; 
    }
  }
  






  /* Quality Section */
  .quality-section {
    padding: 60px 15px;
    background-color: #f9f9f9;
}

.quality-section h2 {
    margin-bottom: 40px;
    font-size: 3rem;
    font-weight: bold;
    animation: fadeInSlide 1.5s ease-out;
    position: relative;
    text-align: center;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}
.quality-section h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #8f6cf6;
    animation: underlineExpand 1s ease-out 1.5s forwards;
}
@keyframes fadeInSlide {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes underlineExpand {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}
.quality-section p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.2rem;
    font-weight: 480;
}
.quality-item {
    margin-bottom: 40px;
}
.quality-item img {
    border-radius: 10px;
    width: 100%;
    max-height: 300px;
    object-fit: cover;
}
.quality-item-content {
    display: flex;
    align-items: center;
}
.quality-item-content p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* New css */



.content-section {
background: linear-gradient(135deg, #1e1e2f, #2b2b45); /* Dark gradient background */
color: white;
padding: 30px 0;
}

/* Animated Heading */
.content-text h1 {
margin-bottom: 30px;
font-size: 2rem;
font-weight: bold;
animation: fadeInSlide 1.5s ease-out;
position: relative;
display: inline-block;
}

/* Underline Animation */
.content-text h1::after {
content: "";
position: absolute;
bottom: -10px;
left: 0;
width: 0;
height: 3px;
background-color: #8f6cf6; /* Underline color */
animation: underlineExpand 1s ease-out 1.5s forwards;
}

/* Animation Keyframes for Fade In and Slide */
@keyframes fadeInSlide {
0% {
opacity: 0;
transform: translateY(-30px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}

/* Animation Keyframes for Underline */
@keyframes underlineExpand {
0% {
width: 0;
}
100% {
width: 100%;
}
}

/* Paragraph Styling */
.content-text p {
word-wrap: break-word;
text-align: justify;
}



/* Image Styling */
.content-image {
text-align: center;
}

.content-image img {
max-width: 100%;
border-radius: 10px;
}


/* Faq section css start here */

.faq-section h2 {
  animation: fadeInSlide 1.5s ease-out;
}

.accordion-item .accordion-button {
  transition: background-color 0.3s, transform 0.3s;
}

.accordion-item .accordion-button.collapsed {
  background-color: white;
  color: black;
}

.accordion-item .accordion-button:not(.collapsed) {
  background-color: #d292ff;
  color: white;
}

.accordion-body img {
  transition: transform 0.3s ease;
}

.accordion-body:hover img {
  transform: scale(1.05);
}

@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-section p, .faq-section ul li {
  font-size: 1.2rem; /* Increase font size for readability */
  line-height: 1.6; /* Add line height for better spacing */
}
.accordion-button {
  font-size: 1.25rem; /* Increase button text size */
  font-weight: bold; /* Make it more prominent */
}
.faq-section h2 {
  font-size: 2.5rem; /* Enhance the main heading size */
}



/* product  card section */






/* Contact us section css */

.contact-section111 {
  height: 60vh;  
  background-color: #1c1c2e;
  color: white;
  text-align: center;
  padding: 80px 20px;
  margin-top: 70px;
  }
  .contact-section111 h1 {
  color: #ffffff;
  font-size: 3rem;
  font-weight: bold;
  }
  .contact-section111 p {
  font-size: 1.25rem;
  margin-top: 10px;
  }
  .contact-section111 .btn {
  margin-top: 20px;
  padding: 10px 30px;
  background-color: #8f6cf6; /* Button color */
  color: #fff;
  font-weight: 500;
  
  border-radius: 30px;
  display: inline-block;
  transition: background-color 0.3s ease;
  text-decoration: none;
  }
  .contact-section111 .btn:hover{
    background-color: #7347d8;
  }



  @media (max-width: 576px) {
  .contact-section111 {
    height: auto;  
   
  }
  .contact-section111 h1{
    size: 2rem;
  }
  }


  /* Footer css */
  
  /* Footer Css */
  /* Footer Css */
  .footer {
    background: linear-gradient(135deg, #1c1c2e, #6034ac, #1c1c2e);
    color: white;
    padding: 30px 10px;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    margin-top: 70px;
}
.footer h3 {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    color: #ffb703;
    margin-bottom: 20px;
}
.footer p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 2;
    /* font-weight: bold; */
}
.footer a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}
.footer a:hover {
    color: #ffb703;
    transform: translateX(5px);
}
.footer p:hover {
    color: #ffb703;
    transform: translateX(3px);
}
.footer .social-icons a {
    font-size: 24px;
    margin: 0 10px;
    color: white;
    transition: transform 0.3s ease, background 0.3s ease;
    border: 2px solid white;
    border-radius: 50%;
    padding: 10px;
}
.footer .social-icons a:hover {
    transform: scale(1.3);
    background-color: #ffb703;
    color: #1d3557;
}
.footer .logo img {
    width: 200px;
    height: 150px;
  
    animation: float-logo 3s infinite;
}
.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 15px;
    margin-top: 30px;
    font-size: 14px;
}
/* Animations */
@keyframes float-logo {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.footer .row > div {
    animation: fade-in 1.5s ease;
}
/* Decorative Elements */
.footer:before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}
.footer:after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 1;
}


/* pixel based services css start here */
.container01{
  font-family: 'Arial', sans-serif;

background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
color: #ffffff;
overflow-x: hidden;
width: 100%;

}

.card-section1{
  padding: 30px;
}
.section-title {
font-size: 2.5rem;
font-weight: bold;
color: #f4eeee;
margin-bottom: 2rem;
text-align: center;
position: relative;
}

.section-title::after {
content: '';
width: 100px;
height: 4px;
background: #007bff;
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
border-radius: 2px;
}
.card {
border: none;
border-radius: 15px;
overflow: hidden;
transition: transform 0.3s ease, box-shadow 0.3s ease;
background: rgba(255, 255, 255, 0.8);
backdrop-filter: blur(10px);
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.card:hover {
transform: translateY(-10px);
box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}
.card-img-top {
height: 300px;
object-fit: cover;
filter: brightness(0.9);
transition: filter 0.3s ease;
}
.card:hover .card-img-top {
filter: brightness(1);
}
.card-body {
padding: 1.5rem;
}
.card-title {
font-size: 1.5rem;
font-weight: bold;
color: #262b31;
margin-bottom: 1rem;
}
.card-text {
color: #161414;
margin-bottom: 1.5rem;
}
/* pixel based services css ends here */



/* types of led screen css starts here */
.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
  text-align: center;
  color: #333;
  animation: fadeInDown 1s ease-in-out;
}
.application-card {
  margin-bottom: 2rem;
  border: none;
  border-radius: 15px;
  padding: 1.5rem;
  background: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 1s ease-in-out;
}
.application-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.application-card img {
  border-radius: 10px;
  margin-bottom: 1rem;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}
.application-card:hover img {
  transform: scale(1.05);
}
.application-card h3 {
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #2c3e50;
}
.application-card p {
 padding-left: 20px;
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
  text-align: justify;
  text-justify: inter-word;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.application-card ul {
  list-style-type: none;
  padding-left: 0;
}
.application-card ul li {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: #555;
  display: flex;
  align-items: center;
}
.application-card ul li::before {
  content: "✔";
  color: #3498db;
  font-weight: bold;
  margin-right: 0.75rem;
}
.container {
  padding: 2rem;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Types of led screen ends here */