/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* Header Styles */
  header {
    background: #ffffff;
    color: #000000;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  /* Ticker Styles */
  .ticker {
  background: #ff6600;
  color: white;
  padding: 8px;
  font-size: 14px;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 10;
}

.ticker span {
  display: inline-block;
  animation: ticker 20s linear infinite;
}

@keyframes ticker {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
  
  /* Navigation Bar */
  .nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 40px;
  }
  
  .nav-bar .logo {
    font-size: 24px;
    font-weight: bold;
  }
  
  .nav-bar .menu {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .nav-bar .menu li a {
    color: rgb(0, 0, 0);
    font-weight: bold;
    transition: color 0.3s;
  }
  
  .nav-bar .menu li a:hover {
    color: #ff6600;
  }
  
.hamburger-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: black; /* yaha white ki jagah black */
}


@media (max-width: 768px) {
    .nav-bar .hamburger-menu {
        display: block;
        color: black !important; /* force black in mobile view */
    }
}
  
  /* Banner Section */
  .banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: url('../images/hero/banner.png') no-repeat center center/cover;
    height: 80vh;
    padding: 20px;
    color: white;
  }
  
  .banner-content {
    max-width: 50%;
  }
  
  .banner-content h1 {
    font-size: 3rem;
    font-weight: bold;
  }
  
  .banner-content p {
    font-size: 1.2rem;
    margin-top: 10px;
  }
  
  .contact-form {
    max-width: 30%;
    background: rgba(77, 66, 66, 0.6);
    padding: 20px;
    border-radius: 10px;
  }
  
  .contact-form h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  
  .contact-form p {
    margin-bottom: 20px;
  }
  
  .contact-form form input,
  .contact-form form select,
  .contact-form form button {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    font-size: 1rem;
    border-radius: 5px;
    border: none;
  }
  
  .contact-form form button {
    background: #ff6600;
    color: rgb(252, 252, 252);
    font-weight: bold;
    cursor: pointer;
  }
  
  .contact-form form button:hover {
    background: #e65500;
  }
  

  /* Trusted Badges Section */
.trusted-badges {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
  }
  
  .trusted-badges .section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
  }
  
  .trusted-badges .section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
  }
  
  .trusted-badges .badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .trusted-badges .badge {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .trusted-badges .badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
  }
  
  .trusted-badges .badge img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
  }
  
  .trusted-badges .badge h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
  }
  
  .trusted-badges .badge p {
    font-size: 1rem;
    color: #666;
  }
  


 /* About Us Section */
  .about-us {
  padding: 50px 20px;
  background-color: #fff;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.about-banner {
  flex: 1;
}

.about-banner img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-text {
  flex: 1;
  text-align: left;
}

.about-text .section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.about-text .section-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Flip Card Design */
.flip-card {
  background-color: transparent;
  width: 100%;
  max-width: 600px;
  height: auto;
  aspect-ratio: 3 / 2; /* Maintain aspect ratio */
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.flip-card-front {
  background-color: #fff;
}

.flip-card-front img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.flip-card-back {
  background: linear-gradient(45deg, #ff9966, #ff5e62);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: rotateY(180deg);
  padding: 20px;
}

.flip-card-back h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.flip-card-back p {
  font-size: 16px;
  margin-bottom: 15px;
}

.whatsapp-icon {
  display: inline-block;
  padding: 10px 15px;
  background-color: #25d366;
  color: white;
  text-decoration: none;
  font-size: 18px;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.whatsapp-icon:hover {
  background-color: #1da851;
} 



  /* Services Section */
.services {
    padding: 50px 20px;
    background-color: #f4f4f4;
    text-align: center;
  }
  
  .services .section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
  }
  
  .services .section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .service-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
  }
  
  .service-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
  }
  
  .service-item h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
  }
  
  .service-item p {
    font-size: 1rem;
    color: #555;
  }
  

  /* Recent Works Section */
.recent-works {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
  }
  
  .recent-works .section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
  }
  
  .recent-works .section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
  }
  
  .works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .work-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .work-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
  }
  
  .work-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
  }
  
  .work-item h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
  }
  
  .work-item p {
    font-size: 1rem;
    color: #555;
  }

  
  /* Subscription Plans Section */

/* Subscription Plans Section */
.subscription-plans {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
}

.subscription-plans h1 {
  font-size: 2.5rem;
  color: #ff6f00; /* Orange */
  margin-bottom: 20px;
}

.toggle-buttons {
  margin-bottom: 30px;
}

.toggle-buttons button {
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin: 0 10px;
  background-color: #e0e0e0;
  color: #333;
  transition: background-color 0.3s, color 0.3s;
}

.toggle-buttons button.active {
  background-color: #4caf50; /* Green */
  color: white;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.category-card {
  background-color: white;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.category-title {
  font-size: 1.8rem;
  color: #ff6f00; /* Orange */
  margin-bottom: 20px;
}

.plans-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.plan-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 20px;
  text-align: left;
}

.plan-card h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 15px;
}

