body {
  background-color: white;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #000;
  --sky: #42CEFF;
  --mid-night: #2c3e50;
}

.section_padding {
  padding-top: 80px;
}

a {
  text-decoration: none;
}

/* navbar */
 .navbar {
  background-color: var(--black);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.navbar-toggler{
color: white;
}
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(252, 250, 250, 0.5);
  z-index: 1050;
}

.navbar-brand img {
  height: 70px;
  width: 100%;
  transition: transform 0.3s ease;
}

.navbar-brand img:hover {
  transform: scale(1.05);
}

.dropdown-menu a {
  border: 1px solid transparent;
  border-radius: 10px;
  transition: all 0.3s ease;
  color: white;
}

.dropdown-menu a:hover {
  border: 1px solid #ffffff;
  background-color: transparent;
  color: #f5f5f8;
}

.nav-item .dropdown-menu{
  background-color: #000;
}


.sidebar {
  width: 280px;
  height: 100vh;
  background:var(--black);
  padding: 16px;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.nav-item .nav-link {
  color: #fbf7f7 !important;
  font-weight: 500;
  font-size: 16px;
  padding: 10px 15px !important;
  transition: all 0.3s ease;
  position: relative;
}

.sidebar.show {
  transform: translateX(0);
}

.menu-item {
  padding: 12px;
  margin-bottom: 8px;
  border-radius: 6px;
  cursor: pointer;
  color: white;
}

.menu-item:hover {
  border: 2px solid white;
}

.menu-item a {
  text-decoration: none;
  color: #ffffff;
  display: block;
}

.submenu li {
  padding: 8px 12px;
  margin-left: 10px;
  border-radius: 5px;
  color: white;
}

.submenu li:hover {
  background: #eef2ff;
}

.nav-btn {
 
  color: white;
  border: 2px solid white;
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background-color: white;
  color: var(--black);
  border: 2px solid white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.cta {
  background: #0d6efd;
  text-align: center;
}

.cta a {
  color: #fff;
  font-weight: 600;
}

.cta:hover {
  background: #084298;
} 

/* nav end */

/* Fullscreen Loader */

/* loader start */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loader-wrapper.hide-loader {
  opacity: 0;
  visibility: hidden;
}

/* Dot Loader */
.dot-loader {
  text-align: center;
}

.dot-loader img {
  width: 70px;
  height: 70px;
}

/* Dots animation */
.dots {
  margin-top: 10px;
}

.dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #007bff;
  border-radius: 50%;
  margin: 0 3px;
  animation: jump 0.6s infinite alternate;
}

.dots span:nth-child(2) { animation-delay: 0.2s; }
.dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes jump {
  from { transform: translateY(0); }
  to { transform: translateY(-8px); }
}

        /* loader end */

/* banner start*/
.soft-content{
    background: rgba(0, 0, 0, 0.5);
     position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 100%;
  
}
.soft-content h1 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  flex-direction: column;
}
.soft-content p{
  font-size: 22px; 
  margin-top: 30px;
  color: #fff;
    position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  height: 100%;
  
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
}

@media (max-width:489px) {

  .soft-content h1
   {
    font-size: 32px;
    
  }

  .soft-content p {
    font-size: 16px;
   
  }
}
/* banner end */
/* software-about start */

.software-head h2 {
  font-size: 38px;
  font-weight: 600;
  padding-bottom: 10px;
}

.software-head p{
  font-size: 20px;
  font-weight: 400;
  line-height: 1.8;

}
 
