* {
  margin: 0;
  padding: 0;
}

/* website color code */
:root {
  --font-color: rgb(82, 82, 253);
  --light-text-color: #FEFFEF;
  --btn-color: linear-gradient(to right, #5252fd, #5d40a0);
  --btn-h-color: linear-gradient(to right, #5d40a0, rgb(82, 82, 253));
}

/* website scroll bar */
/* For vertical scrollbar */
body {
  overflow-x: auto;
  /* Make sure horizontal scrolling is enabled if needed */
}

::-webkit-scrollbar {
  width: 12px;
  /* Adjust the width of the vertical scrollbar */
}

/* For horizontal scrollbar */
::-webkit-scrollbar {
  height: 10% !important;
  /* Adjust the height of the horizontal scrollbar */
}

/* Scrollbar track (background) */
::-webkit-scrollbar-track {
  background-color: var(--light-text-color);

}


::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background: var(--btn-color);
  /* border-radius: 30px; */
}


/* section-1 css start here */

.section-1 {
  height: 620px;
  width: 100% !important;
  display: flex;
  justify-content: center;
  padding-top: 200px;
  gap: 130px;
  background-image: linear-gradient(to right, rgba(10, 10, 10, 0.694), #5d40a099), url("./images/lady4.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 80%;
  border-bottom-right-radius: 180%;
  box-shadow: 0px 10px 29px -8px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 0px 10px 29px -8px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 10px 29px -8px rgba(0, 0, 0, 0.75);
}
.sec-1-content {
  margin-top: -130px;
  /* border: 2px solid red; */
  width: 550px;
  height: 500px;
  /* background-color: gray; */
  color: var(--light-text-color);
}
.sec-1-content h2{
  padding: 10px;
  text-transform: uppercase;
  font-size: 27px;
  /* text-align: left; */
  margin-left: -10px;
  font-weight: 900;
  font-size: 35px ;
  color: var(--light-text-color);
}

/* .sec-1-content p{
  padding-left: 20px;

} */
.sec-1-content ul {
  list-style: none; /* Remove default bullets */
  padding: 0;
 
}

.sec-1-content ul li {
  position: relative;
  padding-left: 30px; /* Add space for the tick mark */
}

.sec-1-content ul li::before {
  content: '★'; /* Unicode for star */
  position: absolute;
  color: white;
  left: 0;
  top: 0;
 
}

.sec-1-content-btn {
  margin-top: 30px;
  width: 140px;
  height: 40px;
  border: none;
  background: var(--btn-color);
  color: var(--light-text-color);
  margin-left: 10px;
  border-radius: 1rem;
  box-shadow: 0px 0px 73px 0px rgba(255, 255, 255, 0.75);
  -webkit-box-shadow: 0px 0px 73px 0px rgba(255, 255, 255, 0.75);
  -moz-box-shadow: 0px 0px 73px 0px rgba(255, 255, 255, 0.75);

  &:hover {
    background: var(--btn-h-color);
  }

}
.points {
  display: flex;
  justify-content: space-between;
}

.sec-1-order-form {
  /* border: 2px solid rgb(115, 255, 0); */
  width: 400px;
  height: 550px;
  padding: 10px;
  margin-top: -150px;
  opacity: 0; /* Initially hidden */
  transform: translateY(-20px); /* Move slightly up */
  animation: fadeDown 2s forwards; /* Animation name and duration */
}
@keyframes fadeDown {
  from {
    opacity: 0; /* Start fully transparent */
    transform: translateY(-50px); /* Start position slightly above */
  }
  to {
      opacity: 1; /* End fully opaque */
      transform: translateY(0); /* End position at its original place */
    }
  }
  
  .sec-1-order-form .form {
  padding-top: 60px;
  /* padding-left: 50px; */
  /* border: 2px solid rgb(255, 0, 81); */
  border: none;
  height: 100%;
  width: 100%;
  /* From https://css.glass */
  background: rgba(255, 255, 255, 0.613);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(18.3px);
  -webkit-backdrop-filter: blur(8.3px);
  /* border: 1px solid rgba(255, 255, 255, 0.3); */
  
}

.sec-1-order-form form {
  padding-top: 20px;
}

.form label {
  /* color: var(--light-text-color); */
  padding-left: 30px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 7px;
  font-weight: 700;
}

.form select,
.form input {
  margin-left: 30px;
  height: 35px;
  border-radius: 0.5rem;
  width: 80%;
  border: none;
  text-align: left;
  padding-left: 10px;
  padding-right: 0px;
  margin-bottom: 7px;
  /* color: #2575fc; */
}

.form-heading {

  margin-top: -60px;
  border-radius: 1rem;
  background: var(--btn-color);
}

.form-heading h1 {
  font-size: 18px;
  padding: 15px;
  text-align: center;
  color: var(--light-text-color);
}


.order-btn {
  width: 120px !important;
  background: var(--btn-color);
  color: var(--light-text-color);
  border: none;
  margin-left: 35% !important;
  /* margin: auto; */
  padding-top: 10px;
  padding-bottom: 10px;
  /* padding-left: 20px; */
  /* padding-right: 20px; */
  border-radius: 20px;
  /* margin-right: 10% !important; */
 /* margin: auto; */
  text-align: center !important;
  transition: transform 0.3s ease, background-color 0.3s ease;
  
  
  &:hover {
    transform: scale(1.1);
    
    background: var(--btn-h-color);
  }
}

.sec-1-content-btn {
  width: 140px;
  height: 40px;
  border: none;
  background: var(--btn-color);
  color: var(--light-text-color);
  margin-left: 10px;
  border-radius: 1rem;
  
  &:hover {
    background: var(--btn-h-color);
  }
  
}








.price-item-container {
  margin-left: 30px;
  margin-right: 30px;
  padding: 10px;
  /* background: rgba(255, 255, 255, 0.15); */
  border-radius: 10px;
  margin-bottom: 15px;
  margin-top: -30px;
  /* box-shadow: 0 2px 10px rgba(0,0,0,0.05); */
   display: flex;
  justify-content: space-between;
}

.price-item {
  /* display: flex;
  justify-content: space-between; */
  padding: 5px 0;
}

.price-label {
  font-weight: 500;
  color: black;
}

.price-amount {
  font-weight: bold;
  color: black;
}









@media (max-width: 768px) {
  .section-1 {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 40px !important;
    padding: 30px 20px 40px 20px !important;
    height: auto !important;
    border-bottom-left-radius: 20px !important;
    border-bottom-right-radius: 20px !important;
    background-attachment: scroll !important;
  }

  .sec-1-content {
    margin-top: 0 !important;
    width: 100% !important;
    height: auto !important;
    text-align: left !important;
  }

  .sec-1-content h2 {
    font-size: 20px !important;
    text-align: left !important;
    padding: 0 0 10px 0 !important;
  }

  .sec-1-content p {
    padding: 0 !important;
    font-size: 14px !important;
  }

  .sec-1-content ul li {
    padding-left: 20px !important;
    font-size: 14px !important;
  }

  .sec-1-content-btn {
    margin: 20px 0 0 0 !important;
    display: inline-block !important;
  }

  .points {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
  }

  .sec-1-order-form {
    width: 100% !important;
    margin-top: 0 !important;
    height: auto !important;
    animation: none !important;
    transform: translateY(0) !important;
    opacity: 1 !important;
  }

  .sec-1-order-form .form {
    padding-top: 0px !important;
  }

  .form label {
    font-size: 14px !important;
    padding-left: 20px !important;
  }

  .form select,
  .form input {
    margin-left: 20px !important;
    width: 85% !important;
    height: 38px !important;
    font-size: 14px !important;
  }

  .form-heading {
    margin-top: 0 !important;
  }

  .form-heading h1 {
    font-size: 16px !important;
    padding: 10px !important;
  }

  .order-btn {
    width: 120px !important;
    margin: 20px 0 30px 0px !important;
    display: inline-block !important;
  }
}






















.section-title {
      font-size: 2.2rem;
      margin-bottom: 20px;
      font-weight: 700;
    }
    
    .text-primary {
      color: #5252fd;
    }
    
    /* ===== Assignment Help Section ===== */
    .assignment-help {
      background-color: #f9f9ff;
      padding: 100px 20px;
      position: relative;
      overflow: hidden;
      min-height: 100vh;
    }
    
    .help-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }
    
    .help-content {
      position: relative;
      z-index: 2;
      height: 100%;
    }
    
    .image-wrapper {
      position: sticky;
      top: 120px;
      height: calc(100vh - 200px);
      display: flex;
      align-items: center;
    }
    
    .help-image {
      position: relative;
      width: 100%;
      height: 100%;
      max-height: 600px;
      text-align: center;
      z-index: 2;
    }
    
    .help-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 16px;
      box-shadow: 0 15px 40px rgba(82, 82, 253, 0.15);
      transition: transform 0.5s ease;
    }
    
    .help-image:hover img {
      transform: scale(1.03);
    }
    
    /* Small floating images */
    .floating-icon {
      position: absolute;
      width: 70px;
      height: 70px;
      border-radius: 18px;
      background: white;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 8px 25px rgba(0,0,0,0.1);
      animation: float 6s ease-in-out infinite;
      z-index: 3;
      padding: 10px;
    }
    
    .floating-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      filter: drop-shadow(0 2px 5px rgba(0,0,0,0.1));
    }
    
    .icon-1 {
      top: -10px;
      right: 10px;
      animation-delay: 0s;
      background: #ffebee;
    }
    
    .icon-2 {
      bottom: 50px;
      right: -30px;
      animation-delay: 1s;
      background: #e8f5e9;
    }
    
    .icon-3 {
      top: 50%;
      left: -30px;
      transform: translateY(-50%);
      animation-delay: 2s;
      background: #e3f2fd;
    }
    
    @keyframes float {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-15px); }
      100% { transform: translateY(0px); }
    }
    
    .help-steps {
      display: grid;
      gap: 25px;
      margin-top: 40px;
    }
    
    .step-item {
      display: flex;
      gap: 20px;
      align-items: flex-start;
      background: white;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      transition: all 0.3s ease;
    }
    
    .step-item:hover {
      transform: translateX(10px);
      box-shadow: 0 10px 25px rgba(82, 82, 253, 0.15);
    }
    
    .step-icon {
      width: 60px;
      height: 60px;
      background: rgba(82, 82, 253, 0.1);
      border-radius: 16px;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-shrink: 0;
      color: #5252fd;
      font-size: 1.8rem;
      transition: all 0.3s ease;
    }
    
    .step-item:hover .step-icon {
      background: linear-gradient(135deg, #5252fd, #8a2be2);
      color: white;
      transform: rotate(10deg) scale(1.1);
    }
    
    .step-content h4 {
      font-size: 1.3rem;
      margin-bottom: 10px;
      color: #5d40a0;
    }
    
    .step-content p {
      color: #666;
      margin: 0;
    }
    
    /* Decorative elements */
    .bg-blob {
      position: absolute;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: rgba(82, 82, 253, 0.05);
      filter: blur(50px);
      z-index: 1;
    }
    
    .bg-blob-1 {
      top: -100px;
      left: -100px;
    }
    
    .bg-blob-2 {
      bottom: -150px;
      right: -100px;
    }
    
    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .fade-in-up {
      animation: fadeInUp 0.8s ease-out forwards;
      opacity: 0;
    }
    
    /* ===== Responsive Adjustments ===== */
    @media (max-width: 992px) {
      .help-image {
        max-height: 500px;
      }
    }
    
    @media (max-width: 768px) {
      .assignment-help {
        min-height: auto;
        padding: 80px 20px;
      }
      
      .help-container {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      
      .image-wrapper {
        position: relative;
        top: auto;
        height: auto;
        order: -1;
      }
      
      .help-image {
        max-height: 400px;
      }
      
      .floating-icon {
        width: 60px;
        height: 60px;
      }
      
      .icon-1 {
        top: 10px;
        left: -20px;
      }
      
      .icon-2 {
        bottom: 20px;
        right: -20px;
      }
      
      .icon-3 {
        right: -20px;
      }
    }
    
    @media (max-width: 480px) {
      .assignment-help {
        padding: 60px 20px;
      }
      
      .section-title {
        font-size: 1.8rem;
      }
      
      .help-image {
        max-height: 300px;
      }
      
      .step-item {
        flex-direction: column;
        gap: 15px;
      }
      
      .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
      }
      
      .floating-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
      }
    }










