@import url("./common.css");




.duk-hero-section{
 width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: url("../images/gradient.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 100px;
    z-index: -1;
    min-height: 400px;
}
.duk-hero-section .duk-container{
    max-width: 1800px;
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
      padding: 50px;


}
.duk-container .duk-home {
    margin-top: 80px;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 5px;
}
.duk-container .duk-home .duk-home-icon {
  width: 24px;
  height: 24px;
  background-color: var(--aqua-color);
  mask: url('../images/iocns/home-solid.svg') no-repeat center;
  mask-size: contain;
  -webkit-mask: url('../images/iocns/home-solid.svg') no-repeat center;
  -webkit-mask-size: contain;
}
.duk-home p{
    color: var(--aqua-color);
    font-size: 16px;
    margin: 0;
}
.duk-container .duk-page-name{
font-size: 56px;
width: 100%;
text-align: center;
position: relative;
  z-index: 2; 
  margin-top: 50px;

}
.duk-page-name .duk-page-name-heading-img{
    position: absolute;
  top: 50px;
  bottom: 40px;
  left: 0;
  right: 0;
  margin: auto;
  width: 190px;
  height: auto;
  z-index: -2; 
  pointer-events: none;
}

.duk-container .duk-subheading{
max-width: 600px;
margin: auto;
font-size: 16px;
text-align: center;
}
.duk-faq-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 200px;

}

.duk-faq-section-inner {
  max-width: 1800px;
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
  padding: 0 200px; 
  padding: 40px;
  border-radius: 30px;
}

.duk-faq-section-inner .faq-item {
  margin-bottom: 10px;
  border-radius: 8px;
  background-color: var(--secondery-color);
  overflow: hidden;
  width: 100%;
}

.duk-faq-section-inner .faq-item input {
  display: none;
}

.duk-faq-section-inner .faq-item label {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 15px 20px;
  font-size: 16px;
  position: relative;
}

.duk-faq-section-inner .faq-item label::before {
  content: "+";
  margin-right: 10px;
  font-size: 20px;
  background: var(--gradient-color);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  max-width: 24px;
  max-height: 24px;
  text-align: center;
  transition: transform 0.3s;
}

.duk-faq-section-inner .faq-item input:checked + label::before {
  content: "−";
    background: var(--black);

}

.duk-faq-section-inner .faq-content {
  max-height: 0;
  overflow: hidden;
  background-color: var(--secondery-color);
  transition: max-height 0.3s ease;
  padding: 0 20px;
}

.duk-faq-section-inner .faq-item input:checked ~ .faq-content {
  max-height: 500px; 
  padding: 10px 53px 20px;
}

.duk-faq-section-inner .faq-content p, .faq-content h4, .faq-content ul {
  margin: 10px 0;
}

.duk-faq-section-inner .faq-content ul {
  padding-left: 20px;
}

.duk-faq-section-inner a {
  color: var(--aqua-color);
  text-decoration: none;
}
.duk-faq-section-inner a:hover {
  text-decoration: underline;
}

.other-question{
    color: var(--aqua-color);
}


@media (max-width: 1200px) {
.duk-faq-section {

  padding: 50px 100px;
}

}

@media (max-width: 900px) {
.duk-faq-section {

  padding:  50px;

}

.duk-faq-section-inner {
  
  padding: 20px;
}
}

@media (max-width: 768px) {

.duk-faq-section {
  padding: 50px 20px;
}
}
@media (max-width: 550px) {

.duk-hero-section{
min-height: 300px;
padding-bottom: 30px;

}
}