/* NAVBAR */
.nav-sec {
  background: #fff;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
  padding: 0 25px;
  margin:20px 10px;
  border-radius:60px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
}
.fixed{
    margin: 0;
    border-radius: 0px;
    
}
.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 5px 0px;
}
.operation-card {
  display: flex;
  gap: 12px;
  align-items: center;
  border: 1px solid #e32525;
  padding: 14px;
  border-radius: 10px;
}

.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 15px !important;
  position: relative;
}

.nav-sec .nav-links > ul > li > a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #111;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  transition: 0.3s;
}

.nav-sec .nav-links > ul > li:hover > a {
  color: #de1111;
}
.nav-links {
  position: relative;
}
.nav-container {
  position: relative;
}
.main-dropdown {
  position: relative;
}
.nav-container {
  position: static !important;
}
.nav-sec .dropdown {
  position: fixed;
  left: 10px;
  right: 10px;
  margin: 0px 20px;
  max-width: 100%;
  display: none;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  z-index: 9999;
}

.main-dropdown:hover > .dropdown {
  display: block;
}
.dropdown ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.dropdown ul li a i {
  height: 40px;
  width: 40px;
  font-size: 20px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ccc;
  color: #963512;
}

.dropdown ul li a {
  display: flex;
  align-items: center;
  gap: 20px;
}
.loginIC{
    border-radius: 5px;
    border:1px solid #e2e2e2;
    padding: 10px;;
}
@keyframes fade {
  from {
    opacity: 0;
    transform: translate(-50%, 15px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.nav-sec .dropdown > ul {
  list-style: none;
  padding: 10px 10px;
}

.nav-sec .dropdown > ul li {
  padding: 10px 12px;
}

.nav-sec .dropdown > ul li a {
  text-decoration: none;
  color: #222;
  transition: 0.3s;
  font-size: 14px !important;
  font-weight: 600;
}

/* SUB MENU */
.nav-sec .sub-menu {
  position: relative;
}

.nav-sec .sub-menu-nav {
  position: absolute;
  left: 100%;
  top: 0;
  width: 400px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  display: none;
  padding: 15px;
}

/* MEGA MENU */
.nav-sec .sub-menu-nav-contain {
  display: flex;
  gap: 30px;
}

.nav-sec .sub-menu-nav-contain > ul {
  list-style: none;
  padding-left: 0rem;
}

.nav-sec .sub-menu-nav-contain > ul > li {
  padding: 8px 0;
}

.nav-sec .sub-menu-nav-contain > ul > li a {
  text-decoration: none;
  color: #000;
  font-size: 13px;
  transition: 0.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 0.3s ease;
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.35);
}

/* hover effect */
.nav-links .signup a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(79, 70, 229, 0.45);
}
.nav-links .signup {
  padding: 0 !important;
}

/* ============ HERO SECTION ============ */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 170px 20px 50px;
  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: 62px;
  line-height: 1.20;
  margin-bottom: 22px;
  font-weight: 700;
}

.hero-content h1 span {
  color: #720303;
}

.hero-content p {
  font-size: 16px;
  color: #000;
  max-width: 670px;
  margin-bottom: 32px;
  font-weight: 400;
}

/* Buttons */

.hero-buttons1 {
  display: flex;
  gap: 18px;
}

.hero-buttons1 a {
  padding: 15px 30px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  transition: 0.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, 0.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, 0.18);
  animation: floatImage 4s ease-in-out infinite;
}
.quotation-img img {
  width: 100%;
  border: 4px solid #ffffff;
  border-radius: 26px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.18);
}

.hero-image video {
  width: 100%;
  border: 4px solid #ffffff;
  border-radius: 26px;
  box-shadow: 0 35px 90px rgba(0, 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: 0.35;
  filter: grayscale(100%);
  transition: 0.3s ease;
}

/* center highlight illusion */
.logo-track:hover img {
  opacity: 0.6;
}

.logo-row img:hover {
  opacity: 1;
  filter: none;
  transform: scale(1.15);
}

/* animation */
@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}


.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: 38px;
  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;
  position: sticky;
  top: 60px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.product-layout {
  display: flex;
  align-items: center;
  gap: 60px;
}
.product-wrap.reverse {
  position: relative;
  z-index: 6;
}

.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: 0.3s;
}

.product-cta:hover {
  background: linear-gradient(135deg, #b55c19, #741603);
  color: #ffff;
}

.product-media {
  width: 100%;;
  flex: 1;
  text-align: center;
}

.product-media img {
  width: 100%;
  transition: 0.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, 0.3);
  border: 1px solid #ceb0b0;
  text-align: start;
  transition: 0.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, 0.12);
}

.testimonial-section {
  padding: 50px 8%;
  background: #fff;
}

.section-head {
  text-align: center;
  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;
  text-align: center;
}

.testimonial-carousel .testimonial-card {
    height: 380px;
  background: #fff;
  border-radius: 24px;
  padding: 30px 25px;
  box-shadow: 0px 5px 25px rgba(79, 70, 229, 0.2);
  text-align: center;
  transition: all 0.3s ease;
  margin: 10px;
}

.testimonial-carousel .testimonial-card:hover {
  box-shadow: 0 30px 70px rgba(79, 70, 229, 0.15);
}

.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: space-between !important;
}


.owl-nav button {
    position: absolute;
    top: 50%;
  transform: translateY(-50%);
  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;
  line-height: 1 !important;
}
.owl-prev {
  left: 0px;
}

.owl-next {
  right: 0px;
}

.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;
}


.faq-section {
  background: #fff;
  width: 100%;
}

.faq-container {
  max-width: 1200px;
  margin: auto;
}

.faq-header h2 {
  font-size: 36px;
  margin-bottom: 30px;
  color: #111;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 30px;
}

.faq-header p {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
  text-align: center;
}

/* 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-item:hover {
  transform: translateY(-3px);
  transition: 0.3s;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 10px 20px;
}
.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;
  max-width: 100%;
}

/* Rotate icon on open */
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}


.cta-section {
    width: 100%;
  background: linear-gradient(135deg, #e0f7fa, #e1bee7);
  /* Premium gradient */
  margin: 30px 0px;
}
.cta-section h2{
    font-size:32px;
}
.cta-section p{
    font-size:16px;
    margin: 20px;
}
.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;
  margin-top: 20px;
}

.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;
}

.premium-footer {
  background: #101323;
  padding: 40px 30px;
  font-family: Segoe UI, sans-serif;
}

.footer-grid {
  max-width: 1200px;
  margin: auto;
  padding:20px 0;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 50px;
}

.footer-about h4 {
  font-size: 28px;
  color: #d4e6e3;
  margin-bottom: 15px;
}

.footer-about p {
  line-height: 1.8;
  margin-top: 20px;
  letter-spacing: 1px;
  font-weight: bold;
  text-transform:capitalize;
  color: #e0dddd;
}

.footer-col h4 {
  font-size: 25px;
  margin-bottom: 18px;
  color: #BC6123;
  text-transform: uppercase;
  
}

.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: 0.3s;
}

