/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
}

/* Header */
header {
  width: 100%;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
/* Nav Bar */
.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  position: relative;
}

/* Nav Links */
nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
  margin: 0;
  transition: right 0.3s ease;
}

/* Links */
nav ul li a {
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  color: #333;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #0066cc;
}

/* CTA Button */
.btn-download {
  background: #0066cc;
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 5px;
  transition: background 0.3s;
}

.btn-download:hover {
  background: #004a99;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger .bar {
  width: 25px;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
  transition: 0.3s;
}

/* Responsive */
@media (max-width: 991px) {
  nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    width: 240px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 80px 20px;
    gap: 20px;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
  }

  nav ul.active {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  nav ul li {
    margin-bottom: 15px;
  }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1100;
}

.hamburger .bar {
  width: 25px;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
  transition: 0.4s;
}

/* Hamburger active → cross */
.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive */
@media (max-width: 991px) {
  .hamburger {
    display: flex;
  }
}

/* Banner Section */
.banner {
  background: linear-gradient(135deg, #0066cc, #004a99);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.banner-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.banner-content h2 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.banner-content p {
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 25px auto;
  line-height: 1.6;
  color: #f9f9f9;
}

/* CTA Button */
.banner .btn-download {
  display: inline-block;
  background: #ffcc00;
  color: #000 !important;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.banner .btn-download:hover {
  background: #e6b800;
}

/* Rating Section */
.rating {
  margin-top: 25px;
  font-size: 0.95rem;
  color: #f0f0f0;
}

.rating .stars {
  font-size: 1.3rem;
  color: #ffdd55;
  margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .banner {
    padding: 60px 15px;
  }

  .banner-content h1 {
    font-size: 2rem;
  }

  .banner-content h2 {
    font-size: 1.2rem;
  }

  .banner-content p {
    font-size: 0.95rem;
  }

  .banner .btn-download {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .banner-content h1 {
    font-size: 1.6rem;
  }

  .banner-content h2 {
    font-size: 1rem;
  }

  .banner-content p {
    font-size: 0.9rem;
  }

  .rating {
    font-size: 0.85rem;
  }
}
/* Our Story Section */
.our-story-section {
  background: #f9f9f9;
  padding: 80px 20px;
  font-family: 'Roboto', sans-serif;
}

.story-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.story-left, 
.story-right {
  flex: 1;
  min-width: 300px;
}

/* Left Column */
.story-left blockquote {
  font-size: 1.2rem;
  font-style: italic;
  color: #333;
  border-left: 4px solid #0066cc;
  padding-left: 15px;
  margin-bottom: 25px;
}

.contact-box {
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 8px;
  text-align: left;
}

.contact-box p {
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #333;
}

.contact-box a {
  text-decoration: none;
  color: #0066cc;
}

.btn-call {
  display: inline-block;
  margin-top: 12px;
  background: #0066cc;
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 5px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-call:hover {
  background: #004a99;
}

/* Right Column */
.story-right h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

.story-right p {
  margin-bottom: 16px;
  line-height: 1.6;
  color: #555;
}

/* Responsive Design */
@media (max-width: 991px) {
  .story-wrapper {
    flex-direction: column;
  }

  .story-left, .story-right {
    min-width: 100%;
  }

  .story-right h2 {
    font-size: 1.6rem;
    text-align: center;
  }

  .story-right p {
    text-align: justify;
  }

  .contact-box {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .story-right h2 {
    font-size: 1.4rem;
  }

  .story-right p {
    font-size: 0.9rem;
  }

  .story-left blockquote {
    font-size: 1rem;
  }
}
/* Why Choose Us Section */
.why-choose-us {
  background: #ffffff;
  padding: 80px 20px;
  font-family: 'Roboto', sans-serif;
}

.content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.right-column {
  flex: 1;
  min-width: 300px;
}

.right-column h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

.right-column h2 span {
  color: #0066cc;
}

.right-column p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #555;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.benefits-list li {
  font-size: 1rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  color: #333;
}

.benefits-list li i {
  color: #0066cc;
  margin-right: 10px;
  font-size: 1.2rem;
}

/* Call Button */
.call-btn {
  display: inline-block;
  background: #0066cc;
  color: #fff !important;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.call-btn i {
  margin-right: 8px;
}

.call-btn:hover {
  background: #004a99;
}

/* Left Column (Image) */
.left-column {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.responsive-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 991px) {
  .content-wrapper {
    flex-direction: column-reverse;
    text-align: center;
  }

  .right-column h2 {
    font-size: 1.7rem;
  }

  .right-column p {
    font-size: 0.95rem;
  }

  .benefits-list li {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .right-column h2 {
    font-size: 1.5rem;
  }

  .right-column p {
    font-size: 0.9rem;
  }

  .benefits-list li {
    font-size: 0.9rem;
  }

  .call-btn {
    font-size: 0.9rem;
    padding: 10px 18px;
  }
}
/* Benefits Section */
.benefits-section {
  background: #f5f7fa;
  padding: 80px 20px;
  font-family: 'Roboto', sans-serif;
}

.benefits-content {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

/* Image */
.benefits-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.benefits-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Text */
.benefits-text {
  flex: 1;
  min-width: 300px;
}

.benefits-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

.benefits-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.benefits-text ul li {
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  position: relative;
  padding-left: 20px;
}

.benefits-text ul li::before {
  content: "✔";
  color: #0066cc;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Call Button */
.benefits-text .btn-call {
  display: inline-block;
  background: #0066cc;
  color: #fff !important;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.benefits-text .btn-call i {
  margin-right: 8px;
}

.benefits-text .btn-call:hover {
  background: #004a99;
}

/* Responsive Design */
@media (max-width: 991px) {
  .benefits-content {
    flex-direction: column;
    text-align: center;
  }

  .benefits-text h2 {
    font-size: 1.7rem;
  }

  .benefits-text ul li {
    font-size: 0.95rem;
    text-align: left;
    padding-left: 25px;
  }
}

@media (max-width: 480px) {
  .benefits-text h2 {
    font-size: 1.5rem;
  }

  .benefits-text ul li {
    font-size: 0.9rem;
  }

  .benefits-text .btn-call {
    font-size: 0.9rem;
    padding: 10px 18px;
  }
}
/* Related Products Section */
.related-products-section {
  background: #ffffff;
  padding: 80px 20px;
  font-family: 'Roboto', sans-serif;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #222;
}

/* Products Grid */
.related-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background: #f8f9fc;
  padding: 30px 25px;
  border-radius: 10px;
  text-align: left;
  transition: all 0.3s ease;
  border: 1px solid #e6e6e6;
}

.product-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #0066cc;
}

.product-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #444;
}

.product-card a {
  text-decoration: none;
  font-weight: 600;
  color: #0066cc;
  transition: color 0.3s ease;
}

.product-card a:hover {
  color: #004a99;
}

/* Hover Effect */
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Responsive Design */
@media (max-width: 991px) {
  .related-products {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: 1.7rem;
  }
}

@media (max-width: 600px) {
  .related-products {
    grid-template-columns: 1fr;
  }

  .product-card {
    text-align: center;
  }
}
/* Platform Section */
.platform-section {
  background: #f9fafc;
  padding: 80px 20px;
  font-family: 'Roboto', sans-serif;
}

.platform-heading {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: #222;
}

.platform-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.platform-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #e6e6e6;
  transition: all 0.3s ease;
}

.platform-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Icons */
.platform-icon {
  width: 60px;
  height: auto;
  margin-bottom: 20px;
}

/* Headings */
.platform-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #0066cc;
}

/* Paragraph */
.platform-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #444;
}

