body {
    margin: 0;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
  }body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  * {
    max-width: 100%;
    box-sizing: border-box;
  }
  @media (max-width: 768px) {
    .example-class {
      margin: 0;
    }
  }
      
  /* row col container*/
  .container {
    width: 100%;
    margin: 0 auto;
}
.row {
    display: flex; 
    flex-wrap: wrap; 
    gap: 0px;
    flex-direction: row; 
}
.col-1{
    width: 5%;
    background-color:  #ffb9ce;
    border-radius: 20px;
}
.col-2 {
    margin-left: 3%;
    width: 90%;
    background-color: #ffffff;
    flex-direction: column;
}
 /*------------LOGO Image------------*/
    .logoimage{
        height:200px;
         width:80px;
    }
  /*------------- Menu Icon----------- */
  .menu-icon {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: #c52b6e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    border-radius: 0 5px 5px 0;
  }
  .menu-icon:hover {
    background-color: #4e4b4d;color: #fff;
  }
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 999;
  }
   .menu-overlay.active {
    display: flex;
  }
  .menu-overlay a {
    text-decoration: none;
    color: #fff;
    font-size: 2rem;
    margin: 20px 0;
    transition: color 0.3s;
  }
  .menu-overlay a:hover {
    color: #d40083;
  }
  body.menu-open {
    overflow: hidden;
  }
  /*-------------------- Slider ----------------- */
  .slider {
    position: relative;
    width: 98%;
    height: 600px;
    overflow: hidden;
    border-radius: 0 0 0 200px;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    transition: opacity 0.5s;
}

.slide img {
    width: 100%;
    display: block;
}

.controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.control {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 18px;
}

.control:hover {
    background-color: rgba(0, 0, 0, 0.8);
}
@media (max-width: 768px) {

  .control {
      padding: 8px;
      font-size: 16px;
  }
}

@media (max-width: 480px) {
  .control {
      padding: 6px;
      font-size: 14px;
  }
}
  /*-------------------- Slider dot ----------------- */

  .indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.indicator {
    width: 10px;
    height: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.indicator.active {
    background-color: rgb(234, 29, 97);
}
  /*-------------------- Why Conatainers ----------------- */
.why-container{
    width: 98%;
    padding: 1px;
    background-color: white ;
    border:3px solid #c52b6e;
    margin: 20px;
    color:#c52b6e;
    margin-left: 10px;
    border-radius: 20px;
    text-align: center;
}
.why-container p{
    font-size: 20px;
}
.why-container-2{
  margin-left: 10px;
    width: 98%;
    padding: 20px;
    background-color:#FFDEE8;
    border-radius: 0 50px 0 50px;
    text-align: center;
}
.why-container-2 p{
    font-size: 20px;
    margin: 60px;
}
  /*-------------------- Cursor  ----------------- */
.cursor {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #d40083 ;
    pointer-events: none;
    transform: translate(-50%, -50%);
    animation: cursorAnimation 0.3s ease-in-out;
  }

  .cursor::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #d40083 ;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  @keyframes cursorAnimation {
    0% {
      transform: translate(-50%, -50%) scale(0.9);
    }
    100% {
      transform: translate(-50%, -50%) scale(1);
    }
  }
  /*-------------------- Service Cards ----------------- */
  .protect {
  background-image:url('../images/download.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  }

  .protect .heading{
    text-align: center;
    padding:1rem;
}

.protect .box-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.protect .box-container .box{
    background:#fff;
    border:.1rem solid rgba(0,0,0,.1);
    padding:1rem;
    margin:1rem;
    width:20rem;
    border-radius: .5rem;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.2);
    text-align: center;
}

.protect .box-container .box img{
    height: 8rem;
    width:8rem;
}

.protect .box-container .box h3{
    font-size: 1.2rem;
    color:#9f0040;
    padding:10px;
}

.protect .box-container .box p{
    font-size: 1rem;
    color:#2f2b2b;
    padding:5px;
}

.protect .box-container .box:hover{
    transform:translateY(-1rem);
    .btn::before{
        content:'';
        position: absolute;
        top: 0; left: 0;
        height: 100%;
        width: 100%;
        z-index: -1;
        background:#444;
        clip-path: polygon(0 0, 100% 0, 0 0, 0% 100%);
        transition:.3s linear;
    }
    
    .btn:hover::before{
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }
}
  /*-------------------- Service Card Button  ----------------- */
.btn{
    display: inline-block;
    margin-top: 2px;
    padding:10px 40px;
    border-radius: 20px;
    background:#ca2660;
    color:#fff;
    overflow: hidden;
    position: relative;
    z-index: 0;
    font-size: 16px
}

/*----------------------Brings ------------------*/
.bring-container {
  width: 98%;
  margin: 50px auto;
  padding: 20px;
  background: linear-gradient(135deg, #e1a0a5, #ff85b4);
  border-radius: 15px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  color: #fff;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.bring-container h1 {
  color: #2a0412;
  font-size: 2rem;
  margin-bottom: 15px;
  animation: fadeIn 2s ease-in-out;
}
.bring-container p {
  font-size: 1.2rem;
  line-height: 1.6;
  animation: slideUp 2s ease-in-out;
}
.bring-btn {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #fff;
  color: #820e56;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s, background-color 0.3s;
}
.bring-btn:hover {
  background-color: #ffe5ec;
  transform: scale(1.1);
}
.floating-circles {
  position: absolute;
  top: -50px;
  left: -50px;
  height: 150px;
  width: 150px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}
.floating-circles2 {
  position: absolute;
  top: 50px;
  right: -40px;
  height: 100px;
  width: 100px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}
.floating-circles3 {
  position: absolute;
  top: -80px;
  right: -40px;
  height: 80px;
  width: 80px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}
.floating-circles:nth-child(2) {
  top: auto;
  bottom: 50px;
  right: 50px;
  animation-duration: 4s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(70px);
  }
}

/*-------------------- FAQ PART  ----------------- */
/* .faq-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.faq-image {
  flex: 1 1 40%;
  max-width: 300px;
  text-align: center;
}

.faq-image img {
  width: 100%;
}

.faq-questions {
  flex: 1 1 50%;
  max-width: 600px;
  margin: 20px;
}

.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #9f0040;
  padding-bottom: 10px;
}

.faq-item button {
  width: 100%;
  background-color: #ebd0d0;
  border: 1px solid #9f0040;
  padding: 10px 15px;
  font-size: 16px;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-item button:hover {
  background-color: #ac5578;
  color: white;
}

.faq-item button:focus {
  outline: none;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  padding: 0 15px;
  background-color: #fff;
}

.faq-content p {
  margin: 10px 0;
  font-size: 14px;
  line-height: 1.6;
}

  /*-------------------- WHY CHOOSE US PART ----------------- */
  /* .why-choose-us {
    background: url('../images/why3.png') no-repeat center center/cover;
    color: #830000;
    padding: 50px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .why-choose-us h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #3e051c;
  }
  
  .why-choose-us p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.6;
    color: #000000;
  }
  
  .why-choose-us button {
    background-color: #9f0040;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
  }
  
  .why-choose-us button:hover {
    border: 1px solid #9f0040;
    background-color: #fdd4d4;
    color:#210202;
  } */ 
  /*-----------------------Process part------------------*/


.process-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f5f5f5;
}