.footer-col ul li a:hover {
  color: #d8b7b7;
  transform: translateX(4px);
}

/* SOCIALS */

.footer-social-media {
  margin: 10px 0px;
}

.socials-links {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
}

.socials-links > a {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid;
  background: #fff;
  box-shadow: 0 8px 22px rgba(198, 40, 40, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: 0.3s;
}
.socials-links a.fb{
    color: #1877F2;
}
.socials-links a.fb:hover{
    background: #1877F2;
}
.socials-links a.ig{
    color:#962FBE;
}
.socials-links a.ig:hover{
    background:#962FBE;
}
.socials-links a.yt{
    color: #FF0000;
}
.socials-links a.yt:hover{
    background: #ff0000;
}
.socials-links a.linkD{
    color: #1275B1;
}

.socials-links a.linkD:hover{
    background: #1275B1;
}
.socials-links a.tw{
    color: black;
}

.socials-links a.tw:hover{
    background: black;
}
.socials-links a:hover {
    border: 1px solid transparent;
  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: 0.3s;
}

.legal-links a:hover {
  color: #d8b7b7;
}


.page-hero {
  background: linear-gradient(135deg, #f8faff, #dbdfea);
  height: 170px;
  display: flex;
  align-items: center;
  padding: 160px 8% 80px 8%;
}

.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: 0.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{
    text-align: justify;
}

.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, 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, 0.15);
  transition: 0.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: 100%;
  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, 0.15);
}

.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.5s;
}

.team-info {
  position: absolute;
  left: 0;
  bottom: -100%;
  width: 100%;
  background: rgba(265, 265, 265, 0.75);
  color: black;
  padding: 18px;
  transition: 0.5s;
}

.team-info h4 {
  font-size: 20px;
  margin-bottom: 4px;
  font-weight: 650;
}

.team-info span {
  font-size: 16px;
  opacity: 0.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, 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, 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, 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;
  margin-bottom: 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: 0.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: 0.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 5%;
  text-align: center;
}

.features-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #111;
  text-align: center;
}

.features-subtitle {
  color: #555;
  margin: 0 auto;
  font-size: 16px;
  text-align: start;
  font-weight: 400;
  text-align: center;
  max-width: 100%;
  margin: 10px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 40px;
  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, 0.08);
  transition: 0.35s ease;
  border: 1px solid #c7c7ff;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.15);
}

.feature-box i {
  font-size: 38px;
  color: #d41515;
  margin-bottom: 14px;
}

.feature-box h4 {
  font-size: 20px;
 margin:20px 0;
  color: #111;
}

.feature-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}
.title-padding{
    padding:160px 8% 0px 8%;
}



/* Top Section */
.top-section {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
  gap: 150px;
  padding-top: 35px;
  padding-bottom: 35px;
}

.top-image img {
  max-width: 420px;
  width: 100%;
}

.top-content {
  max-width: 520px;
}

.top-content h2 {
  font-size: 30px;
  color: #1d3557;
  margin-bottom: 20px;
}

.number-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.number-list li {
  margin-bottom: 12px;
  font-size: 16px;
  display: flex;
  align-items: flex-start;
}

.number {
  background: #2eb82e;
  color: white;
  padding: 4px 12px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-right: 10px;
}

/* Bottom Section */
.bottom-section {
  background: #fcf9f6;
  text-align: center;
  padding-top: 35px;
  padding-bottom: 35px;
  display: block !important;
}

.bottom-section h2 {
  font-size: 34px;
  color: #1d3557;
  margin-bottom: 40px;
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  margin: auto;
  gap: 10px 43px;
  text-align: left;
}

.features li {
  list-style: none;
  margin-bottom: 15px;
  font-size: 17px;
}

.features li::before {
  content: "✔";
  color: #2eb82e;
  font-weight: bold;
  margin-right: 10px;
}

.btn {
  display: inline-block;
  margin-top: 30px;
  background: #2f80ed;
  color: white;
  padding: 12px 26px;
  border-radius: 6px;
  text-decoration: none;
}


.smart-business {
  padding: 40px 8%;
  background: #ffffff;
}
.smart-container{
    
}

.bill-smart-container{
    display: grid;
    grid-auto-columns: 1fr, 1fr;
}

/* LEFT */
.smart-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0b1c3f;
  margin-bottom: 30px;
}

.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;
  padding: 30px ;
}

.smart-points div {
  font-weight: 600;
  color: #0b1c3f;
}

.smart-points i {
  color: #3b6cff;
  margin-right: 8px;
  font-size: 18px;
}

.smart-center{
    text-align: center;
}

/* RIGHT */
.smart-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.account-smart-cards{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap:30px;
}
.smart-card {
  background: #fff;
  padding: 26px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: 0.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:10px 0;
  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;
}

.benefit-img {
  flex: 1;
  width: 100%;
}

.benefit-img img {
  width: 100%;
  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;
  max-width: 670px;
}

.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;
  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;
}


.status {
  background: #fff;
  padding: 65px 0px !important;
  text-align: left;
}

.stats-section {
  padding: 60px 8%;
  background: #f7f9fc;
  text-align: center;
}

.stats-heading {
  font-size: 18px;
  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);
}

.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;
  text-align: left;
}

.power-icon {
  width: 100px;
  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 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-section h1{
    font-size:35px;
}

.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: 160px 8% 30px 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;
  color: #fff;
}

.pricing-subtitle {
  font-size: 18px;
  color: #fff;
}

.pricing-divider {
  width: 100%;
  height: 2px;
  background: #ffff;
  margin: 10px 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;
}

.pricing-section {
  padding: 40px 8%;
  background: #f8fbff;
  text-align: center;
  font-family: Segoe UI, sans-serif;
}

.pricing-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.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;
  margin: 40px 0;
}

.price-card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px 20px;
  border-radius: 18px;
  text-align: left;
  transition: 0.4s;
}
.price-card:hover {
  border: 1px solid #bc5714;
  transform: translateY(-2px) scale(1.02);
}

.price-card h3 {
  font-size: 24px;
}
.price-desc {
  font-size: 14px;
  margin-bottom: 5px;
}
.plan-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.plan-wrap span {
  background: #bc5714;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 25px;
}
.price {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.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: 5px;
  border-radius: 5px;
  border: 1px solid #e76926;
  color: #eb5d25;
  font-weight: 600;
  width: 100%;
  text-decoration: none;
  margin:20px 0;
}

.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, #8d4d1b, #eb3e1b), rgba(0, 0, 0, 0.15);
  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: 0.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: 0.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: 160px 8% 30px 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;
  color: #fff;
}

.cal-sec-container p {
  font-size: 18px;
  opacity: 0.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: 40px 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-radius: 14px;
  padding: 20px;
  max-height: 600px;
  overflow-y: auto;

  border: 1px solid #eee;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.calc-right h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
  position: relative;
}

.calc-right ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}
.calc-right li {
  margin-bottom: 8px;
}
.calc-right li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px !important;
  font-weight: 700;
  color: #222;
  background: #f8f9fc;
  transition: 0.3s;
  position: relative;
}