/* Main Container */
        .content-services {
          margin-top: 40px !important;
            width: 100%;
            margin: auto;
            max-width: 1200px;
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
            overflow: hidden;
            position: relative;
            color: #fff;
            animation: fadeIn 1s ease-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Content Grid Layout */
        .services-container {
            display: flex;
            flex-direction: column;
            padding: 50px;
        }

        @media (min-width: 992px) {
            .services-container {
                flex-direction: row;
                justify-content: space-between;
            }
        }

        /* Image Gallery */
        .services-gallery {
            flex: 1;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 30px;
            max-width: 600px;
        }

        .gallery-item {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .gallery-item:first-child {
            grid-column: 1 / 3;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
        }

        .gallery-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover .gallery-image {
            transform: scale(1.05);
        }

        .image-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
            padding: 20px;
            color: white;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover .image-caption {
            opacity: 1;
        }

        @media (min-width: 992px) {
            .services-gallery {
                margin-bottom: 0;
                margin-right: 50px;
            }
        }



















        /* Content Section */
        .services-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            max-width: 600px;
        }

        /* Icon Styles */
        .services-icon-container {
          margin-top: 10px;
            display: flex;
            justify-content: start;
            width: 100%;
            margin-bottom: 10px;
        }

        .services-icon {
            width: 70px;
            height: 70px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
            transition: all 0.4s ease;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .services-icon:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(15deg) scale(1.1);
            box-shadow: 0 0 35px rgba(0, 0, 0, 0.3);
        }

        .icon-svg {
            width: 40px;
            height: 40px;
            color: #fff;
            transition: transform 0.3s ease;
        }

        .services-icon:hover .icon-svg {
            transform: scale(1.2);
        }

        /* Typography */
        .services-heading {
            font-size: 2.8em;
            margin-bottom: 20px;
            line-height: 1.2;
            background: linear-gradient(to right, #fff, #e6f0ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: slideInLeft 0.8s ease-out;
            position: relative;
            text-align: left;
            width: 100%;
        }

        .services-heading::after {
            content: '';
            position: absolute;
            bottom: -10px;
            right:77%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #ffffff, #ffffff);
            border-radius: 2px;
        }

        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .services-description {
            font-size: 1.15em;
            line-height: 1.7;
            margin-bottom: 30px;
            animation: slideInRight 1s ease-out 0.2s forwards;
            opacity: 0;
        }

        @keyframes slideInRight {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        /* Features List */
        .services-features {
            margin-bottom: 30px;
            width: 100%;
            animation: fadeIn 1s ease-out 0.4s forwards;
            opacity: 0;
        }

        .feature-card {
            display: flex;
            align-items: left;
            margin-bottom: 15px;
            padding: 12px 15px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateX(5px);
        }

        .feature-icon {
            width: 24px;
            height: 24px;
            margin-right: 15px;
            color: white;
        }

        /* CTA Button */
        .cta-button {
            display: inline-flex;
            align-items: left;
            text-decoration: none;
            color: #fff;
            font-weight: 600;
            font-size: 1.1em;
            padding: 12px 25px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
            align-self: flex-start;
        }

        .cta-button:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-3px);
            color: white;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .button-arrow {
            width: 20px;
            height: 20px;
            margin-left: 10px;
            transition: transform 0.3s ease;
        }

        .cta-button:hover .button-arrow {
            transform: translateX(5px);
        }

        /* Background Animation */
        .bg-animation {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: linear-gradient(-45deg, #6a11cb, #2575fc, #6a11cb, #2575fc);
            background-size: 400% 400%;
            animation: gradientBG 15s ease infinite;
            opacity: 0.8;
        }

        @keyframes gradientBG {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* Floating Elements */
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
        }

        .floating-element {
            position: absolute;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            animation: float 15s infinite linear;
            opacity: 0.6;
        }

        @keyframes float {
            0% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-100px) rotate(180deg); }
            100% { transform: translateY(0) rotate(360deg); }
        }

        .floating-element:nth-child(1) {
            width: 30px;
            height: 30px;
            top: 20%;
            left: 10%;
            animation-duration: 20s;
        }
        .floating-element:nth-child(2) {
            width: 20px;
            height: 20px;
            top: 60%;
            left: 85%;
            animation-duration: 15s;
            animation-delay: 2s;
        }
        .floating-element:nth-child(3) {
            width: 40px;
            height: 40px;
            top: 40%;
            left: 50%;
            animation-duration: 25s;
            animation-delay: 1s;
        }





































.section-2 {
  /* margin-top: 40px; */
  width: 80%;
  height: auto;
  margin: 40px auto;
  border: 2px solid transparent;
  border-radius: 20px;
  text-align: center;
  
  box-shadow:  6px 6px 10px 4px rgba(0, 0, 0, 0.2),  -6px -6px 10px 0 rgba(255, 255, 255, 0.5);
}
@media (max-width: 768px) {
  .section-2 {
    width: 95% !important;
    height: auto !important;
    padding: 20px !important;
    margin: 20px auto !important;
    border-radius: 16px !important;
    text-align: center !important;
  }
}

.city-box{
  width: 100%;
  height: 400px;
}

.city-box h1{
text-align: center;
font-size: 45px;
margin-top: 40px;
font-weight: 800;
text-transform: uppercase;
background: var(--btn-color);
background-clip: text;
color: transparent;

}

.card {
  position: relative;
  overflow: hidden;
  transition: transform 0.6s ease-in-out; /* Smooth card scaling */
  width: 100%; /* Fixed width */
  box-shadow: 0px 13px 17px -7px #000000a6;
  height: 300px !important; /* Fixed height */
  &:hover{
  box-shadow: 0px 13px 17px -7px #5252fda6;
}
}
.card-body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.6s ease-in-out; /* Slower, smoother transition */
}
.card-title {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 40px;
  color: rgba(255, 255, 255, 0.818);
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  transition: all 0.6s ease-in-out; /* Slower, smoother transition */
}
.card-img-top {
  height: 100%; /* Fill the card height */
  object-fit: cover;
  filter: brightness(50%); /* Initial brightness low */
  transition: transform 0.6s ease-in-out, filter 0.6s ease-in-out; /* Smooth image transitions */
}
.card:hover {
  transform: scale(1); /* Maintain size on hover */
}
.card:hover .card-img-top {
  transform: scale(1.1); /* Zoom in image on hover */
  filter: brightness(100%); /* Full brightness on hover */
}
.card:hover .card-body {
  justify-content: flex-start;
  align-items: flex-end;
  padding: 10px;
}
































 .special-offer-container {
            position: relative;
            width: 100%;
            min-height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background-image: url('https://images.unsplash.com/photo-1556740738-b6a63e27c4df?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            color: white;
            text-align: center;
       
            overflow: hidden;
        }
        
        .special-offer-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(106, 17, 203, 0.85) 0%, rgba(37, 117, 252, 0.85) 100%);
        }
        
        .offer-content-box {
            position: relative;
            z-index: 2;
            max-width: 1000px;
            padding: 50px;
            background-color: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .offer-tag {
            background-color: white;
            color: #333;
            display: inline-block;
            padding: 8px 25px;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.2rem;
            margin-bottom: 20px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            animation: pulse 2s infinite;
        }
        
        .offer-heading {
            font-size: 3.2rem;
            margin-bottom: 15px;
            line-height: 1.2;
            font-weight: 700;
        }
        
        .offer-heading span {
            color: black;
        }
        
        .offer-description {
            font-size: 1.3rem;
            margin-bottom: 30px;
            opacity: 0.9;
            line-height: 1.6;
        }
        
        .action-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }
        
        .action-btn {
            padding: 15px 40px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .primary-btn {
            background-color: white;
            color: #333;
        }
        
        .secondary-btn {
            background-color: transparent;
            color: white;
            border: 2px solid white;
        }
        
        .action-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .decorative-element {
            position: absolute;
            height: 80%;
            max-width: 400px;
            object-fit: contain;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1;
            opacity: 0.8;
        }
        
        .left-decoration {
            left: 30px;
            animation: floatLeft 8s ease-in-out infinite;
        }
        
        .right-decoration {
            right: 30px;
            animation: floatRight 8s ease-in-out infinite;
        }
     
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        @keyframes floatLeft {
            0% { transform: translateY(-50%) translateX(0) rotate(-5deg); }
            50% { transform: translateY(-55%) translateX(-20px) rotate(5deg); }
            100% { transform: translateY(-50%) translateX(0) rotate(-5deg); }
        }
        
        @keyframes floatRight {
            0% { transform: translateY(-50%) translateX(0) rotate(5deg); }
            50% { transform: translateY(-55%) translateX(20px) rotate(-5deg); }
            100% { transform: translateY(-50%) translateX(0) rotate(5deg); }
        }
        
    
        @media (max-width: 1200px) {
            .decorative-element {
                height: 70%;
                max-width: 300px;
            }
        }
        
        @media (max-width: 992px) {
            .decorative-element {
                display: none;
            }
            
            .offer-heading {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .offer-content-box {
                padding: 30px 20px;
            }
            
            .offer-heading {
                font-size: 2.2rem;
            }
            
            .offer-description {
                font-size: 1.1rem;
            }
            
            .action-buttons {
                flex-direction: column;
                gap: 15px;
            }
            
            .action-btn {
                padding: 12px 30px;
                font-size: 1rem;
                justify-content: center;
            }
        }





















.cites{
  display: flex;
  justify-content: space-evenly;
  padding: 50px;
  gap: 20px;
}

.section-2 h1 {
  font-size: 27px;
  margin-top: 40px;
  font-weight: 700;
  text-transform: uppercase;
}

.section-2 p {
  padding: 40px;
  margin-top: -15px;
}
.testimonial-container a{
  
  overflow: hidden;
  position: relative;
  z-index: 2;
  /* border: 1px solid transparent; */
}
.hire-btn {
  /* margin-top: 70px !important; */
  /* padding: 20px !important; */
  width: 100px;
  height: 40px;
  
  margin-left: 400px;
  font-size: 15px !important;
  background: var(--btn-color);
  color: var(--light-text-color);
  overflow: hidden;
  &:hover{
  background: var(--btn-h-color);
}
}/* section-3 css start here */


/* section-3 css start here */

.section-3 {
  height: 500px;
  /* border: 2px solid red; */
  padding-top: 20px;
  background-image: linear-gradient(to right, rgb(109, 109, 249), rgba(98, 94, 94, 0.774)),
    url("https://i.pinimg.com/564x/d5/9c/7e/d59c7ea55cc64b87ed26fcea1affe848.jpg");
  background-position: center;
  background-size: cover;
  box-shadow: 0px 10px 29px -4px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 0px 10px 29px -4px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 10px 29px -4px rgba(0, 0, 0, 0.75);
  background-attachment: fixed;
}

.section-3 h1 {
  padding-bottom: 50px;
  color: var(--light-text-color);
  text-align: center;
  font-size: 50px;
  font-weight: 700;
  text-transform: uppercase;
}

.slider-container1 {
  display: flex;
  max-width: 1100px;
  width: 100%;
  position: relative;
  margin: auto;
  justify-content: space-between;
  /* border: 2px solid green; */
}

.testimonial-container1 {
  overflow: hidden;
  background: #feffef69;
  border-radius: 8px;
  padding: 0px;
  margin-right: 90px;
  width: 350% !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-slider1 {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-slide1 {
  min-width: 100%;
  padding: 0px 20px;
  padding-top: 0px;
  padding-bottom: 40px !important;
}

.stars span {
  font-size: 24px;
  color: #f39c12;
}

.review1 {
  font-size: 16px;
  margin: 5px 0;
  color: #555;
}

.person-name1 {
  font-size: 18px;
  font-weight: bold;
  margin: 5px 0;
}

.designation1 {
  font-size: 14px;
}

/* Image Slider Styles */
.image-container1 {
  overflow: hidden;
  position: relative;
  padding: 20px;
  margin: auto;
}

.image-slider1 {
  display: flex;
  justify-content: space-between;
  transition: transform 0.5s ease-in-out;
}

.image-slide1 {
  min-width: 100%;
  margin: auto;
  display: flex;
  justify-content: center;
}

.image-slide1 img {
  object-fit: cover;
  background-position: 50%;
  width: 200px;
  height: 200px;
  max-width: 100%;
  border-radius: 50%;
}

/* Slider Navigation */
.slider-container1 button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--btn-color);
  border: none;
  border-radius: 1rem;
  font-size: 24px;
  cursor: pointer;
  color: var(--light-text-color);
  padding: 0 10px;
  z-index: 10;
}

.testimonial-container1 a {
  z-index: 2;
  overflow: hidden !important;
  position: relative !important;
}

.hire-btn {
  width: 100px;
  height: 40px;
  margin-left: 400px;
  font-size: 15px !important;
  background: var(--btn-color);
  color: var(--light-text-color);
  overflow: hidden;
}

.hire-btn:hover {
  background: var(--btn-h-color);
}

.prev {
  left: 0;
}

.next {
  right: 0;
}

/* ================== RESPONSIVE STYLES ================== */

@media (max-width: 1024px) {
  .section-3 {
    height: auto;
    padding: 30px 20px;
    background-attachment: scroll;
  }

  .section-3 h1 {
    font-size: 36px;
    padding-bottom: 30px;
  }

  .slider-container1 {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .testimonial-container1 {
    width: 100% !important;
    margin-right: 0;
    padding: 20px;
  }

  .image-slide1 img {
    width: 180px;
    height: 180px;
  }

  .hire-btn {
    margin-left: 0;
    width: 200px;
    margin: 20px auto 0;
    display: block;
  }
}

@media (max-width: 767px) {
  .section-3 {
    height: auto;
    padding: 20px 15px;
    background-attachment: scroll;
  }

  .section-3 h1 {
    font-size: 28px;
    padding-bottom: 20px;
  }

  .slider-container1 {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .testimonial-container1 {
    width: 100% !important;
    margin-right: 0;
    padding: 15px;
  }

  .testimonial-slide1 {
    padding: 10px;
  }

  .review1 {
    font-size: 14px;
  }

  .person-name1 {
    font-size: 16px;
  }

  .designation1 {
    font-size: 12px;
  }

  .image-slide1 img {
    width: 150px;
    height: 150px;
  }

  .hire-btn {
    /* width: 100%; */
    max-width: 600px;
    height: 40px;
    font-size: 14px;
    margin: 0px auto 0;
    display: block;
  }

  .slider-container1 button {
    font-size: 20px;
    padding: 6px 12px;
  }
}

/* section-3 css end here */

/* section-4 */



.section-4 {
  height: 450px;
  width: 100%;
  /* border: 2px solid green; */
  margin-top: 50px;
  
  padding: 40px;
  box-sizing: border-box;
}

.section-4 h1 {
  text-align: center;
  text-transform: uppercase;
  font-size: 35px;
  font-weight: 700;
}

.swiper {
  margin-top: 60px;
  width: 90%;
  height: 250px;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: var(--btn-color);
  border-radius: 1rem;
  transition: background 0.3s ease;
}

.swiper-slide:hover {
  background: var(--btn-h-color);
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-icons {
  border: 2px solid white;
  height: 80px;
  width: 80px;
  margin: 40px auto 0px;
  padding: 20px;
  border-radius: 50%;
  background: var(--light-text-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider-icons i {
  font-size: 25px;
  color: var(--font-color);
}

.swiper-slide h6 {
  color: var(--light-text-color);
  font-size: 20px;
  padding: 30px 0 0;
}

/* ================== RESPONSIVE STYLES ================== */
@media (max-width: 1024px) {
  .section-4 {
    padding: 30px;
  height: 350px;
    margin-top: 30px;

  }

  .section-4 h1 {
    font-size: 28px;
  }

  .swiper {
    height: 220px;
    margin-top: 20px;
  }

  .slider-icons {
    height: 70px;
    width: 70px;
    padding: 15px;
  }

  .slider-icons i {
    font-size: 30px;
  }

  .swiper-slide h6 {
    font-size: 24px;
    padding: 20px 0 0;
  }
}

@media (max-width: 767px) {
  .section-4 {
    padding: 20px;
  }

  .section-4 h1 {
    font-size: 26px;
    text-align: center;
  /* font-weight: 600; */
  }

  .swiper {
    height: 200px;
  }

  .slider-icons {
    height: 60px;
    width: 60px;
    padding: 12px;
  }

  .slider-icons i {
    font-size: 22px;
  }

  .swiper-slide h6 {
    font-size: 18px;
    padding: 15px 0 0;
  }
}
/* section-2 css end here */

@media (max-width: 767px) {
  .section-4 {
    padding: 10px;
    /* Further reduce padding for mobile */
  }

  .section-4 h1 {
    font-size: 24px;
    /* Adjust heading font size for mobile */
  }

  .swiper {
    height: 180px;
    /* Adjust swiper height for mobile */
  }

  .slider-icons {
    height: 60px;
    /* Adjust icon size for mobile */
    width: 60px;
    margin:20px auto !important;
    /* Reduce left margin */
  }

  .slider-icons i {
    font-size: 25px;
    /* Adjust icon font size */
  }

  .swiper-slide h6 {
    font-size: 20px;
    /* Adjust text size for mobile */
  }
}


/* section-4 css end here */

.section-5 {
  padding-top: 30px;
  height: 300px;
  /* width: 500px; */
  /* height: 400px; */
  /* border: 2px solid green; */
  /* margin-left: 400px; */
  /* border-radius: 50%; */
  /* margin-right: 100px; */
  /* margin-top: -100px; */
  border-radius: 10px;
  z-index: 100;

}

.section-5 h1 {
  text-align: center;
  font-size: 50px;
  margin-top: 10px;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-weight: 700;
}

.section-5 .contact-des {
  display: flex;
  justify-content: center;
  gap: 20px;
  /* border: 2px solid yellow; */
  height: 50px;

}

.section-5 .contact-des .whatup {
  width: 170px;
  height: 100%;
  border: 2px solid rgba(0, 0, 0, 0);
  display: flex;
  border-radius: 20px;
  box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.66);
  -webkit-box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.66);
  -moz-box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.66);
  transition: transform 0.3s ease, background-color 0.3s ease;

  &:hover {
    transform: scale(1.1);
    /* Smooth scaling */
    /* background-color: #2ecc71;  */
  }
}

.section-5 .contact-des .whatup i {
  font-size: 30px;
  margin-top: 5px;
  margin-left: 10px;
  margin-bottom: 5px;
  padding-left: 5px;
  padding-top: 3px;
  width: 35px;
  border-radius: 50%;
  color: white;
  background: var(--btn-color);
  /* border: 2px solid green; */
}

.section-5 .contact-des .phone-no {
  width: 170px;
  height: 100%;
  border: 2px solid rgba(0, 0, 0, 0);
  border-radius: 20px;
  display: flex;
  box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.66);
  -webkit-box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.66);
  -moz-box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.66);
  transition: transform 0.3s ease, background-color 0.3s ease;

  &:hover {
    transform: scale(1.1);
    /* Smooth scaling */
    /* background-color: #2ecc71;  */
  }
}

.section-5 .contact-des .phone-no i {
  font-size: 20px;
  margin-top: 5px;
  margin-left: 10px;
  margin-bottom: 5px;
  padding-left: 8px;
  padding-top: 8px;
  width: 35px;
  border-radius: 50%;
  color: white;
  background: var(--btn-color);
}

.phone-no p,
.whatup p {
  /* border: 2px solid green; */
  color: rgb(0, 0, 0);
  height: auto;
  margin-left: 10px;
  margin-top: 10px;
  margin-bottom: 8px;
}

.section-5 h2 {
  text-align: center;
  font-size: 30px;
  margin-top: 20px;
  margin-bottom: 30px;
  font-weight: 700;
}



/* section-6 */
















.section10-up{
   margin: 0;
      font-family: 'Arial', sans-serif;
      color: white;
      background: linear-gradient(-45deg, #5252fd, #5d40a095);
      background-size: 200% 200%;
      animation: gradientBG 10s ease infinite;
      padding-top: 50px;
      padding-bottom: 30px;
      min-height: 100vh;
      margin-bottom: 50px;
}

@keyframes gradientBG {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }


.button-flex{
  display: flex;
  gap: 40px;
}
/* Main container */
    .mukammal-container {
      max-width: 1200px;
      margin: 0 auto;
      
    }

    /* Feature card styling */
    .khasiyat-card {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 30px;
      flex-wrap: wrap;
      transition: all 0.5s ease;
    }

    .khasiyat-card:hover {
      transform: translateY(-10px);
    }

    /* Collaboration feature */
    .mil-jul-kar-kaam {
      flex-direction: row;
    }

    /* Achievement feature */
    .kamiyabi-munqiz {
      flex-direction: row-reverse;
    }

    /* Text content styling */
    .mazmoon {
      flex: 1;
      padding: 30px;
      min-width: 300px;
      transition: all 0.3s ease;
      box-sizing: border-box;
    }

    .khasiyat-card:hover .mazmoon {
      transform: scale(1.02);
    }

    .mazmoon .unwan {
      font-size: 40px;
      font-weight: bold;
      margin-bottom: 20px;
      position: relative;
      display: inline-block;
    }

    /* Different underline colors */
    .mil-jul-kar-kaam .unwan::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 0;
      height: 3px;
      background: white;
      transition: width 0.3s ease;
    }

    .kamiyabi-munqiz .unwan::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 0;
      height: 3px;
      background:white;
      transition: width 0.3s ease;
    }

    .khasiyat-card:hover .unwan::after {
      width: 100%;
    }

    .mazmoon .tafseel {
      line-height: 1.8;
      font-size: 18px;
      opacity: 0.9;
      max-width: 600px;
    }

    /* Image container */
    .tasweer {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 30px;
      min-width: 300px;
      perspective: 1000px;
      box-sizing: border-box;
    }

    .tasweer img {
      width: 100%;
      max-width: 450px;
      height: auto;
      border-radius: 10px;
      transition: all 0.5s ease;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
      transform-style: preserve-3d;
      object-fit: cover;
      aspect-ratio: 1/1;
    }

    /* Different borders for each feature */
    .mil-jul-kar-kaam .tasweer img {
      border: 5px solid white;
    }

    .kamiyabi-munqiz .tasweer img {
      border: 5px solid white;
    }

    .khasiyat-card:hover .tasweer img {
      transform: scale(1.05);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
      border-radius: 20px;
    }

    /* Different hover effects */
    .mil-jul-kar-kaam:hover .tasweer img {
      transform: rotateY(10deg) scale(1.05);
      border-color: white;
    }

    .kamiyabi-munqiz:hover .tasweer img {
      transform: rotateY(-10deg) scale(1.05);
      border-color: white;
    }

    @media (max-width: 768px) {
      body {
        padding: 20px;
      }
      
      .khasiyat-card {
        flex-direction: column;
        text-align: center;
        margin-bottom: 30px;
      }
      
      .mazmoon {
        padding: 20px;
      }
      
      .unwan::after {
        left: 50%;
        transform: translateX(-50%);
      }
      
      .khasiyat-card:hover {
        transform: none;
      }
      
      .khasiyat-card:hover .tasweer img {
        transform: none;
        border-radius: 10px;
      }

      .tasweer img {
        max-width: 350px;
      }
    }



































