* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #000;
  --sky: #42CEFF;
  --mid-night: #2c3e50;
}

.section_padding {
  padding-top: 80px;

}

li {
  list-style: none;
}

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 */

/* 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 */

.s-content{
    background: rgba(0, 0, 0, 0.5);
     position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 100%;
  
}
.s-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;
}
.s-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) {

  .s-content h1
   {
    font-size: 32px;
    
  }

  .s-content p {
    font-size: 16px;
    margin-top: 10px;
  }
}

/* banner end */


/* about-seo */

.seo-title {
  font-size: 32px;
  font-weight: 700;
  color: #0c0c0c;
  line-height: 1.3;
  margin-bottom: 20px;
}

.seo-para {
  font-size: 17px;
  color: #444;
  line-height: 1.8;
}

.seo-box {
  background: linear-gradient(90deg, #42CEFF, #2c3e50);
  border-radius: 12px;
  padding: 35px 15px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: .3s ease;
}

.seo-box:hover {
  transform: translateY(-5px);
}

.seo-box h3 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.seo-box p {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
}
@media (max-width: 992px) {
 
  .seo-box h3{
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .seo-title {
    font-size: 26px;
  }
  .seo-box h3 {
    font-size: 28px;
  }
  .seo-box h3{
    font-size: 24px;
  }
}

/* end */

/* service */

.seo-heading {
  font-size: 38px;
  font-weight: 600;
  padding-bottom: 30px;
  
  text-align: center;
}

.flip-card {
  perspective: 1200px;
  width: 100%;
  height: 100%;
  border-radius: 18px;
}

.flip-card-inner {
  width: 100%;
  height: 100%;
  transition: 0.6s;
  transform-style: preserve-3d;
  position: relative;
}

.flip-card:hover .flip-card-inner,
.flip-card.flip .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.flip-card-front {
   background: #9ddce2;
  cursor: pointer;
  transition: .3s;
 
    display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; 
  text-align: center;
}

.flip-card-front:hover {
  transform: translateY(-6px);
}

.flip-card-front img {
  height: 64px;
  width: 64px;
  text-align: center;
}

.flip-card-front h3 {
  font-size: 22px;
  font-weight: 600;
  color: black;
  text-align: center;
}

.flip-card-front p {
  font-size: 15px;
  color:var(--black);
  margin-top: 8px;
  text-align: center;
}


.flip-card-back {
  background:var(--mid-night);
  transform: rotateY(180deg);
  color: #f0f0f0;
}

.flip-card-back p {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  text-align: center;
padding: 10px ;
}



.flip-card, .flip-card-inner {
  min-height: 260px;
}

@media (max-width:1400px) {
  .flip-card-back p{
    font-size: 14px;
    padding: 10px 5px;
  }
}
@media (max-width:1199px) {
  .flip-card-back p{
    font-size: 13px;
    padding: 10px 5px;
  }
  .flip-card-front img {
  height: 50px;
  width: 50px;
  text-align: center;
}

}
@media(max-width: 992px) {
  .seo-heading { font-size: 32px; }
  .flip-card-front h3 { font-size: 18px; }
  .flip-card-front img {
  height: 48px;
  width: 48px;
 
}
.flip-card-back p{
    font-size: 14px;
    padding: 50px 5px;
  }


}

@media(max-width: 768px) {
  .seo-heading { font-size: 28px; }
  .flip-card-front h3 { font-size: 18px; }
  .flip-card-front p {
  font-size: 14px;
 margin: 20px ;
}
.flip-card-back p{
    font-size: 14px;
    padding: 20px 5px;
  }

}

@media(max-width: 576px) {
  .seo-heading { font-size: 28px; }
  .flip-card-front h3 { font-size: 18px; }

  .flip-card-back p{
    font-size: 14px;
    padding: 50px 5px;
  }
}

/* end */


.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: 14px;
  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: 6px;
  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: 16px;
  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;
  }
}

@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;
  }

}

/* planning end */

/* 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;
  display: none;
}

@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 */



/* 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 */

.logo-carousel {
      background: #fff;
      overflow: hidden;
      position: relative;
      margin-bottom: 30px;
    }

    .title {
      font-size: 38px;
      font-weight: 600;
      text-align: center;
      color: #333;
      padding-bottom: 30px;
    }

    .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;
      }
    }

    @media (max-width: 992px) {
      .logo-carousel img {
        width: 100px;
        height: 100px;
      }
      .logo-track {
        gap: 35px;
        padding-right: 35px;
      }
      .logo-carousel {
        padding: 70px 0;
      }
    }

    @media (max-width: 768px) {
      .logo-carousel img {
        width: 85px;
        height: 85px;
      }
      .logo-track {
        gap: 25px;
        padding-right: 25px;
      }
      .logo-carousel {
        padding: 60px 0;
      }
      .title {
        font-size: 32px;
      }
    }

    @media (max-width: 480px) {
      .logo-carousel img {
        width: 70px;
        height: 70px;
      }
      .logo-track {
        gap: 18px;
        padding-right: 18px;
      }
      .logo-carousel {
        padding: 50px 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: 45px 0;
      }
      .title {
        font-size: 24px;
      }
    }

/* end */

/* footer start */

    .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;
      }
    }