.typing-text {
  background: linear-gradient(90deg, #42CEFF, #2c3e50);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  font-size: 38px;
  display: inline-block;
  background-size: 400%;
  animation: gradientMove 6s ease infinite;
}
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@media (max-width:1120px) {
  .software-head h2,
  .typing-text {
    font-size: 32px;
  }
}

@media (max-width:998px) {
  .software-head h2,
  .typing-text {
    font-size: 28px;
  }

  .soft-head p {
    font-size: 16px;
  }
}
@media (max-width:489px) {

  .software-head h2,
  .typing-text {
    font-size: 28px;
    
  }

  .software-head p {
    font-size: 16px;
  }
}
/* software-about end */

/* technology start */
.pricing-title h2 {
  text-align: center;
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 30px;
}

.tab-container {
  display: flex;
  background-color:var(--sky);
  border-radius: 10px;
  overflow: hidden;
  max-width: 1270px;
  margin: 0 auto;
}

.tab-menu {
  background-color: #76d6df;
  width: 48%;
  display: flex;
  flex-direction: column;
  padding: 20px 10px;
}

.tab-item {
  color: white;
  padding: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 16px;
  position: relative;
  transition: background-color 0.3s ease;
}

.tab-item i {
  margin-right: 10px;
}

.tab-item.active {
  background-color:#0b0b0b ;
  border-radius: 5px;
}

.tab-item.active .arrow {
  display: inline-block;
  font-size: 1.5rem;
  margin-left: auto;
}

.arrow {
  display: none;
  color: white;
}

.tab-content {
  background-color: #ffffff;
  width: 52%;
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
}

.tab-pane {
  display: none;
  flex-wrap: wrap;
  gap: 15px;
  width: 100%;
}

.tab-pane.active {
  display: flex;
}

.cards {
  background: linear-gradient(90deg, rgb(174, 238, 245), rgb(151, 208, 230), rgb(169, 222, 229));
  padding: 20px;
  width: calc(50% - 7.5px);
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cards img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  object-fit: contain;
}

.cards p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: white;
}

.cards:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media(max-width:1120px) {
  .pricing-title h2 {
    font-size: 32px;
  }
}


@media(max-width:998px) {
  .pricing-title h2 {
    font-size: 28px;
  }
}



@media (max-width: 768px) {
  .tab-container {
    flex-direction: column;
  }

  .tab-menu,
  .tab-content {
    width: 100%;
  }

  .cards {
    width: 100%;
  }
}


/* technology end */

/* planning start */


.transform-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

.transform-column {
  flex: 1;
  padding: 20px;
  box-sizing: border-box;

}

.thead {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 30px;
  background: linear-gradient(90deg, var(--black), var(--sky), var(--mid-night));
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientFlow 6s ease infinite, fadeInLetters 1s ease forwards;
  display: inline-block;
  letter-spacing: 1px;
  opacity: 0;
}


@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


@keyframes fadeInLetters {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 8px;
  border-radius: 10px;
  background-color: #d9eef7;
  padding: 5px 10px;
}

.feature-item:hover {
  border: 1px solid #bddeed;
  background-color: #f5f8f9;
}


.tcircle-icon {
  border: 1px solid var(--sky);
  color: var(--mid-night);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  flex-shrink: 0;
  animation: popIn 0.6s ease forwards;
}


.feature-text h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
  background: linear-gradient(90deg, var(--black), var(--sky), var(--mid-night));
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientFlow 6s ease infinite, fadeInFeature 1.2s ease forwards;
  opacity: 0;
}

.feature-text p {
  font-size: 15px;
  color: #242222;
  margin-bottom: 0;
  opacity: 0;
  animation: fadeInFeature 1.5s ease forwards;
  animation-delay: 0.3s;
}