.section-10 {
  height: 900px;
  /* Fixed height */
  margin: 0 20px;
  padding: 30px;
  display: flex;
  justify-content: center;
  gap: 30px;
  border-radius: 40px;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.43);
  position: relative;
}

.sec-left,
.sec-right {
  padding: 20px;
  width: 50%;
  border-radius: 20px;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.43);
  height: 580px;
  /* Fixed height */
  overflow-y: scroll;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  -ms-overflow-style: auto;
}

.sec-left::-webkit-scrollbar,
.sec-right::-webkit-scrollbar {
  display: none;
  /* For Chrome, Safari, and Opera */
}


.sec-left p {
  font-size: 18px;
}

.sec-right ul {
  list-style: none;
}

.sec-right ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}

.sec-right ul li::before {
  content: "•";
  color: rgb(0, 47, 255);
  font-size: 25px;
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 768px) {
  .section-10 {
    flex-direction: column;
    /* Stack items on small screens */
    height: auto;
    /* Allow content to dictate height */
  }

  .sec-left,
  .sec-right {
    width: 100%;
    /* Full width on small screens */
    height: auto;
    /* Allow content to dictate height */
  }
}

.section-11 {
  height: 400px;
}

.section-10-h h1 {
  text-align: center;
  margin-top: -220px;
  text-transform: uppercase;
  font-weight: 700;
}

