@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Fjalla One", sans-serif;
}

body {
    font-family: Arial, sans-serif;
    background-color: #111;
}

/* Navbar container */
.navbar {
    width: 100%;
    background: #222;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: fixed;
    height: 100px;
    z-index: 1000;
}

/* Social icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: rgb(255, 31, 0);
    /* 🔥 bright red-orange on hover */
}

/* Logo center */
.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.logo img {
    height: 100px;
    width: auto;
}

/* Fullscreen Menu */
.menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 0;
    background: #222;
    /* normal dark background */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: height 0.5s ease;
    z-index: 999;
    gap: 35px;
}

.menu a {
    color: #fff;
    text-decoration: none;
    font-size: 2.5rem;
    /* h1 size approx */
    font-weight: bold;
    transition: color 0.3s;
}

.menu a:hover {
    color: rgb(255, 31, 0);
    transition: color 0.3s ease;
    text-decoration: underline;
    transform: ease;
}

.menu.active {
    height: 100vh;
    /* fullscreen */
}

/* Toggle button */
.toggle-btn,
.close-btn {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
}

.toggle-btn:hover ,
.close-btn:hover {
    transform: scale(1.1);
    transition: transform 0.2s ease;
    color: rgb(255, 31, 0);
}

.toggle-btn span {
    width: 25px;
    height: 3px;
    background: #fff;
}

.close-btn {
    display: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    z-index: 1001;
}

/* banner */

.banner {
    position: relative;
    height: 70vh;
    background: url('../images/secbg.png');
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    padding: 20px;
}

.banner h1 {
    font-size: clamp(2rem, 6vw, 5rem);
    font-weight: bold;
    color: white;
    line-height: 1.2;
    max-width: 90%;
    margin: 0 auto;
}

.banner h1 span,
#description span {
    color: rgb(255, 31, 0);
}

#description {
    position: absolute;
    bottom: 20px;
    left: 30px;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: white;
    text-align: left;
    max-width: 80%;
}

.cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background: white;
    margin-left: 3px;
    animation: blink 0.7s steps(1) infinite;
    vertical-align: bottom;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.watermark {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: bold;
    color: rgba(255, 255, 255, 0.2);
    user-select: none;
}

@media (max-width: 768px) {
    .banner {
        height: 50vh;
        padding: 15px;
    }

    .banner h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .description {
        font-size: 1rem;
        left: 15px;
        bottom: 15px;
    }

    .watermark {
        font-size: 1rem;
        right: 15px;
        top: 15px;
    }
}

.image-section {
    height: 50vh;
    /* default for wide screens */
    overflow: hidden;
    position: relative;
    background-color: black;
}

.image-section img {
    width: 100%;
    padding: 20px 40px 20px 40px;
    border-radius: 70px;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.3s ease-out;
}

/* 🔹 Mobile adjustments */
@media (max-width: 768px) {
    .image-section {
        height: 35vh;
        /* mobile pe thodi chhoti */
    }
}

