/* @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap'); */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-text-color: #FFFFFF;
  --secondary-text-color: #9B96B0;
  --padding-inline-section: 15px;
}

body {
  font-family: 'poppins', sans-serif;
  background-color: black;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 1.5rem;
}


h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 2.5rem;
}

p {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8rem;
  line-height: 1.8rem;
  color: var(--secondary-text-color);
}

a {
  text-decoration: none;
  cursor: pointer;
  color: var(--primary-text-color);
  display: inline-block;

}

ul {
  list-style: none;
}

/* utility */

.flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.container {
  max-width: 1280px;
  margin-inline: auto;
  padding: var(--padding-inline-section);
}



/* Header */

.header {
  width: 100%;
  background-color: black;
  position: sticky;
  top: 0;
  left: 0;
  border-bottom: white 1px;
  /* opacity: 0.9; */
  z-index: 1000;
}

.logo {
  width: 3rem;
  border-radius: 50%;
}

.dropdown {
  display: none;
}

.nav {
  margin-right: 28px;
}

.nav-links {
  gap: 28px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}


.nav-links .active {
  color: #d66c2a;
}

.get-started {
  font-size: 12px;
  /* /* background: linear-gradient(to right, rgb(255, 0, 221),rgb(187, 74, 187)); */
  background: linear-gradient(to right, #aa6642, #834d2b);
  padding: 10px 26px;
  border-radius: 22px;
  transition: all 0.2s;
}

.get-started:hover {
  /* box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
     */
  background: linear-gradient(90deg, #C87C50, #A8653E);
}

.get-started:active {
  background: linear-gradient(90deg, #A8653E, #8B4D31);
  /* Even darker gradient for active state */
  transform: scale(0.95);
}

.hamburger {
  display: none;
}

@media only screen and (max-width:909px) {

  .header {
    background-color: #A8653E;
  }

  .nav {
    position: absolute;
    left: 0;
    top: 100%;
    flex-direction: column;
    width: 100%;
    transform: translate(-100%);
    transition: all 0.2s;

  }

  .active {
    transform: translatex(0);
  }

  .nav-links {
    flex-direction: column;
    background-color: black;
    width: 100%;
    padding-block: 20px;

  }



  .hamburger {
    display: block;
    color: var(--primary-text-color);
    font-size: 28px;
    margin-right: 18px;
  }

  .get-started {
    display: none;
  }
}




/* Hero Section */
.hero-section {
  background-color: black;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.hero-container {
  max-width: 800px;
  width: 90%;
  padding: 20px;
}

.hero-section span,
.hero-section h1,
.hero-section p {
  color: var(--primary-text-color);
}

.tag {
  display: inline-block;
  padding: 6px 14px;
  font-size: 16px;
  border-radius: 5px;
  margin-bottom: 15px;
}

.hero-section h1 {
  font-size: 3.4rem;
  margin-bottom: 15px;
}

.hero-container p {
  margin: 15px 0;
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgb(207, 204, 204);
}

.hero-button {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.hero-button a {
  padding: 14px 15px;
  font-size: 16px;
  text-decoration: none;
  color: white;
  background: linear-gradient(90deg, #A8653E, #8B4D31);
  border-radius: 7px;
  transition: 0.3s ease-in-out;
}

.hero-button a:hover {
  background: linear-gradient(90deg, #a87557, #8B4D31);
}

.shadow {
  display: none;
  position: absolute;
  top: 25%;
  max-width: 450px;
}

/* Responsive Design */
@media only screen and (max-width: 768px) {

  .hero-section {
    height: auto;
    padding: 60px 20px;

  }

  .hero-section h1 {
    font-size: 2.5rem;
  }

  .hero-container p {
    font-size: 1rem;
  }

  .hero-button {
    flex-direction: column;
    gap: 15px;
  }

  .hero-button a {
    width: 100%;
    text-align: center;
  }
}


#tsparticles {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0; /* Behind other content */
  top: 0;
  left: 0;
}

.hero-section {
  position: relative; /* Needed for absolute particles positioning */
  overflow: hidden;
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2; /* Keep text above particles */
}


/* Brand Section */
 .brand-section {
      width: 100%;
      padding: 2.5rem 0;
      background: linear-gradient(#A8653E, #301508);
    }

    .brand-container {
      text-align: center;
      padding: 2rem;
      border-radius: 12px;
    }

    .brand-container h2 {
      color: white;
      font-size: 2.5rem;
      margin-bottom: 3rem;
      line-height: 1.1;
    }

    .brand-marquee-wrapper {
      overflow: hidden;
      position: relative;
      width: 100%;
    }

    .brand-marquee-track {
      display: flex;
      width: max-content;
      animation: scroll 30s linear infinite;
    }

    .brand-logo {
      flex: 0 0 auto;
      margin: 0 2rem;
    }

    .brand-logo img {
      max-width: 100%;
      height: auto;
      max-height: 60px;
      object-fit: contain;
      filter: brightness(0.9);
      transition: transform 0.3s ease-in-out;
    }

    .brand-logo img:hover {
      transform: scale(1.1);
    }

    @keyframes scroll {
      0% {
        transform: translateX(0%);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    /* Responsive Tweaks */
    @media (max-width: 768px) {
      .brand-container {
        padding: 1.5rem;
      }

      .brand-container h2 {
        font-size: 1.5rem;
      }

      .brand-logo {
        margin: 0 1rem;
      }
    }

    @media (max-width: 480px) {
      .brand-logo img {
        max-height: 60px;
      }
    }




/* who we are section */

/* General Section Styling */
.who-we-are {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 80px;
  background-color: #F5E8DC;
  /* Light beige background */
}

.who-we-are .who-we-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-items: center;
}

/* Image Styling */
.who-we-are .image {
  flex: 1;
  text-align: center;
  padding: 10px;
  border-radius: 18px;
  border: #F5E8DC 1px;
  border-style: groove;

}

.who-we-are .image img {
  border-radius: 18px;
  max-width: 100%;
  border-radius: 10px;
  /* Rounded corners */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  /* Subtle shadow */
  object-fit: cover;
  max-height: 100%;
  object-position: center;

}

/* Content Styling */
.who-we-are .content {
  flex: 1;
  padding-left: 80px;
  color: #3A1F1F;
  /* Dark brown text */

}

.content h2 {
  color: var(--primary-text-color);
  padding-bottom: 10px;
}

.content h4 {
  color: #d66c2a;
  padding-bottom: 15px;

}

.content p {
  color: var(--secondary-text-color);
  padding-bottom: 15px;
}


/* Responsive Design */
@media (max-width: 1130px) {
  .who-we-are .container {
    flex-direction: column;
  }

  .who-we-are .image,
  .who-we-are .content {
    flex: unset;
    text-align: center;
  }

  .who-we-are .content {
    padding-left: unset;
    text-align: left;
  }

  .content h2 {
    line-height: 1.1;
    font-size: 1.5rem;
  }

  .content {
    margin-top: 3rem;
  }

  .who-we-are {
    padding-block: 40px;
  }
}


/* Why Kalope choose */
   .section {
      width: 100%;
      padding: 2rem;
      background-color: black;
      color: white;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .section-header h1 {
      font-size: 2.5rem;
      color: #c25f26;
      margin-bottom: 0.8rem;
    }

    .section-header p {
      font-size: 1.1rem;
      color: #d9d6d6;
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.6;
    }

    .content-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }

    .image-side {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
    }

    .image-side img {
      width: 100%;
      height: 100%;
      max-height: 400px;
      object-fit: cover;
      border-radius: 12px;
      display: block;
    }

    .content-side {
      padding: 2rem;
    }

    .content-box {
      margin-bottom: 2rem;
    }

    .content-box h4 {
      color: #d66c2a;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 0.5rem;
    }

    .content-box h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      line-height: 1.3;
    }

    .content-box p {
      color: #d9d6d6;
      line-height: 1.6;
      margin-bottom: 1.5rem;
    }

    /* Responsive */
    @media only screen and (max-width: 768px) {
      .content-container {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .section-header h1 {
        font-size: 2rem;
      }

      .image-side img {
        height: 300px;
      }

      .content-side {
        padding: 1rem;
      }
    }

    @media only screen and (max-width: 480px) {
      .section-header h1 {
        font-size: 1.8rem;
        padding: 10px;
      }

      .section-header p {
        font-size: 1rem;
        padding-bottom: 5px;
      }

      .content-box h3 {
        font-size: 1.2rem;
      }

      .content-box p {
        font-size: 14px;
      }
    }








.stats-section {
  padding: 2rem 1rem;
  padding-block: 3rem;
}

.stats-section h2 {
  color: white;
  color: #af5826;
  font-size: 2.5rem;
  text-align: center;
  padding: 12px;
}

.stats-section h3 {
  color: white;
  text-align: center;
  margin-bottom: 15px;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 0 auto;


}

.stat-item {

  padding: 1.5rem;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  color: var(--primary-text-color);

  border: #834d2b 2px;
  border-style: groove;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.stat-item h2 {
  font-size: 2rem;
  margin: 5px;
  color: var(--primary-text-color);
}

.stat-item h2 span {
  font-size: 1.5rem;
  color: var(--primary-text-color);
}

.stat-item p {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: var(--primary-text-color);
}

@media (max-width: 768px) {
  .stat-item h2 {
    font-size: 1.75rem;
  }

  .stat-item p {
    font-size: 0.9rem;
  }
}




.service-section {
  padding-block: 70px;
  background-color: black;
}

.service-content {
  color: var(--primary-text-color);
  max-width: 50%;
  text-align: center;
  margin: auto;
}

.service-content h4 {
  color: #d66c2a;
  padding-bottom: 15px;
}

.service-content h2 {
  line-height: 1.3;
  margin-bottom: 35px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  /* Adjusted min width */
  gap: 1.5rem;
  margin: 0 auto;
  max-width: 1200px;
  /* Optional: Limits the grid width */
}


.service-card {
  width: 260px;
  /* Fixed width for each card */
  margin: auto;
  /* Centering the cards */
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: #834d2b 2px groove;
}

.service-card i {
  color: #d66c2a;
  font-size: 2rem;
  margin-bottom: 20px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
  font-size: 1.5rem;
  color: var(--primary-text-color);
  margin-bottom: 1rem;
  font-weight: 400;
}

.service-card p {
  font-size: 1rem;
  color: var(--secondary-text-color);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.service-card .learn-more {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  color: #007bff;
  text-decoration: none;
  border: 1px solid #007bff;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s;
}

.service-card .learn-more:hover {
  background-color: #007bff;
  color: #ffffff;
}

@media (max-width: 768px) {
  .service-section {
    padding-block: 50px;
    background-color: black;
  }

  .service-content h2 {
    line-height: 1.3;
    margin-bottom: 20px;
    font-size: 1.4rem;
  }

  .service-content {
    color: var(--primary-text-color);
    max-width: 100%;
    text-align: center;
    margin: auto;
  }
}

@media (max-width: 768px) {
  .service-card h3 {
    font-size: 1.25rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }

  .service-card .learn-more {
    font-size: 0.9rem;
  }
}


/* magic section */






.magic-section {
  padding-block: 2rem;
  background-color: black;
  overflow: hidden;
}

.content-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.content {
  flex: 1;
  max-width: 600px;
  opacity: 0;
  transform: translateX(-100%);
  animation: slideInLeft 1s ease-out forwards;
}

.image {
  flex: 1;
  text-align: center;
  opacity: 0;
  transform: translateX(100%);
  animation: slideInRight 1s ease-out both;
  animation-delay: 0s;
}

.content-container content h2 {
  font-size: 2rem;
  color: #333333;
  margin-bottom: 1rem;
}

.content-container content p {
  font-size: 1rem;
  color: #555555;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.skills {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.skill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}

.skill span {
  flex: 1;
  font-size: 1rem;
  color: var(--secondary-text-color);
  min-width: 120px;
}

.progress {
  flex: 3;
  background: #e0e0e0;
  border-radius: 8px;
  height: 8px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.progress-bar {
  height: 100%;
  background: #007bff;
  border-radius: 8px;
  transition: width 0.3s ease;
}

.percentage {
  flex: 1;
  font-size: 0.9rem;
  color: #555555;
  text-align: right;
  min-width: 50px;
}

.image img {
  max-width: 100%;

  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Keyframes for animations */
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}


.how-it-works {
  padding: 4rem 1rem;
  background-color: black;
}

.inner-container {
  text-align: center;
  margin-bottom: 2rem;
  opacity: 0;
  /* Initially hidden for animation */
  transform: translateY(20px);
  /* Start below */
  transition: opacity 1s ease, transform 1s ease;
}

.inner-container.visible {
  opacity: 1;
  transform: translateY(0);
}

.inner-container h4 {
  color: #d66c2a;

}

.inner-container h2 {
  max-width: 50%;
  margin-inline: auto;
  line-height: 1.3;
  margin-block: 25px;
  color: var(--primary-text-color);
}

.inner-container p {
  font-size: 1rem;
  color: #555;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  opacity: 0;
  /* Initially hidden for animation */
  transform: translateY(40px);
  /* Start below */
  transition: opacity 1s ease, transform 1s ease;
}

.work-grid.visible {
  opacity: 1;
  transform: translateY(0);
}

.work-card {
  background: black;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: #834d2b;
  border-style: groove;
  border-radius: 0.6rem;
}

.work-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.work-card i {
  color: white;
  font-size: 3rem;
  margin-bottom: 15px;

}

.work-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--primary-text-color);
}

.work-card p {
  font-size: 0.9rem;
  color: var(--secondary-text-color);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}



/* Responsive Design */
@media (max-width: 1024px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .inner-container h2 {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .work-grid {
    grid-template-columns: 1fr;
  }

  .inner-container h2 {
    font-size: 1.8rem;
  }

  .inner-container p {
    font-size: 0.9rem;
  }
}


/* What your clients say */


.testimonial-section {
  text-align: center;
  background: black;
  padding: 40px 20px;
}

.testimonial-heading {
  font-size: 2.5rem;
  font-weight: bold;
  color: #d66c2a;
  margin-bottom: 20px;
}

/* Slider Track */
#testimonialSlider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

/* Each Card takes full screen width on phone */
.testimonial-card {
  flex: 0 0 100%;
  max-width: 100vw;
  scroll-snap-align: start;
  padding: 15px;
  background: #1a1a1a;
  border: 2px groove #834d2b;
  border-radius: 0.6rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  color: wheat;
  text-align: center;
  box-sizing: border-box;
}

.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid #ddd;
  margin-bottom: 10px;
}

.testimonial-text {
  font-size: 14px;
  color: #ddd;
  line-height: 1.6;
}

.separator {
  display: inline-block;
  width: 50px;
  height: 3px;
  background: #d66c2a;
  margin: 15px 0;
}

.testimonial-name {
  font-size: 16px;
  font-weight: bold;
  color: #d66c2a;
}

.testimonial-role {
  font-size: 14px;
  color: wheat;
}

/* Arrows */
#prevBtn, #nextBtn {
  background: white;
  color: black;
  padding: 8px 12px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  border: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
}

#prevBtn {
  left: 10px;
}

#nextBtn {
  right: 10px;
}

/* Desktop layout: show 3 cards */
@media screen and (min-width: 768px) {
  #testimonialSlider {
    flex-wrap: wrap;
    justify-content: center;
    scroll-snap-type: none;
    overflow: visible;
  }

  .testimonial-card {
    flex: 0 0 28%;
    max-width: 28%;
    margin: 15px;
  }

  #prevBtn,
  #nextBtn {
    display: none;
  }
}
/* CTA Sections */


.cta-section {
  max-width: 1200px;
  margin: 50px auto;
  /* Increased top margin for more space */
  padding: 50px 20px;
  text-align: center;
  background: linear-gradient(#A8653E, #301508);
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  color: white;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 30px;
  color: var(--secondary-text-color);
}

.cta-button {
  display: inline-block;
  background: linear-gradient(#A8653E, #301508);
  color: white;
  font-size: 18px;
  font-weight: bold;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  box-shadow: 0px 4px 6px rgba(66, 47, 47, 0.1);
  transition: 0.3s ease-in-out;
}

@media (max-width: 768px) {
  .cta-section {
    padding: 25px 10px;
  }

  .cta-section h2 {
    font-size: 28px;
  }

  .cta-section p {
    font-size: 16px;
  }

  .cta-button {
    font-size: 16px;
    padding: 10px 25px;
  }
}

@media (max-width: 480px) {
  .cta-section {
    padding: 20px 10px;
  }

  .cta-section h2 {
    font-size: 24px;
  }

  .cta-section p {
    font-size: 14px;
  }

  .cta-button {
    font-size: 14px;
    padding: 8px 20px;
  }
}


/* Contact-us */

#contact-form {
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
}

.text-center {
  text-align: center;
  margin-bottom: 40px;
}

.text-center h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #d66c2a;
}

.text-center p {
  font-size: 1.2rem;
  color: white;
}

.form-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.map-container {
  flex: 1;
  min-width: 50%;
  background: black;
  padding: 20px;
  border-radius: 8px;
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: none;
  filter: grayscale(1) contrast(1.2) opacity(1);
}

.contact-info {
  margin-top: 15px;
  color: white;
}

.contact-info h3 {
  font-size: 1rem;
  font-weight: bold;
}

.form-wrapper {
  flex: 1;
  min-width: 40%;
}

.form-wrapper h2 {
  color: white;
  font-size: 20px;
}

form label {
  display: block;
  margin: 10px 0 5px;
  font-weight: normal;
  color: #bbb;
}

form input,
form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #444;
  border-radius: 5px;
  font-size: 1rem;
  background: #222;
  color: white;
}

form textarea {
  height: 120px;
}

button {
  width: 20%;
  padding: 12px;
  margin-top: 15px;
  background: linear-gradient(#A8653E, #301508);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  border-radius: 6px;
}

.response-message {
  text-align: center;
  margin-top: 10px;
  color: #bbb;
  font-size: 15px;
}

@media screen and (max-width: 768px) {
  .form-container {
    flex-direction: column;
    align-items: center;
  }

  .map-container,
  .form-wrapper {
    min-width: 100%;
  }

  .map-container iframe {
    height: 250px;
  }
}



/* Footer-sections */

.footer {
  background-color: black;
  color: #4b5563;
  padding: 40px 0;
}

.wrapper {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e7eb;
}

.brand {
  width: 20%;
  text-align: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo img {
  text-align: center;
  border-radius: 50%;
  width: 40px;
  height: 40px;

}


.brand-name {
  font-size: 25px;
  font-weight: bold;
  display: block;
  color: var(--primary-text-color);
  margin-top: 5px;
}

.brand-description {
  font-size: 14px;
  color: var(--secondary-text-color);
}

.footer-links {
  display: flex;
  width: 75%;
  justify-content: space-between;
}

.column {
  width: 22%;
}

.column h3 {
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-text-color);
  margin-bottom: 10px;
}

.column ul {
  list-style: none;
  padding: 0;
}

.column ul li {
  margin-bottom: 8px;
}

.column ul li a {
  text-decoration: none;
  color: white;
  font-size: 14px;
  transition: color 0.3s;
}



.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
}

.footer-bottom p {
  font-size: 14px;
  color: white;
}

.footer-bottom a {
  text-decoration: none;
  color: white;
  transition: color 0.3s;
}



.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons img {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
}

.social-icons img:hover {
  transform: scale(1.1);
}



/* media query for footers */

@media screen and (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .brand {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Logo और description को center करने के लिए */
    margin-bottom: 20px;
  }

  .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Logo और Text दोनों को center करने के लिए */
    gap: 10px;
  }

  .brand-name {
    margin-top: 0;
    /* Extra space remove करने के लिए */
    font-size: 20px;
  }

  .brand-description {
    max-width: 80%;
    /* Text width को adjust करने के लिए */
    text-align: center;
    /* Center alignment */
    margin-top: 8px;
  }

  .footer-links {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .column {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }
}