/* Button */
.platform-btn {
  background: #0066cc;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.platform-btn:hover {
  background: #004a99;
}

/* Responsive Layout */
@media (max-width: 991px) {
  .platform-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .platform-heading {
    font-size: 1.8rem;
  }
}

@media (max-width: 600px) {
  .platform-cards {
    grid-template-columns: 1fr;
  }

  .platform-card {
    padding: 30px 20px;
  }

  .platform-heading {
    font-size: 1.6rem;
  }
}
/* Footer Base */
.site-footer {
  background: #1e1e2f;
  color: #ccc;
  padding: 60px 20px;
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
}

/* Footer Container Layout */
.footer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Column Headings */
.site-footer h3,
.site-footer h4 {
  color: #fff;
  margin-bottom: 15px;
  font-weight: 600;
}

/* Column Text */
.footer-left p {
  font-size: 0.95rem;
  color: #bbb;
}

/* Links */
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer ul li {
  margin-bottom: 10px;
}

.site-footer a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: #4da6ff;
}

/* Disclaimer */
.footer-disclaimer {
  max-width: 1200px;
  margin: 40px auto 20px;
  font-size: 0.85rem;
  color: #999;
  text-align: center;
  padding: 0 10px;
}

.footer-disclaimer a {
  color: #4da6ff;
  text-decoration: underline;
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 20px;
  padding-top: 15px;
  text-align: center;
  font-size: 0.85rem;
  color: #888;
}