.image-section img:hover {
    transform: scale(1.1);
    /* zoom effect on hover */
}


 .services-section {
      padding: 50px 10%;
      background: #111;
    }

    /* Section Header */
    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 30px;
    }

    .section-header h1 {
      font-size: 4.5rem;
      font-weight: bold;
      color: white;
    }

    .explore-more {
        text-decoration: none;
      color: rgb(255, 31, 0);
      font-weight: bold;
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 20px;
    }

    .explore-more:hover {
      text-decoration: underline;
      text-underline-offset: 5px;
      transition: 0.2s ease;
    }

    .explore-more span {
      font-size: 22px;
    }

    /* Accordion */
    .accordion {
      border-top: 1px solid #333;
    }

    .accordion-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
      cursor: pointer;
    }

    .accordion-number {
      font-size: 16px;
      color: #888;
      flex: 1;
    }

    .accordion-title {
      flex: 2;
      font-size: 22px;
      color: white;
    }

    .accordion-icon {
      font-size: 22px;
      font-weight: bold;
      transition: transform 0.3s ease;
      flex: 1;
      text-align: right;
      color: #888;
    }

    .accordion-icon::after {
      content: "+";
    }

    .accordion-item.active .accordion-icon::after {
      content: "-";
    }

    .accordion-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 1.2s ease;
    }

    .accordion-inner {
      padding: 15px 0;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .accordion-inner img {
      width: 250px;
      height: 250px;
      object-fit: fill;
      border-radius: 8px;
    }

    .accordion-inner p {
      margin-top: 10px;
      max-width: 250px;
      text-align: center;
      color: #bbb;
      line-height: 1.5;
    }
    

 .team-section {
  padding: 60px 20px;
  background: #0f0f0f;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.team-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 0 40px;
}

.team-title {
  font-size: 4.5rem;
  margin: 0;
}

.team-slider {
  overflow: hidden;
  width: 100%;
}

.team-track {
  display: flex;
  width: calc(300px * 8 + 20px * 8);
  animation: scroll 20s linear infinite;
}

.team-card {
  width: 300px;
  margin-right: 20px;
  flex-shrink: 0;
  text-align: left;
}

.team-card img {
  width: 300px;
  height: 300px;
  object-fit: fill;
  border-radius: 12px;
  display: flex;
}

.member-name {
  margin: 0 0 8px 4px;
  font-size: 1.5rem;
  font-weight: 300;
}
  
/* Auto scrolling animation */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 1024px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .team-header {
    flex-direction: column;
    gap: 15px;
    padding: 0 20px;
  }

  .team-track {
    animation-duration: 30s; /* slower for smaller screens */
  }
}

/* Mobile */
@media (max-width: 768px) {
  .accordion-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .accordion-icon {
    text-align: left;
  }

  .team-card {
    width: 70vw; /* bigger card on small screens */
  }
}

/* Extra Small Devices */
@media (max-width: 480px) {
  .services-section {
    padding: 40px 5%;
  }

  .accordion-inner img {
    max-width: 200px;
  }

  .team-card {
    width: 90vw;
  }
}

.clients-section {
  padding: 60px 20px;
  position: relative;
  background: url('../images/secbg.png');
  text-align: center;
  overflow: hidden;
}

.clients-heading {
  text-align: left;
  font-size: 4.5rem;
  margin-bottom: 40px;
  color: white;
  font-weight: bold;
}

.clients-slider {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  height: 300px; /* fixed height for smooth transition */
}

.client-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.6s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.client-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.client-card {
  border-radius: 20px;
  padding: 30px;
  max-width: 500px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s;
}

.client-card:hover {
  transform: translateY(-5px);
}

.client-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #fff;
  box-shadow: 0px 5px 15px rgba(0,0,0,0.2);
}

.client-card h4 {
  margin: 10px 0 8px;
  font-size: 1.3rem;
  font-weight: bold;
  color: white;
}

.client-card p {
  font-size: 1rem;
  color: #bbb;
  line-height: 1.6;
}

/* Arrows */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #222;
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s, transform 0.3s;
}

