* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



/* NAVBAR */
.nav-sec {
  background: #fff;
  box-shadow: 0 10px 35px rgba(0, 0, 0, .15);
  padding: 0 25px;
  position: sticky;
  top: 0;
  z-index: 99;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0px;
}

.logo-side img {
  height: 70px;
}

/* MAIN MENU */
.nav-sec .nav-links>ul {
  list-style: none;
  display: flex;
  align-items: center;
}

.nav-sec .nav-links>ul>li {
  padding: 10px 22px;
  position: relative;
}

.nav-sec .nav-links>ul>li>a {
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  color: #111;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  transition: .3s;
}

.nav-sec .nav-links>ul>li:hover>a {
  color: #de1111;
}

/* MAIN DROPDOWN */
.nav-sec .dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  width: 280px;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .2);
  display: none;
  animation: fade .25s ease;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translate(-50%, 15px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.nav-sec .main-dropdown:hover>.dropdown {
  display: block;
}

.nav-sec .dropdown>ul {
  list-style: none;
}

.nav-sec .dropdown>ul li {
  padding: 12px 18px;
}

.nav-sec .dropdown>ul li a {
  text-decoration: none;
  color: #222;
  display: flex;
  justify-content: space-between;
  transition: .3s;
}

.nav-sec .dropdown>ul li:hover {
  background: #f1d3c7;

}

/* SUB MENU */
.nav-sec .sub-menu {
  position: relative;
}


.nav-sec .sub-menu-nav {
  position: absolute;
  left: 100%;
  top: 0;
  width: 520px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .2);
  display: none;
  padding: 15px;
}

.nav-sec .sub-menu:hover>.sub-menu-nav {
  display: block;
}

/* MEGA MENU */
.nav-sec .sub-menu-nav-contain {
  display: flex;
  gap: 30px;
}

.nav-sec .sub-menu-nav-contain>ul {
  list-style: none;
}

.nav-sec .sub-menu-nav-contain>ul>li {
  padding: 8px 0;
}

.nav-sec .sub-menu-nav-contain>ul>li a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  transition: .3s;
}

.nav-sec .sub-menu-nav-contain>ul>li a:hover {
  color: #d41515;
  padding-left: 6px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #000;
  border-radius: 3px;
}


.nav-links .signup a {
  background: linear-gradient(135deg, #c76d28, #7f1b07);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 12px;
  font-weight: 600;
  transition: all .3s ease;
  box-shadow: 0 8px 20px rgba(79, 70, 229, .35);
}

/* hover effect */
.nav-links .signup a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(79, 70, 229, .45);

}

/* make it not shift navbar height */
.nav-links .signup {
  padding: 0 !important;
}



/* ============ HERO SECTION ============ */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 50px 20px;
  background: linear-gradient(135deg, #f8faff, #dbdfea);
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 50px;
}

/* LEFT */
.hero-content h1 {
  font-size: 56px;
  line-height: 1.15;
  margin-bottom: 22px;
  font-weight: 700;
}

.hero-content h1 span {
  color: #720303;
}

.hero-content p {
  font-size: 19px;
  color: #555;
  max-width: 560px;
  margin-bottom: 36px;
}

/* Buttons */

.hero-buttons {
  display: flex;
  gap: 18px;
}

.hero-buttons a {
  padding: 15px 30px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  transition: .3s ease;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #c76d28, #7f1b07) !important;
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(79, 70, 229, .4);
}

.btn-secondary {
  border: 1px solid #c7c7ff;
  color: #111;
  background: #fff;
}

.btn-secondary:hover {
  background: #eef2ff;
}

/* RIGHT */
.account-soft img {
  width: 100%;
  border: 4px solid #ffffff;

  border-radius: 26px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, .18);
  animation: floatImage 4s ease-in-out infinite;
}

.hero-image video {
  width: 100%;
  border: 4px solid #ffffff;

  border-radius: 26px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, .18);
  animation: floatImage 4s ease-in-out infinite;
}

/* Floating animation */
@keyframes floatImage {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }

  100% {
    transform: translateY(0);
  }
}



.logo-scroll {
  padding: 30px 0 50px;
  background: #fff;
  overflow: hidden;
}

.scroll-heading {
  text-align: center;
  font-size: 42px;
  margin-bottom: 60px;
  position: relative;
}

.scroll-heading::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #7e0b0b;
  display: block;
  margin: 14px auto 0;
  border-radius: 4px;
}

/* scrolling area */
.logo-track {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logo-row {
  display: flex;
  gap: 80px;
  animation: scroll 20s linear infinite;
  align-items: center;
}

/* logo look */
.logo-row img {
  height: 68px;
  opacity: .35;
  filter: grayscale(100%);
  transition: .3s ease;
}

/* center highlight illusion */
.logo-track:hover img {
  opacity: .6;
}

.logo-row img:hover {
  opacity: 1;
  filter: none;
  transform: scale(1.15);
}

/* animation */
@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* responsive */
@media(max-width:600px) {
  .scroll-heading {
    font-size: 32px;
  }

  .logo-row {
    gap: 40px;
  }
}


.product-premium {
  padding: 50px 8%;
  background: #eeeef2;

}

.product-head {
  text-align: center;
  max-width: 700px;
  margin: auto;
  margin-bottom: 40px;
}

.product-head h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
}

