/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: linear-gradient(#5D3B8E, #1F3A93 100%);
}

section {
  padding: 60px 10px;
  text-align: center;
  scroll-margin-top: 150px;
}

h2 {
  margin-bottom: 20px;
}

/* Navbar Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: linear-gradient(to right, #3E2C60, #1F3A93 100%);
  color: white;
  filter: drop-shadow(2px 2px 10px #000000);
  position: fixed;
  top: 0;
  width: 100%;
  z-index:1;
}

.nav-links {
  margin-right:150px;
  list-style: none;
  display: flex;
  gap: 50px;
}

.nav-links li {
  display: inline;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 24px;
  filter: drop-shadow(5px 5px 10px #000000);
}

.logo img {
 padding:0;
 max-width: 95px;
 max-height: 95px;
 border-radius: 50%;
 filter: drop-shadow(5px 5px 10px #000000);
}

/* Hero Section */
.hero-section {
  padding: 100px 20px;
  filter: drop-shadow(5px 5px 10px #000000);
}

.hero-content {
  max-width: 600px;
  margin: 100px 300px 0 300px;;
  text-align: left;
  color:white;
}

.hero-content h1 {
  margin:0;
  font-size: 2.5rem;
}

.hero-content h2 {
  margin:1rem 0;
}

.hero-content p {
  font-size: 1.2rem;
}

/* Product Section */
.product-section {
  margin: 0 300px;
  padding: 0;
  display: flex;
  justify-content: space-between;
  filter: drop-shadow(5px 5px 10px #000000);
}

.product-card {
  flex: 1;
  background-color: #eee;
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  color: #5D3B8E;
  font-weight: 700;
  display: flex;
}
.product-card img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px; 
} 
.product-card h2 {
  margin: 0;
  color: #3E2C60;
  font-size: 1.8rem;
}
.product-card h3 {
  margin: 0;
  color: #3E2C60;
  font-weight: lighter;
  font-size: 50px;
}


.carousel-slider {
    display: flex;
    overflow: hidden;
}

.slide {
    width: 100%;
    min-height: 300px;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    transition: transform 0.5s ease;
    display: none;
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 10px; 
}

.slide.active {
    display: flex;
}

.slide img {
  width: 64px;
  height: 64px;
}

.arrow {
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px;
    font-size: 26px;
    border-radius: 20px;
}

.prev {
    right: 200px;
}

.next {
    right: 10px;
}

.controls {
  display: flex;
  gap: 10px;
  margin-top: 50px;
}


.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #D9D9D9;
    border-radius: 50%;
    display: inline-block;
    filter: drop-shadow(2px 2px 5px #000000);
}

.dots {
  text-align: center;
  display: flex;
  gap: 5px;
}

.dot.active {
    background-color: #5D3B8E;
}

/* References Section */
.references-section {
  margin: 0px 280px;

}

.reference-container {
  display: flex;
  gap: 20px;
  justify-content: space-around;
}

.reference-card {
  background-color: #eee;
  padding: 20px;
  border-radius: 10px;
  flex: 1;
  text-align: left;
  filter: drop-shadow(2px 2px 10px #000000);
  display: flex;
  flex-direction: column;
}

.reference-card-left {
  padding: 20px;
  border-radius: 10px;
  flex: 1;
  text-align: left;
  filter: drop-shadow(2px 2px 10px #000000);
}


h3 {
  margin: 0;
  font-weight: lighter;
  font-size: 50px;
}

.reference-card p {
  margin: 0;
  color: #ffffff;
  font-weight: bold;
  font-weight: lighter;
}
.reference-grid {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.reference-card-flex {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  margin: 0 auto;
}
.reference-card-flex h3 {
  color:#5D3B8E
}
.reference-card-flex p {
  color:#5D3B8E
}
.img-flex {
  padding: 20px;
  align-items: center;
}
.long-card {
  color: #eee;
  background: linear-gradient(#3E2C60,#1F3A93);
  width: 30%;
  flex: 1;
  
}

/* FAQ Section */
.faq-section {
  margin: 0 300px;
  padding: 0;
  color:#f4f4f4;
  display: flex;
  justify-content: space-between;
  border-radius: 10px;
  filter: drop-shadow(5px 5px 10px #000000);
  flex-direction: column;
  background: linear-gradient(#1F3A93,#3E2C60);
}

.faq {
  margin: 20px 0;
}

.faq h4 {
  font-size: 1.4rem;
  padding: 12px;
}

.faq p {
  font-size: 1.2rem;
  color: #dddddd;
  padding: 12px;
}

/* Contact Section */
.contact-section {
  margin: 50px 300px;
  padding: 0;
  color:#f4f4f4;
  display: flex;
  justify-content: space-between;
  filter: drop-shadow(5px 5px 10px #000000);
  flex-direction: column;
  border-radius: 10px;
  background: white;
  color: #5D3B8E;
}

form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
}

label {
  display: block;
  margin-bottom: 5px;
}

input, textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.btn-primary {
  background-color: #3E2C60;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  font-size:24px;
  cursor: pointer;
  filter: drop-shadow(1px 1px 2px #5c5c5c);
  margin: 10px 0;
  width: 210px;
}


.card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
}

.card-image {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;

}

.card-image img {
  width: 80%;
  height: 80%;
  object-fit: cover;
  border-radius: 10px;
}

footer {
  background: linear-gradient(to right, #1F3A93, #3E2C60 100%);
  filter: drop-shadow(2px 2px 10px #000000);
  color: white;

}
.footer_wrapper {
  margin: 0 300px;
  padding: 50px 0;
  display: flex;
  justify-content: space-between;
}

.footer_items {
  display: flex;
  flex-direction: column;
}

.footer_links li{
  
  
  text-decoration: underline;
  gap: 50px;
}

.footer_links ul {
  list-style: none;
  padding:0px;
}

.footer_links li a { 
  list-style: none;
  color: white;
}
/* Mobile Responsive */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
  }

  .nav-links {
    flex-direction: column;
  }

  .reference-card {
    flex: 1 1 100%;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
  

  .faq h4 {
    font-size: 1rem;
  }

  .faq p {
    font-size: 0.9rem;
  }
}