.btn-19,
.btn-19 *,
.btn-19 :after,
.btn-19 :before,
.btn-19:after,
.btn-19:before {
  border: 0 solid;
  box-sizing: border-box;
}

.btn-19 {
  -webkit-tap-highlight-color:
    transparent;
  -webkit-appearance: button;
  background-color:
    black;
  background-image: none;
  color:
    white;
  margin-top: 30px;
  margin-left: 500px;
  cursor: pointer;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif,
    Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-size: 100%;
  font-weight: 900;
  line-height: 1.5;
  /* margin: 0; */
  -webkit-mask-image: -webkit-radial-gradient(#000, #fff);
  /* padding: 0; */
  text-transform: uppercase;
  border: 2px solid black;
}

.btn-19:disabled {
  cursor: default;
}

.btn-19:-moz-focusring {
  outline: auto;
}

.btn-19 svg {
  display: block;
  vertical-align: middle;
}

.btn-19 [hidden] {
  display: none;
}

.btn-19 {
  margin:30px auto;
  display: flex;
  /* justify-content: center; */
  border-radius: 99rem;
  border-width: 2px;
  padding: 0.8rem 3rem;
  z-index: 0;
}




.btn-18 .text-container,
.btn-19 {
  overflow: hidden;
  position: relative;
}

.btn-18 .text-container {
  display: block;
}

.btn-18 .text {
  display: block;
  mix-blend-mode: difference;
  position: relative;
}

.btn-18:hover .text {
  -webkit-animation: move-up-alternate 0.3s forwards;
  animation: move-up-alternate 0.3s forwards;
}

@-webkit-keyframes move-up-alternate {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(80%);
  }

  51% {
    transform: translateY(-80%);
  }

  to {
    transform: translateY(0);
  }
}