.calc-right li a:hover {
  background: #de1111;
  color: #fff;
  transform: translateX(5px);
}

.calc-right::-webkit-scrollbar {
  width: 5px;
}

.calc-right::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 10px;
}

.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: 20px 0;
}
.field-line label{
    font-size: 18px;
    font-weight: 600;
}

.field-line input {
  width: 120px;
  padding: 6px 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
}


input[type="range"] {
  width: 100%;
  accent-color: #C61C1C;
  border: none;
}

.range-value-box{
    display: flex;
    background: #fff;
    border: 2px solid #e2e2e2;
    border-radius: 6px;
    width: 160px;
    position: relative;
    right: 1px;
    
}
.range-value-box input{
    border: none;
    width:100%;
}
.range-value-box input:focus{
    outline: none;
}
.range-value-box .input-group-text{
    border: none;
    background: transparent;
    font-size:14px;
}

.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;
  padding: 0 0px;
  margin: 30px auto;
  font-family: "Segoe UI", sans-serif;
  line-height: 1.8;
  color: #222;
  text-align: start;
}

/* 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;
}

.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;
}

.quot-soft {
  padding: 50px 8%;
  background: #fff;
}
.nova-right-sec {
  flex: 1;
}
.nova-video-frame {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding-bottom: 56.25%; /* 16:9 ratio */
  border-radius: 8px;
  overflow: hidden;
  background: #000;
}

.nova-video-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.qsoft-features-sec {
  padding: 60px 20px;
  background: #f8f9fb;
}

.qsoft-container {
  max-width: 1200px;
  margin: auto;
}

.qsoft-heading {
  text-align: center;
  margin-bottom: 40px;
  font-size: 28px;
  font-weight: 600;
  color: #222;
}

/* Feature List Layout (No Cards) */
.qsoft-feature-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.qsoft-feature-item {
  display: flex;
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}

.qsoft-feature-item:last-child {
  border-bottom: none;
}

.qsoft-feature-item i {
  font-size: 40px;
  color: #0d6efd;
  min-width: 40px;
}

.qsoft-feature-item h4 {
  margin: 0 0 6px;
  font-size: 18px;
  color: #111;
}

.qsoft-feature-item p {
  margin: 0;
  color: #555;
  line-height: 1.6;
  font-size: 14px;
}

.quote-cta-section {
  background: #d9534f;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.quote-cta-container {
  max-width: 900px;
  margin: auto;
}

.quote-cta-section h2 {
  font-size: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.quote-cta-section p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.95;
}

/* Buttons */
.quote-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.quote-btn-primary,
.quote-btn-secondary {
  padding: 12px 22px;
  font-size: 15px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s ease;
}

.quote-btn-primary {
  background: #fff;
  color: #d9534f;
  font-weight: 600;
}

.quote-btn-primary:hover {
  color: #d9534f;
}

.quote-btn-secondary {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.quote-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.emi-calc-left {
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-family: Arial, Helvetica, sans-serif;
}

.emi-calc-left h2 {
  font-size: 24px;
  margin-bottom: 25px;
  font-weight: 600;
}

/* FIELD ROW */
.emi-field-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin:20px 0;
}

.emi-field-row label {
  font-size: 18px;
  font-weight: 600;
}

.emi-input {
  width: 120px;
  height: 36px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0 8px;
  font-size: 14px;
}

/* RANGE */
.emi-range {
  width: 100%;
  margin-bottom: 20px;
}

/* RESULT BOX */
.emi-result-box {
  margin-top: 20px;
  padding: 20px;
  background: #f7f7f7;
  border-radius: 8px;
  text-align: start;
}

.emi-result-box span {
  font-size: 14px;
  color: #666;
}

.emi-result-value {
  font-size: 26px;
  margin-top: 5px;
  font-weight: 600;
  color: #222;
}
.emi-result-box {
  margin-top: 25px;
  padding: 20px;
  border-radius: 8px;
  background: #f9f9f9;
  border: 1px solid #e5e5e5;
}

.emi-result-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.emi-result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #e5e5e5;
  font-size: 14px;
}

.emi-result-row:last-child {
  border-bottom: none;
}

.total-row {
  font-weight: 600;
  font-size: 15px;
  margin-top: 5px;
}
/* MAIN WRAPPER */

/* MAIN TITLE */
.emi-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* SUB HEADINGS */
.emi-subtitle {
  font-size: 24px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #111;
}

/* NORMAL TEXT */
.emi-text {
  font-size: 16px;
  margin-bottom: 16px;
}

/* FORMULA TEXT */
.emi-formula {
  font-size: 17px;
  font-weight: 600;
  margin-top: 15px;
}

/* EQUATION STYLE */
.emi-equation {
  font-size: 20px;
  font-weight: 600;
  background: #f4f6f9;
  padding: 12px 15px;
  border-left: 4px solid #2f80ed;
  margin: 15px 0;
}

/* VARIABLE LIST */
.emi-variable {
  font-size: 16px;
  margin-bottom: 14px;
}

/* BOLD TEXT INSIDE */
.emi-text strong,
.emi-variable strong {
  color: #111;
}
.asset-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 25px;
}

.asset-field {
  display: flex;
  flex-direction: column;
}

.asset-field label {
  font-size: 14px;
  margin-bottom: 6px;
  font-weight: 500;
}

.asset-input {
  height: 38px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0 10px;
  font-size: 14px;
  background: #fff;
}
.capital-list, .capital-steps ,.capital-list1{
    padding: 0 15px;
}
.capital-list li, .capital-steps li ,.capital-list1 li{
    margin: 10px 0;
}
.capital-steps2{
    padding: 0;
}
.capital-steps2 li{
  list-style: none;
  margin: 10px 0;
}

.capital-list1 {
  list-style: dashed;
}

.calc-result-box {
  margin-top: 25px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: #fff;
  padding: 20px;
}

.calc-result-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* GRID */
.calc-result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

.calc-result-head {
  font-weight: 600;
  background: #f8f8f8;
  padding: 12px 10px;
}

.calc-result-grid div {
  text-align: center;
}

.calc-result-grid div:first-child {
  text-align: left;
}

.total-row {
  font-weight: 600;
}

.calc-compare-title {
  font-size: 20px;
  font-weight: 600;
}

.calc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.calc-table th {
  background: #f5f5f5;
  text-align: left;
  padding: 12px;
  border: 1px solid #e5e5e5;
}

.calc-table td {
  padding: 12px;
  border: 1px solid #e5e5e5;
}

.calc-table tr:nth-child(even) {
  background: #fafafa;
}

.invoice-builder-sec {
  padding: 20px 0px;
  background: #fafafa;
}

.invoice-builder-container {
  max-width: 1200px;
  margin: auto;
}
.invoice-box-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* LEFT FORM */

.invoice-form-box {
  flex: 1;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #cf1d1d;
}

.invoice-form-title {
  font-size: 22px;
  margin-bottom: 20px;
}

.invoice-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.invoice-field label {
  font-size: 14px;
  margin-bottom: 6px;
}