.product-head p {
  font-size: 18px;
  color: #555;
}

.product-wrap {
  background: linear-gradient(135deg, #dbdee4, #ffffff, #fee3e3);
  border-radius: 18px;
  padding: 50px;
  margin-bottom: 60px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
}

.product-layout {
  display: flex;
  align-items: center;
  gap: 60px;
}

.product-wrap.reverse .product-layout {
  flex-direction: row-reverse;
}

.product-info {
  flex: 1;
}

.product-info h3 {
  font-size: 32px;
  margin-bottom: 18px;
}

.product-desc {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 18px;
}

.product-cta {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #c76d28, #7f1b07);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: .3s;
}

.product-cta:hover {
  background: linear-gradient(135deg, #b55c19, #741603);
  color: #ffff;
}

.product-media {
  flex: 1;
  text-align: center;
}

.product-media img {
  width: 100%;
  transition: .4s;
  border: 4px solid #fff;
  border-radius: 18px;
}

.product-media:hover img {
  transform: scale(1.03);
}


.why-choose {
  padding: 50px 8%;
  background: #fffafa;
}

.why-head {
  text-align: center;
  margin-bottom: 30px;
}

.why-head h2 {
  font-size: 42px;
  font-weight: 700;
}

.why-head p {
  color: #555;
  margin-top: 10px;
  font-size: 18px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
}

.why-card {
  background: #fff;
  padding: 25px 25px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .3);
  border: 1px solid #ceb0b0;
  text-align: start;
  transition: .4s ease;
}

.why-card i {
  font-size: 22px;
  color: rgb(181, 22, 22);

  margin-bottom: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #ceb0b0;
  height: 45px;
  width: 45px;
  padding: 8px;
  border-radius: 10px;

  background: #f7f9ff;
}


.why-card h4 {
  font-size: 22px;
  margin: 10px 0px;

}

.why-card p {
  color: #666;
  font-size: 16px;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}




.testimonial-section {
  padding: 50px 8%;
  background: #fff;
}

.section-head {
  text-align: start;
  margin-bottom: 30px;
}

.section-head h2 {
  font-size: 42px;
  color: #111;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-head p {
  color: #555;
  font-size: 16px;
}

.testimonial-carousel .testimonial-card {
  background: #fff;
  border-radius: 24px;
  padding: 30px 25px;
  box-shadow: 0px 5px 25px rgba(79, 70, 229, 0.3);
  text-align: center;
  transition: all 0.3s ease;
  margin: 10px;
}

.testimonial-carousel .testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 70px rgba(79, 70, 229, 0.15);
}

/* IMAGE WRAP */
.img-wrap {
  width: 100px;
  height: 100px;
  margin: 0 auto 15px;
  overflow: hidden;
  border-radius: 50%;
}

.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card h4 {
  font-size: 18px;
  color: #111;
  margin-bottom: 4px;
}

.testimonial-card .role {
  font-size: 14px;
  color: #7f3f24;
  margin-bottom: 15px;
}

