/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  line-height: 1.6;
  background: #fff;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
.header {
  background: #f9f9f9;
  border-bottom: 1px solid #ddd;
  padding: 5px 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
  gap: 20px;
}

/* Marquee container */
.marquee {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

/* scrolling animation */
.marquee-content {
  display: inline-block;
  padding-left: 100%;
  animation: scrollText 15s linear infinite;
  font-size: 15px;
  color: #444;
  font-weight: 500;
}

@keyframes scrollText {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #e63946;
}
.logo span { color: #000; }

.nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #333;
}
.nav a:hover { color: #e63946; }

.icons span {
  margin-left: 10px;
  cursor: pointer;
}

/* Hero */
.hero {
  background: linear-gradient(to right, #ffe0e6, #fff);
  padding: 50px 0;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hero-text {
  max-width: 500px;
}

.hero-text h1 {
  font-size: 2rem;
  margin-bottom: 15px;
}
.hero-text p {
  margin-bottom: 20px;
}

.hero-buttons .btn {
  padding: 10px 20px;
  margin-right: 10px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.btn.primary {
  background: #e63946;
  color: #fff;
}
.btn.secondary {
  border: 2px solid #e63946;
  color: #e63946;
  background: transparent;
}

.hero-image img {
  width: 250px;
}

/* Products */
.products {
  padding: 40px 0;
  text-align: center;
}

.products h2 {
  margin-bottom: 20px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.product-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  transition: transform 0.3s;
}

.product-card:hover {
  transform: scale(1.05);
}

.product-card img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.product-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.price {
  font-weight: bold;
  color: #e63946;
  margin-bottom: 10px;
}

/* Footer */
.footer {
  background: #f9f9f9;
  padding: 15px;
  text-align: center;
  font-size: 0.9rem;
  border-top: 1px solid #ddd;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-image {
    margin-top: 20px;
  }

  .nav {
    display: none;
  }
}

/* Features Section */
.features {
  background: linear-gradient(to right, #ffe0e6, #fff);
  padding: 20px 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  text-align: center;
}

.feature-item {
  padding: 15px;
}

.feature-item .icon {
  font-size: 2rem;
  color: #f57c00; /* orange */
  display: block;
  margin-bottom: 10px;
}

.feature-item h3 {
  font-size: 1rem;
  margin-bottom: 5px;
  font-weight: bold;
}

.feature-item p {
  font-size: 0.9rem;
  color: #555;
}

/* Testimonials Section */
.testimonials {
  padding: 50px 0;
  background: #fff;
  text-align: center;
}

.testimonials h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.testimonial-item img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.3s;
}

.testimonial-item img:hover {
  transform: scale(1.05);
}

/* Info Sections */
.info-section {
  padding: 60px 0;
  background: #f8f8f8;
}

.info-section.alt {
  background: #fff; /* alternate background */
}

.info-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.info-text {
  flex: 1;
  min-width: 300px;
}

.info-text h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.info-text p {
  margin-bottom: 10px;
  color: #444;
}

.info-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.info-image img {
  max-width: 100%;
  border-radius: 10px;
}

.info-text .btn {
  margin-top: 15px;
  display: inline-block;
  padding: 12px 25px;
  background: #e63946;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.info-text .btn:hover {
  background: #c62839;
}

/* Responsive */
@media (max-width: 768px) {
  .info-content {
    flex-direction: column;
    text-align: center;
  }
  .info-text, .info-image {
    flex: 1 1 100%;
  }
}

.pos-section {
    background: linear-gradient(to right, #ffe0e6, #fff);

  padding: 60px 0;
}

.pos-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.pos-text {
  max-width: 500px;
  color: #333;
}

.pos-text h1 {
  font-size: 48px;
  font-weight: bold;
  color: #fff;
}

.pos-text h2 {
  font-size: 32px;
  margin: 10px 0;
  color: #333;
}

.pos-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.pos-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 32px;
  border: 2px solid #fff;
  border-radius: 50px;
  font-size: 16px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

.pos-image {
  position: relative;
  max-width: 450px;
}

.pos-image img {
  width: 100%;
  border-radius: 10px;
}

.pos-price {
  position: absolute;
  top: 10px;
  left: -40px;
  background: #fff;
  border-radius: 50%;
  padding: 20px;
  font-size: 22px;
  font-weight: bold;
  color: #333;
  text-align: center;
}

.pos-price span {
  font-size: 14px;
  font-weight: normal;
}

/* --- 3-column hero with images on both sides and centered copy --- */
.hero-3col {
  background: linear-gradient(90deg, #ffffff 0%, #ffe7ed 50%, #ffdbe3 100%);
  padding: clamp(0px, 6vw, 0px) 0;
  overflow: hidden;
}

.hero-3col__wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr minmax(320px, 560px) 1fr;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
}

/* Side images */
/* .hero-3col__side img {
  width: min(360px, 100%);
  height: auto;
  display: block;
  object-fit: contain;
  background: #d22b2b;

} */

.hero-3col__side {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;            /* remove any extra spacing */
}

.hero-3col__side img {
  width: min(360px, 100%);
  height: auto;
  display: block;
  object-fit: contain;
  background: none;      /* remove background from image */
}

/* Center copy */
.hero-3col__center {
  text-align: center;
}

.hero-3col__center h1 {
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.2;
  font-weight: 800;
  color: #111;
  margin-bottom: 12px;
}

.hero-3col__center p {
  color: #6b7280; /* neutral gray */
  font-size: clamp(14px, 1.2vw, 18px);
  margin-bottom: 22px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.btn--primary {
  background: #d22b2b;
  color: #fff;
  margin-right: 12px;
}

.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 6px 14px rgba(210,43,43,.25); }

.btn--outline {
  border: 1.5px solid #d22b2b;
  color: #d22b2b;
  background: transparent;
}

.btn--outline:hover { background: #fff1f1; }

/* Responsive: stack, keep copy first */
@media (max-width: 900px) {
  .hero-3col__wrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hero-3col__center { order: 1; }
  .hero-3col__left   { order: 2; display: flex; justify-content: center; }
  .hero-3col__right  { order: 3; display: flex; justify-content: center; }
  .hero-3col__side img { width: min(300px, 80vw); }
}

/* Footer Styling */
.site-footer {
  background: #fde7e7;   /* light red background */
  padding: 15px 20px;
  text-align: center;
  font-size: 14px;
  color: #333;
}

.site-footer p {
  margin: 0;
  line-height: 1.6;
}

.site-footer a {
  color: #b71c1c;   /* darker red for links */
  text-decoration: none;
  margin: 0 6px;
}

.site-footer a:hover {
  text-decoration: underline;
}

.logo img {
  height: 35px;   /* adjust as per your design */
  width: 130px;
  display: block;

}


.hero-3col__center h1 {
  font-family: 'Poppins', sans-serif;  /* Bold, modern font for heading */
  font-size: 48px;
  font-weight: 700;
  color: #222;
}

.hero-3col__center p {
  font-family: 'Roboto', sans-serif;   /* Clean, readable font for paragraph */
  font-size: 18px;
  font-weight: 400;
  color: #555;
}
.why-choose {
  padding: 80px 0;
  background: #fffdf8;
}

.why-choose .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  align-items: center;
}

.wc-content h4 {
  font-size: 14px;
  font-weight: 700;
  color: #444;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.wc-content h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.wc-content .highlight {
  color: #e63946;
}

.wc-content p {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

.wc-images img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
/* Talk Section */
.talk-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 80px;
  background: #fdbf44; /* Yellow background */
  position: relative;
}

.talk-content {
  max-width: 50%;
}

.talk-content h2 {
  font-size: 42px;
  font-weight: 900;
  color: #000;
  line-height: 1.3;
  margin-bottom: 20px;
}

.talk-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #222;
  margin-bottom: 25px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background: #000;
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn:hover {
  background: #fff;
  color: #000;
}

.talk-image img {
  max-width: 380px;
  width: 100%;
  border-radius: 10px;
}

/* Side Vertical Text */
.side-text {
  position: absolute;
  right: 0;
  top: 50%;
  transform: rotate(90deg) translateY(-50%);
  transform-origin: right center;
  background: #fdbf44;
  padding: 10px 20px;
  font-weight: bold;
  font-size: 16px;
  color: #000;
}




/* Case Study */
.case-study-section {
    padding: 80px 0;
}

/* Extra Benefits */
.extra-benefits {
    padding: 80px 0;
    background: #fafafa;
}

.benefits-grid-2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.benefit-card-orange {
    background: #e63946;
    color: white;
    padding: 30px;
    border-radius: 12px;
}

.benefit-card-orange h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.benefit-card-orange p {
    font-size: 14px;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c61 100%);
}

.cta-content {
    text-align: center;
}

.cta-title {
    font-size: 42px;
    font-weight: 800;
    color: white;
    margin-bottom: 30px;
}

/* Footer */
.footer {
    background: #ff6b35;
    color: white;
    padding: 60px 0 30px;
}

.footer-newsletter {
    text-align: center;
    margin-bottom: 60px;
}

.footer-newsletter p {
    margin-bottom: 20px;
    font-size: 16px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.email-input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-col a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.2);
    opacity: 0.8;
}

.stats-section {
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 30px;
}

.stat-number {
    font-size: 64px;
    font-weight: 800;
    color: #c21919;
    margin-bottom: 15px;
}

.stat-text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        gap: 15px;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-grid.reverse {
        direction: ltr;
    }

    .template-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid-2 {
        grid-template-columns: 1fr;
    }

    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .section-title {
        font-size: 28px;
    }

    .cta-title {
        font-size: 32px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 28px;
    }

    .stat-number {
        font-size: 48px;
    }

    .section-title {
        font-size: 24px;
    }

    .template-tabs {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 768px) {

  /* hide marquee text */
  .marquee {
    display: none;
  }

  /* align logo + button on same line */
  .header-content {
    justify-content: space-between;
  }

  /* adjust spacing for mobile */
  .contact-btn {
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 6px;
  }

}