/* navbar code */
.navbar {
    background-color: #ffffff00;
    overflow: hidden;
    /* background: none !important; */
    /* backdrop-filter: blur(10px); */
    border-bottom: 1px solid rgba(128, 128, 128, 0);
    width: 77%;
    margin: auto;
    /* z-index: 1000 !important; */
    height: auto !important;
}

.nav-logo1 {
    height: 80px;
    width: 200px;
}

/* .theme-icon-light{
  display: none;
} */

.navbar-toggler {
    box-shadow: none !important;
    border: none !important;
}


.item {
    font-size: 15px !important;
    color: #ffffff !important;
    transition: transform 0.33s ease-in-out !important;
}

.item:hover {
    transform: translateY(-7px);
    text-decoration: none !important;
}

.conbtn {
    padding: 14px 10px !important;
    border-radius: 25px !important;
    font-size: 14px !important;
    letter-spacing: 2px !important;
    background: linear-gradient(135deg, #88BC7D 0%, #88BC7D 100%) !important;
    color: #000000 !important;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.059);
    overflow: hidden !important;

    -webkit-transition: all 0.2s ease-in !important;
    -moz-transition: all 0.2s ease-in !important;
    transition: all 0.2s ease-in !important;
}

.conbtn:hover {
    /* box-shadow: 0 0 10px 2px #EFB355 !important; */
    -webkit-transition: all 0.2s ease-out !important;
    -moz-transition: all 0.2s ease-out !important;
    transition: all 0.2s ease-out !important;
    color: #fff !important;
}

.conbtn:active {
    box-shadow: 0 0 0 0 transparent !important;
    -webkit-transition: box-shadow 0.2s ease-in !important;
    -moz-transition: box-shadow 0.2s ease-in !important;
    transition: box-shadow 0.2s ease-in !important;
}

.drkmd {
    background-color: #4F4F4F;
    color: white;
    border-radius: 25px;
    padding: 0px 10px;
    font-size: 18px;
    width: 100%;
    height: 42px;
    border: none;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}


.section1 {
    position: relative;
    background-color: #474747 !important;
    background-image: url('./images/herobg.png');
    background-position: center;
    background-size: cover;
    /* overflow: hidden; */
    z-index: -1;
    /* height: 100vh; */
}

.head1{
    font-size: 64px;
    letter-spacing: 0.5px;
    color: white;
}


.zoom1{
    transition: transform 0.3s ease-in-out !important;
    cursor: pointer;
  }
  
  .zoom1:hover{
  transform: scale(1.1) !important;
  }



@media (min-width: 1380px) and (max-width: 1450px) {
    .herocon1 {
        bottom: -27.5rem !important;
        left: 117px !important;
    }

    .navbar {
        width: 86% !important;
    }
}


@media (min-width: 2500px) and (max-width: 2590px) {
    .herocon1 {
        bottom: -0.5rem !important;
        left: 216px !important;
    }

    .navbar {
        width: 46% !important;
    }
}



.site-footer {
    padding: 0 0 20px;
    font-size: 19px;
    line-height: 24px;
  }
  
  .site-footer hr {
    border-top-color: #545454;
    opacity: 0.5;
    width: 90%;
    margin: auto;
  }
  
  .site-footer hr.small {
    margin: 20px 0
  }
  
  .site-footer h6 {
    font-size: 24px;
    text-transform: uppercase;
    margin-top: 5px;
    letter-spacing: 2px
  }
  
  .site-footer a {
    text-decoration: none;
  }
  
  .site-footer a:hover {
    text-decoration: none;
  }
  
  .footer-links {
    padding-left: 0;
    list-style: none
  }
  
  .footer-links li {
    margin-top: 10px !important;
    display: block
  }
  
  .footer-links a {
  
    color: #000
  }
  
  .footer-links a:active,
  .footer-links a:focus,
  .footer-links a:hover {
    color: #3366cc;
    text-decoration: none;
  }
  
  .footer-links.inline li {
    display: inline-block
  }
  
  .site-footer .social-icons {
    text-align: right
  }
  
  .site-footer .social-icons a {
    width: 40px !important;
    height: 40px !important;
    line-height: 40px;
    margin-left: 6px;
    margin-right: 0;
    border-radius: 100%;
    background-color: #33353d
  }
  
  
  @media (max-width:991px) {
    .site-footer [class^=col-] {
      margin-bottom: 30px
    }
  }









  /* faqs */
  /* Detail styling */
.details{
    --padding: 10px;
    border: 2px solid black;
    border-radius: 10px;
    /* box-shadow: 0 2px 5px rgba(0,0,0,0.2); */
  }
  
  .details + .details{
    margin-top: 15px;
  }
  
  .details__title{
    --width: 20px;
    --height: 3px;
    --radius: 1px;
    --color: currentColor;
    margin:0;
    padding: 25px 15px ;
    cursor: pointer;
    transition: all .2s ease-in-out;
    position: relative;
    color: #88BC7D;
  }
  

  .details__container[open] .details__title{
    background-color: #ffffff;
  }
  
  .details__summary::marker{
    content:'';
  }
  
  .details__desc{
    visibility: hidden;
    display: grid;
    grid-template-rows: 0fr;
    transition: all .2s ease-in-out;
    overflow: hidden;
    padding-inline: var(--padding);
    pointer-events: none;
  }
  
  .details__container[open] + .details__desc{
    visibility: visible;
    grid-template-rows: 1fr;
    padding-block: var(--padding);
  }
  
  .details__desc-inner{
    min-height: 0;
    line-height: 36px;
    margin-left: 60px;
    margin-right: 20px;
  }

  .title{
    width: 90%;
  }

  .sign1{
    width: 10%;
    background-color: #000;
    color: #88BC7D;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
  }


  .details__container[open] .sign1 {
    background-color: #88BC7D; /* example color */
    color: #000; /* example color */
  }
  
  .icon-minus {
    display: none !important;
  }
  
  .details__container[open] .icon-plus {
    display: none !important;
  }
  
  .details__container[open] .icon-minus {
    display: inline !important;
  }

/* faqs end */


/* privacy Policy start */



  @media (max-width: 768px) {


    .navbar {
        width: 100% !important;
    }

    .navbar .navbar-nav .nav-item {
        width: 100%;
        text-align: start !important;

    }

    .nav-logo1 {
        height: 60px !important;
        width: 150px !important;
    }

    .section1 {
        background-image: url('./images/heromb.png') !important;
    }

    .title{
        width: 85% !important;
      }
    
      .sign1{
        width: 15% !important;
      }

        
  .details__desc-inner{
    margin-left: 13px !important;
    margin-right: 5px !important;
  }


}



.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}


/* Initial dark mode styles */
body {
  background-color: #0D1011 !important;
  color: #fff !important; /* optional for text visibility */
}

h1, h2, h3, h4, h5, h6, p, span, div {
  color: inherit; /* inherit from body */
}

/* Light mode (black text) */
body.light-mode {
  background-color: #fff !important;
  color: #000 !important;
}

/* Toggle switch styles */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.switch input {display: none;}
.slider {
  position: absolute;
  cursor: pointer;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
  top: 0; left: 0; right: 0; bottom: 0;
}
.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}
input:checked + .slider {
  background-color: #2196F3;
}
input:checked + .slider:before {
  transform: translateX(26px);
}
