@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,500;0,600;0,700;1,200&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  scroll-behavior: smooth;
}   

html, body {
  overflow-x: hidden;
}
body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}
a{
  text-decoration: none;
}

section {
  padding: 30px 5%;
  }
header {
  height: 65px;
  position: fixed;
  padding: 15px 8%;
  width: 100%;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0000003b;
  z-index: 100;
  transition: 0.3s;
}

header .logo {
  filter: brightness(50);
  position: relative;
  font-size: 1.7rem;
  font-weight: 700;
  color: #ff991c;
}

header .logo img {
  top: 0px;
  position: relative;
  height: 140px;
  width: 150px;
  padding: 5px 5px;

  font-weight: 500;
  transition: all 0.3s ease;
}

header .navlist {
  display: flex;
}
.navlist li {
  margin: 0 1rem;
}
.navlist li a {
  font-size: 15px;
  display: inline-flex;
  font-weight: 600;
  color: white;
}
.navlist li a:hover {
  /* background:rgb(209, 209, 209); */

  color: white;
}
.right-header {
  display: flex;
  align-items: center;
  justify-content: end;
  grid-gap: 0.8rem;
}
.btn {
  background: var(--font);
  color: rgb(255, 255, 255);
  padding: 8px 10px;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.btn i {
  padding-left: 10px;
}
.menu-icon {
  position: relative;
  display: block;
  height: 30px;
  width: 30px;
  cursor: pointer;
}

.menu-icon .bar,
.menu-icon::after,
.menu-icon::before {
  content: "";
  display: none;
  width: 100%;
  height: 4px;
  border-radius: 3px;
  background: #ffffff;
  margin: 6px 0;
  transition: 0.4s;
}
.menu-icon.active::before {
  transform: rotate(-45deg) translate(-6px, 6px);
}
.menu-icon.active::after {
  transform: rotate(45deg) translate(-8px, -8px);
}
.menu-icon.active .bar {
  opacity: 0;
}

/* animation in header */

@keyframes move {
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

.animat {
  opacity: 0;
  transform: translateX(-300px);
  animation: moveup 0.8s linear forwards;
}
@keyframes moveup {
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
/* ==================================Home section ======================= */
.home-section {
  /* top: 50px; */
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-image: url('/img/home_backgournd.jpg'); */
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1)),
    url("/image/corporate-management-strategy-solution-branding-concept.jpg");
  background-size: cover;
  background-position: center;
  filter: brightness(0.8); /* Adjust as needed */
}

.content {
  top: 30%;
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.content h1 {
  padding-bottom: 20px;
  font-size: 1.5rem;
}
.content p {
  padding-bottom: 20px;
  font-size: 1.2rem;
}

.buttons {
  margin-top: 20px;
  text-align: center;
}

.btn {
  padding: 8px 10px;
  margin: 0 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 700;
  font-size: 18px;
}

.btn-primary {
  background-color: #000000;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.btn-primary a{
    color: white;
}
/* ===========  Heading ================= */
.heading-3d {
    text-align: center;
    font-size: 2.5em;
    color: #ffffff;
    margin-bottom: 30px;
    display: inline-block;
    margin: 10px;
    padding: 10px 15px;
    background: linear-gradient(135deg, #000000, #3f3f3f);
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transform: perspective(500px) rotateX(10deg) rotateY(-10deg);
    transition: transform 0.3s ease;
  }

  .heading-3d:hover {
    transform: perspective(500px) rotateX(0deg) rotateY(0deg);
  }


  /* ================== service ============================= */
  .services-section {
  background: url('/image/corporate-management-strategy-solution-branding-concept.jpg') no-repeat center center/cover;
  background-attachment: fixed;
  backdrop-filter: blur(0px);
  padding: 60px 5%;
  }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.card {
  background: #121212d6;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 0 20px #cccccc30;
  transition: transform 0.4s, box-shadow 0.4s;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.card:hover {
  transform: rotateY(6deg) scale(1.02);
  box-shadow: 0 0 25px #ffffff80;
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.card p {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 15px;
}

.card a {
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
  transition: color 0.3s ease;
}

.card a:hover {
  color: #fff;
}



/* ========== Testiminol section ======================= */
 .testimonial-section {
      max-width: 1200px;
      margin: auto;
      padding: 40px 20px;
      text-align: center;
    }

    .testimonial-section h2 {
      font-size: 2rem;
      margin-bottom: 30px;
      color: #222;
    }

    .testimonial-slider {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: 20px;
      padding-bottom: 10px;
    }

    .testimonial-card {
      flex: 0 0 90%;
      max-width: 350px;
      margin: auto;
      background: white;
      padding: 20px;
      border-radius: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      scroll-snap-align: center;
    }

    .testimonial-card img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      margin-bottom: 15px;
      object-fit: cover;
    }

    .testimonial-card h3 {
      margin: 10px 0 5px;
      font-size: 1.1rem;
      color: #333;
    }

    .testimonial-card p {
      font-size: 0.95rem;
      color: #555;
      line-height: 1.5;
    }

    .stars {
      color: #ffc107;
      margin: 10px 0;
    }

    @media (min-width: 768px) {
      .testimonial-slider {
        flex-wrap: nowrap;
      }

      .testimonial-card {
        flex: 0 0 30%;
      }
    }


/* ============================  FAQ ================================ */


.faqs-container {
    margin: 0 auto;
    max-width: 100%;
    padding: 10px;
  
  }
  
  .faq {
    /* background-color: transparent; */
    border: 1px solid #9FA4A8;
    border-radius: 10px;
    /* background-color: #000000; */
    padding: 30px;
    position: relative;
    overflow: hidden;
    margin: 20px 0;
    transition: 0.3s ease;
    /* background-image: url('image/UX.jpg') ; */
    /* background-repeat: no-repeat;
    background-size: cover;
    background-position: center; */
  }
  
  .faq.active {
    background-color: #fff;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1), 0 3px 6px rgba(0,0,0,0.1);
  }
  
  .faq.active::after, .faq.active::before {
    color: #2ecc71;
    /* content: 'f075'; */
    font-family: 'Font Awesome 5 Free';
    font-size: 7rem;
    position: absolute;
    opacity: 0.2;
    top: 20px;
    left: 20px;
    z-index: 0;
  }
  
  .faq.active::before {
    color: #3498db;
    top: -10px;
    left: -30px;
    transform: rotateY(180deg);
  }
  
  .faq-title {
    color: rgb(0, 0, 0);
    margin: 0 35px 0 0;
  }
  
  .faq-text {
    color: rgb(0, 0, 0);
    display: none;
    margin: 30px 0 0;
  }
  
  .faq.active .faq-text {
    display: block;
  }
  
  .faq-toggle {
    background-color: transparent;
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    padding: 0;
    position: absolute;
    top: 30px;
    right: 30px;
    height: 30px;
    width: 30px;
  }
  
  .faq-toggle:focus {
    outline: none;
  }
  
  .faq.active .faq-toggle {
    background-color: #9FA4A8;
  }
  
  .faq-toggle .fa-times {
    display: none;
  }
  
  .faq.active .faq-toggle .fa-times {
    display: block;
  }
  
  .faq-toggle .fa-chevron-down {
    color: #83888E;
  }
  
  .faq.active .faq-toggle .fa-chevron-down {
    display: none;
  }
  
  @media screen and (max-width: 480px) {
  
    .social-panel-container.visible {
      transform: translateX(0px);
    }
    
    .floating-btn {
      right: 10px;
    }
  }
footer {
    background: 
      linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
      url(image/footer.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    color: #fff;
    padding: 60px 0 30px;
    font-size: 14px;
    line-height: 22px;
    position: relative;
}

/* Layout */
.row {
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.col {
    flex-basis: 23%;
    padding: 10px;
}

/* Logo & About */
.footer_logo {
    width: 90px;
    margin-bottom: 20px;
}

.footer_about {
    color: #ddd;
}

/* Headings */
.col h3 {
    margin-bottom: 30px;
    position: relative;
    font-size: 18px;
}

/* Animated underline */
.bottom_line {
    width: 40px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    margin-top: 5px;
    position: relative;
    overflow: hidden;
}

.bottom_line span {
    width: 12px;
    height: 100%;
    background: #00ffd5;
    position: absolute;
    left: -12px;
    animation: moveline 2s linear infinite;
}

@keyframes moveline {
    0% { left: -12px; }
    100% { left: 100%; }
}

/* Links */
.col ul li {
    list-style: none;
    margin-bottom: 10px;
}

.col ul li a {
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

.col ul li a:hover {
    color: #00ffd5;
}

/* Email */
.footer_email {
    border-bottom: 1px solid #aaa;
    width: fit-content;
    margin: 15px 0;
}

/* Newsletter */
.col form {
    display: flex;
    border-bottom: 1px solid #aaa;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

.col form input {
    background: transparent;
    border: 0;
    outline: none;
    color: #fff;
    width: 100%;
}

.col form input::placeholder {
    color: #ccc;
}

.col form button {
    background: transparent;
    border: 0;
    color: #fff;
    cursor: pointer;
}

/* Social Icons */
.social-media {
    display: flex;
    gap: 15px;
}

.social-media a {
    width: 40px;
    height: 40px;
    background: #00ffd5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 20px;
    transition: 0.3s;
}

.social-media a:hover {
    background: #fff;
    transform: translateY(-5px);
}

/* HR */
hr {
    width: 90%;
    border: 0;
    border-bottom: 1px solid #555;
    margin: 20px auto;
}

/* Copyright */
footer .copyright {
    text-align: center;
    color: #ccc;
    font-size: 13px;
}

/* Mobile */
@media (max-width: 900px) {
    .col {
        flex-basis: 100%;
        text-align: center;
    }

    .social-media {
        justify-content: center;
    }
}