@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes fadeInFeature {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.donations-container {
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 20px;
  width: 100%;
}

.img-wrapper {
  width: 100%;
  height: 280px;
  background-size: contain;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.img-wrapper img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.6s ease;
}

.img-wrapper:hover img {
  transform: scale(1.05);
  animation: float 3s ease-in-out infinite;
}

.donations-img {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  height: 150px;
  width: 100%;
}

.secondary-image,
.third-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.testimonial-card-one {
  background-color: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 2px 5px 15px #666;
  border: 2px solid var(--mid-night);
  width: 100%;
  margin-top: 10px;
}

.testimonial-card-one img {
  height: 32px;
  width: 32px;
}

.testimonial-card-one p {
  font-style: italic;
  margin-bottom: 10px;
  font-size: 12px;
}

@keyframes fadeInSection {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popIn {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 191, 255, 0.4);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 15px 2px rgba(0, 191, 255, 0.3);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (max-width:1120px) {
  .thead {
    font-size: 32px;
  }

  .tcircle-icon {
    height: 34px;
    width: 34px;
  }
}

@media (max-width:1024px) {
  .thead {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .tcircle-icon {
    height: 30px;
    width: 30px;
  }

  
  .secondary-image,
  .third-image {

    max-width: 400px;
  }

  .testimonial-card-one {
    margin-top: 1px;
  }

  .feature-text h4 {
    font-size: 16px;
  }

  .feature-text p {
    font-size: 12px;
  }
}

@media (max-width:998px) {
  .thead {
    font-size: 28px;
  }

  .tcircle-icon {
    height: 32px;
    width: 32px;
  }

  .feature-text h4 {
    font-size: 16px;
  }

  .feature-text p {
    font-size: 12px;
  }

  .img-wrapper {
    max-height: 200px;
    max-width: 700px;
  }

  .secondary-image,
  .third-image {
    max-width: 390px;
    margin: 0 auto;
  }

  .testimonial-card-one {
    margin-top: 1px;
  }
  .transform-row{
    flex-direction: column;
  }
}

@media (max-width: 858px) {
 .transform-row{
  display: flex;
  justify-content: space-between;
  flex-direction: column;
 }
}

@media (max-width: 768px) {
  .transform-row {
    flex-direction: column;
  }

  .transform-column {
    max-width: 100%;
  }

  .cta-button {
    width: 100%;
    justify-content: center;
  }


  .tcircle-icon {
    margin-right: 6px;
  }

  .img-wrapper {
    height: 200px;
    width: 100%;

  }

  .transform-colum {
    text-align: center;

  }

  .secondary-image,
  .third-image {

    height: 210px;
  }

}

@media (max-width: 375px) {
  .thead {
    font-size: 28px;
  }

  .transform-row {
    flex-direction: column;
  }

  .cta-button {
    width: 100%;
    justify-content: center;
  }

  .testimonial-card-one {
    margin-left: 5px;
  }

  .tcircle-icon {
    margin-right: 6px;
  }


  .transform-colum {
    text-align: center;

  }

  .img-wrapper {
    height: 200px;
    width: 100%;

  }

  .transform-colum {
    text-align: center;

  }

  .secondary-image,
  .third-image {
    height: 120px;

  }

  .testimonial-card-one {
    margin-top: -70px;
    padding: 5px 20px;
  }

}

/* end */



/* software start */
.process-section {
  background: #fafafa;
  padding-top: 80px;
}
.process-section h2{
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 30px;
}
.process-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 8px;
 
  transition: 0.3s ease;
}
.process-img:hover{

transform: scale(1.08);
 
}

.process-section h4 {
 font-size: 20px;
  color: #444;
}

@media (max-width:1280px){
  .process-section h2{
  font-size: 32px;
}
}

@media (max-width:992px){
  .process-img{
    width:80px ;
    height:80px ;
  }
  .process-section h4{
    font-size: 15px;
  }
  .process-section h2{
  font-size: 28px;
}
}
/* software end */

/* portfolio start */
.work{
  padding-top: 80px;
}
.work h3{
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 30px;
}
.main-title {
  text-align: center;
  font-weight: 600;
  font-size: 38px;
  margin-bottom: 30px;
}


.carousel-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.story-slide {
  display: flex;
  background: linear-gradient(to right, #dde8ef, #ddf3f0);
  border-radius: 10px;
  overflow: hidden;
  min-height: 250px;
}

.story-content {
  flex: 1;
  padding: 0px 40PX;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 300px;
}

.story-content h6 {
  font-size: 32px;
  margin-bottom: 16px;
  color: var(--mid-night);
  font-weight: 700;
    text-align: center;
}

.story-content p {
  line-height: 1.8;
  margin-bottom: 16px;
  color: #2d3436;
  font-size: 16px;
}
.story-content p span{
  font-size: 20px;
  font-weight: 500;
}
.read-more-btn {
  background-color: var(--mid-night);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
  font-size: 14px;
  margin:  0 auto;
}

.read-more-btn:hover {
  background: var(--sky);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.story-image {
  flex: 1;
  position: relative;
  min-width: 350px;
  background: #2a2a2a;
  padding: 25px 25px 50px 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.story-image::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: #1a1a1a;
  border-radius: 3px;
  z-index: 10;
}

.story-image::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 30px;
  background: linear-gradient(to bottom, #3a3a3a, #2a2a2a);
  border-radius: 0 0 8px 8px;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.3);
}

.image-wrapper {
  position: relative;
  height: 335px;
  overflow: hidden;
  background: #fffdfd;
  border-radius: 8px;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  min-height: 100%;
  object-fit: contain;
  object-position: top;
  transform: translateY(0);
  transition: transform 6s ease-in-out;
}


@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.carousel-item {
  transition: transform 0.6s ease-in-out;
}

.carousel-indicators {
  margin-bottom: -40px;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--mid-night);
   background-color: var(--mid-night) !important; 
  background-color: transparent;
  opacity: 0.5;
  margin: 0 6px;
}

.carousel-indicators button.active {
  background-color: var(--mid-night);
  opacity: 1;
  transform: scale(1.2);
}

@media (max-width:1280px) {
    .image-wrapper {
  height: 270px;
}
}

@media (max-width:1024px) {
  .image-wrapper {
  height: 230px;
}

.work h3{
  font-size: 32px;
  font-weight: 600;
}
}
@media (max-width: 992px) {

  .work h3{
  font-size: 28px;
  font-weight: 600;
}

  .carousel-control-prev {
    left: 10px;
  }

  .carousel-control-next {
    right: 10px;
  }
.image-wrapper {
  height: 180px;
}
  .story-content {
    padding: 10px 0px;
    text-align: center;
    align-items: center;

  }

  .main-title {
    font-size: 28px;
  }

.story-content h6{
  font-size: 22px;
}
  .story-content p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .story-slide {
    flex-direction: column-reverse;
    min-height: auto;
  }

  .story-image {
    height: auto;
    min-width: 100%;
    padding: 20px 20px 40px 20px;

  }

  .image-wrapper {
    height: 145px;
  }


  .story-content {
    padding: 30px 20px;
    text-align: center;
    align-items: center;

  }

  .main-title {
    font-size: 24px;
  }


  .story-content p {
    font-size: 14px;
  }
}

/* end */

/* testimonial */
/* testimonial start */
.testimonial h4 {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 30px;

}

.testimonial-card {
  background: white;
  border-radius: 10px;
  padding: 0 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  margin: 0 40px;
}

.testimonial-name {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.testimonial-date {
  color: #999;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.verified-badge {
  color: #007bff;
  font-size: 1rem;
  margin-left: 5px;
}

.testimonial-text {
  color: #666;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 15px;
}

.read-more {
  color: #999;
  text-decoration: none;
  font-size: 0.9rem;
}

.read-more:hover {
  color: #666;
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: white;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.carousel-control-prev {
  left: -25px;
}

.carousel-control-next {
  right: -25px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc !important;
  display: none !important;
}

@media (max-width: 992px) {

  .title {
    font-size: 28px;
  }

  .testimonial h4 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .testimonial-card {
    padding: 0 10px;
    margin: 0 15px;
  }

  .testimonial-name {
    font-size: 20px;
  }

  .stars {
    font-size: 16px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 45px;
    height: 45px;
  }

  .carousel-control-prev {
    left: -15px;
  }

  .carousel-control-next {
    right: -15px;
  }
}



@media (max-width: 767px) {
  .testimonial .carousel-item .row {
    display: flex;
    flex-wrap: nowrap;
    text-align: center;
    margin: 0 auto;
  }

  .testimonial h4 {
    font-size: 28px;
    text-align: center;
  }

  .testimonial-text {
    font-size: 14px;
  }

  .testimonial .carousel-item .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
    margin: auto;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }

  .carousel-control-prev {
    left: 0;
    padding-left: 20px;
  }

  .carousel-control-next {
    right: 0;
    padding-right: 20px;
  }

  .testimonial-text {
    font-size: 14px;
    padding: 0 40px;
  }

}

@media (max-width: 576px) {


  .testimonial h4 {
    font-size: 28px;
    
  }

  .testimonial-card {
    margin: 0;
    padding: 16px;
    border-radius: 8px;
  }

  .testimonial-name {
    font-size: 18px;
  }

  .testimonial-date {
    font-size: 0.85rem;
  }

  .stars {
    font-size: 15px;
  }

  .testimonial-text {
    font-size: 13px;
    line-height: 1.5;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 36px;
    height: 36px;
  }


}

/* testimonial end */
/* testimonial end */

/* faq start */

    .faq-section{
  padding-top: 80px;
}
.main-faq {

  margin: 0 auto;
  padding: 0 15px;
  display: flex;
}

.faq-question {
  flex: 0 0 60%;
  padding-right: 62px;
}

.image-section {
  flex: 0 0 40%;
}

.faq-title {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--black);
  font-family: "Poppins", sans-serif;
}

.accordion-item {
  margin-bottom: 15px;
  border: none;
  border-radius: 4px;
  background-color: white;
  transition: transform 0.8s ease-in-out;
  border: 2px solid #c4c6c8;
}

.accordion-item:hover {
  transform: translateY(-8px);
}

.accordion-button {
  padding: 15px 20px;
  font-size: 14px;
  color: var(--black);
  font-weight: 300;
  background-color: white;
  box-shadow: none;
  position: relative;
  font-family: "Poppins", sans-serif;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-button:not(.collapsed) {
  background-color: white;
  color: #212529;
  box-shadow: none;
}

.accordion-button::after {
  display: none;
}

.accordion-button .fa-plus,
.accordion-button .fa-minus {
  position: absolute;
  right: 10px;
  color: var(--mid-night);
  font-size: 22px;
}

.accordion-button .fa-minus {
  display: none;
}

.accordion-button:not(.collapsed) .fa-minus {
  display: inline;
}

.accordion-button:not(.collapsed) .fa-plus {
  display: none;
}

.accordion-body {
  padding: 5px 20px 20px;
  color: var(--mid-night);
  line-height: 1.6;
  font-weight: 400;
}

.image-section img {
  width: 100%;
  cursor: pointer;
  animation: floatCard 4s ease-in-out infinite;
  transition: opacity 0.3s ease, transform 0.3s ease-in-out;
}

.image-container img:hover {
  transform: translateY(-15px);
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width:1024px) {
  .image-section {
  width: 100%;
  margin-top: 90px ;
  margin-right: 15px;
}

.main-faq{
  display: flex;
  text-align: center;
 margin: 0 auto;
 padding: 0px 5px;
 
}

}

@media (max-width: 998px) {
.faq-section{
  padding-top: 0;
}
  .faq-title {
  font-size: 28px;
}
.main-faq{
  display: flex;
 margin: 0 auto;
 padding: 0 5px;
}
.faq-question{
  text-align: center;
}
.image-section{
  width: 100%;
  margin-top:  90px ;
  margin-right: 15px;
}
.faq-question{
  padding: 25px;
}
}

@media (max-width: 858px) {

  .faq-title {
  font-size: 28px;
}
.main-faq{
  display: flex;
 margin: 0 auto;

}
.faq-question{
  text-align: center;
}
.image-section{
  width: 100%;
  margin-top: 150px ;
  
}

.accordion-button .fa-plus,
.accordion-button .fa-minus {
  position: absolute;
  right: 5px;
  color: var(--mid-night);
  font-size: 16px;
}

}

@media (max-width: 768px) {

  .faq-title {
  font-size: 28px;
 
}
  
  .faq-question {
    flex: 0 0 100%;
  }

 
  .image-section {
    display: none;
  }
}


@media (max-width: 489px) {

  .faq-title {
  font-size: 28px;
 
}

  .faq-question {
    flex: 0 0 100%;
  }

 
  .image-container {
    display: none;
  }
}

/* faq end */

/* logo-start */


.logo-carousel {
  background: #fff;
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
}

.title {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
  color: #333;
}

.logo-wrapper {
  display: flex;
  width: fit-content;
}

.logo-track {
  display: flex;
  gap: 60px;
  padding-right: 60px;
}

.logo-carousel img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: contain;
  border: 1px solid #ccc;
  transition: transform 0.4s ease;
  flex-shrink: 0;
  background: #fff;
}

.logo-carousel img:hover {
  transform: scale(1.1);
}

.logo-carousel::before,
.logo-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-carousel::before {
  left: 0;
  background: linear-gradient(to right, white 0%, transparent 100%);
}

.logo-carousel::after {
  right: 0;
  background: linear-gradient(to left, white 0%, transparent 100%);
}

@media (max-width: 1400px) {
  .logo-carousel img {
    width: 120px;
    height: 120px;
  }

  .logo-track {
    gap: 50px;
    padding-right: 50px;
  }
}

@media (max-width: 1200px) {
  .logo-carousel img {
    width: 110px;
    height: 110px;
  }

  .logo-track {
    gap: 40px;
    padding-right: 40px;
  }
   .title {
    font-size: 32px;
  }
}

@media (max-width: 992px) {
  .logo-carousel img {
    width: 100px;
    height: 100px;
  }

  .logo-track {
    gap: 35px;
    padding-right: 35px;
  }
 .title {
    font-size: 28px;
  }
 
}

@media (max-width: 768px) {
  .logo-carousel img {
    width: 85px;
    height: 85px;
  }

  .logo-track {
    gap: 25px;
    padding-right: 25px;
  }
  .title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .logo-carousel img {
    width: 70px;
    height: 70px;
  }

  .logo-track {
    gap: 18px;
    padding-right: 18px;
  }

  .logo-carousel {
    padding: 20px 0;
  }

  .title {
    font-size: 28px;
  }
}

@media (max-width: 360px) {
  .logo-carousel img {
    width: 60px;
    height: 60px;
  }

  .logo-track {
    gap: 15px;
    padding-right: 15px;
  }

  .logo-carousel {
    padding: 20px 0;
  }

  .title {
    font-size: 24px;
  }
}


/* logo-carousel end */

/* footwer */
.ct-btn{
 height: 40px; 
 width: 40px;
color: white;
background-color: var(--sky);
border: none;
}

    .footer_section {
      background-color: var(--black);
      color: white;
      padding: 60px 0 20px;
    }

    .footer-row {
      align-items: stretch;
    }

    .footer-col {
      margin-bottom: 20px;
    }

    .footer-logo img {
      max-width: 120px;
      width: 100%;
      margin-bottom: 12px;
    }

    .footer-tagline {
      font-size: 16px;
      color: #ddd;
      line-height: 1.4;
      margin: 0;
      font-weight: 400;
    }
    .footer-tagline span {
      color: var(--sky);
      font-size: 18px;
      font-weight: 600;
    }

    .footer-heading {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 12px;
      color: #fff;
    }

    .footer-col a[href^="tel"],
.footer-col a[href^="mailto"] {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

.footer-col a[href^="tel"]:hover,
.footer-col a[href^="mailto"]:hover {
  color: var(--sky);
}

.footer-col a[href^="tel"] i,
.footer-col a[href^="mailto"] i {
  margin-right: 8px;
  color: var(--sky);
}


    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-links li {
      margin-bottom: 8px;
    }
    .footer-links a {
      color: #fff;
      text-decoration: none;
      font-size: 16px;
      transition: color .2s ease;
    }
    .footer-links a:hover {
      color: var(--sky);
    }

    .footer-right {
      background: #3d3738;
      padding: 20px;
      border-radius: 8px;
      display: flex;
      flex-direction: column;
      min-height: 100%;
    }

    .footer-contact-form {
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .footer-contact-form .form-control {
      background: #fff;
      color: #222;
      border: 1px solid rgba(0,0,0,0.08);
      border-radius: 4px;
      padding: 10px 12px;
    }
    .footer-contact-form .form-control::placeholder { 
      color: #666; 
    }
    .footer-contact-form .form-control:focus {
      box-shadow: none;
      border-color: #00c4ff;
    }

    .footer-contact-form textarea {
      flex-grow: 1;
      min-height: 100px;
    }

    .footer-contact-form .btn {
      border-radius: 6px;
      padding: 10px 14px;
      font-weight: 600;
    }

    .footer-right .btn {
      background-color: var(--sky);
    }
    .footer-right .btn:hover {
      background-color: #007bff;
    }
    .footer-social-icons {
      display: flex;
      justify-content: flex-start;
      margin: 22px 0;
      gap: 8px;
    }
    .social-icon-group {
      width: 35px;
      height: 35px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }
    .footer-social-icons a {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-decoration: none;
    }
    .social-icon-group:hover {
      background: var(--sky);
    }
    .social-icon-group:hover a {
      color: #000;
    }

    @media (max-width: 767.98px) {
      .footer-right {
        margin-top: 12px;
      }
      .footer-heading.ms-5,
      .footer-links.ms-5 {
        margin-left: 0 !important;
      }
      .footer-heading.me-5,
      .footer-links.me-5 {
        margin-right: 0 !important;
      }
    }
/* footer end */