.testimonial-card .testimonial-text {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.owl-nav {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

}

.owl-nav button {
  background: #c30f18 !important;
  height: 40px !important;
  width: 40px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: none !important;
  font-size: 30px !important;
  color: #fff !important;
  transition: all 0.3s ease;
  text-align: center !important;
}

.owl-nav button:hover {
  background: #e90a20 !important;
  transform: scale(1.06);
}

.owl-nav button span {
  font-size: 24px !important;
  /* ensures arrows inside button are correct size */
  line-height: 1 !important;
}


.blog-section {
  padding: 50px 20px;
  background: linear-gradient(135deg, #f5f7ff, #e0e7ff);
}

.blog-container {
  max-width: 1200px;
  margin: auto;
}

/* Heading + Button */
.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.blog-header h2 {
  font-size: 36px;
  color: #111;
}

.btn-read-all {
  text-decoration: none;
  padding: 12px 24px;
  background: linear-gradient(135deg, #c76d28, #7f1b07);
  color: #fff;
  border-radius: 12px;
  font-weight: 500;
  transition: 0.3s;
}

.btn-read-all:hover {
  background: linear-gradient(135deg, #cb691d, #7e200d);
  color: #ffff;
  transform: translateY(-2px);
}

/* Blog Cards Grid */
.blog-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Single Card */
.blog-card {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

.blog-img img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.blog-content {
  padding: 20px 25px;
}

.blog-content h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #111;
}

.blog-content p {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
}

.blog-cta {
  text-decoration: none;
  color: rgb(156, 9, 9);
  font-weight: 500;
  transition: 0.3s;
}

.blog-cta:hover {
  color: #a30909;
}

/* Responsive */
@media(max-width:1024px) {
  .blog-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:768px) {
  .blog-header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .blog-cards {
    grid-template-columns: 1fr;
  }
}




.faq-section {
  padding: 40px 20px;
  background: #fff;
}

.faq-container {
  max-width: 1200px;
  margin: auto;
}

.faq-header h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #111;
}

.faq-header p {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

/* Columns */
.faq-columns {
  display: flex;
  gap: 40px;
}

.faq-column {
  flex: 1;
}

/* Single FAQ Item */
.faq-item {
  background: #fff;
  border-radius: 5px;
  margin-bottom: 20px;
  box-shadow: 0 5px 24px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  font-size: 18px;
  color: #111;
  border: none;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(79, 70, 229, 0.05);
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background: #e4e5ea;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer p {
  padding: 15px 0;
  font-size: 15px;
  color: #555;
}

/* Rotate icon on open */
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* Responsive */
@media(max-width:1024px) {
  .faq-columns {
    flex-direction: column;
    gap: 20px;
  }
}


.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #e0f7fa, #e1bee7);
  /* Premium gradient */
  text-align: center;
  margin: 30px 0px;

}

.cta-container {
  max-width: 900px;
  margin: auto;
}

.cta-container h2 {
  font-size: 40px;
  color: #111;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-container p {
  font-size: 18px;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-buttons a {
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #4f46e5;
  color: #fff;
}

.btn-primary:hover {
  background: #3b35b5;
}

.btn-secondary {
  border: 2px solid #4f46e5;
  color: #4f46e5;
  background: #fff;
}

.btn-secondary:hover {
  background: #4f46e5;
  color: #fff;
}

/* Responsive */
@media(max-width:600px) {
  .cta-container h2 {
    font-size: 32px;
  }

  .cta-container p {
    font-size: 16px;
  }
}


.premium-footer {
  background: linear-gradient(160deg, #ab2e2e, #851b1b, #e20909);
  padding: 40px 8% 35px;
  font-family: Segoe UI, sans-serif;

}

.footer-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 50px;
}

.footer-about h3 {
  font-size: 28px;
  color: #d4e6e3;
  margin-bottom: 15px;
}

.footer-about p {
  line-height: 1.7;
  color: #e0dddd;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 18px;
  color: #fdfbfb;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
}

.footer-col ul li a {
  text-decoration: none;
  color: #ffffff;
  transition: .3s;
}

.footer-col ul li a:hover {
  color: #d8b7b7;
  transform: translateX(4px);
}

/* SOCIALS */

.footer-social {
  margin: 45px auto 30px;
  display: flex;
  justify-content: center;
  gap: 16px;
  align-items: center;
  flex-direction: column;
}

.socials-links {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.socials-links>a {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(198, 40, 40, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c62828;
  font-size: 20px;
  transition: .3s;
}

.socials-links a:hover {
  transform: translateY(-5px);
  background: #c62828;
  color: #fff;
}

/* LEGAL */

.footer-legal {
  border-top: 2px solid rgba(240, 233, 233, 0.25);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
  color: #f9f5f5;
}

.footer-legal>span {
  font-size: 18px;
  font-weight: 700;
  color: #fffdfd;
}

.legal-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.legal-links a {
  text-decoration: none;
  color: #fef9f9;
  transition: .3s;
}

.legal-links a:hover {
  color: #d8b7b7;
}

/* RESPONSIVE */

@media(max-width:900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-legal {
    flex-direction: column;
    text-align: center;
  }
}





.page-hero {
  background: linear-gradient(135deg, #f8faff, #dbdfea);
  height: 170px;
  display: flex;
  align-items: center;

}

.page-hero-wrap {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.page-hero-content h1 {
  font-size: 38px;
  font-weight: 700;
  color: #c62828;
  margin-bottom: 6px;
}



.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #7a1f1f;
}

.page-hero-breadcrumb a {
  text-decoration: none;
  color: #8b1c1c;
  transition: .3s;
  font-size: 18px;

}

.page-hero-breadcrumb a:hover {
  color: #c62828;
}

.page-hero-breadcrumb strong {
  color: #c62828;
  font-size: 18px;
  font-weight: 700;
}


.about-toggle {
  padding: 70px 8%;
  font-family: Segoe UI, sans-serif;
}

.about-head {
  text-align: center;
  margin-bottom: 35px;
}

.about-head h2 {
  font-size: 40px;
  color: #111;
  font-weight: 700;
}

.about-sub {
  font-size: 18px;
  color: #333;
}

.about-text-box p {
  max-width: 1200px;
  margin: auto;
  font-size: 16px;
  line-height: 1.85;
  font-weight: 600;
  color: #222;
}

.more-text {
  display: none;
}

.read-toggle {
  font-weight: 600;
  cursor: pointer;
  margin-left: 6px;
  color: #d00f0f;
  text-decoration: underline;
}



.mv-pro {
  position: relative;
  padding: 90px 8%;
  background: url('../images/mission.webp') center/cover no-repeat;
}

.mv-bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .65);
}

.mv-wrapper {
  position: relative;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.mv-card {
  background: #fff;
  padding: 35px 32px;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, .15);
  transition: .4s;
}

.mv-card:hover {
  transform: translateY(-8px);
}

.mv-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.mv-icon {
  width: 42px;
  height: 42px;
  border: 2px solid #e63939;
  color: #e63939;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 22px;
}

.mv-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #000;
}

.mv-card p {
  color: #000;
  line-height: 1.7;
  font-size: 15.5px;
}


.team-sec {
  padding: 40px 8%;
  background: #f7f9ff;
  text-align: center;
}

.team-title {
  font-size: 36px;
  margin-bottom: 10px;
  color: #000;
}

.team-subtitle {
  max-width: 650px;
  margin: 10px auto 50px;
  font-size: 18px;
  font-weight: 450;
  color: #333;
  line-height: 1.6;
  text-align: center;
}


.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.team-card {
  position: relative;
  overflow: hidden;
  height: 400px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, .15);
}

.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: .5s;
}

.team-info {
  position: absolute;
  left: 0;
  bottom: -100%;
  width: 100%;
  background: rgba(265, 265, 265, .75);
  color: black;
  padding: 18px;
  transition: .5s;
}

.team-info h4 {
  font-size: 20px;
  margin-bottom: 4px;
  font-weight: 650;
}

.team-info span {
  font-size: 16px;
  opacity: .85;
  font-weight: 500;
}

.team-card:hover img {
  transform: scale(1.1);
}

.team-card:hover .team-info {
  bottom: 0;
}


.hero-sec {
  height: 370px;
  width: 100%;
}

.hero-sec-container {
  background-image: url('../images/hero.avif');
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-sec-content {
  position: absolute;
  background: rgba(0, 0, 0, .18);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-sec-content h2 {
  font-size: 55px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 650;
  text-shadow: rgba(0, 0, 0, .85);
}



.premium-contact-map {
  position: relative;
  width: 100%;
}

.map-area {
  width: 100%;
  height: 420px;
  overflow: hidden;
  filter: grayscale(20%);
}

.map-area iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* FLOATING CARD */

.contact-float-box {
  max-width: 1200px;
  margin: auto;
  background: #fff;
  position: relative;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .18);
  display: grid;
  margin-top: -50px;
  grid-template-columns: 1fr 1fr;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgb(143, 17, 17);
  border-radius: 20px;
}

/* LEFT FORM */

.contact-form-side {
  padding: 50px;
}

.contact-form-side h3 {
  font-size: 26px;
  margin-bottom: 25px;
  color: #111;
}

.contact-form-side form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form-side input,
.contact-form-side textarea {
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 15px;
  outline: none;
}

.contact-form-side textarea {
  resize: none;
  height: 120px;
}

.contact-form-side button {
  margin-top: 10px;
  padding: 14px;
  border: none;
  border-radius: 14px;
  background: #c62828;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: .3s;
}

.contact-form-side button:hover {
  background: #a61e1e;
}

/* RIGHT INFO */

.contact-info-side {
  background: linear-gradient(135deg, #c62828, #9b1c1c);
  padding: 50px;
  color: #fff;
  border-radius: 10px;
}

.contact-info-side h3 {
  font-size: 26px;
  margin-bottom: 18px;
}

.contact-info-side p {
  line-height: 1.7;
  opacity: .95;
  margin-bottom: 30px;
}

.contact-info-side ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-info-side li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}

.contact-info-side i {
  font-size: 18px;
}



.features-section {
  padding: 40px 8%;
  background: #f9fbff;
  text-align: center;
}

.features-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #111;
}

.features-subtitle {
  color: #555;
  margin: 0 auto;
  font-size: 16px;
  text-align: start;
  font-weight: 500;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  margin-top: 50px;
  max-height: 520px;
  overflow-y: scroll;
  padding: 10px;
  scroll-behavior: smooth;
}

.features-grid::-webkit-scrollbar {
  width: 8px;
}

/* .features-grid::-webkit-scrollbar-thumb{
  background: linear-gradient(180deg,#c74b2b,#7f1b07);
  border-radius: 10px;
} */
.feature-box {
  background: #fff;
  padding: 35px 25px;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
  transition: .35s ease;
  border: 1px solid #c7c7ff;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 55px rgba(0, 0, 0, .15);
}

.feature-box i {
  font-size: 38px;
  color: #d41515;
  margin-bottom: 14px;
}

.feature-box h4 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #111;
}

.feature-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}