.process-column {
    flex: 1;
    text-align: center;
}
.process-img {
  max-width: 100%;
  height: auto;
}
.process-column h1{
  font-size: 2.5rem;
}


@media (max-width: 768px) {
  .process-row{
    flex-direction: column;
  }

}
  /*-------------------- Contact Us Part ----------------- */
.contact-container {
    margin-left: 5%;
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 90%;
  }
  .contact-text{
    flex:1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .contact-image {
    flex: 1;
    background: url('../images/contact-us-image.png') center/cover no-repeat;
    min-height: 300px;
  }

  .contact-form {
    flex: 2;
    padding: 20px;
    margin-right: 4%;
  }

  .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
    flex-direction: row;
  }
  .form-row input,
  .form-row textarea {
    width: 100%;
    padding: 10px;
    border:1px solid #9f0040;
    border-radius: 4px;
    font-size: 14px;
    background-color: #f9afca33;
  }

  .form-row input {
    flex: 1;
    min-width: calc(50% - 10px);
  }
  .form-row select {
    flex: 1;
    min-width: calc(50% - 10px);
  }
  .form-row select{
    width: 100%;
    padding: 10px;
    border:1px solid #9f0040;
    border-radius: 4px;
    font-size: 14px;
    background-color: #f9afca33;
  }

  .form-row textarea {
    min-height: 100px;
    resize: vertical;
  }

  .form-button {
    padding: 10px 20px;
    background-color:/* #f9afb3; */#9f0040;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    border:2px solid #9f0040;
  }
  .form-button:hover{
    background-color: #ffffff;
    color: #9f0040;

  }
    
   /*-------------------- FOOTER PART ----------------- */ 