.plan-card .price {
  font-size: 1.8rem;
  color: #4caf50; /* Green */
  font-weight: bold;
  margin: 15px 0;
}

.plan-card .features {
  list-style-type: none;
  padding: 0;
  margin: 20px 0;
}

.plan-card .features li {
  margin: 10px 0;
  font-size: 0.9rem;
  color: #777;
  text-align: left;
}

.plan-card .features li::before {
  content: "✓";
  color: #4caf50; /* Green */
  margin-right: 10px;
}

.buy-now-btn {
  background-color: #ff6f00; /* Orange */
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.buy-now-btn:hover {
  background-color: #4caf50; /* Green */
}

@media (max-width: 768px) {
  .plans-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}


  
/* Team Members Section */
/* Team Members Section */
.team-members {
  padding: 50px 20px;
  background-color: #f4f4f4;
  text-align: center;
}

/* Section Title */
.team-members .section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.team-members .section-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
}

/* Team Slider - Swipeable in Mobile */
.team-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto; /* Enables swipe effect */
  scroll-snap-type: x mandatory;
  padding: 20px 0;
  scroll-padding: 20px;
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

/* Hide scrollbar for better UI */
.team-slider::-webkit-scrollbar {
  display: none;
}

/* Team Card */
.team-card {
  flex: 0 0 auto;
  width: 280px;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  scroll-snap-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

/* Team Image */
.team-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

/* Social Media Icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.social-icons img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.social-icons a:hover img {
  transform: scale(1.2);
}

/* Animation */
.team-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.team-card.reveal {
  opacity: 1;
  transform: translateY(0);
}

/* Desktop Centering */
@media (min-width: 768px) {
  .team-slider {
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
  }
}



/* Brand Logos Section */
.brand-logos {
  padding: 30px 20px;
  background-color: #fff;
  text-align: center;
}

.brand-logos .section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.brand-logos .section-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
}

.logo-slider {
  display: flex;
  justify-content: center;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 20px 0;
}

.logo-item {
  flex: 0 0 auto;
  scroll-snap-align: center;
}

.logo-item img {
  width: 100px;
  height: auto;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo-item:hover img {
  opacity: 1;
  transform: scale(1.1);
}


/* Testimonials Section */
/* Testimonials Section */
.testimonials {
  padding: 50px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.testimonials .section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.testimonials .section-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
}

/* Wrapper to hide overflow */
.testimonial-slider-wrapper {
  overflow: hidden;
  position: relative;
  max-width: 600px; /* Optional: Limit max width */
  margin: 0 auto;
}

/* Slider for testimonials */
.testimonial-slider {
  display: flex;
  transition: transform 0.5s ease-in-out; /* Smooth transition */
}

/* Each testimonial card */
.testimonial-card {
  flex: 0 0 100%;
  padding: 20px; /* Increased padding for more space */
  border-radius: 10px;
  background: white;
}
.testimonial-card p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 15px;
}

.testimonial-card h3 {
  font-size: 1rem;
  color: #777;
}

.testimonial-nav {
  margin-top: 20px;
}

.testimonial-nav button {
  background: #ff6600;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 5px;
  cursor: pointer;
  margin: 0 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.testimonial-nav button:hover {
  background: #e65500;
}



/* Newsletter Section */
.newsletter {
  padding: 30px 20px;
  background-color: #1a1a1a;
  color: #fff;
  text-align: center;
}

.newsletter .section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.newsletter .section-subtitle {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #ddd;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
}

.newsletter-form button {
  background: #ff6600;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: #e65500;
}


/* Footer Section */
.footer {
  padding: 30px 20px;
  background-color: #ffffff;
  color: #0c0c0c;
  text-align: left;
}

.footer .footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.footer p,
.footer ul {
  font-size: 1rem;
  color: #070707;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer ul li {
  margin: 5px 0;
}

.footer ul li a {
  color: #ff6600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer ul li a:hover {
  color: #e65500;
}

.copyright {
  text-align: center;
  font-size: 1rem;
  padding-top: 10px;
  color: white;
  padding-bottom: 10px;
  background-color: #e65500;
}


/* FAQ Section */
.faq {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px 20px;
  background-color: #f4f4f4;
  text-align: center; /* Center the text */
}

.faq .section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.faq .section-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
}

.faq-item {
  margin-bottom: 20px;
  text-align: left;
}

.faq-question {
  background: #ff6600;
  color: white;
  padding: 15px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.faq-question span {
  font-weight: bold;
}

.faq-answer {
  background: white;
  padding: 15px 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-top: 10px;
  display: none;
  transition: all 0.3s ease; /* Smooth transition */
}

<style>
.menu li:hover > ul {
  display: block;
}
.menu li ul li a:hover {
  background: #f5f5f5;
}
</style>