.smart-business {
  padding: 40px 8%;
  background: #ffffff;
}

.smart-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* LEFT */
.smart-text h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0b1c3f;
  margin-bottom: 18px;
}

.smart-text p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}

.smart-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.smart-points div {
  font-weight: 600;
  color: #0b1c3f;
}

.smart-points i {
  color: #3b6cff;
  margin-right: 8px;
  font-size: 18px;
}

/* RIGHT */
.smart-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;

}

.smart-card {
  background: #fff;
  padding: 26px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: .4s;
  border: 2px solid #d4e6e3;
}

.smart-card:hover {
  transform: translateY(-8px);
}

.smart-card i {
  font-size: 34px;
  color: #3b6cff;
  margin-bottom: 12px;
}

.smart-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0b1c3f;
}

.smart-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}




.benefits-section {
  padding: 40px 20px;
  background: #fff;

}

.benefits-header {
  text-align: center;
  margin-bottom: 40px;
}

.benefits-header h2 {
  font-size: 40px;
  color: #111;
  font-weight: 800;
  margin-bottom: 12px;
}

.benefits-header p {
  font-size: 20px;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Each row: image + content */
.benefit-row {
  display: flex;
  align-items: center;
  gap: 30px;
  overflow: hidden;
}



.benefit-img {
  flex: 1;
  width: 100%;
}

.benefit-img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.benefit-content {
  padding: 20px;
  flex: 1;

}

.benefit-content h3 {
  font-size: 28px;
  color: #de1111;
  margin-bottom: 10px;
  font-weight: 700;
}

.benefit-content p {
  font-size: 18px;
  color: #333;
  line-height: 1.5;
}

.first-benefit {
  background: #ffeded;
}

.first-benefit1 {
  background: #f7f3f3;
}

.first-benefit2 {
  background: #d6d5d5;
}


/* SECURITY SECTION */
.security-section {
  padding: 80px 5%;
  background: #f9fafb;
}

.security-container {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.security-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.security-image img {
  width: 100%;
  border-radius: 16px;
  height: 500px;
  transition: 0.3s;
}

.security-image:hover img {
  transform: scale(1.04);
}

.security-content {
  flex: 1;
  min-width: 300px;
}

.security-content h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #111;
}

.security-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 10px;
}