.footer{
  min-height: auto;
  padding-top: 0;
   background:linear-gradient(135deg,#e9cfde, #b5949c);
   
}

.footer .box-container{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.footer .box-container .box{
  flex:2 1 1rem;
  margin:1rem;
}

.footer .box-container .box h3{
  font-size: 1.2rem;
  color:#000000;
  padding-bottom: 0.1rem;
  font-weight: normal;
}

.footer .box-container .box p{
  font-size: 1rem;
  color:#000000;
  padding:0.1rem 0;
}

.footer .box-container .box p i{
  padding-right: 1rem;
  color:var(--red);
}

.footer .box-container .box p{
  font-size: 1rem;
  color:#000000;
  padding:0.01rem 0;
  display: block;
}

.footer .box-container .box a:hover{
  color:var(--red);
}

.footer .box-container .box .share{
  display: flex;
  flex-wrap: wrap;
  padding:1rem 0;
}

.footer .box-container .box .share a{
  padding: 0.2rem;
  height:2rem;
  width:2rem;
  line-height: 0.5rem;
  text-align: center;
  margin-right: 0.3rem;
  color: #000000;
}

.footer .box-container .box .share a:hover{
  background:#9f0040;
}

.footer .credit{
  padding:0.3rem 0.11rem;
  text-align: center;
  color:#000000;
  font-weight: normal;
  font-size: 1rem;
  border-top: .1rem solid #fff3;
}

.footer .credit a{
  color:var(--red);
}

.footer h2{
  color: #500724;
  padding: 3%;
}
.footer-row{
  display: flex;
  flex-direction: row;
  width: 100%;
}
.footer-col-1{
  width: 25%;
}
.footer-col-2{
  width: 75%;
}
.footer-icon, .footer-icon-2 {
  height: auto;
  width: auto; 
  max-width: 100%;
}

.footer-icon, .footer-icon-2 {
  max-width: 1.6rem;
  max-height: 1.6rem; 
}


/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-icon, .footer-icon-2 {
    max-width: 1.5rem;
    max-height: 1.5rem;
  }
}

@media (max-width: 480px) {
  .footer-icon, .footer-icon-2 {
    max-width: 1rem;
    max-height: 1rem; 
  }
}

/* -----------------------RESPONSIVENES-------------------------RESPONSIVENES----------------------RESPONSIVENES-----------------------------------------*/
@media (max-width: 992px) {
    .logoimage{
        height:160px;
         width:50px;
    }
    .slider-container {
        border-radius: 0 0 0 160px;
    }
    .why-container p{
        font-size: 19px;
    }
    .col-2 {
        margin-left: 1%;
    }
    .why-container-2 p{
        font-size: 14px;
        margin:15px;
    }
    
    .contact-container {
        margin-left: 10%;
    }
    .slider {
      width: 98%;
      height: 450px;
      border-radius: 0 0 0 150px;
  }

}
@media (max-width: 768px) {
    .logoimage{
        height:130px;
         width:40px;
    }
    .slider-container {
        border-radius: 0 0 0 130px; 
    }
    .why-container-2 p{
        margin:13px;
    }
    .contact-container {
        margin-left: 5%;
}
.faq-container {
  flex-direction: column;
}
.faq-image,
.faq-questions {
  flex: 1 1 100%;
  max-width: 100%;
}
.contact-container {
  flex-direction: column;
}
.form-row input {
  min-width: 100%;
}
.footer .box-container .box {
  flex: 1 1 calc(100% - 2rem); /* Full width for smaller screens */
  justify-content: center;
  place-items: center;
}

.footer-row {
  flex-direction: column;
  justify-content: center;
  place-items: center;
}

.footer-col-1, .footer-col-2 {
  width: 100%;
  justify-content: center;
  place-items: center; /* Stack columns */
}

.footer h2 {
  text-align: center;
  padding: 2%;
}
.slider {
  width: 98%;
  height: 260px;
  border-radius: 0 0 0 90px;
}

 }
@media (max-width: 600px) {
    .logoimage{
        height:80px;
         width:28px;
    }
    .slider-container {
        border-radius: 0 0 0 100px;
    }
    .col-1{
        border-radius: 10px;
        width: 7%;
    }
    .col-2 {
        margin-left: 3%;
    }
    .why-container{
      width: 94%;
      background-color: white ;
      border:2px solid #c52b6e;
      margin-left: 7px;
      border-radius: 4px;
  }
  .why-container-2{
    width: 94%;
    margin-left: 7px;
  }
    .why-container p{
        font-size: 18px;
    }
    .why-container-2 p{
        font-size: 12px;
        margin:3px;
    }
    .contact-container {
        margin-left: 2%;
        width: 97%;
}
.bring-container{
  width: 90%;
  margin-left: 7px;
}

.footer h2{
  font-size: 16px;
}
.footer-col-1{
  width: 25%;
}
.footer-col-2{
  width: 71%;
}
.footer img{
  height: 100px;
  width: 160px;
}
.bring-container {
  padding: 15px;
}
.bring-container h1 {
  font-size: 1.5rem;
}
.bring-container p {
  font-size: 1rem;
}
.footer .box-container .box {
  flex: 1 1 calc(100% - 2rem);
  justify-content: center;
  place-items: center; /* Full width for smaller screens */
}

.footer-row {
  flex-direction: column;
}

.footer-col-1, .footer-col-2 {
  width: 100%; /* Stack columns */
}

.footer h2 {
  text-align: center;
  padding: 2%;
}
.slider {
  width: 98%;
  height: 240px;
  border-radius: 0 0 0 90px;
}

 }

 @media (min-width: 768px) and (max-width: 991px) {
  
.footer h2{
  font-size: 0.9rem;
}
.footer-col-1{
  width: 25%;
}
.footer-col-2{
  width: 71%;
}
.footer img{
  height: 130px;
  width: 190px;
}
.footer .box-container .box {
  flex: 1 1 calc(100% - 2rem);
  justify-content: center;
  place-items: center; /* Full width for smaller screens */
}

.footer-row {
  flex-direction: column;
}

.footer-col-1, .footer-col-2 {
  width: 100%; /* Stack columns */
}

.footer h2 {
  text-align: center;
  padding: 2%;
}

 }