/* ===== Hero Section (Blinke Technologies) ===== */
.hero-section {
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
  padding: 100px 0;
  overflow: hidden;
}

.hero-tagline {
  color: #e65100;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-title {
  color: #0a2f5a;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-title span {
  color: #e65100;
}

.hero-description {
  font-size: 1.1rem;
  margin-top: 20px;
  color: #333;
  line-height: 1.7;
  max-width: 550px;
}

/* Buttons */
.btn-primary-custom {
  background: linear-gradient(135deg, #0a2f5a, #e65100);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn-outline-custom {
  border: 2px solid #0a2f5a;
  color: #0a2f5a;
  border-radius: 8px;
  padding: 12px 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline-custom:hover {
  background-color: #0a2f5a;
  color: #fff;
}

/* Hero Image */
.hero-image {
  border-radius: 12px;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
  max-width: 90%;
  transition: transform 0.4s ease;
}
.hero-image:hover {
  transform: scale(1.03);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section {
    text-align: center;
    padding: 70px 0;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-description {
    font-size: 1rem;
    margin: 0 auto;
  }
  .hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }
  .hero-image {
    margin-top: 30px;
  }
}

/* ===== Our Solutions Section ===== */
.solutions-section {
  background: #f8f9fb;
  padding: 100px 0;
}

.solutions-tagline {
  color: #e65100;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.solutions-title {
  color: #0a2f5a;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.solutions-subtext {
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Cards */
.solution-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0px 6px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 30px rgba(0,0,0,0.15);
}

.solution-icon {
  font-size: 2.8rem;
  color: #e65100;
}

.solution-title {
  font-weight: 600;
  color: #0a2f5a;
  margin-top: 10px;
  margin-bottom: 10px;
}

.solution-text {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .solutions-title {
    font-size: 1.8rem;
  }
  .solution-card {
    padding: 2rem 1rem;
  }
}

/* ===== About Section ===== */
.about-section {
  background: #fff;
  padding: 100px 0;
}

.about-tagline {
  color: #e65100;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.about-title {
  color: #0a2f5a;
  font-size: 2.2rem;
  font-weight: 700;
  margin: 15px 0;
}

.about-text {
  color: #555;
  line-height: 1.7;
  margin-bottom: 10px;
}

.about-list {
  list-style: none;
  padding: 0;
}

.about-list li {
  color: #0a2f5a;
  font-weight: 500;
  margin-bottom: 8px;
}

.about-list i {
  color: #e65100;
  margin-right: 8px;
  font-size: 1rem;
}

.about-btn {
  background: #0a2f5a;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s ease;
  text-decoration: none;
}

.about-btn:hover {
  background: #e65100;
  color: #fff;
}

/* Image styling */
.about-image img {
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.03);
}

/* Responsive */
@media (max-width: 992px) {
  .about-title {
    font-size: 1.8rem;
  }
  .about-content {
    text-align: center;
  }
  .about-list {
    display: inline-block;
    text-align: left;
  }
}

/* ===== Our Products Section ===== */
.products-section {
  background: #f9fafc;
  padding: 100px 0;
}

.products-tagline {
  color: #e65100;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.products-title {
  color: #0a2f5a;
  font-size: 2.3rem;
  font-weight: 700;
  margin: 10px 0;
}

.products-subtext {
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Product Cards */
.product-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  text-align: left;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.product-icon i {
  font-size: 2.5rem;
  color: #0a2f5a;
}

.product-name {
  color: #0a2f5a;
  font-weight: 700;
  margin-bottom: 10px;
}

.product-desc {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.product-link {
  color: #e65100;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-link:hover {
  color: #0a2f5a;
}

/* Responsive */
@media (max-width: 768px) {
  .product-card {
    text-align: center;
  }
  .product-icon i {
    font-size: 2rem;
  }
}

/* ===== Why Choose Blinke Section ===== */
.why-blinke-section {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafc 100%);
  padding: 100px 0;
}

.why-tagline {
  color: #e65100;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.why-title {
  color: #0a2f5a;
  font-size: 2.4rem;
  font-weight: 700;
  margin: 10px 0;
}

.why-subtext {
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* Cards */
.why-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.why-icon i {
  font-size: 2.6rem;
  color: #0a2f5a;
  background: #e65100;
  color: #fff;
  padding: 15px;
  border-radius: 50%;
}

.why-name {
  font-weight: 700;
  color: #0a2f5a;
  margin-top: 15px;
}

.why-desc {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .why-card {
    text-align: center;
  }
}


/* ===== Pricing Section ===== */
.pricing-section {
  background: #f9fafc;
  padding: 100px 0;
}

.pricing-tagline {
  color: #e65100;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.pricing-title {
  color: #0a2f5a;
  font-size: 2.4rem;
  font-weight: 700;
  margin: 10px 0;
}

.pricing-subtext {
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* Cards */
.pricing-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.featured {
  border: 2px solid #e65100;
  transform: scale(1.05);
}
.badge-top {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #e65100;
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.plan-name {
  color: #0a2f5a;
  font-weight: 700;
  margin-bottom: 10px;
}

.plan-desc {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.plan-price {
  font-size: 2.4rem;
  font-weight: 700;
  color: #e65100;
}
.plan-price span {
  font-size: 1rem;
  color: #666;
}

.plan-features li {
  color: #333;
  font-size: 0.95rem;
  margin-bottom: 10px;
}
.plan-features i {
  color: #0a2f5a;
  margin-right: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .featured {
    transform: none;
  }
}

/* ===== Industries We Serve ===== */
.industries-section {
  background: #fff;
  padding: 100px 0;
}

.industries-tagline {
  color: #e65100;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.industries-title {
  color: #0a2f5a;
  font-size: 2.4rem;
  font-weight: 700;
  margin: 10px 0;
}

.industries-subtext {
  color: #555;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

/* Industry Cards */
.industry-card {
  background: #f9fafc;
  border-radius: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.industry-card:hover {
  background: #0a2f5a;
  color: #fff;
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.industry-card:hover .industry-icon {
  color: #e65100;
}
.industry-icon {
  font-size: 2.5rem;
  color: #0a2f5a;
  transition: color 0.3s ease;
}
.industry-name {
  font-weight: 600;
  font-size: 1rem;
  margin-top: 12px;
  color: inherit;
}

/* Responsive */
@media (max-width: 768px) {
  .industry-card {
    margin-bottom: 15px;
  }
  .industries-title {
    font-size: 2rem;
  }
}

/* ===== About Blinke Technologies ===== */
.about-blinke {
  background-color: #f9fafc;
  padding: 100px 0;
}

.about-tagline {
  color: #e65100;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.about-title {
  color: #0a2f5a;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.about-text {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-list {
  list-style: none;
  padding-left: 0;
}
.about-list li {
  color: #333;
  font-weight: 500;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.about-list i {
  color: #e65100;
  margin-right: 10px;
  font-size: 1.1rem;
}

.about-img {
  border-radius: 16px;
  transition: transform 0.4s ease;
}
.about-img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .about-title {
    font-size: 1.8rem;
  }
  .about-text {
    font-size: 0.95rem;
  }
}

/* ===== Our Services Section ===== */
.services-section {
  background-color: #ffffff;
}

.section-tagline {
  color: #e65100;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.section-title {
  color: #0a2f5a;
  font-weight: 700;
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.section-subtext {
  color: #555;
  max-width: 650px;
  margin: 0 auto 40px;
}

.service-card {
  background: #f9fafc;
  border-radius: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.service-card:hover {
  background: #0a2f5a;
  color: #fff;
  transform: translateY(-5px);
}
.service-card:hover .service-icon i {
  color: #e65100;
}

.service-icon i {
  font-size: 2rem;
  color: #0a2f5a;
  transition: color 0.3s;
}

.service-title {
  font-weight: 600;
  margin-bottom: 10px;
}

.service-text {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}
.service-card:hover .service-text {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }
}


/* ===== Why Choose Us Section ===== */
.why-choose-section {
  background-color: #f9fafc;
}

.why-choose-section .section-tagline {
  color: #e65100;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.why-choose-section .section-title {
  color: #0a2f5a;
  font-weight: 700;
  font-size: 2.3rem;
  margin-bottom: 15px;
}

.why-choose-section .section-subtext {
  color: #555;
  line-height: 1.7;
  font-size: 1rem;
}

.choose-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.choose-list li {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.choose-list i {
  color: #e65100;
  font-size: 1.2rem;
}

.why-image {
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.why-image:hover {
  transform: scale(1.03);
}

/* Responsive */
@media (max-width: 768px) {
  .why-choose-section .section-title {
    font-size: 1.8rem;
  }
  .choose-list li {
    font-size: 0.95rem;
  }
}


/* ===== CTA Section ===== */
.cta-section {
  background: linear-gradient(90deg, #0a2f5a, #e65100);
  color: #fff;
  padding: 80px 0;
  border-radius: 16px;
  margin: 50px auto 0;
}

.cta-tagline {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 0.9rem;
  color: #ffd8a6;
  margin-bottom: 10px;
}

.cta-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-subtext {
  font-size: 1rem;
  max-width: 650px;
  margin: 0 auto 25px;
  line-height: 1.7;
}

.cta-section .btn-primary-custom {
  background-color: #ffd8a6;
  color: #0a2f5a;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.cta-section .btn-primary-custom:hover {
  background-color: #fff;
  color: #0a2f5a;
  transform: translateY(-2px);
}

/* ===== FAQs Section ===== */
.faqs-section {
  background-color: #f9fafc;
  padding: 80px 0;
}

.faqs-tagline {
  text-transform: uppercase;
  font-weight: 600;
  color: #e65100;
  letter-spacing: 1px;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.faqs-title {
  color: #0a2f5a;
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.accordion-button {
  background-color: #fff;
  color: #0a2f5a;
  font-weight: 500;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  margin-bottom: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  background-color: #f5f5f5;
  border-radius: 10px;
  padding: 1rem 1.2rem;
  color: #333;
}

.accordion-button::after {
  filter: invert(0.5);
}
 