/* Responsive */
@media (max-width: 991px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-left p {
    font-size: 0.9rem;
  }
}

/* FAQ Section */
.faq-section {
  padding: 80px 20px;
  background: #f9f9fb;
  font-family: 'Roboto', sans-serif;
}

.faq-heading {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 15px;
  color: #222;
}

.faq-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #555;
  font-size: 1rem;
}

/* FAQ Items */
.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 15px;
  font-size: 1rem;
  font-weight: 600;
  background: #fff;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #f0f0f5;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #fff;
  padding: 0 15px;
}

.faq-answer p {
  margin: 15px 0;
  font-size: 0.95rem;
  color: #444;
}

/* Active State */
.faq-item.active .faq-answer {
  max-height: 300px; /* Enough space for content */
  padding-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-heading {
    font-size: 1.6rem;
  }
  .faq-question {
    font-size: 0.95rem;
  }
}

/* Contact Section */
.contact-section {
  padding: 80px 20px;
  background: #f9f9fb;
  font-family: 'Roboto', sans-serif;
}

.contact-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 10px;
  color: #222;
}

.contact-section .lead {
  text-align: center;
  margin-bottom: 40px;
  color: #555;
}

/* Wrapper: Form + Info */
.contact-wrapper {
  display: flex;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Contact Form */
.contact-form {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.95rem;
}

.contact-form .submit-btn {
  background: #0066cc;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form .submit-btn:hover {
  background: #004a99;
}

/* Contact Info */
.contact-info {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-info h3 {
  margin-bottom: 15px;
  color: #222;
}

.contact-info p {
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #444;
}

.contact-info a {
  color: #0066cc;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-info .note {
  font-size: 0.85rem;
  color: #777;
  margin-top: 15px;
}

/* Map */
.map-container {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Responsive */
@media (max-width: 991px) {
  .contact-wrapper {
    flex-direction: column;
    gap: 30px;
  }
}
/* Pricing Plans Section */
.pricing-plans {
  padding: 80px 20px;
  background: #f9f9fb;
  font-family: 'Roboto', sans-serif;
  text-align: center;
}

.pricing-plans .section-title {
  font-size: 2rem;
  margin-bottom: 50px;
  color: #222;
}

/* Wrapper */
.plans-wrapper {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* Plan Card */
.plan-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  flex: 1;
  min-width: 260px;
  max-width: 320px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.plan-card.popular {
  border: 2px solid #0066cc;
}

.plan-card .tag {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #0066cc;
  color: #fff;
  padding: 5px 10px;
  font-size: 0.8rem;
  border-radius: 6px;
}

.plan-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #222;
}

.plan-card .price {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #0066cc;
}

/* Plan Features */
.plan-features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.plan-features li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #444;
}

.plan-features i {
  margin-right: 8px;
  color: #0066cc;
}

.plan-features .inactive {
  color: #ccc;
}

/* Plan Button */
.plan-button {
  display: inline-block;
  background: #0066cc;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

.plan-button:hover {
  background: #004a99;
}

/* Responsive */
@media (max-width: 991px) {
  .plans-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .plan-card {
    max-width: 90%;
  }
}

.call-now-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #0066cc;
    padding: 12px 0;
    text-align: center;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
}

.call-now-bar a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}