.btn-19 span {
  mix-blend-mode: difference;
}

.btn-19 .text-container {
  display: block;
  overflow: hidden;
  position: relative;
}

.btn-19 .text {
  display: block;
  mix-blend-mode: difference;
  position: relative;
}

.btn-19:hover .text {
  -webkit-animation: move-up-alternate 0.3s forwards;
  animation: move-up-alternate 0.3s forwards;
}

@keyframes move-up-alternate {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(80%);
  }

  51% {
    transform: translateY(-80%);
  }

  to {
    transform: translateY(0);
  }
}

.btn-19:after,
.btn-19:before {
  background: linear-gradient(90deg,
      #fff 25%,
      transparent 0,
      transparent 50%,
      #fff 0,
      #fff 75%,
      transparent 0);
  content: "";
  inset: 0;
  position: absolute;
  transform: translateY(var(--progress, 100%));
  transition: transform 0.2s ease;
}

.btn-19:after {
  --progress: -100%;
  background: linear-gradient(90deg,
      transparent 0,
      transparent 25%,
      #fff 0,
      #fff 50%,
      transparent 0,
      transparent 75%,
      #fff 0);
  z-index: -1;
}

.btn-19:hover:after,
.btn-19:hover:before {
  --progress: 0;
}
@media (max-width: 768px) {
  .section-10 {
    flex-direction: column !important;
    height: auto !important;
    padding: 20px !important;
    margin: 20px !important;
  }

  .sec-left,
  .sec-right {
    width: 100% !important;
    height: auto !important;
    padding: 15px !important;
    box-shadow: none !important;
  }

  .btn-19 {
    margin: 20px auto !important;
    padding: 0.8rem 2rem !important;
    font-size: 16px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .section-10-h h1 {
    margin-top: 0 !important;
    font-size: 20px !important;
    padding: 10px 0 !important;
  }
}


.section-6 {
  height: auto;
  width: 100%;
  /* border: 2px solid red; */
  margin-top: 130px !important;

}

.section-6 h1 {
  text-align: center;
  font-size: 50px;
  margin-top: 30px;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-weight: 700;
}

.main-accordion {
  /* border: 2px solid green; */
  display: flex;
  width: 100%;
  padding-right: 60px;
  padding-left: 60px;
  gap: 30px;
}

.acc-icon {
  /* border: 2px solid; */
  text-align: center;
  width: 50px;
  /* height: 30px; */
  background: rgba(176, 172, 172, 0.149);
  /* border-radius: 20px; */
  /* border: 2px solid; */
  padding: 2px;
  border-radius: 20px;
}

.accordion {
  /* max-width: 600px; */
  width: 800px !important;
  margin: 20px auto;
  /* border: 1px solid #971111; */
  border-radius: 5px;
}

.accordion-item {
  border: 10px solid #ffffff;
}

.accordion-content {
  color: rgba(0, 0, 0, 0.934) !important;
  background: #e0e0de;
  border: 2px solid #ffffff;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  /* background: #8c8c8c; */
  outline: none;
}

.accordion-header {
  color: rgb(82, 82, 253);
  display: flex;
  justify-content: space-between;
  /* background-color: #811c1c; */
  background: white;
  /* color: var(--light-text-color); */
  cursor: pointer;
  /* padding: 15px; */
  padding-right: 15px;
  padding-left: 15px;
  padding-top: 11px;
  height: 50px;
  /* text-align: left; */
  outline: none;
  border: none;
  width: 100%;
  transition: background-color 0.3s;
  border-radius: 2px;
  border-left: 5px solid rgb(82, 82, 253);
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.75);
}



.accordion-content {
  display: none;
  padding: 15px;
  /* background-color: #f9f9f9; */
  /* border-top: 1px solid #ccc; */
}


@media (max-width: 768px) {
  .section-6 {

  margin-top: 50px !important;
  margin-bottom: 30px !important;

}
  .main-accordion {
    flex-direction: column !important;
    padding: 0 20px !important;
    gap: 20px !important;
  }

  .accordion {
    width: 100% !important;
    margin: 0 auto !important;
  }

  .section-6 h1 {
    font-size: 28px !important;
    margin: 20px 0 !important;
    padding: 0 10px;
  }

  .accordion-header {
    font-size: 16px !important;
    height: auto !important;
    padding: 12px 15px !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    text-align: left !important;
  }

  .accordion-header span {
    text-align: left !important;
    flex: 1;
  }

  .acc-icon {
    order: 2; /* Icon moves to the end */
    text-align: right;
    width: auto !important;
    font-size: 15px !important;
  }
}




.whatsapp {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 40px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  padding: 10px;
  animation: pulse-w 2s infinite;
  box-shadow: 0 0 0 2em transparent;
}

/* Adding the same pulse keyframes */
@keyframes pulse-w {
  0% {
    box-shadow: 0 0 0 0 #25d3658b;
  }
  100% {
    box-shadow: 0 0 0 30px transparent;
  }
}