.invoice-field input {
  height: 40px;
  padding: 0 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.invoice-action {
  margin-bottom: 12px;
}

.invoice-add-btn {
  background: none;
  border: 1px solid #0073ff;
  padding: 7px;
  border-radius: 8px;
  color: #333;
  cursor: pointer;
  font-size: 14px;
}

/* CUSTOM FIELD */

.invoice-custom-field {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.invoice-custom-field input {
  flex: 1;
  height: 40px;
  padding: 0 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

/* RIGHT SIDE */

.invoice-logo-box {
  background: #fff;
  border: 1px solid #cf1d1d;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
}

.logo-icon {
  font-size: 40px;
  margin-bottom: 10px;
}

.logo-content h4 {
  margin-bottom: 6px;
}

.logo-content p {
  font-size: 13px;
  color: #666;
}

.logo-upload-box {
  margin-top: 20px;
  border: 2px dashed #ccc;
  padding: 25px;
  border-radius: 6px;
}

.logo-upload-box input {
  width: 100%;
}
.toggle-target {
  display: none;
}

.invoice-custom-field {
  display: none;
  gap: 10px;
  margin-top: 10px;
}
.invoice-party-sec {
  padding: 0px 0px;
  background: #fafafa;
}

.invoice-party-wrap {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 30px;
}

.invoice-party-box {
  flex: 1;
  background: #fff;
  border: 1px solid #cf1d1d;
  border-radius: 8px;
  padding: 25px;
}

.invoice-party-title {
  font-size: 20px;
  margin-bottom: 20px;
}

.invoice-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.invoice-field label {
  font-size: 14px;
  margin-bottom: 6px;
}

.invoice-field input {
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0 10px;
}

.phone-input {
  display: flex;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}

.phone-input span {
  background: #f5f5f5;
  padding: 0 10px;
  display: flex;
  align-items: center;
  border-right: 1px solid #ddd;
}

.phone-input input {
  border: none;
  flex: 1;
  padding-left: 10px;
}

.invoice-extra-btns {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.extra-btn {
  padding: 6px 12px;
  border: 1px solid #0073ff;
  background: #fff;
  color: #0073ff;
  border-radius: 5px;
  cursor: pointer;
  font-size: 13px;
}

.toggle-target {
  display: none;
  width: 100%;
  margin-top: 10px;
}

/* jab open ho tab */
.toggle-target.active {
  display: block;
}

.two-input {
  display: flex;
  gap: 10px;
}

.two-input input {
  flex: 1;
}

.shipping-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.shipping-popup.active {
  display: flex;
}

.shipping-modal {
  width: 900px;
  max-height: 80vh;
  background: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}

.shipping-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
}

.shipping-close {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

.shipping-body {
  padding: 20px;
  overflow-y: auto;
}

.shipping-form-wrap {
  display: flex;
  gap: 30px;
}

.shipping-box {
  flex: 1;
}

.shipping-box h4 {
  margin-bottom: 10px;
}

.check-row {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
  font-size: 14px;
}

.shipping-footer {
  border-top: 1px solid #eee;
  padding: 15px 20px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.btn-cancel {
  padding: 8px 15px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
}

.btn-save {
  padding: 8px 18px;
  background: #0073ff;
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 4px;
}
.shipping-toggle-container {
  max-width: 1200px;
  margin: auto;
}
.shipping-toggle {
  padding: 40px 0px;
  background: #fafafa;
}

.qr-banner{
    background:#FAEDE4;
}

.qr-generator-sec {
  padding: 60px 20px;
}

.qr-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.qr-left {
  border: 1px solid #ccc;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
}
.qr-left h2 , .qr-right h2{
    font-size: 20px;
    margin-bottom:30px;
    color: #C61C1C;
}
.qr-left h4{
    font-size: 18px;
    margin: 20px 0;
}
.qr-right {
  background: #fff;
  border: 1px solid #ccc;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  height: 440px;
}

.qr-left select,
.qr-left input {
  width: 100%;
  padding: 10px;
  margin: 8px 0 18px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.generate-btn {
  width: fit-content;
  padding: 12px 25px;
  background: linear-gradient(135deg, #c76d28, #7f1b07);
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
}

.qr-preview img {
  width: 250px;
  margin: 20px auto;
}

.download-btns {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 30px;
}

.download-btns button {
  padding: 10px 16px;
  border: none;
  background: linear-gradient(135deg, #c76d28, #7f1b07);
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}

.sms-textarea {
  width: 100%;
  height: 100px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  resize: none;
  margin-bottom: 20px;
}

.easy-step {
  padding: 50px 0px;
  background: #fafafa;
}
.easy-step-container {
  max-width: 1260px;
  margin: auto;
  text-align: center;
}

.easy-steps-divide {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
  text-align: start;
  margin-bottom: 40px;
}

/* card */

.easy-step-card {
  position: relative;
  padding: 30px;
  border-radius: 12px;
  min-height: 200px;
  overflow: visible;
}

/* big small layout */

.big {
  grid-column: span 2;
}

.small {
  grid-column: span 1;
}

/* background colors */

.step1 {
  background: #fef4e8;
}
.step2 {
  background: #e8f4ff;
}
.step3 {
  background: #eaf9f0;
}
.step4 {
  background: #fff1f5;
}
.step5 {
  background: #f3f0ff;
}
.step6 {
  background: #fff7e6;
}

/* content */

.step-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.step-content p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.step-number {
  font-size: 42px;
  font-weight: 700;
  color: #ddd;
}

/* image overlap */

.easy-step-card img {
  position: absolute;
  bottom: -110px;
  left: 30px;
  height: 150px;
  width: 90%;
  border-radius: 8px;
}

.section-container1 {
  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;
}

.section-container {
  max-width: 1200px;
  margin: 50px auto;
}

/* ===== TABS HEADER ===== */

.service-tabs {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow-x: auto;
}

.service-tabs ul {
  display: flex;
  gap: 20px;
  padding: 15px;
  margin: 0;
  list-style: none;
  min-width: max-content;
}

.service-tabs li {
  padding: 10px 30px;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
}

.service-tabs li:hover,
.service-tabs li.active {
  background: #ab4526;
  color: #fff;
  border-color: #ab4526;
}
.service-content {
  margin-top: 40px;
  padding: 0px !important;
}

.service-box1 {
  display: none;
  grid-template-columns: 1.6fr 1fr;
  gap: 50px;
  align-items: center;
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 10px;
}

.service-box1.active {
  display: grid !important;
}

/* IMAGE */

.service-img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 8px;
}

/* TEXT */

.service-text h2 {
  color: #ab4526;
  margin-bottom: 20px;
  font-size: 26px;
}

.service-text ul {
  padding-left: 18px;
}

.service-text li {
  margin-bottom: 10px;
  color: #555;
  line-height: 1.6;
}

/* ===== SCROLLBAR ===== */

.service-tabs::-webkit-scrollbar {
  height: 5px;
}

.service-tabs::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 5px;
}

/* ===== MOBILE ===== */

@media (max-width: 768px) {
  .service-box1 {
    grid-template-columns: 1fr;
  }

  .service-img img {
    height: 220px;
  }
}

.gst-hero-section {
  padding: 160px 0px 10px;
  background: #fafafa;
}

.gst-hero-wrapper {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

/* TEXT */

.gst-hero-text h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
}

.gst-hero-text h1 span {
  color: #720303;
}

.gst-hero-text p {
  font-size: 16px;
  color: #000;
  margin: 0 auto 30px;
  line-height: 1.6;
}

/* BUTTON */

.gst-hero-btns {
  display: flex;
  justify-content: center;
}

.gst-primary-btn {
  padding: 15px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  background: linear-gradient(135deg, #c76d28, #7f1b07);
  color: #fff;
  transition: 0.3s;
}

.gst-primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* IMAGE */

.gst-hero-img {
  margin-top: 50px;
  height: 300px;
}

.gst-hero-img img {
  width: 100%;
  height: 100%;

  border-radius: 26px 26px 0px 0px;
  border: 4px solid #fff;
}


.status {
  padding: 60px 8%;
  text-align: center;
  background: radial-gradient(
    circle at center,
    #ffffff 0%,
    #f6f9fd 45%,
    #eef2f7 100%
  ) !important;
}

.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-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;
}

.gst-feature-section {
  padding: 40px 0px;
  background: radial-gradient(
    circle at center,
    #ffffff 0%,
    #f5f7fb 40%,
    #e9eef6 100%
  );
}

.gst-feature-container {
  max-width: 1200px;
  margin: auto;
}

.gst-feature-heading {
  font-size: 34px;
  text-align: center;
  margin-bottom: 15px;
}

.gst-feature-subtext {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  color: #555;
  line-height: 1.6;
}

/* GRID */

.gst-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */

.gst-feature-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #eee;
  transition: 0.3s;
}

.gst-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* TITLE */

.gst-feature-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.gst-feature-title h3 {
  font-size: 20px;
  font-weight: 600;
}

.gst-feature-title i {
  font-size: 16px;
  color: #c76d28;
}

/* TEXT */

.gst-feature-card p {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
  line-height: 1.6;
}

/* IMAGE */

.gst-feature-card img {
  width: 100%;
  margin-top: 20px;
  border-radius: 8px;
  height: 160px;
  object-fit: cover;
}


.gst-advanced-section {
  padding: 80px 20px;
  background: radial-gradient(
    circle at center,
    #ffffff 20%,
    #e7ebf0 40%,
    #fbf1f1 90%
  ) !important;
}

.gst-advanced-container {
  max-width: 1200px;
  margin: auto;
}

.gst-advanced-heading {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
  font-weight: 700;
}

/* GRID */

.gst-advanced-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* CARD */

.gst-advanced-card {
  border: 1px solid #eee;
  padding: 30px;
  border-radius: 12px;
  background: #fafafa;
  transition: 0.3s;
}

.gst-advanced-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* TITLE */

.gst-advanced-card h3 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #7f1b07;
}

/* POINTS */

.gst-advanced-card ul {
  padding-left: 18px;
  margin-bottom: 25px;
}

.gst-advanced-card ul li {
  margin-bottom: 10px;
  color: #555;
  line-height: 1.6;
}

/* IMAGE */

.gst-advanced-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}


.powerful-section {
  padding: 30px 8%;
  text-align: center;
}

.section-title {
  font-size: 32px;
  margin-bottom: 10px;
  text-align: center;
}

.section-subtitle {
  max-width: 1200px;
  margin-bottom: 50px;
  color: #555;
  text-align: center;
}

.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: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 45px;
  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;
}

.workflow-section {
  padding: 80px 20px;
}
.workflow-part {
  background: radial-gradient(
    circle at center,
    #eef3fb 20%,
    #f8fafd 40%,
    #f3e9e9 90%
  ) !important;
}

.workflow-section h2 {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 15px;
}

.workflow-intro {
  text-align: center;
  color: #555;
  font-size: 16px;
  max-width: 780px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.workflow-wrap {
  display: flex;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

/* LEFT */

.workflow-content {
  flex: 1;
  position: relative;
  padding-left: 40px;
}

/* vertical line */

.workflow-content::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e2e6ef;
}

/* step */

.step-line {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 35px;
  position: relative;
}

/* step number circle */

.step-number {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #c76d28, #7f1b07);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

/* step text */

.step-text h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 600;
}

.step-text p {
  margin: 0;
  color: #555;
  line-height: 1.6;
}

/* RIGHT IMAGE */

.workflow-image {
  flex: 1;
}

.workflow-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  transition: 0.4s;
}

.workflow-image:hover img {
  transform: translateY(-8px) scale(1.03);
}

.stats1-section {
  padding: 0px 8%;
}
.stats1-section h4{
    margin:30px 0px 20px  0px;
}
.benefits-sec-row {
  padding: 0px 8%;
  display: flex;
  align-items: center;
  gap: 30px;
  overflow: hidden;
}
.icon2 {
  background: #ffe5d0; /* soft orange bg */
  color: #d35400; /* orange icon */
}

.icon3 {
  background: #dcecff; /* soft blue bg */
  color: #2f80ed; /* blue icon */
}

.icon4 {
  background: #dff7ea; /* soft green bg */
  color: #27ae60; /* green icon */
}

.icon5 {
  background: #ffe3f0; /* soft pink bg */
  color: #d63384; /* pink icon */
}

.icon6 {
  background: #e8e0ff; /* soft purple bg */
  color: #6f42c1; /* purple icon */
}

.gstr-summary-section {
  padding: 40px 0px;
  background: linear-gradient(180deg, #f6f8fc, #ffffff);
  text-align: center;
}

.gstr-summary-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
}

.gstr-summary-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* boxes */

.summary-box {
  padding: 30px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffffff, #f3f6fb);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.summary-box p {
  color: #444;
  line-height: 1.6;
  font-size: 15px;
  margin: 0;
}

.summary-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.gstr-report-section {
  padding: 40px 0px 0;
  background: linear-gradient(180deg, #f7f9fc, #ffffff);
  text-align: center;
}

.gstr-report-container {
  max-width: 1200px;
  margin: auto;
}

.gstr-report-container h2 {
  font-size: 36px;
  font-weight: 700;
}

.report-image {
  width: 100%;
  padding: 40px 0px;
  max-width: 1200px;
  margin: auto;
}

.report-image img {
  width: 100%;
  display: block;
}

.feature-box-gstr {
  width: 100%;
  background: #fff;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.3);
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  align-items: flex-start;
  text-align: start;
  transition: 0.4s;
}
.feature-box-gstr:hover {
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.5);
}

/*--------------------------------------------*/
/*--------------dashboard---------------------*/
/*--------------------------------------------*/



.contactBox{
    position:fixed;
    bottom: 20px;
    right: 10px;
    
}
.contactBox ul {
    list-style: none;
    padding: 0;
}
.contactBox ul li{
    margin: 10px 0;
    padding: 10px;
    border-radius: 10px;
    background: #e2e2e2;
}
.contactBox a.tele{
    color: #963512;
}
.contactBox a.wp{
    color: #25D366;
}

.contactBox i{
    font-size:40px;
}


/*----------------------------------*/
/*----------pdf page----------------*/
/*----------------------------------*/
.pdf-sec{
    padding: 150px 0px 40px;
    background: #fafafa;
}
.pdf-wrap{
    max-width: 1250px;
    margin: auto;
}
.pdf-sec-content{
    max-width: 1100px;
    margin: auto;
}
.pdf-sec-content h4{
    font-weight: 600;
    font-size: 42px;
    line-height: 52px;
    color: #33333b;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4px;
    max-width: 1100px;
}
.pdf-sec-content p{
    max-width: 1000px;
    margin: auto;
    font-size:16px;
    color: #666;
    text-align: center;
}
.pdf-tabs-wrapper {
  padding: 30px 20px;
}

.tab-contents-btn {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 25px;
}
.tabs-btn-wrap{
    max-width: 1000px;
    margin: auto;
}

.pdf-button {
  padding: 8px 18px;
  border-radius: 30px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.pdf-button:hover {
  border-color: #e53935;
  color: #e53935;
}

.pdf-button.active {
  background: #e53935;
  color: #fff;
  border-color: #e53935;
  box-shadow: 0 6px 15px rgba(229,57,53,0.25);
}


.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fade 0.3s ease;
}

/* Animation */
@keyframes fade {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.pdf-box-wrap{
    text-decoration: none;
}
.pdf-row{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 10px;
}
.pdf-box{
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    height: 240px;
    transition: 0.4s;
    background: #fff;
}
.workflow-box{
    background: #ffefef !important;
    height: 200px !important;
}
.workflow-box1{
   height: 200px !important;
   display: flex;
   align-items: center;
   justify-content: center;
   background: #fff;
}
.pdf-box-content1{
    text-align: center;
}
.pdf-box-content1 h6{
    color: #111;
    font-size: 15px;
}
.pdf-box-content1 p{
    color: #666;
}
.workflow-box1 i{
    background: #ffefef;
    height: 30px;
    width: 30px;
    color: #111;
    margin: 0px 46px 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pdf-box:hover{
  border-color: #e53935;
  box-shadow: 0 6px 15px rgba(229,57,53,0.25);
}
.pdf-box-content h4{
    color:#33333b;
    margin: 10px 0px ;
    font-size:20px;
    line-height: 28px;
    font-weight: 500;
}
.pdf-box-content p{
    color: #666;
    font-size:13px;
    line-height: 18px;
    letter-spacing: .3px;
}
.pdf-img-wrap img{
    height: 42px;
    width: 42px;
}

.how-works-section {
  padding: 30px 0px;
  background: #f8f9fc;
}

.how-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.how-title {
  font-size: 34px;
  font-weight: 700;
  color: #111;
}

.how-subtitle {
  color: #666;
  margin-top: 10px;
  margin-bottom: 20px;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}
.how-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px 20px 30px;
  border: 1px solid #eee;
  text-align: left;
  position: relative;
  transition: 0.4s;
}

.how-card:hover {
  border-color: #de1111;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.how-img {
  width: 100%;
  height: 160px;
  margin-bottom: 15px;
}

.how-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.how-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.how-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* ARROW BUTTON */
.arrow-btn {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 38px;
  height: 38px;
  background: #de1111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.arrow-btn:hover {
  background: #111;
  transform: scale(1.1);
}

.why-section {
  padding: 30px 0px;
  background: linear-gradient(135deg, #f8f9fc, #ffffff);
}

.why-container {
  max-width: 1200px;
  margin: auto;
}

.why-head {
  text-align: center;
  margin-bottom: 50px;
}

.why-head h2 {
  font-size: 34px;
  font-weight: 700;
}

.why-head p {
  color: #666;
  margin-top: 10px;
}

.why-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.why-grid-col2{
    display:grid;
    grid-template-columns: repeat(3,1fr);
    text-align: center;
}

/* CARD */
.why-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  border: 1px solid #eee;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: #de1111;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* LARGE CARD */
.why-card.large {
  padding: 40px;
  background: linear-gradient(135deg, #de1111, #7f1b07);
  color: #fff;
}

.why-card.large p {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
}

.why-icon {
  width: 50px;
  height: 50px;
  background: rgba(222,17,17,0.1);
  color: #de1111;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 15px;
  font-size: 18px;
}

.why-card.large .why-icon {
  background: rgba(255,255,255,0.2);
  color: #fff;
}
.why-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.why-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 14px;
  color: #555;
}

.image-card {
  position: relative;
  min-height: 320px;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-card .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

/* Content center */
.image-card .why-content {
  position: relative;
  text-align: center;
  color: #fff;
  max-width: 520px;
  padding: 20px;
}
.image-card .why-icon {
  margin: 0 auto 15px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.image-card h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.image-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
}
.image-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/*-------------------------------------------*/
/*------------------destop page-------------*/
/*-------------------------------------------*/
.windows-download-section {
  padding: 40px 0px;
  background: #f7f9fc;
}

.download-main-heading {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.download-sub-text {
  text-align: center;
  color: #666;
  margin-bottom: 20px;
}

/* GRID */
.download-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.download-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid #eee;
  overflow: hidden;
  transition: 0.3s;
  text-align: center;
}

.download-card:hover {
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.download-img {
  background: #f3f6fb;
  padding: 25px;
  border-bottom: 5px solid #e31b1b;
}

.download-img img {
  max-width: 180px;
}

.download-content {
  padding: 25px;
}

.download-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.download-content p {
  color: #666;
  margin-bottom: 20px;
}

.download-btn-group {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 6px;
  border: 1px solid #ccc;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: 0.3s;
}

.download-btn.primary {
  background: #e31b1b;
  color: #fff;
  border-color: #e31b1b;
}

.download-btn:hover {
  transform: translateY(-2px);
}

.download-btn.primary:hover {
  background: #e31b1b;
}

.system-section {
  padding: 40px 0px;
  background: #fff5f5;
}

.system-heading {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: #111;
}

.system-sub {
  text-align: center;
  color: #666;
  margin-bottom: 50px;
}
.system-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.system-left h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.system-left p {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.system-features {
  list-style: none;
  padding: 0;
}

.system-features li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.system-features i {
  color: #e31b1b;
}

.system-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.spec-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #f1dada;
  position: relative;
  transition: 0.3s;
}

.spec-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(227,27,27,0.1);
}
.spec-card.recommended {
  border: 2px solid #e31b1b;
}

.badge {
  position: absolute;
  top: -12px;
  right: 15px;
  background: #e31b1b;
  color: #fff;
  padding: 5px 12px;
  font-size: 12px;
  border-radius: 20px;
}
.spec-card h4 {
  margin-bottom: 15px;
  font-size: 18px;
}

.spec-card ul {
  list-style: none;
  padding: 0;
}

.spec-card li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #444;
}

.spec-card i {
  color: #e31b1b;
}
.support-section {
  padding: 40px 0px;
  background: #fff;
  text-align: center;
}

.support-heading {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.support-sub {
  color: #666;
  margin-bottom: 20px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.support-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 30px 20px;
  transition: 0.3s;
}

.support-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.support-icon {
  width: 70px;
  height: 70px;
  margin: auto;
  margin-bottom: 15px;
  border-radius: 50%;
  background: #ffe5e5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.support-icon i {
  font-size: 28px;
  color: #e31b1b;
}
.support-card h3 {
  font-size: 18px;
  margin-bottom: 15px;
}
.support-btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px solid #e31b1b;
  color: #e31b1b;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.support-btn:hover {
  background: #e31b1b;
  color: #fff;
}
.gst-cta-sec h1{
    font-size:34px;
}
/*--------------------------------------*/
/*------------remove bg ---------------*/
/*-------------------------------------*/
.gst-clean-sec{
  padding:160px 0px 50px;
  background:#ffffff;
}

/* GRID */
.gst-clean-wrap{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:60px;
  align-items:center;
}


.gst-clean-left h2{
  font-size:32px;
  margin-bottom:10px;
  font-weight:600;
}

.gst-clean-left p{
  color:#666;
  margin-bottom: 20px;
  font-size:15px;
}

.gst-preview-box{
  border-radius:12px;
  overflow:hidden;
  border:1px solid #eee;
}

.gst-preview-box img{
  width:100%;
  display:block;
}

.gst-clean-right{
  display:flex;
  justify-content:center;
}


.gst-upload-box{
  width:100%;
  border:1px solid #e31b1b;
  border-radius:14px;
  padding:35px 25px;
  text-align:center;
  position:relative;
  background:#fafafa;
  transition:0.3s;
}

.gst-upload-box:hover{
  box-shadow:0 15px 40px rgba(0,0,0,0.05);
}
.gst-upload-box i{
  font-size:36px;
  color:#e31b1b;
  margin-bottom:12px;
}
.gst-upload-box h4{
  font-size:18px;
  margin-bottom:5px;
}
.gst-upload-box p{
  font-size:13px;
  color:#777;
  margin-bottom:20px;
}
.upload-btn{
  background:#e31b1b;
  color:#fff;
  border:none;
  padding:10px 18px;
  border-radius:6px;
  cursor:pointer;
  font-size:14px;
}
.gst-upload-box input{
  position:absolute;
  inset:0;
  opacity:0;
  cursor:pointer;
}

.compressor-sec{
  display:flex;
  align-items:center;
  justify-content:center;
  background:#f8fafc;
  padding:160px 20px;
}

.compressor-wrap{
  width:100%;
  max-width:850px;
  text-align:center;
}

.compressor-title{
  font-size:40px;
  font-weight:600;
  margin-bottom:10px;
}

.compressor-subtitle{
  color:#666;
  margin-bottom:15px;
  font-size:15px;
}
.compressor-upload-box{
  position:relative;
  background:#fff;
  border:2px dashed #e31b1b;
  border-radius:16px;
  padding:45px 25px;
  cursor:pointer;
  transition:0.3s;
}
.compressor-upload-box:hover{
  border-color:#e31b1b;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.compressor-upload-box i{
  font-size:48px;
  color:#e31b1b;
  margin-bottom:15px;
}

.compressor-upload-box h3{
  font-size:18px;
  margin-bottom:5px;
}

.compressor-upload-box p{
  font-size:13px;
  color:#777;
  margin-bottom:18px;
}
.compress-btn{
  background:#e31b1b;
  color:#fff;
  border:none;
  padding:10px 20px;
  border-radius:6px;
  font-size:14px;
  cursor:pointer;
}
.compressor-upload-box input{
  position:absolute;
  inset:0;
  opacity:0;
  cursor:pointer;
}


.container{
max-width:1200px;
margin:auto;
}

.feature-box{

border-radius:10px;
margin-bottom:25px;
overflow:hidden;
border:2px solid #eee;
background:white;
}

.feature-icon{
width:120px;
display:flex;
align-items:center;
justify-content:center;
font-size:40px;
}

.feature-content{
padding: 10px 20px;
}

.feature-content h3{
margin:0 0 8px;
color:#1d3557;
font-size:20px;
}

.feature-content p{
margin:0;
color:#555;
line-height:1.6;
}

.feature-right{
width:120px;
display:flex;
align-items:center;
justify-content:center;
font-size:40px;
}

/* Box Colors */

.orange{
border-color:#f3a530;
padding: 0px 0px !important;
height: 100px;

}

.orange .feature-icon{
background:#fde8c5;
color:#f3a530;
height: 100px;
}

.green{
border-color:#a3b55d;
padding: 0px 0px !important;
height: 100px;
}

.green .feature-right{
background:#e8edcf;
color:#7f9330;
height: 100px;
}

.pink{
border-color:#f28ac3;
padding: 0px 0px !important;

}

.pink .feature-icon{
background:#f9d4e9;
color:#f28ac3;
height: 100px;
}

.brown{
border-color:#c79a5a;
padding: 0px 0px !important;

}

.brown .feature-right{
background:#efe1cd;
color:#a5742c;
height: 100px;
}

 
.section {
text-align: center;
padding: 70px 20px;
}

.section h1 {
font-size: 32px;
color: #1d3557;
margin-bottom: 30px;
}

/* perks container */
.perks {
display: flex;
justify-content: center;
align-items: center;
gap: 80px;
position: relative;
max-width: 1100px;
margin: auto;
}

/* connecting line */
.perks::before {
content: "";
position: absolute;
top: 60px;
left: 0;
right: 0;
height: 2px;
background: #333;
z-index: 0;
}

/* perk box */
.perk {
position: relative;
z-index: 2;
text-align: center;
}

/* circle */
.circle {
width: 180px;
height: 180px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 40px;
margin: auto;
border: 3px solid #ddd;
background: white;
}

/* colors */
.circle.ui {
background: #f2f3dd;
border-color: #c9cc7a;
color: #8a8e2b;
}

.circle.security {
background: #e7ebf7;
border-color: #8aa0e6;
color: #3d5ac4;
}

.circle.demo {
background: #f8e6ec;
border-color: #f39bb8;
color: #e91e63;
}

.perk h3 {
margin-top: 20px;
font-size: 20px;
color: #2c3e50;
}
.cmp-data ul, .cmp-data ol{
    padding: 0;
}

.cmp-perks-section {
  padding: 70px 8%;
  background: #f7f9fc;
}

.cmp-container {
  max-width: 1200px;
  margin: auto;
}

.cmp-section-title {
  font-size: 32px;
  margin-bottom: 10px;
  text-align: center;
}

.cmp-section-subtitle {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #555;
  text-align: center;
}

.cmp-perks-row {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  position: relative;
}

.cmp-perk-item {
  flex: 1;
  display: flex;
  gap: 15px;
  padding: 10px 20px;
  position: relative;
}

.cmp-perk-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: #ddd;
}

/* ICON */
.cmp-perk-icon {
  font-size: 26px;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 10px;
  min-width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* TEXT */
.cmp-perk-content h3 {
  margin: 0 0 6px;
  font-size: 18px;
  color: #1d3557;
}

.cmp-perk-content p {
  margin: 0;
  color: #555;
  line-height: 1.6;
}

/* quatation software */

.title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #1d3557;
  margin-bottom: 40px;
  line-height: 40px;
}

.quotation-container .box {
  border: 2px solid #2f6fdd;
  border-radius: 10px;
  background: #fff;
}

/* LEFT SIDE */
.left {
  width: 45%;
  padding: 20px;
  text-align: left;
}

.menu-item {
  padding: 18px 20px;
  border-bottom: 1px solid #ddd;
  font-size: 18px;
  color: #444;
}

.menu-item.active {
  background: #e9eef7;
  color: #1e63c6;
  font-weight: 600;
  border-radius: 6px;
}

/* RIGHT SIDE */
.right {
  width: 55%;
  padding: 40px;
  border-left: 2px solid #2f6fdd;
  text-align: left;
}

.right h2 {
  font-size: 28px;
  color: #1d3557;
  margin-bottom: 15px;
}

.right p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.illustration {
  margin-top: 30px;
}

.illustration img {
  width: 300px;
}

.section {
  max-width: 1200px;
  margin: auto;
}
.quation-section{
    
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.quation-section .box {
  padding: 50px 40px;
  text-align: center;
  border: 1px solid #e1e1e1;
  background: #f9fafb;
}

.quation-section .box:nth-child(2) {
  background: #eef2f6;
}

.quation-section .box:nth-child(3) {
  background: #f3f4f6;
}

.quation-section.box:nth-child(4) {
  background: #f9fafb;
}

.icon {
  width: 60px;
  height: 60px;
  margin: auto;
  margin-bottom: 20px;
  border: 1px solid #d8d8d8;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  font-size: 28px;
}

.quation-section h2 {
  font-size: 26px;
  color: #1e3a5f;
  margin-bottom: 15px;
}

.quotation-container{
    display: block !important;
}
.quotation-container .box{
    display: flex;
}
.banner {
background: linear-gradient(90deg, #2f7de1, #1e63c6);
color: white;
text-align: center;
padding: 90px 20px;
}

.banner h1 {
font-size: 42px;
font-weight: 700;
margin-bottom: 20px;
}

.banner p {
font-size: 18px;
margin-bottom: 35px;
opacity: 0.9;
}

.banner a {
background: #e6e6e6;
color: #1e63c6;
text-decoration: none;
padding: 14px 28px;
border-radius: 6px;
font-weight: 600;
display: inline-block;
}

.banner a:hover {
background: white;
}
.smart-sec-container2{
    display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}



/* qr code generator page */

.iconQr {
  width: 60px;
  height: 60px;
  margin: auto;
  margin-bottom: 20px;
  border: 1px solid #d8d8d8;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  font-size: 28px;
}
.benefitsQr .iconQr{
    font-size:30px;
    background:#f2f2f2;
    padding:12px;
    border-radius:10px;
}

.benefitsQr{
    max-width:1100px;
    margin:auto;
}

.benefitsQr h1{
    text-align:center;
    font-size:34px;
    margin-bottom:40px;
    color:#1e3a5f;
}

.benefitsQr-container{
    display:flex;
    flex-wrap:wrap;
    gap:25px;
}

.benefitQr-card{
    background:white;
    border:1px solid #e5e5e5;
    border-radius:12px;
    padding:20px;
    display:flex;
    gap:15px;
    align-items:flex-start;
    width:calc(50% - 13px);
    box-shadow:0 2px 5px rgba(0,0,0,0.05);
}



.benefitsQr .text h3{
    margin:0;
    font-size:18px;
    color:#1e3a5f;
}

.benefitsQr .text p{
    margin-top:6px;
    color:#555;
    line-height:1.5;
}


/** hsn -page */

.hsn-guide {
  padding: 10px 0px;
}

.hsn-guide .container {
  display: flex;
  align-items: center;
  gap: 60px;
}
.hsn-guide .left-content{
    flex:1 1 30%;
}
.hsn-guide .right-content{
    flex:1 1 70%;
}

/* Left Image */
.hsn-guide .left-image img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

/* Right Content */
.hsn-guide .right-content h2 {
  font-size: 32px;
  color: #1f3b5b;
  margin-bottom: 20px;
}

.hsn-guide .desc {
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Steps */
.hsn-guide .step {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}

.hsn-guide .number {
  background: #1ca12a;
  color: white;
  font-weight: bold;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.hsn-guide .step p {
  margin: 0;
  color: #444;
}

/* Footer Text */
.hsn-guide .footer-text {
  margin-top: 25px;
  color: #555;
  font-size: 16px;
}

.hsn-guide .footer-text strong {
  color: #1f3b5b;
}


.hsn-section {
  background: #eef1f5;
  text-align: center;
  padding: 80px 20px;
}

.hsn-section h1 {
  font-size: 40px;
  color: #1f3b5b;
  margin-bottom: 10px;
}

.hsn-section .subtitle {
  color: #1f3b5b;
  font-size: 18px;
  margin-bottom: 40px;
}



/* Search Box */
.hsn-section .search-box {
  width: 60%;
  max-width: 900px;
  margin: auto;
  display: flex;
  background: #fff;
  border: 2px solid #2a6fdb;
  border-radius: 50px;
  padding: 6px;
}

.hsn-section .search-box input {
  flex: 1;
  border: none;
  outline: none;
  padding: 15px 20px;
  font-size: 16px;
  border-radius: 50px;
}

.hsn-section .search-box button {
  background: #2a6fdb;
  border: none;
  color: white;
  padding: 14px 40px;
  font-size: 16px;
  border-radius: 40px;
  cursor: pointer;
  transition: 0.3s;
}

.hsn-section .search-box button:hover {
  background: #1f5ec0;
}

/* contact us page */

.s-page-title{
    padding:40px 0px;
    background:#fff;
}


/* contact us */

.contact-page {
  padding: 60px 0;
  background: #f8fafc;
}
.contactUs-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}


.contact-box {
  background: #fff;
  padding: 30px 20px;
  border: 1px solid #C62828;
  border-radius: 16px;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}


.contact-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.contact-box i {
  font-size: 28px;
  color: #c62828;
  background: #ffecec;
  padding: 14px;
  border-radius: 50%;
  margin-bottom: 15px;
  display: inline-block;
}

.contact-box h5 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #111;
}

.contact-box p {
  font-size: 14px;
  color: #555;
  margin-bottom: 5px;
}

.contact-form-section {
  padding: 50px 15px;
  text-align: center;
  background: #f8fafc;
}

.contact-form-section h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.contact-form-section p {
  font-size: 14px;
  color: #666;
  margin-bottom: 30px;
}

.contact-form-section form {
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.contact-form-section input,
.contact-form-section textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
}

.contact-form-section textarea {
  min-height: 120px;
  resize: none;
}

.contact-form-section .form-submit {
  width: 100%;
  text-align: center;
}

.contact-form-section .form-submit button {
  background: #c62828;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  text-transform: uppercase;
}

.contact-form-section .form-submit button:hover {
  background: #a31616;
}