.security-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.security-card {
  padding: 10px;
  border-radius: 12px;
  border: 1px solid #d6c9c4;
}

.security-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0px;
  background: transparent !important;
  border: none !important;
}

.card-header i {
  font-size: 2rem;
  color: #de1111;
}

.card-header h4 {
  margin: 0;
  font-size: 1.1rem;
  color: #111;
}

.security-card p {
  margin: 0;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* RESPONSIVE */
@media(max-width: 992px) {
  .security-container {
    flex-direction: column-reverse;
    gap: 30px;
  }
}







.stats-section {
  padding: 60px 8%;
  background: #f7f9fc;
  text-align: center;
}

.stats-heading {
  font-size: 36px;
  margin-bottom: 10px;
  color: #111;
}

.stats-subheading {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}

.stats-section {
  background: #fff;
  padding: 30px 20px;
  text-align: center;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.stat-item {
  border-right: 1px solid #111;
  flex: 1 1 200px;
  color: #111;
  text-align: center;
  transition: transform 0.3s;
}

.stat-border {
  border: none;
}

.stat-item h3 {
  font-size: 3rem;
  font-weight: 700;
  color: #d41515;
  /* highlight color */
  margin-bottom: 10px;
}

.stat-item p {
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
}










.section-container {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h1 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #222;
  font-weight: 650;
}

.section-header p {
  font-size: 1rem;
  color: #2c2525;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.service-section {
  display: flex;
  flex-wrap: wrap;
  border: 2px solid #ccc;
  border-radius: 10px;
}

/* Left menu */
.service-menu {
  flex: 1;
  min-width: 250px;
  max-height: 500px;
  overflow-y: auto;
  border-radius: 8px;
  background: #fff;
  padding: 10px;
}

.service-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-menu ul li {
  padding: 25px 15px;
  border-bottom: 1px solid #eee;
  cursor: pointer;

  border: 1px solid #e2d6d6;
  margin: 10px 0px;
  transition: 0.3s;
  border-radius: 5px;
}

.service-menu ul li:hover,
.service-menu ul li.active {
  border: 1px solid rgb(131, 9, 9);
  color: rgb(159, 33, 33);
  background: #fbf9f9;
}

/* Scrollbar styling */
.service-menu::-webkit-scrollbar {
  width: 4px;
}

.service-menu::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.service-menu::-webkit-scrollbar-thumb {
  background: #5d636d;
  border-radius: 4px;
}

/* Right content */
.service-content {
  flex: 2;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  min-width: 300px;
  position: relative;
}

.service-content>div {
  display: none;
}

.service-content>div.active {
  display: block;
}

.service-content h2 {
  color: #ab4526;
  margin-bottom: 15px;
  font-size: 1.5rem;
  font-weight: 700;
}

.service-content p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-content img {
  width: 100%;
  height: 350px;
  border-radius: 8px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .service-section {
    flex-direction: column;
  }

  .service-menu {
    max-height: 300px;
  }
}



.workflow-section {
  padding: 40px 20px;
  background: #fff;

}

.workflow-section h2 {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}

.workflow-intro {
  text-align: center;
  color: #555;
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

.workflow-wrap {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
  gap: 50px;
}

.workflow-content {
  flex: 1;
}

.step-line {
  margin-bottom: 25px;
}

.step-number {
  font-weight: 650;
  margin-bottom: 6px;
  display: block;
  font-size: 25px;
}

.step-line h3 {
  margin: 0 0;
  font-size: 20px;
}

.step-line p {
  margin: 0;
  line-height: 1.6;
  color: #555;
}

.workflow-image {
  flex: 1;
  height: 420px;
  margin-top: 80px;

}

.workflow-image img {
  width: 100%;
  height: 100%;
  transition: 0.4s;
}

.workflow-image:hover img {
  transform: scale(1.05);
}



.powerful-section {
  padding: 30px 8%;
}

.section-title {
  font-size: 32px;
  margin-bottom: 10px;
}

.section-subtitle {
  max-width: 700px;
  margin-bottom: 50px;
  color: #555;
}

.power-sec {
  max-width: 1200px;
  margin: auto;
}

.power-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.power-box {
  display: flex;
  border: 2px solid #ddd;
  padding: 18px;
  gap: 30px;
  border-radius: 8px;
  min-height: 150px;
}

.power-icon {
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  background: #ccc;
  padding: 0px 30px;
  border-radius: 10px;

}

.power-content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

.power-content h3 {
  margin: 0 0 6px;
  font-size: 20px;
}

.power-content p {
  margin: 0;
  line-height: 1.6;
  color: #555;
}

.why-better-section {
  padding: 30px 8%;
}

.why-better {
  margin: auto;
  max-width: 1200px;
}

.why-grid1 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.why-box {
  border: 1px solid #ddd;
  padding: 25px;
  text-align: center;
  transition: 0.4s;
}

.why-box:hover {
  transform: scale(1.04);
}

.why-box i {
  font-size: 34px;
  margin-bottom: 12px;
}

.why-box h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.why-box p {
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media(max-width:900px) {
  .why-grid1 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:600px) {
  .why-grid1 {
    grid-template-columns: 1fr;
  }
}


.cta-section {
  padding: 90px 8%;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  text-align: center;
}

.cta-content {
  max-width: 750px;
  margin: auto;
}

.cta-content h2 {
  font-size: 34px;
  margin-bottom: 12px;
}

.cta-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
}

.cta-btn {
  display: inline-block;
  padding: 14px 34px;
  background: linear-gradient(135deg, #c76d28, #7f1b07);

  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 10px;
}

.cta-btn:hover {
  background: #dd1818;
  color: #fff;
}

/* Responsive */
@media(max-width:600px) {
  .cta-content h2 {
    font-size: 26px;
  }
}


.pricing-hero {
  padding: 100px 8%;
  text-align: center;
  background:
    linear-gradient(135deg, #8d4d1b, #eb3e1b),
    rgba(0, 0, 0, 0.15);
}

.pricing-hero-wrap {
  max-width: 900px;
  margin: auto;
}

.pricing-hero h1 {
  font-size: 46px;
  margin-bottom: 14px;
  color: #fff;
}

.pricing-subtitle {
  font-size: 18px;
  color: #fff;
}

.pricing-divider {
  width: 100%;
  height: 2px;
  background: #ffff;
  margin: 26px auto;
}

.pricing-points {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  color: #fff;
  font-weight: 500;
}

.pricing-points span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-points i {
  font-size: 18px;
}

/* Responsive */
@media(max-width:600px) {
  .pricing-hero h1 {
    font-size: 30px;
  }
}





.pricing-section {
  padding: 90px 8%;
  background: #f8fbff;
  text-align: center;
  font-family: Segoe UI, sans-serif;
}

.pricing-title {
  font-size: 40px;
  font-weight: 700;
}

.pricing-subtitle1 {
  color: #090101;
  margin: 12px 0 15px;
}

.billing-toggle {
  display: inline-flex;
  border: 1px solid #ccc;
  border-radius: 40px;
  overflow: hidden;
  margin-bottom: 60px;
}

.billing-toggle button {
  padding: 10px 28px;
  background: none;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.billing-toggle .active {
  background: #b72c14;
  color: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

.price-card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 40px 30px;
  border-radius: 18px;
  text-align: left;
}

.price-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.price {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
}

.features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.features li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #444;
}

.features i {
  color: #923a07;
}

.plan-btn {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 30px;
  border: 1px solid #e76926;
  color: #eb5d25;
  font-weight: 600;
  text-decoration: none;
}

.plan-btn:hover {
  background: #bc5714;
  color: #fff;
}

.filled {
  background: #c35327;
  color: #fff;
}

.popular {
  border: 2px solid #c14925;
  position: relative;
}

.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #c35414;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
}

.hidden {
  display: none;
}


.pricing-cta {
  padding: 90px 8%;
  background: linear-gradient(135deg, #ea6118, #dd1414);
  color: #fff;
  text-align: center;
}

.cta-container {
  max-width: 900px;
  margin: auto;
}

.pricing-cta h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.pricing-cta p {
  font-size: 18px;
  opacity: .9;
  margin-bottom: 40px;
  color: #fff;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 14px 34px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
}

.cta-btn.primary {
  background: #fff;
  color: #eb9925;
}

.cta-btn.outline {
  border: 1px solid #ffffff;
  color: #fff;
}

.cta-trust {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  font-size: 15px;
}

.cta-trust i {
  margin-right: 6px;
}





.partner-hero {
  padding: 120px 8%;
  background: linear-gradient(135deg, #8d1b1b, #eb3e1b);
  color: #fff;
}

.partner-container {
  max-width: 1100px;
  margin: auto;
}

.partner-content {
  max-width: 650px;
}

.partner-hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 18px;
}

.partner-hero p {
  font-size: 18px;
  line-height: 1.7;
  opacity: .95;
}

.partner-actions {
  margin-top: 35px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.partner-btn {
  padding: 14px 34px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
}

.partner-btn.primary {
  background: #fff;
  color: #eb3e1b;
}

.partner-btn.outline {
  border: 1px solid #fff;
  color: #fff;
}




.partner-form-section {
  padding: 40px 8%;
  background: #fff;
  font-family: Segoe UI, sans-serif;
}

.partner-form-wrap {
  display: flex;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
  align-items: center;
  flex-wrap: wrap;
}

.partner-info {
  flex: 1;
}

.partner-info h2 {
  font-size: 38px;
  margin-bottom: 15px;
}

.partner-info p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
}

.partner-info ul {
  list-style: none;
  padding: 0;
}

.partner-info li {
  margin-bottom: 12px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.partner-info i {
  color: #eb3e1b;
}

.partner-form {
  flex: 1;
  border: 1px solid #ddd;
  padding: 35px;
  border-radius: 16px;
}

.partner-form h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.partner-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.partner-form input,
.partner-form textarea {
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
}

.partner-form textarea {
  min-height: 100px;
  resize: none;
}

.partner-form button {
  background: #eb3e1b;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
}



.partner-benefits {
  padding: 50px 8%;
  background: #f9fafc;
  text-align: center;
  font-family: Segoe UI, sans-serif;
}

.partner-benefit-container {
  max-width: 1200px;
  margin: auto;
}

.benefits-title {
  font-size: 40px;
  font-weight: 700;
}

.benefits-subtitle {
  color: #555;
  margin: 12px 0 50px;
}

.benefits-grid1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

.benefit-box1 {
  background: #fff;
  border: 1px solid #ddd;
  padding: 35px 25px;
  border-radius: 16px;
  transition: 0.4s;
}

.benefit-box1:hover {
  transform: scale(1.05);
}

.benefit-box1 i {
  font-size: 38px;
  color: #eb3e1b;
  margin-bottom: 15px;
}

.benefit-box1 h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.benefit-box1 p {
  color: #555;
  line-height: 1.6;
}


.content-barcode {
  padding: 50px 0px;
}

.content-barcode-container {
  max-width: 1200px;
  margin: auto;
}

.content-barcode-container h2 {
  text-align: center;
  font-size: 30px;
  font-weight: 650;
  margin-bottom: 20px;
}

.content-barcode-container p {
  font-size: 16px;
  text-align: center;
}

.cal-sec {
  width: 100%;
  padding: 70px 8%;
  background: linear-gradient(135deg, #b80000, #ff2b2b);
  position: relative;
  overflow: hidden;
  color: #fff;
}

.cal-sec::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -120px;
  right: -120px;
}

.cal-sec-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cal-sec-container h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
}

.cal-sec-container p {
  font-size: 18px;
  opacity: .9;
  margin-bottom: 35px;
}


/* Responsive */
@media(max-width: 768px) {
  .cal-sec-container h2 {
    font-size: 32px;
  }

  .cal-sec-container p {
    font-size: 16px;
  }
}




.calc-layout {
  display: flex;
  gap: 40px;
  padding: 80px 8%;

}

.calc-sec-left{
  flex: 3;
}
.calc-left {

  border: 1px solid #7e200d;
  padding: 20px;
  border-radius: 10px;
}

.calc-right {
  flex: 1;
  position: sticky;
  top: 100px;
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 10px;
  max-height: 450px;
}

.calc-right ul {
  list-style: none;
  padding: 0;
}

.calc-right li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}

.method-btns {
  display: flex;
  gap: 15px;
  margin: 25px 0;
}

.method-btns button {
  padding: 10px 20px;
  border: 1px solid #c91c1c;
  background: #fff;
  cursor: pointer;
  border-radius: 6px;
}

.method-btns .active {
  background: #c91c1c;
  color: #fff;
}

.field-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.field-line input {
  width: 120px;
  padding: 6px 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

input[type=range] {
  width: 100%;

}

.result-box-new {
  margin-top: 25px;
  padding: 10px 0px;
  border-radius: 12px;
  text-align: start;
}

.result-box-new span {
  color: #777;
  font-size: 14px;
}

.result-box-new h3 {
  font-size: 32px;
  color: #c91c1c;
  margin-top: 8px;
}

.depreciation-table{
  width:100%;
  border-collapse:collapse;
  margin-top:30px;
}

.depreciation-table th,
.depreciation-table td{
  border:1px solid #ddd;
  padding:12px;
  text-align:center;
}

.depreciation-table th{
  background:#f8f8f8;
  font-weight:600;
}

.calc-means {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.8;
  color: #222;
}

/* Headings */
.calc-means h2.calc-title {
  font-size: 34px;
  margin-bottom: 15px;
  color: #b31212;
}

.calc-means h4.calc-subtitle {
  margin-top: 40px;
  font-size: 22px;
  color: #b31212;
}

.calc-means h5.calc-step {
  margin-top: 30px;
  font-size: 18px;
  color: #222;
}

.calc-means h6.calc-method {
  margin-top: 25px;
  font-size: 17px;
  color: #b31212;
}

/* Paragraphs */
.calc-means p.calc-text {
  font-size: 16px;
  margin-top: 10px;
  color: #444;
}

.calc-means p.calc-highlight {
  font-size: 17px;
  background: #fafafa;
  padding: 20px;
  border-left: 4px solid #b31212;
  border-radius: 6px;
}

/* Strong/Bold inside calc-means */
.calc-means strong,
.calc-means b {
  color: #000;
}

/* Table */
.calc-means table.calc-table {
  width: 100%;
  margin: 40px 0;
  border-collapse: collapse;
  font-size: 15px;
}

.calc-means table.calc-table th {
  background: #f4f4f4;
  padding: 14px;
  border: 1px solid #ddd;
  font-weight: 600;
  text-align: center;
}

.calc-means table.calc-table td {
  padding: 12px;
  border: 1px solid #ddd;
  text-align: center;
}

/* Story block bold */
.calc-means p.calc-text b {
  display: inline-block;
  margin-top: 15px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .calc-means h2.calc-title { font-size: 26px; }
  .calc-means h4.calc-subtitle { font-size: 20px; }
  .calc-means p.calc-text { font-size: 15px; }
}



.industries-section {
  padding: 60px 20px;
  background-color: #fff;
}
.industries-container{
  max-width: 1200px;
  margin: auto;
}

.industries-section h2 {
  text-align: center;
  margin-bottom: 15px;
  max-width: 800px;
  margin: auto;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.industries-section h4 {
  font-size: 2rem;
  font-weight: 700;
  border-bottom: 4px solid rgb(239, 26, 26);
  width: fit-content;       /* keeps border width just around text */
  margin: 0 auto 15px auto; /* center horizontally */
  padding-bottom: 5px; 
}

.industries-section p {
  text-align: start;
  margin: 0 auto 30px auto;
  font-size: 1rem;
  color: #555;
}

.financial-subtitle1{
  text-align: center !important;
  margin: 0px 0px 20px !important;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.industry-box {
  display: flex;
  align-items: center;
  gap: 15px;

  padding: 15px 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  color: #333;
  background-color: #f9f9f9;
}


.industry-box i {
  font-size: 1.5rem;
  color: #d9534f; /* red tone for icon */
}
.industry-box:hover i{
  font-size: 2rem;
}

.industries-btn {
  display: flex;
  justify-content: center; /* center buttons */
  gap: 20px;               /* spacing between buttons */
  margin-top: 30px;
}

.industries-btn button {
  padding: 12px 28px;      /* top/bottom, left/right */
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid #d9534f; /* red border */
  background-color: #d9534f;  /* red fill */
  color: #fff;                /* text white */
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.industries-btn button:nth-child(2) {
  background-color: transparent; /* second button transparent */
  color: #d9534f;                /* red text */
}

.industries-btn button:hover {
  background-color: #c9302c; /* slightly darker red on hover */
  border-color: #c9302c;
  color: #fff;
}

.industries-btn button:nth-child(2):hover {
  background-color: #d9534f;
  color: #fff;
}

.manufacture-contain{
  margin: 50px 0px;
}




#cookie-strip {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 99;
  display: block; 
  border-top: 1px solid #ccc;
  box-shadow: 0 -2px 6px rgba(0,0,0,0.1);
  padding: 15px 0;
  bottom: 0px;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: start;
}

.cookie-content p {
  margin: 0 0 10px 0;
  font-size: 16px;
  line-height: 1.4;
}

.cookie-content a {
  color: #d9534f; /* redish link */
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.cookie-buttons button {
  padding: 8px 20px;
  border-radius: 5px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

#accept-btn {
  background-color: #d9534f;
  color: #fff;
}

#accept-btn:hover {
  background-color: #c9302c;
}

#reject-btn {
  background-color: #fff;
  border: 2px solid #d9534f;
  color: #d9534f;
}

#reject-btn:hover {
  background-color: #d9534f;
  color: #fff;
}