.prev:hover, .next:hover {
  background: #444;
  transform: scale(1.1);
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

/* Dots */
.dots {
  margin-top: 20px;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.4s, transform 0.3s;
  cursor: pointer;
}

.dot.active {
  background-color: #333;
  transform: scale(1.2);
}

/* ================= RESPONSIVE ================= */

/* Large screens (desktops) */
@media (min-width: 1200px) {
  .clients-slider {
    max-width: 900px;
    height: 350px;
  }

  .client-card {
    max-width: 600px;
    padding: 40px;
  }

  .client-card h4 {
    font-size: 1.6rem;
  }

  .client-card p {
    font-size: 1.1rem;
  }
}

/* Tablets (768px – 1199px) */
@media (max-width: 1199px) and (min-width: 768px) {
  .clients-heading {
    font-size: 1.8rem;
  }

  .clients-slider {
    max-width: 600px;
    height: 280px;
  }

  .client-card {
    padding: 25px;
  }

  .client-card img {
    width: 80px;
    height: 80px;
  }

  .client-card h4 {
    font-size: 1.2rem;
  }

  .client-card p {
    font-size: 0.95rem;
  }
}

/* Mobile screens (up to 767px) */
@media (max-width: 767px) {
  .clients-heading {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
  }

  .clients-slider {
    max-width: 100%;
    height: auto; /* allow auto height */
  }

  .client-card {
    max-width: 90%;
    padding: 20px;
  }

  .client-card img {
    width: 70px;
    height: 70px;
  }

  .client-card h4 {
    font-size: 1.1rem;
  }

  .client-card p {
    font-size: 0.9rem;
  }

  .prev, .next {
    font-size: 1.5rem;
    padding: 8px 12px;
  }

  .prev {
    left: 10px;
  }

  .next {
    right: 10px;
  }
}

.image-section {
    height: 50vh;
    /* default for wide screens */
    overflow: hidden;
    position: relative;
    background-color: black;
}

.image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.3s ease-out;
}

/* 🔹 Mobile adjustments */
@media (max-width: 768px) {
    .image-section {
        height: 35vh;
        /* mobile pe thodi chhoti */
    }
}

/* Quick Answers Section */
.quick-answers {
  padding: 80px 20px;
  background: #111;
  text-align: center;
}

.qa-heading {
  font-size: 4.5rem;
  margin-bottom: 40px;
  font-weight: 700;
  color: white;
}

.qa-accordion-container {
  max-width: 700px;
  margin: 0 auto;
}

.qa-accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(255, 253, 208, 0.5);
  overflow: hidden;
  background: #fff;
  transition: transform 0.3s ease;
}

.qa-accordion-item:hover {
  transform: translateY(-3px);
}

.qa-accordion-header {
  width: 100%;
  text-align: left;
  background: #fff;
  padding: 18px 20px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.qa-accordion-header .icon {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.qa-accordion-content {
  max-height: 0;
  overflow: hidden;
  background: #f9fafb;
  padding: 0 20px;
  transition: all 0.4s ease;
}

.qa-accordion-content p {
  padding: 15px 0;
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.6;
}

/* Footer Section */
.footer {
  background: url('../images/secbg.png');
  color: #fff;
  padding: 60px 20px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 40px;
}

.footer-heading {
  flex: 1;
  min-width: 200px;
  margin-top: 60px;  
  font-size: 8.5rem;
  font-weight: 700;
  color: rgb(255, 31, 0);
  padding: 40px;
}

.footer-right {
  text-align: right;
  flex: 1;
  min-width: 200px;
  padding: 40px;
}

.socials {
  margin-bottom: 20px;
}

.social-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 600;
  color: rgb(255, 31, 0); /* Golden highlight */
}

.socials ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.socials ul li {
  margin: 8px 0;
}

.socials ul li a {
  color: #ddd;
  text-decoration: none;
  font-size: 2rem;
  transition: color 0.3s ease;
}

.socials ul li a:hover {
  color: rgb(255, 31, 0);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.footer-links {
  text-align: center;
  margin-bottom: 25px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links ul li a {
  color: #bbb;
  text-decoration: none;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
 color: rgb(255, 31, 0);
}

.footer-bottom {
  text-align: center;
  font-size: 1.3rem;
  color: #888;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-heading {
    font-size: 5rem;
    margin-top: 20px;
    padding: 20px 0;
  }

  .footer-right {
    text-align: center;
    padding: 20px 0;
  }

  .social-title {
    font-size: 2rem;
  }

  .socials ul li a {
    font-size: 1.5rem;
  }

  .footer-links ul {
    flex-direction: column;
    gap: 10px;
  }

  .footer-links ul li a {
    font-size: 1.2rem;
  }
}