
:root{
  --accent: red; /* brand red */
  --text: #33333a;
  --muted: #6b7280;
  --card-bg: #ffffff;
  --surface: #fafafa;
}
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin-top: 70px; /* header height के हिसाब से adjust */
}

/* ================= HEADER ================= */
/* Header container */
header {
  width: 100%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px;
  position: fixed;
  top: 30px;           /* <-- Top bar ki height jitni, neeche shift */
  left: 0;
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}


/* Logo */
.logo img {
  height: 50px;
}

/* Navigation default (desktop) */
nav {
  display: flex;
  align-items: center;
  gap: 15px;
}

nav a {
  color: rgb(8, 8, 8);
  text-decoration: none;
  padding: 8px 10px;
  transition: all 0.3s ease;
  position: relative;
}

/* Active effect with underline */
nav a.active {
  color: #042e5b; /* Blue text */
  font-weight: bold;
}

nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px; /* Space below text */
  width: 100%;
  height: 3px;
  background: #007BFF; /* Blue underline */
  border-radius: 2px;
}

/* Dropdown */
.dropdown {
  position: relative;
}
.dropdown-btn {
  color: rgb(11, 11, 11);
  cursor: pointer;
  padding: 8px 10px;
  display: inline-block;
}
.dropdown-content {
  display: none;
  position: absolute;
  background: white;
  top: 100%;
  left: 0;
  min-width: 180px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
}
.dropdown-content a {
  display: block;
  padding: 10px;
  color: #08203a;
  text-decoration: none;
}
.dropdown-content a:hover {
  background: #f1f1f1;
}
.dropdown:hover .dropdown-content {
  display: block;
}

/* Contact button */
.contact-btn {
  background: #e70404;
  color: white;
  border-radius: 4px;
}
.contact-btn:hover {
  background: #e67700;
}

/* Login button */
#loginBtn {
  background: #4caf50;
  color: white;
  padding: 8px 14px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
#loginBtn:hover {
  background: #3f9443;
}

/* Menu toggle (mobile) */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: rgb(12, 12, 12);
  transition: 0.3s;
}

/* Mobile styles */
@media (max-width: 768px) {
  nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: white;
    padding: 10px 0;
  }header {
  
  top: 80px;           /* <-- Top bar ki height jitni, neeche shift */
  
}


  nav.show {
    display: flex;
  }
  .dropdown-content {
    position: static;
    box-shadow: none;
    background: #0f3a64;
  }
  .dropdown-content a {
    color: white;
  }
  .dropdown-content a:hover {
    background: #08203a;
  }
  .menu-toggle {
    display: flex;
  }
  
}


/* topbar index start */
.topcontainer {
  background-color: rgb(70, 128, 70);;
  height: 50px;
  overflow: hidden;
  position: relative;   /* normal flow me hai */
top: 30px;

}


.scroll-text {
  margin-top: 10px;
  position: absolute;
  white-space: nowrap;
  color: #f5f5f5;
  font-family: 'Times New Roman', Times, serif;
  font-weight: bolder;
  font-size: 30px;
  animation: scroll-left 17s linear infinite;
}

@keyframes scroll-left {
  from {
    left: 100%;
  }

  to {
    left: -100%;
  }
}

/* topbar index end */

/* hero start */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 10%;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 4rem;
  line-height: 1.3;
  color: #1d3557;
}

.hero-content h1 .highlight {
  color: #e63946;
}

.hero-content p {
  margin: 20px 0;
  font-size: 1.1rem;
  color: #444;
}

.btn {
  background-color: #e63946;
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  background-color: #d62839;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column-reverse;
    text-align: center;
    padding: 40px 5%;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }
}

/* hero end */

/* card portion start */
.card-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
  background-color: #08203a;
}

.card {
  width: 325px;
  background-color: #f0f0f0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  margin: 20px;
}

.card img {
  width: 100%;
  height: auto;
}

.card-content {
  padding: 16px;
}

.card-content h1 {
  font-size: 28px;
  margin-bottom: 8px;
}

.card-content p {
  font-size: 15px;
  color: #666;
  line-height: 1.3;
}

.card-content .card-btn {
  display: inline-block;
  padding: 8px 19px;
  background-color: #dd1919;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 16px;
  color: white;

}

/* card portion end */

/* price portion start */
.price h1 {
  text-align: center;
  font-size: 35px;
  font-family: 'Times New Roman', Times, serif;


}

.price img {
  margin-left: 650px;
  width: 200px;
  height: auto;

}

/* price portion end */

/* footer section start */
.footer {
  margin-top: 30px;
  background-color: #05132b;
  color: #f1f1f1;
  padding: 60px 40px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-section h2 {
  font-size: 22px;
  color: #f4f8fd;
}

.footer-section h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #ffffff;
}

.footer-section p {
  font-size: 14px;
  margin: 10px 0 20px;
  color: #cccccc;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  text-decoration: none;
  color: #cccccc;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #ffffff;
}

.social-icons a {
  color: #f1f1f1;
  margin-right: 15px;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #4f9bff;
}

/* Popup background */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

/* Popup content box */
.modal-content {
  background-color: #fff;
  margin: auto;
  padding: 20px;
  border-radius: 8px;
  width: 300px;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Close button */
.close {
  color: #aaa;
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  cursor: pointer;
}

.close:hover {
  color: black;
}


/* General */
.pricing-section {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f8fafc;
  color: #333;
  padding: 40px 20px;
  text-align: center;
}

.pricing-title {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.highlight-text {
  color: #1ecc4f;
}


/* Country Badge */
.country-badge {
  background: #023953;
  color: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  width: fit-content;
  margin: 0 auto 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.country-title {
  margin: 0;
  font-size: 1.3rem;
}

.country-subtitle {
  font-size: 0.9rem;
  margin-top: 5px;
  opacity: 0.9;
}

/* Pricing Cards */
.text1 {
  text-align: justify;
  font-size: 15px;
  font-family: 'Times New Roman', Times, serif;

}

.text2 {
  font-size: 19px;
  font-weight: bold;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.pricing-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  width: 250px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.plan-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.plan-price {
  font-size: 2rem;
  font-weight: bold;
  color: #ef4444;
  margin: 10px 0;
}

.plan-gst {
  color: #555;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.plan-features {
  list-style: none;
  padding: 0;
}

.feature-item {
  margin: 8px 0;
  font-size: 0.95rem;
}

/* Most Popular */
.popular-plan {
  border: 2px solid #023953;
}

.popular-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #053d57;
  color: white;
  padding: 5px 15px;
  font-size: 0.8rem;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Button */
.book-demo-btn {
  margin-top: 40px;
  padding: 15px 40px;
  background: #023953;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.book-demo-btn:hover {
  background: #1ecc4f;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }
}

/* Home Banner  style start*/

.slider {
  position: relative;
  width: 100%;
  height: 89vh;
  overflow: hidden;
  margin-top: 30px;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide:nth-child(4) {
  background-image: url('/Images/bannerimg.jpg');
}

.slide:nth-child(3) {
  background-image: url('/Images/banner2.jpg');
}

.slide:nth-child(1) {
  background-image: url('/Images/blurimng.jpg');
}
/* 2nd Slide Styles - Premium */
.overlay-webdev {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px;
  min-height: 100vh;
  background: linear-gradient(-45deg, #001f34, #4e4376, #1c1c1c, #ff6f61);
  background-size: 400% 400%;
  animation: gradientBG 10s ease infinite;
  position: relative;
  overflow: hidden;
}

/* Particles effect */
.overlay-webdev::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('Images/web-back1.jpg');
  opacity: 0.15;
}

/* Glass Card */
.webdev-left {
  flex: 1;
  max-width: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 40px;
  color: #fff;
  z-index: 1;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.webdev-title {
  font-size: 52px;
  font-weight: 900;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(252, 2, 2, 0.7);
}

.webdev-title span {
  color: #f80505;
}

.webdev-desc {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.btn-webdev {
  display: inline-block;
  padding: 14px 30px;
  background: linear-gradient(90deg, #d52a08, #c22004);
  color: #fbf8f8;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.4s ease;
  box-shadow: 0 0 15px rgba(255, 204, 112, 0.8);
}

.btn-webdev:hover {
  transform: scale(1.08);
  box-shadow: 0 0 25px rgba(255, 204, 112, 1);
}

/* Right Image */
.webdev-right {
  flex: 1;
  text-align: center;
  z-index: 1;
}

.webdev-right img {
  max-width: 90%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: float 19s ease-in-out infinite;
  transition: transform 0.4s ease;
}

.webdev-right img:hover {
  transform: scale(1.05);
}

/* Animations */
@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}


   
.overlay-1 {
  height: 100%;
  width: 100%;
  font-size: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  text-align: center;
  color: white;
}

.overlay-1 h1 {
  font-size: 75px;
  padding: 30px;
  color: red;
  margin-top: 8px;
}

.overlay-1 h3 {
  font-size: 65px;
  padding: 30px;
  color: white;
  margin-top: -50px;
}

.overlay-1 p {
  color: white;
  font-size: 20px;
  margin: 5px 100px;
}

.banner-content {
  width: 85%;
  height: auto;
  font-size: 38px;
}

.btnji {
  margin-top: 50px;
  padding: 15px 40px;
  background-color: #1ecc4f;
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  border: none;
}

.btnji:hover {
  background-color: red;
}

.overlay-erp-full {
  width: 100%;
  background: white;
  opacity: 0.8;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.overlay-erp-full h1 {
  font-size: 77px;
  margin-bottom: 10px;
}

.overlay-erp-full .blue-text {
  color: rgb(70, 128, 70);
  /* Green color */
  font-weight: bold;
  /* text-shadow: 0 0 10px #31bf65; */
}

.overlay-erp-full h2 {
  font-size: 47px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #f01414;
  /* Bright red */
  text-shadow: 0 0 10px rgba(252, 26, 14, 0.7);
}

.overlay-erp-full .subtext {
  font-size: 37px;
  color: #051428;
  margin-top: 10px;
  font-weight: bold;
}

.overlay-erp-full .desc {
  font-size: 26px;
  color: #051428;
  margin-bottom: 30px;
}

.certification-logos {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 30px;
}

.certification-logos img {
  height: 50px;
}

.services {
  display: flex;
  gap: 50px;
  justify-content: center;
  margin-bottom: 30px;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-item img {
  height: 60px;
  margin-bottom: 10px;
}

.service-item p {
  font-weight: bold;
  color: #051428;
}

.erp-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-erp {
  padding: 12px 25px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn-erp.green {
  background-color: #0ef729;
}

.btn-erp.green:hover {
  background-color: #00906b;
}

.btn-erp.blue {
  background-color: #1e2c57;
}

.btn-erp.blue:hover {
  background-color: #0f1a3c;
}
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: white;
  border: none;
  padding: 12px 18px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 100;
}

.nav-btn:hover {
  background: rgba(0,0,0,0.7);
}

#prevBtn { left: 20px; }
#nextBtn { right: 20px; }

.slide {
  display: none;
}

.slide.active {
  display: block;
  animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}



/* Home Banner  style end*/

/* ===================Home Banner Media Query Start==================================== */

/* ======= MOBILE VIEW (max-width: 600px) ======= */
@media screen and (max-width: 600px) {

  /* Common Background Fix */
  .slide {
    position: relative;
    height: auto;
    min-height: 100vh;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
  }

  /* Dark Overlay */
  .slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
  }

  /* Content Above Overlay */
  .slide > * {
    position: relative;
    z-index: 2;
  }

  /* ===== 1st Slide (ERP) ===== */
  .overlay-erp-full {
    padding: 15px;
    height: auto;
  }

  .overlay-erp-full h1 {
    font-size: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-align: center;
  }

  .overlay-erp-full h1 img {
    width: 70px;
  }

  .overlay-erp-full h2 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .overlay-erp-full .subtext {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .overlay-erp-full .desc {
    font-size: 12px;
    margin-bottom: 15px;
  }

  .certification-logos {
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }

  .certification-logos img {
    height: 35px;
  }

  .services {
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }

  .service-item img {
    height: 40px;
  }

  /* ===== 2nd Slide (Web Development) ===== */
  .overlay-webdev {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .webdev-left {
    max-width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
  }

  .webdev-title {
    font-size: 22px;
  }

  .webdev-desc {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .webdev-right {
    margin-top: 15px;
  }

  .webdev-right img {
    max-width: 90%;
  }

  /* ===== 3rd & 4th Slide (Refer & Earn / Accounting) ===== */
  .overlay-1 {
    padding: 15px;
    text-align: center;
  }

  .overlay-1 h1 {
    font-size: 34px;
    margin: 10px 0;
  }

  .overlay-1 h3 {
    font-size: 25px;
    margin: 5px 0;
  }

  .overlay-1 p {
    font-size: 18px;
    margin: 5px 10px;
  }

  .banner-content {
    width: 95%;
    font-size: 14px;
    margin: auto;
  }

  .btnji {
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 14px;
  }
  .slide:nth-child(4) {
  background-image: url('/Images/bannerimg.jpg');
  height: 300px;
}

.slide:nth-child(3) {
  background-image: url('/Images/banner2.jpg');
   height: 300px;
}

}

/* ======= TABLET VIEW (601px - 1024px) ======= */
@media screen and (min-width: 601px) and (max-width: 1024px) {

  /* Common Background Fix */
  .slide {
    position: relative;
    min-height: 100vh;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
  }

  /* Dark Overlay */
  .slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
  }

  /* Content Above Overlay */
  .slide > * {
    position: relative;
    z-index: 2;
  }

  /* ERP */
  .overlay-erp-full {
    padding: 20px;
  }

  .overlay-erp-full h1 {
    font-size: 26px;
    gap: 8px;
  }

  .overlay-erp-full h1 img {
    width: 80px;
  }

  .overlay-erp-full h2 {
    font-size: 18px;
  }

  .overlay-erp-full .subtext {
    font-size: 15px;
  }

  .overlay-erp-full .desc {
    font-size: 13px;
  }

  /* Web Development */
  .overlay-webdev {
    padding: 30px;
    flex-direction: column;
    text-align: center;
  }

  .webdev-title {
    font-size: 26px;
  }

  .webdev-desc {
    font-size: 16px;
  }

  .webdev-right img {
    max-width: 75%;
  }

  /* Refer & Earn / Accounting */
  .overlay-1 h1 {
    font-size: 28px;
  }

  .overlay-1 h3 {
    font-size: 20px;
  }

  .overlay-1 p {
    font-size: 15px;
  }
}



/* ===================Home Banner Media Query End==================================== */


/* retail software start */
.circle-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  /* 4 columns */
  gap: 20px;
  justify-items: center;
    margin-top: 50px;
}
.circle-item {
  text-align: center;
}
.circle-item p {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
}
.circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background-color: #023953; /* Hover color ko default bana diya */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.circle img {
  width: 90px;
  height: 90px;
  filter: brightness(0) invert(1); /* White icon effect by default */
  transition: transform 0.3s ease;
}

/* Hover par sirf thoda zoom karein */
.circle:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.circle:hover img {
  transform: scale(1.2);
}



.retail {
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: #333;
  position: relative;
  padding-bottom: 10px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
}

/* Gradient for "Softwares" part */
.highlight-text1 {
  color: #1ecc4f;
  font-weight: bold;

}

/* Decorative underline */
.retail::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20%;
  height: 4px;
  background: linear-gradient(90deg, #d72a07, #022244);
  border-radius: 2px;

}
/* Dropdown panel styling */

/* first pharmacy dropdown design */
.dropdown-panel {
  display: flex;
  gap: 20px;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 170px;
  height: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10;
}

.dropdown-left {
  flex: 1;
}

.dropdown-left h3 {
  color: #023953;
  margin-bottom: 10px;
  font-size: 12px;
}

.dropdown-left li {
  font-size: 10px;
  color: #555;
  line-height: 1.5;
 text-align: justify;

}

.dropdown-left .card-btn {
  display: inline-block;
  padding: 4px 9px;
  background-color: #dd1919;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 3px;
  color: white;
  font-size: 12px;

}
/* Show dropdown on hover */
.circle-item {
  position: relative;
}

.circle-item:hover .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
/* 📱 MOBILE VIEW: 0-600px */
@media screen and (max-width: 600px) {
  .circle-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .circle-container1 {
    grid-template-columns: repeat(2, 1fr);
  }

  .dropdown-panel {
    width: 90%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
  }

  .dropdown-left h3 {
    font-size: 11px;
  }

  .dropdown-left li {
    font-size: 9px;
  }

  .dropdown-left .card-btn {
    font-size: 10px;
    padding: 3px 6px;
  }
}

@media screen and (max-width: 600px) {
  .circle-container1 {
    grid-template-columns: repeat(2, 1fr) !important;
   
  }
}

/* 📱 TABLET VIEW: 601px - 1024px */
@media screen and (min-width: 601px) and (max-width: 1024px) {
  .circle-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .circle-container1 {
    grid-template-columns: repeat(3, 1fr)  !important;
  }
}

/* 💻 LAPTOP VIEW: 1025px - 1440px */
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .circle-container {
    grid-template-columns: repeat(4, 1fr);
  }

  .circle-container1 {
    grid-template-columns: repeat(4, 1fr)  !important;
  }
}

/* 🖥️ PROJECTOR / BIG SCREEN: 1441px+ */
@media screen and (min-width: 1441px) {
  .circle-container {
    grid-template-columns: repeat(6, 1fr);
  }

  .circle-container1 {
    grid-template-columns: repeat(8, 1fr)  !important;
  }
}

/* ❌ DISABLE HOVER ON MOBILE DEVICES (TOUCH) */
@media (hover: none) {
  .circle-item:hover .dropdown-panel {
    display: none;
    visibility: hidden;
  }
}



/* retail software end */

/* product design start */
.products {
  margin-top: 90px;
  text-align: center;
}

/* product design  end */

/* wholesales design start */
.whole {
  margin-top: 40px;
}

.circle-container1 {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  /* 4 columns */
  gap: 20px;
  justify-items: center;
  margin-top: 50px;

}

/* mobile application design start */
.circle-container13 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 4 columns */
  gap: 20px;
  justify-items: center;
  margin-top: 50px;
}

/* why erp choose for business css */
.slider-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 50px 30px;
  background-color: #08203a;
  color: #fff;
  margin-top: 20px;
}

.slider-text {
  flex: 1 1 400px;
  padding: 30px;
  background-color: #eef4f5;
  color: #333;
  border-radius: 8px;
  margin: 10px;
}

.slider-text h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 15px;
  color: rgb(240, 38, 38);
  font-style: italic;
}

.slider-text p {
  font-size: 16px;
  line-height: 1.6;
}

.slider-image {
  flex: 1 1 400px;
  margin: 10px;
  text-align: center;
  border-color: white;
}

.slider-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(246, 244, 244, 0.904);
}


/* ===== MOBILE VIEW: max-width 600px ===== */
@media screen and (max-width: 600px) {
  .slider-section {
    flex-direction: column; /* Text upar, image neeche */
    padding: 30px 15px;
  }

  .slider-text {
    padding: 20px;
    margin: 10px 0;
  }

  .slider-text h2 {
    font-size: 24px; /* Smaller heading for mobile */
  }

  .slider-text p {
    font-size: 14px;
    line-height: 1.5;
  }

  .slider-image {
    margin: 15px 0;
  }

  .slider-image img {
    width: 90%;
    max-width: 300px; /* Mobile me image chhoti */
  }
}

/* ===== TABLET VIEW: 601px - 1024px ===== */
@media screen and (min-width: 601px) and (max-width: 1024px) {
  .slider-section {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 40px 20px;
  }

  .slider-text, .slider-image {
    flex: 1 1 45%; /* Side by side with wrapping */
    margin: 10px;
  }

  .slider-text h2 {
    font-size: 28px;
  }

  .slider-text p {
    font-size: 15px;
  }

  .slider-image img {
    width: 100%;
    max-width: 400px;
  }
}

/* ===== DESKTOP VIEW: 1025px+ ===== */
@media screen and (min-width: 1025px) {
  .slider-section {
    flex-direction: row;
    padding: 50px 30px;
  }

  .slider-text, .slider-image {
    flex: 1 1 400px;
    margin: 10px;
  }

  .slider-text h2 {
    font-size: 32px;
  }

  .slider-text p {
    font-size: 16px;
  }

  .slider-image img {
    width: 100%;
    max-width: 500px;
  }
}



/* Testimonial start */
.testimonial-section {
  text-align: center;
  padding: 50px 20px;
  font-family: Arial, sans-serif;
  background: #fff;
}

/* Heading */
.testimonial-heading {
  font-size: 36px;
  color: #1a1a1a;
  margin-bottom: 40px;
  font-weight: bold;
}

/* Horizontal Scrollable Container */
.testimonial-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding: 20px;
  scroll-behavior: smooth;

  /* HIDE SCROLLBAR */
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
}

.testimonial-container::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

/* Testimonial Card */
.testimonial-card {
  flex: 0 0 33.33%;
  scroll-snap-align: center;
  background: #f9f9f9;
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, background 0.3s;
}

.testimonial-card:hover {
  transform: scale(1.03);
  background-color: #567fc4;
}
.fa{
  color: rgb(238, 238, 47);
}
/* Image Style */
.client-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

/* Text */
.testimonial-card h3 {
  margin: 15px 0 10px;
  font-size: 20px;
  color: #1a1a1a;
}


.testimonial-card p {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

/* Dots */
.testimonial-dots {
  margin-top: 25px;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 5px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background-color: #1a1a1a;
}


/* ✅ Responsive Testimonials */

/* Tablet View (max-width: 1024px) */
@media screen and (max-width: 1024px) {
  .testimonial-card {
    flex: 0 0 50%;   /* 2 cards ek row me */
  }
  .testimonial-card h3 {
    font-size: 18px;
  }
  .testimonial-card p {
    font-size: 15px;
  }
  .client-img {
    width: 80px;
    height: 80px;
  }
}

/* Mobile Landscape (max-width: 768px) */
@media screen and (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 70%;   /* 1.5 card dikhai dega, swipe karna padega */
  }
  .testimonial-card h3 {
    font-size: 17px;
  }
  .testimonial-card p {
    font-size: 14px;
  }
  .client-img {
    width: 70px;
    height: 70px;
  }
}

/* Mobile Portrait (max-width: 480px) */
@media screen and (max-width: 480px) {
  .testimonial-card {
    flex: 0 0 90%;   /* sirf 1 card proper full view me */
    padding: 20px 15px;
  }
  .testimonial-card h3 {
    font-size: 16px;
  }
  .testimonial-card p {
    font-size: 13px;
  }
  .client-img {
    width: 60px;
    height: 60px;
  }
  .testimonial-heading {
    font-size: 26px;
  }
}

/* testimonial end */


/* swastik associate design start */

.section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 20px 0;
  padding: 20px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.section img {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 5px;
}

.section .text {
  padding: 0 20px;
}

.section h2 {
  margin: 0 0 10px;
  font-size: 20px;
  color: #333;
  font-style: italic;
}

.section p {
  margin: 0;
  color: #555;
  line-height: 1.5;
  font-family: 'Times New Roman', Times, serif;
}

.section.right {
  flex-direction: row-reverse;
}

/* ===== MOBILE VIEW: max-width 600px ===== */
@media screen and (max-width: 600px) {
  .section {
    flex-direction: column !important; /* Images and text stack vertically */
    align-items: center;
    text-align: center;
    padding: 15px;
    margin: 15px 0;
  }

  .section img {
    width: 100%;  /* Full width image */
    max-width: 300px; /* Max width so it doesn't stretch too much */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 15px;
  }

  .section .text {
    padding: 0; /* Remove extra padding on sides */
  }

  .section h2 {
    font-size: 18px;
  }

  .section p {
    font-size: 14px;
    line-height: 1.6;
  }

  .section.right {
    flex-direction: column !important; /* Ensure right sections stack properly */
  }
}

/* ===== TABLET VIEW: 601px - 1024px ===== */
@media screen and (min-width: 601px) and (max-width: 1024px) {
  .section {
    flex-direction: row; /* Keep side by side */
    flex-wrap: wrap;     /* Wrap if needed */
    padding: 20px;
    margin: 20px 0;
  }

  .section.right {
    flex-direction: row-reverse;
  }

  .section img {
    width: 150px; /* Slightly smaller image for tablet */
    height: auto;
    margin-bottom: 0;
  }

  .section .text {
    padding: 0 15px;
  }

  .section h2 {
    font-size: 20px;
  }

  .section p {
    font-size: 15px;
    line-height: 1.5;
  }
}

/* ===== DESKTOP VIEW: 1025px+ ===== */
@media screen and (min-width: 1025px) {
  .section img {
    width: 200px;
    height: 150px;
  }

  .section h2 {
    font-size: 20px;
  }

  .section p {
    font-size: 16px;
    line-height: 1.5;
  }
}



/* counter design start */
.about-us {
  padding: 4rem 2rem;
  background-color: #2f2f2f;
  margin-top: -150px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;

}

.card1 {
  background-color: #000;
  color: #fff;
  padding: 10px;
  width: 150px;
  height: 230px;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: box-shadow 0.3s ease;
}

.card1:hover {
  box-shadow: 0 0 17px #ec4141;
}

.card1 .icon12 img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.card1 h2 {
  font-size: 2.3rem;
  margin: 10px 0;
  color: #ec4141;
}

.card1 p {
  font-size: 1.1rem;
  margin: 10px 0;
}

/* counter part css start */
.counters {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  padding: 50px 0;
  font-family: Arial, sans-serif;
  background: #08203a;
}

.counter-box1 {
  text-align: center;
}

.counter {
  font-size: 40px;
  color: white;
  font-weight: bold;
}

.counter+p {
  margin-top: 10px;
  font-size: 18px;
  color: white;
}
/* ===== MOBILE VIEW: max-width 600px ===== */
@media screen and (max-width: 600px) {
  .counters {
    flex-direction: column; /* Counters stack vertically */
    align-items: center;
    gap: 20px; /* thoda kam gap for mobile */
    padding: 30px 10px;
  }

  .counter {
    font-size: 30px; /* smaller font for mobile */
  }

  .counter+p {
    font-size: 16px;
  }
}

/* ===== TABLET VIEW: 601px - 1024px ===== */
@media screen and (min-width: 601px) and (max-width: 1024px) {
  .counters {
    flex-wrap: wrap; /* wrap if screen not wide enough */
    justify-content: space-around;
    gap: 25px;
    padding: 40px 20px;
  }

  .counter {
    font-size: 35px;
  }

  .counter+p {
    font-size: 17px;
  }
}

/* ===== DESKTOP VIEW: 1025px+ ===== */
@media screen and (min-width: 1025px) {
  .counters {
    flex-wrap: nowrap; /* original layout */
    justify-content: space-around;
    padding: 50px 0;
    gap: 30px;
  }

  .counter {
    font-size: 40px;
  }

  .counter+p {
    font-size: 18px;
  }
}


/* CONTACT PAGE DESIGN START CSS */
.contact-hero {
  background-image: url('/Images/contact-pagebanner1.jpg'); /* Replace with your image */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* 👈 Fixed image */
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(255, 14, 14);
  text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
  font-size: 48px;
  font-weight: bold;
  margin-top: 5px;
}


.contact-container {
  max-width: 1300px;
  margin: 40px auto 0 auto;  /* 👈 yeh line me top se 40px space hai */
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  background: rgb(3, 38, 86);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}



.contact-block {
  padding: 20px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.07);
  transition: transform 0.3s ease;
}

.contact-block:hover {
  transform: translateY(-4px);
}

.contact-block h2 {
  margin-bottom: 20px;
  color: #2c3e50;
  font-family: 'Times New Roman', Times, serif;
  font-size: 20px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 10px;
  background: #f9f9f9;
}

.contact-form textarea {
  resize: vertical;
  height: 3px;
}

.contact-form button {
  padding: 12px;
  background: #007bff;
  color: #fff;
  border: none;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #0056b3;
}

.contact-details p {
  margin: 10px 0;
  font-size: 16px;
  color: #333;
}

.contact-details strong {
  color: #08203a;
}

/* Responsive */
/* 📱 Mobile View: max 480px */
@media (max-width: 480px) {
  .contact-hero {
    font-size: 24px;
    height: 200px;
  }

  .contact-container {
    padding: 15px;
    gap: 15px;
  }

  .contact-block h2 {
    font-size: 20px;
  }
}

/* 📲 Tablet View: 481px to 768px */
@media (min-width: 481px) and (max-width: 768px) {
  .contact-hero {
    font-size: 30px;
    height: 250px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 20px;
  }

  .contact-block h2 {
    font-size: 22px;
  }
}

/* 💻 Laptop/PC View: 769px to 1200px */
@media (min-width: 769px) and (max-width: 1200px) {
  .contact-hero {
    font-size: 40px;
    height: 280px;
  }

  .contact-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .contact-form,
  .contact-details,
  .contact-map {
    grid-column: span 1;
  }
}

/* 🖥️ Projector or Large Screen: 1201px and above */
@media (min-width: 1201px) {
  .contact-hero {
    font-size: 48px;
    height: 300px;
  }

  .contact-container {
    max-width: 1300px;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .contact-form,
  .contact-details,
  .contact-map {
    grid-column: span 1;
  }
}



/* window popup design start */
.floating-icons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.floating-icons .icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background-color 0.3s;
}

.floating-icons .icon img {
  width: 37px;
  height: 37px;
}

.floating-icons .icon:hover {
  transform: scale(1.1);
  background-color: #f0f0f0;
}

/* 📱 Mobile Devices: max 480px */
@media (max-width: 480px) {
  .floating-icons {
    bottom: 15px;
    right: 15px;
    gap: 12px;
  }

  .floating-icons .icon {
    width: 45px;
    height: 45px;
  }

  .floating-icons .icon img {
    width: 28px;
    height: 28px;
  }
}

/* 📲 Tablets: 481px to 768px */
@media (min-width: 481px) and (max-width: 768px) {
  .floating-icons {
    bottom: 18px;
    right: 18px;
    gap: 14px;
  }

  .floating-icons .icon {
    width: 50px;
    height: 50px;
  }

  .floating-icons .icon img {
    width: 32px;
    height: 32px;
  }
}

/* 💻 Laptops / Small Desktops: 769px to 1200px */
@media (min-width: 769px) and (max-width: 1200px) {
  .floating-icons {
    bottom: 20px;
    right: 20px;
    gap: 15px;
  }

  .floating-icons .icon {
    width: 55px;
    height: 55px;
  }

  .floating-icons .icon img {
    width: 37px;
    height: 37px;
  }
}

/* 🖥️ Large Screens / Projector: 1201px and above */
@media (min-width: 1201px) {
  .floating-icons {
    bottom: 30px;
    right: 30px;
    gap: 18px;
  }

  .floating-icons .icon {
    width: 65px;
    height: 65px;
  }

  .floating-icons .icon img {
    width: 42px;
    height: 42px;
  }
}

/* ABOUT PAGE DESIGN CSS START */


/* Container helper (if you already have .container, this matches roughly) */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Section wrapper */
.white-about {
  background: linear-gradient(180deg, #ffffff 0%, #fffdfa 60%);
  padding: 60px 0;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
}

/* inner layout */
.white-about__inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Image column */
.white-about__image {
  flex: 1 1 48%;
  min-width: 260px;
  padding: 12px;
}
.white-about__image img{
  width: 450px;
  height: 400px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(6, 24, 38, 0.08);
  transition: transform .6s cubic-bezier(.2,.9,.2,1), box-shadow .3s;
  transform-origin: center;
}
.white-about__image img:hover{
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 28px 60px rgba(6,24,38,0.12);
}

/* Content column */
.white-about__content{
  flex: 1 1 52%;
  min-width: 300px;
  padding: 6px 6px;
}

/* small kicker/title */
.kicker{
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 13px;
  display: inline-block;
  margin-bottom: 10px;
  position: relative;
}
.kicker::after{
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  background: linear-gradient(90deg,var(--accent), #f1b600 80%);
  margin-top: 8px;
  border-radius: 2px;
}

/* Main heading */
.heading{
  font-size: 34px;
  line-height: 1.05;
  margin: 12px 0 18px;
  color: #1f2937;
  font-weight: 700;
}
.heading .accent{
  color: var(--accent);
  display: inline-block;
}

/* Lead paragraph & text */
.lead{
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 14px;
  font-weight: 400;
}
.text{
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 22px;
}
.highlight {

  color: #08203a;           /* text color */
  font-weight: bold;        /* bold text */
  padding: 2px 5px;         /* little spacing */
  border-radius: 4px;       /* rounded edges */
}

/* Actions */
.actions{
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

/* Primary button */
.btn-primary{
  display: inline-block;
  background: var(--accent);
  color: #0b0b0b;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(241,197,24,0.18);
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn-primary:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(241,197,24,0.22);
}

/* Outline button */
.btn-outline{
  display: inline-block;
  padding: 10px 18px;
  border-radius: 8px;
  color: var(--text);
  text-decoration: none;
  border: 1px solid #e6e8ea;
  background: transparent;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 900px){
  .white-about__inner {
    gap: 20px;
    flex-direction: column;
    align-items: stretch;
  }
  .white-about__image, .white-about__content {
    flex: 1 1 100%;
  }
   .white-about__image img{
  width: 370px;
  height: 370px;
}
  .heading {
    font-size: 28px;
  }
  .container { width: 94%; }
  .white-about { padding: 40px 0; }
}

/* Small devices */
@media (max-width: 480px){
  .heading { font-size: 22px; }
  .lead, .text { font-size: 14px; }
  .btn-primary { padding: 10px 16px; font-size: 14px; }
  .white-about__image img{
  width: 320px;
  height: 320px;
}

}

.container-about {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.card-about {
  width: 290px;
  color: white;
  padding: 20px;
  position: relative;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-about:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.card-about .number {
  background: white;
  color: red;
  font-weight: bold;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 18px;
  position: absolute;
  top: -25px;
  left: 20px;
  border: 3px solid white;
}

.card-about h2 {
  margin-top: 40px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.card-about p {
  font-size: 14px;
  margin-top: 10px;
  text-align: center;
  line-height: 1.6;
}

.card-about .icon-about {
  background: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 0;
  font-size: 38px;
  color: black;
  
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.green {
  background: linear-gradient(180deg, #43a047, #2e7d32);
}

.teal {
  background: linear-gradient(180deg, #00bfa5, #00897b);
}

.blue {
  background: linear-gradient(180deg, #1976d2, #0d47a1);
}
  
.rules-container {
  background: white;
  max-width: 1580px;
  margin: auto;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
  margin-top: 20px;
}

.rule-box {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  margin-bottom: 12px;
  padding: 12px;
  border-radius: 6px;
  box-shadow: 0px 3px 8px rgba(0,0,0,0.05);
  
}

.number-box {
  font-size: 22px;
  font-weight: bold;
  color: white;
  padding: 15px;
  width: 40px;
  text-align: center;
  border-radius: 4px;
  margin-right: 10px;
}

.rule1 .number-box { background: #f28b66; }
.rule2 .number-box { background: #4da6ff; }
.rule3 .number-box { background: #ffcc33; color: #333; }
.rule4 .number-box { background: #66d1c1; }
.rule5 .number-box { background: #d109df; }

p {
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
  
}
  

.split-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  gap: 40px;
  padding: 50px;
  background: linear-gradient(to right, #052c66, #c3cfe2);
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
}

.text-section {
  flex: 1;
}

.text-section h2 {
  color: #ecedef;
  font-size: 38px;
  margin-bottom: 15px;
}

.text-section p {
  color: #fcfafa;
  line-height: 1.6;
  font-size: 16px;
  margin-bottom: 20px;
}
.text-section li{
  color: white;
}

.image-section {
  flex: 1;
  display: flex;
  justify-content: center;
}

.image-section img {
  width: 100%;
  max-width: 550px;
  border-radius: 15px;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.image-section img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .split-container {
    flex-direction: column;
    text-align: center;
  }
}


 /* PRODUCT page 1 REAITAL PAGEDESIGN START */
.circle-containerpro {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  /* 4 columns */
  gap: 20px;
  justify-items: center;
  margin-top: 120px;
}
.circle-itempro {
  text-align: center;
}
.circle-itempro p {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
}
.circlepro {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background-color: #023953; /* Hover color ko default bana diya */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.circlepro img {
  width: 90px;
  height: 90px;
  filter: brightness(0) invert(1); /* White icon effect by default */
  transition: transform 0.3s ease;
}

/* Hover par sirf thoda zoom karein */
.circlepro:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.circlepro:hover img {
  transform: scale(1.2);
}
/* media query start */
/* ===== Responsive Design ===== */

/* Tablet view (max-width: 1024px) */
@media (max-width: 1024px) {
  .circle-containerpro {
    grid-template-columns: repeat(4, 1fr); /* 4 columns on tablet */
    gap: 15px;
    margin-top: 80px;
  }
  .circlepro {
    width: 100px;
    height: 100px;
  }
  .circlepro img {
    width: 80px;
    height: 80px;
  }
  .circle-itempro p {
    font-size: 13px;
  }
}

/* Mobile view (max-width: 768px) */
@media (max-width: 768px) {
  .circle-containerpro {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
    gap: 15px;
    margin-top: 90px;
  }
  .circlepro {
    width: 90px;
    height: 90px;
  }
  .circlepro img {
    width: 70px;
    height: 70px;
  }
  .circle-itempro p {
    font-size: 12px;
  }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .circle-containerpro {
    grid-template-columns: 1fr; /* 1 column on very small screens */
    gap: 10px;
    margin-top: 40px;
  }
  .circlepro {
    width: 80px;
    height: 80px;
  }
  .circlepro img {
    width: 60px;
    height: 60px;
  }
  .circle-itempro p {
    font-size: 11px;
  }
}
 /* Tablet View (max-width: 1024px) */
@media (max-width: 1024px) {
  .main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .product-details {
    width: 95% !important;
    height: auto !important; /* jitna content hoga utna hi height */
  }

  .form-container {
    position: static; /* fixed hatake neeche le aaya */
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
    height: auto;
  }
}

/* Mobile View (max-width: 768px) */
@media (max-width: 768px) {
  .main-container {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .product-details {
    width: 100% !important;
    height: auto !important;
    padding: 15px;
  }

  .product-details h2 {
    font-size: 20px;
  }

  .product-details ul li {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .form-container {
    position: static;
    width: 95%;
    margin-top: 15px;
    height: auto;
  }
}

/* Small Mobile View (max-width: 480px) */
@media (max-width: 480px) {
  .product-details {
    width: 100% !important;
    height: auto !important;
    padding: 12px;
  }

  .product-details h2 {
    font-size: 18px;
  }

  .product-details ul li {
    font-size: 13px;
    padding-left: 22px;
  }

  .form-container {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
  }
}
.form-container {
  position: fixed;
  top: 80%;
  right: 10px;
  transform: translateY(-50%);
  width: 270px;
  height: 290px; /* fixed small height */
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  font-family: Arial, sans-serif;
  overflow-y: auto; /* scroll enable */
  padding: 10px;
}

.form-container h2 {
  text-align: center;
  font-size: 20px;
  margin-bottom: 6px;
}

.form-container label {
  font-size: 15px;
  margin-bottom: 2px;
  display: block;
}

.form-container input,
.form-container select,
.form-container textarea {
  width: 100%;
  padding: 6px;
  font-size: 12px;
  margin-bottom: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.form-container textarea {
  resize: none;
}

.form-container button {
  width: 100%;
  padding: 6px;
  background: #007bff;
  color: white;
  font-size: 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.form-container button:hover {
  background: #0056b3;
}



.detail-box {
    display: none;
}

.detail-box.active {
    display: block;
}

.product-details {
  margin-top: 20px;
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  width: 1220px;
  height: 320px;
 
  transition: all 0.3s ease;
}

.product-details:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.product-details h2 {
  font-size: 24px;
  color: #08203a;
  border-bottom: 2px solid #d40f0f;
  padding-bottom: 8px;
  margin-bottom: 15px;
}

.product-details ul {
  list-style: none;
  padding: 0;
}

.product-details ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #444;
  line-height: 1.5;
}

.product-details ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #cd0b0b;
  font-weight: bold;
}
 /* PRODUCT page 1 REAITAL PAGEDESIGN END */

 /* PRODUCT PAGE 2 WHOLESALES OAGE DESIGN START */
.circle-container1pro {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  /* 4 columns */
  gap: 20px;
  justify-items: center;
  margin-top: 120px;
}
.circle-item1pro {
  text-align: center;
}
.circle-item1pro p {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
}
.circle1pro {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background-color: #023953; /* Hover color ko default bana diya */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.circle1pro img {
  width: 90px;
  height: 90px;
  filter: brightness(0) invert(1); /* White icon effect by default */
  transition: transform 0.3s ease;
}

/* Hover par sirf thoda zoom karein */
.circle1pro:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.circle1pro:hover img {
  transform: scale(1.2);
}
@media (max-width: 1024px) {
  .circle-container1pro {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 90px;
  }
  .circle1pro {
    width: 95px;
    height: 95px;
  }
  .circle1pro img {
    width: 75px;
    height: 75px;
  }
  .circle-item1pro p {
    font-size: 13px;
  }
}

/* 📱 Mobile view (max-width: 768px) */
@media (max-width: 768px) {
  .circle-container1pro {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 70px;
  }
  .circle1pro {
    width: 85px;
    height: 85px;
  }
  .circle1pro img {
    width: 65px;
    height: 65px;
  }
  .circle-item1pro p {
    font-size: 10px;
  }
}

/* 📱 Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .circle-container1pro {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 50px;
  }
  .circle1pro {
    width: 75px;
    height: 75px;
  }
  .circle1pro img {
    width: 55px;
    height: 55px;
  }
  .circle-item1pro p {
    font-size: 10px;
  }
}

 /* Tablet View (max-width: 1024px) */
@media (max-width: 1024px) {
  .main-containerwhole {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .product-detailswhole {
    width: 95% !important;
    height: auto !important; /* jitna content hoga utna hi height */
  }

 .form-containerwhole {
    position: static; /* fixed hatake neeche le aaya */
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
    height: auto;
  }
}

/* Mobile View (max-width: 768px) */
@media (max-width: 768px) {
  .main-containerwhole {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .product-detailswhole {
    width: 100% !important;
    height: auto !important;
    padding: 15px;
  }

  .product-detailswhole h2 {
    font-size: 20px;
  }

  .product-detailswhole ul li {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .form-containerwhole {
    position: static;
    width: 95%;
    margin-top: 15px;
    height: auto;
  }
}

/* Small Mobile View (max-width: 480px) */
@media (max-width: 480px) {
  .product-detailswhole {
    width: 100% !important;
    height: auto !important;
    padding: 12px;
  }

  .product-detailswhole h2 {
    font-size: 18px;
  }

 .product-detailswhole ul li {
    font-size: 13px;
    padding-left: 22px;
  }

  .form-containerwhole {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
  }
}

.form-containerwhole {
  position: fixed;
  top: 69%;
  right: 10px;
  transform: translateY(-50%);
  width: 290px;
  height: 430px; /* fixed small height */
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  font-family: Arial, sans-serif;
  overflow-y: auto; /* scroll enable */
  padding: 10px;
}

.form-containerwhole h2 {
  text-align: center;
  font-size: 25px;
  margin-bottom: 6px;
}

.form-containerwhole label {
  font-size: 20px;
  margin-bottom: 2px;
  display: block;
}

.form-containerwhole input,
.form-containerwhole select,
.form-containerwhole textarea {
  width: 100%;
  padding: 6px;
  font-size: 12px;
  margin-bottom: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.form-containerwhole textarea {
  resize: none;
}

.form-containerwhole button {
  width: 100%;
  padding: 6px;
  background: #007bff;
  color: white;
  font-size: 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.form-containerwhole button:hover {
  background: #0056b3;
}
 
.detail-box {
    display: none;
}

.detail-box.active {
    display: block;
}

.product-detailswhole {
  margin-top: 20px;
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  width: 1220px;
  height: 460px;
 
  transition: all 0.3s ease;
}

.product-detailswhole:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.product-detailswhole h2 {
  font-size: 24px;
  color: #08203a;
  border-bottom: 2px solid #d40f0f;
  padding-bottom: 8px;
  margin-bottom: 15px;
}

.product-detailswhole ul {
  list-style: none;
  padding: 0;
}

.product-detailswhole ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #444;
  line-height: 1.5;
}

.product-detailswhole ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #cd0b0b;
  font-weight: bold;
}

/* WEBSITE DEVELOPMENT PAGE DESIGN START CSS */

/* Hero Section */
.heroji {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 10%;
    background: linear-gradient(135deg, #023953, #046b99);
    color: white;
    flex-wrap: wrap;
    overflow: hidden;
    position: relative;
}

/* Glow circles for design */
.heroji::before,
.heroji::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    z-index: 0;
}
.heroji::before {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
}
.heroji::after {
    width: 200px;
    height: 200px;
    bottom: -80px;
    right: -80px;
}

.hero-contentji {
    max-width: 550px;
    z-index: 1;
    animation: fadeInLeft 1s ease forwards;
}

.hero-contentji h1 {
    font-size: 52px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
}

.hero-contentji h1 span {
    color: #f20f07;
}

.hero-contentji p {
    font-size: 19px;
    margin-bottom: 30px;
    opacity: 0.9;
     font-family: 'Times New Roman', Times, serif;
}

.hero-buttonsji {
    display: flex;
    gap: 15px;
}

.cta-btnji {
    background-color: #f6210e;
    color: #fdf8f7;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.cta-btnji:hover {
    background-color: #6df141;
    transform: translateY(-3px);
}

.secondary-btn {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background-color: white;
    color: #023953;
    transform: translateY(-3px);
}

.hero-imageji img {
    max-width: 580px;
    width: 100%;
    animation: fadeInRight 1s ease forwards;
    z-index: 1;
}

/* Animations */
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-60px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(60px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 900px) {
    .heroji {
        flex-direction: column-reverse;
        text-align: center;
        padding: 40px 5%;
    }

    .hero-buttonsji {
        justify-content: center;
    }
}
.about-sectionweb {
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  background: linear-gradient(145deg, #a0d8ff 60%, #dee8f9);
}

.about-containerweb {
  max-width: 1300px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: flex-start;
}

.about-leftweb {
  flex: 1 1 500px;
}

.about-leftweb h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #f52809;
}

.about-leftweb p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #100808;
}

.goal-web {
  font-weight: 600;
  color: #f9c133;
}

.about-rightweb {
  flex: 1 1 500px;
}

.service-highlightsweb {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.service-highlightsweb li {
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 14px;
  padding: 20px;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-highlightsweb li::before {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  background: #38bdf8;
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}

.service-highlightsweb li:hover::before {
  width: 100%;
}

.service-highlightsweb li:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(56, 189, 248, 0.2);
}

.card-icon {
  font-size: 30px;
  margin-bottom: 10px;
}

.service-highlightsweb h3 {
  font-size: 18px;
  color: #f1f5f9;
  margin-bottom: 8px;
}

.service-highlightsweb p {
  font-size: 14px;
  color: #cbd5e1;
}

@media (max-width: 900px) {
  .about-containerweb {
    flex-direction: column;
  }
}

/* types of websites section */
/* SECTION LAYOUT (no body/:root changes) */
.types-section { padding: 56px 20px; }
.types-wrap { max-width:1200px; margin:0 auto; }

/* Heading */
.types-wrap h2 { font-size:28px; margin:0 0 6px; color:#07222b; font-weight:700; }
.types-sub { margin:0 0 18px; color:#445a60; }

/* Filters (pills) */
.filters { display:flex; gap:10px; flex-wrap:wrap; margin-bottom:22px; }
.pill {
  padding:8px 14px;
  border-radius:999px;
  background:transparent;
  border:1px solid rgba(7,34,43,0.06);
  cursor:pointer;
  font-weight:600;
  color:#073742;
  transition:all .22s ease;
}
.pill:hover { transform:translateY(-3px); box-shadow:0 8px 20px rgba(2,41,55,0.06); }
.pill.active {
  background: linear-gradient(90deg,#ffb400,#ff9d00);
  color:#07222b;
  box-shadow:0 12px 30px rgba(255,160,0,0.12);
  border: none;
}

/* Grid */
.cards-grid {
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:20px;
}

/* Card */
.type-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.96));
  border-radius:14px;
  padding:22px;
  box-shadow: 0 8px 28px rgba(2,41,55,0.06);
  cursor:pointer;
  transition: transform .25s cubic-bezier(.2,.9,.2,1), box-shadow .25s ease;
  display:flex;
  gap:14px;
  align-items:flex-start;
  min-height:120px;
  outline: none;
}
.type-card:focus { box-shadow: 0 12px 40px rgba(2,41,55,0.12); transform: translateY(-6px); }

/* Icon circle */
.card-icon {
  width:64px; height:64px; border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  font-size:28px;
  background: linear-gradient(135deg,#e9f6ff,#e5fbf9);
  color:#034b56;
  flex-shrink:0;
  box-shadow: inset 0 -6px 12px rgba(0,0,0,0.03);
}

/* Title + short */
.type-card h3 { margin:0; font-size:18px; color:#022e35; }
.type-card .short { margin:8px 0 0; color:#4b6366; font-size:14px; line-height:1.45; }

/* Hover lift */
.type-card:hover { transform: translateY(-8px); box-shadow: 0 20px 45px rgba(2,41,55,0.12); }
.type-card:hover .card-icon { transform: translateY(-4px); }

/* Hidden state used by JS */
.type-card.hidden { display:none !important; }

/* Responsive */
@media (max-width:980px) { .cards-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width:560px) { .cards-grid { grid-template-columns: 1fr; } .card-icon{width:56px;height:56px} }

/* Modal */
.type-modal { display:none; position:fixed; inset:0; align-items:center; justify-content:center; z-index:80; }
.type-modal.active { display:flex; }
.modal-backdrop { position:absolute; inset:0; background:linear-gradient(180deg, rgba(2,41,55,0.45), rgba(2,41,55,0.6)); backdrop-filter: blur(3px); }
.modal-panel { position:relative; z-index:2; width:100%; max-width:720px; background:white; border-radius:12px; padding:22px; box-shadow: 0 30px 80px rgba(2,41,55,0.28); }
.modal-close { position:absolute; right:12px; top:8px; border:0; background:transparent; font-size:28px; cursor:pointer; color:#08333d; }
.modal-content { display:flex; gap:18px; align-items:flex-start; }
.modal-icon { width:70px; height:70px; border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:30px; background:linear-gradient(135deg,#e9f6ff,#e5fbf9); color:#034b56; }
.modal-content h3 { margin:0 0 8px; color:#07222b; }
.modal-content p { margin:0; color:#445a60; line-height:1.6; }

/* Modal actions */
.modal-actions { margin-top:14px; display:flex; gap:12px; }
.btn-cta {
  padding:10px 14px; border-radius:10px; border:0; background:linear-gradient(90deg,#ffb400,#ff9d00); color:#07222b; font-weight:700; cursor:pointer;
}
.btn-ghost { padding:10px 14px; border-radius:10px; border:1px solid rgba(7,34,43,0.06); background:transparent; color:#073742; cursor:pointer;}


/* why choose us website design */
 .features-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #01141d, #004d66);
  color: white;
  text-align: center;
}

.features-title h2 {
  font-size: 32px;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.features-title h2::after {
  content: "";
  display: block;
  height: 3px;
  width: 60px;
  background: #ff0000;
  margin: 8px auto 0;
}

.features-title p {
  color: #ccefff;
  max-width: 600px;
  margin: auto;
}

.features-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.4s ease;
  transform: translateY(40px);
  opacity: 0;
}

.feature-card i {
  font-size: 40px;
  color: #00e6ff;
  margin-bottom: 15px;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.feature-card p {
  color: #ccefff;
  font-size: 15px;
}

.feature-card:hover {
  background: rgba(0, 230, 255, 0.15);
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 230, 255, 0.3);
}

/* trust build customer design start  */
.dev-process {
  background: #f4f9fc;
  padding: 60px 20px;
  text-align: center;
}

.dev-process h2 {
  font-size: 32px;
  color: #023953;
  margin-bottom: 50px;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: auto;
  padding: 0 20px;
}

.timeline::after {
  content: "";
  position: absolute;
  width: 4px;
  background: #01284b;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.timeline-item {
  padding: 20px 40px;
  position: relative;
  width: 50%;
}

.timeline-item.right {
  left: 50%;
}

.timeline-content {
  background: white;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.step-icon {
  position: absolute;
  top: 20px;
  left: -35px;
  background: #02263a;
  color: white;
  font-weight: bold;
  font-size: 18px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0,188,212,0.5);
}

.timeline-item.right .step-icon {
  left: auto;
  right: -35px;
}

.timeline-item:nth-child(odd) .timeline-content {
  animation: slideInLeft 0.6s ease-out forwards;
}

.timeline-item:nth-child(even) .timeline-content {
  animation: slideInRight 0.6s ease-out forwards;
}

@keyframes slideInLeft {
  from { transform: translateX(-50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
  from { transform: translateX(50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@media screen and (max-width: 768px) {
  .timeline::after {
    left: 20px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 50px;
  }
  .timeline-item.right {
    left: 0;
  }
  .timeline-item.right .step-icon {
    right: auto;
    left: -35px;
  }
}

/* call to action design  */
/* CTA Section Base */
.cta-pro {
  position: relative;
  padding: 80px 20px;
  background: linear-gradient(120deg, #010e30, #0f2f67);
  overflow: hidden;
  color: white;
  text-align: center;
}

/* Glass Container */
.cta-content {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  padding: 40px 30px;
  border-radius: 20px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  max-width: 700px;
  margin: auto;
  animation: fadeInUp 1s ease-out;
}

/* Heading */
.cta-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
  font-weight: 700;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(45deg, #eb0a0a, #ff5722);
  color: white;
  box-shadow: 0 4px 15px rgba(255,87,34,0.5);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(255,87,34,0.8);
}

.btn-secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn-secondary:hover {
  background: white;
  color: #2575fc;
  transform: scale(1.05);
}

/* Floating Shapes */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  background: white;
  animation: float 8s infinite ease-in-out;
}

.shape1 {
  width: 150px; height: 150px;
  top: 20%; left: 10%;
}

.shape2 {
  width: 200px; height: 200px;
  bottom: 15%; right: 15%;
}

.shape3 {
  width: 100px; height: 100px;
  top: 10%; right: 25%;
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-20px) rotate(45deg); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .cta-content h2 { font-size: 26px; }
  .cta-content p { font-size: 16px; }
}


/* mobile application section start */
/* Main container */
.main-container-mobile {
    width: 95%;
    max-width: 1500px;
    margin: 100px auto 30px auto; /* Top 150px, bottom 50px, center horizontally */
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #0e2352, #1c3191);
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    overflow: hidden;
}

/* Image container */
.image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    background: rgba(255,255,255,0.1);
}

.image-container img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    animation: imageFadeIn 2s ease forwards;
}

@keyframes imageFadeIn {
    0% { opacity: 0; transform: scale(0.9);}
    100% { opacity: 1; transform: scale(1);}
}

/* Text container */
.text-container {
    flex: 1;
    color: white;
    text-align: center;
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Title */
.coming-soon-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    animation: fadeInUp 2s ease forwards;
}

/* Subtitle */
.coming-soon-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeInUp 2s ease 0.5s forwards;
}

/* Button */
.home-btn {
    padding: 15px 25px;       /* Height and width control */
    font-size: 1rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    background: linear-gradient(45deg, #ff4b2b, #ff416c);
    color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    display: inline-block;    /*  Ye zaroori hai */
    width: auto;              /*  Parent ke full width ko rokega */
    margin: 20px auto;        /* Center me laane ke liye */
}

.home-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

/* Animations for text */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px);}
    100% { opacity: 1; transform: translateY(0);}
}

/* Responsive */
@media screen and (max-width: 992px) {
    .main-container-mobile {
        flex-direction: column;
        width: 95%;
        margin: 30px auto;
    }
    .image-container, .text-container {
        padding: 20px;
    }
    .coming-soon-title {
        font-size: 3rem;
    }
    .home-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}



/* Background */
.dev-packages-section {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #1f1c2c, #928dab);
  font-family: 'Poppins', sans-serif;
  color: #fff;
}

/* Heading */
.dev-heading {
  font-size: 2.8rem;
  margin-bottom: 60px;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 3px 10px rgba(0,0,0,0.4);
}

/* Cards row */
.dev-cards-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px;
}

/* Card design */
.dev-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  backdrop-filter: blur(12px);
  padding: 35px 25px;
  width: 320px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.dev-card:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0,0,0,0.45);
}

/* Top */
.dev-top h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.dev-price {
  font-size: 2rem;
  color: #ffcc70;
  font-weight: bold;
  margin-bottom: 25px;
}

/* Badge */
.dev-badge {
  position: absolute;
  top: 15px;
  right: -40px;
  background: #ff6f61;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 45px;
  transform: rotate(45deg);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* List */
.dev-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
  text-align: left;
}

.dev-list li {
  margin: 12px 0;
  font-size: 1rem;
  color: #f1f1f1;
}

/* Button */
.dev-btn {
  background: linear-gradient(135deg, #ff6f61, #ffcc70);
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  color: #1a1a1a;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.dev-btn:hover {
  transform: scale(1.1);
}

/* Glow animation */
.dev-glow {
  box-shadow: 0 0 30px rgba(255, 204, 112, 0.8) !important;
}
  

.comparison-section {
  padding: 60px 20px;
  text-align: center;
}

.comparison-table {
  overflow-x: auto;
  margin-top: 30px;
}

.comparison-table table {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-collapse: collapse;
  background: #fff; /* white background */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.comparison-table th,
.comparison-table td {
  padding: 14px;
  border: 1px solid #ddd;
  text-align: center;
  font-size: 0.95rem;
  color: #333; /* dark text */
}

.comparison-table th {
  background: #ff6f61;
  color: #fff;
  font-size: 1rem;
}

.comparison-table tr:nth-child(even) {
  background: #f9f9f9; /* light gray rows */
}

/* ✅ and ❌ styling */
.comparison-table td:contains("✔") {
  color: green;
  font-weight: bold;
}

.comparison-table td:contains("❌") {
  color: red;
  font-weight: bold;
}


/* top bar section start */

.swastik-top-bar {
  background: rgb(70, 128, 70);;
  color: white;
  padding: 8px 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; /* header se upar */
}

.swastik-bar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.swastik-contact-links a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 5px;
}

.swastik-contact-links a:hover {
  text-decoration: underline;
}

.swastik-social-set a {
  margin-left: 10px;
  color: #ffffff;
  font-size: 16px;
  transition: color 0.3s ease;
}

.swastik-social-set a:hover {
  color: #f4b400; /* gold/yellow hover color */
}

.swastik-separator {
  margin: 0 5px;
  opacity: 0.6;
}

/* Responsive (Mobile First) */
@media (max-width: 768px) {
  .swastik-bar-container {
    flex-direction: column;
    text-align: center;
  }
  .swastik-contact-links {
    margin-bottom: 5px;
  }
}
/* top bar section end */

/* computersales page design start  */
  /* Container */
  .cs-banner-wrapper {
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
  }

  /* Banner */
  .cs-banner {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, #388230, #4ddd65);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    font-family: Arial, sans-serif;
  }

  /* Scrolling text */
  .cs-moving-line {
    position: absolute;
    white-space: nowrap;
    left: 100%;
  }

  /* Unique floating bubbles */
  .cs-bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    animation: cs-bubble-float 10s linear infinite;
  }

  /* Unique animation name */
  @keyframes cs-bubble-float {
    0% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-50px) translateX(50px); }
    100% { transform: translateY(0) translateX(0); }
  }
  

  .services-wrapper {
    background: linear-gradient(120deg, #f0f4ff, #e6ecf5);
    padding: 70px 20px;
    text-align: center;
    margin-top: 30px;
  }

  .services-heading {
    font-size: 32px;
    font-weight: 700;
    color: #0a3d62;
    margin-bottom: 40px;
    letter-spacing: 1px;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .service-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 16px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }

  .service-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(0,183,255,0.05), rgba(0,119,182,0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .service-card:hover::after {
    opacity: 1;
  }

  .service-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
  }

  .service-icon {
    font-size: 40px;
    color: #0077b6;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
  }

  .service-card:hover .service-icon {
    transform: rotate(10deg) scale(1.1);
  }

  .service-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a2a6c;
  }


  /* Reset for this component */
.comp-section {
  font-family: 'Segoe UI', Arial, sans-serif;
  position: relative;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(to right, rgba(13, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
              url('https://images.unsplash.com/photo-1667430806405-70ef5bc4970f?q=80&w=1074&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}
.comp-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.comp-subtitle {
  font-size: 1.2rem;
  opacity: 0.85;
  margin-bottom: 40px;
}
.comp-typing {
  display: inline-block;
  border-right: 3px solid #00e6e6;
  white-space: nowrap;
  overflow: hidden;
  font-weight: 700;
  font-size: 1.5rem;
}
.comp-products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.comp-card {
  width: 220px;
  height: 320px; /* <-- fix height for consistent layout */
  background: rgba(255, 255, 255, 0.293);
  backdrop-filter: blur(4px);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  opacity: 0;
  transform: translateY(60px);
  transition: transform .6s ease, opacity .6s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.comp-card img {
  width: 100%;
  height: 150px;      /* <-- fixed height for images */
  object-fit: contain; /* <-- maintains aspect ratio without stretching */
  border-radius: 10px;
  margin-bottom: 10px;
}
.comp-card p {
  font-size: 0.9rem;
  opacity: 0.85;
}

.comp-card h3 {
  margin: 8px 0 4px;
  font-size: 1.3rem;
}

.comp-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 14px;
  background: linear-gradient(45deg, #00e6e6, #0077ff);
  color: #000;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease;
}
.comp-btn:hover {
  transform: scale(1.05);
}

/* responsive tweak */
@media (max-width:600px) {
  .comp-title { font-size: 2rem; }
  .comp-typing { font-size: 1.2rem; }
}


/* No global body styles — safe to use anywhere */
.why-magic {
  position: relative;
  padding: 100px 20px;
  background: #0f2027; /* fallback in case canvas fails */
  color: #fff;
  overflow: hidden;
}

#particleCanvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}

.why-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.why-content h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-weight: 700;
}

.feature-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.feature-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 30px 20px;
  width: 220px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  font-weight: bold;
  transition: transform .3s ease, box-shadow .3s ease;
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 0 25px rgba(255,255,255,0.2);
}

.feature-card h3 {
  margin: 10px 0 8px;
  font-size: 1.2rem;
}


.computer-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s;
}

.computer-section:hover {
    transform: translateY(-5px);
}

.computer-image {
    flex: 1 1 300px;
    text-align: center;
}

.computer-image img {
    max-width: 90%;
    border-radius: 12px;
    transition: transform 0.3s;
}

.computer-image img:hover {
    transform: scale(1.05);
}

.computer-details {
    flex: 1 1 400px;
    padding: 20px;
}

.computer-details h2 {
    font-size: 2rem;
    color: #08203a;
    margin-bottom: 15px;
}

.config {
    background: #f0f8ff;
    padding: 15px;
    border-radius: 10px;
    margin-top: 10px;
    font-weight: bold;
    color: #08203a;
}

@media (max-width: 768px) {
    .computer-section {
        flex-direction: column;
    }
    .computer-details {
        text-align: center;
    }


  }

  /* Pay Online Page Design Start */




/* ===== Main Container ===== */
/* ================= Main Container - Modern Glassmorphism Design ================= */


/* Logo Side */
.logo-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 60px; /* adjust as needed */
}

.logo-side img {
  width: 500px;          /* default size */
  max-width: 90%;        /* responsive: screen ke hisaab se shrink hoga */
  height: auto;
  border-radius: 10px;
  object-fit: contain;
}

.logo-side h3 {
  font-size: 28px;       /* default */
  font-weight: bold;
  color: #0077b6;
  text-align: center;
  word-break: break-word; /* long company names ke liye safe */
}

/* ===== Responsive Breakpoints ===== */
@media (max-width: 1024px) {
  .logo-side img {
    width: 220px;
  }
  .logo-side h3 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .logo-side {
    margin-top: 40px;
  }
  .logo-side img {
    width: 180px;
  }
  .logo-side h3 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .logo-side {
    margin-top: 30px;
  }
  .logo-side img {
    width: 150px;
  }
  .logo-side h3 {
    font-size: 18px;
  }
}


.main-containerpay {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 50px 20px;

  /* Background gradient */
  background: linear-gradient(135deg, #d0e8ff, #f0f7ff);

  /* Rounded corners */
  border-radius: 30px;

  /* Glass effect */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  /* Shadow for depth */
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);

  /* Smooth hover transition */
  transition: transform 0.4s, box-shadow 0.4s;
}

/* Hover effect - lift the container slightly */
.main-containerpay:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

/* ===== Left & Right Forms ===== */
.left-formpay, .right-formpay {
  background: linear-gradient(145deg, #ffffff, #f0f4f8);
  padding: 25px 20px;
  width: 380px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.left-formpay h2, .right-formpay h2 {
  font-size: 22px;
  margin-bottom: 18px;
  border-left: 5px solid #0077b6;
  padding-left: 10px;
  color: #1d3557;
}

/* ===== Form Fields ===== */
.form-group { margin-bottom: 12px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 5px; font-size: 15px; color: #333; }
.form-group input, .form-group textarea, select { width: 100%; padding: 7px 10px; border: 1px solid #ccc; border-radius: 8px; font-size: 14px; }
textarea { resize: vertical; min-height: 45px; }

/* GST Row one-line */
.gst-line { align-items: center; gap: 10px; }
.gst-line input[type="text"] { flex: 1; }

/* ===== Buttons ===== */
.btn-submit, .btn-pay {
  width: 100%;
  background: #0077b6;
  color: #fff;
  padding: 9px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
}
.btn-submit:hover, .btn-pay:hover { background: #023e8a; }

/* ===== Payment Rows ===== */
.pay-row { margin-bottom: 15px; }
.pay-row label { display: block; font-size: 15px; font-weight: 600; margin-bottom: 5px; }
.pay-right { display: flex; justify-content: space-between; align-items: center; }
.price { font-weight: bold; color: #1d3557; }

/* Quantity Box */
.qty-box { display: flex; align-items: center; border: 1px solid #ccc; border-radius: 8px; overflow: hidden; }
.qty-box button { background: #f4f4f4; border: none; padding: 6px 12px; font-size: 16px; cursor: pointer; }
.qty-box button:hover { background: #0077b6; color: #fff; }
.qty-input { width: 50px; text-align: center; border: none; font-size: 15px; outline: none; }

/* Total Row */
.total-row { margin: 20px 0; display: flex; justify-content: space-between; font-size: 17px; font-weight: 600; border-top: 2px solid #0077b6; padding-top: 10px; color: #1d3557; }


.policy-wrapper { 
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
  margin: 40px;
}

/* Right QR */
.payqr-box {
  display: none;
  background: #ffffff;
  padding: 25px 20px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  width: 360px;
  text-align: center;
  flex: 1;
  max-width: 400px;
}

.payqr-box h2 {
  font-size: 22px;
  color: #1d3557;
  margin-bottom: 15px;
  border-left: 4px solid #0077b6;
  padding-left: 8px;
  text-align: left;
}

.payqr-img {
  width: 320px;
  height: 250px;
  margin-bottom: 10px;
}

.payqr-details {
  text-align: left;
  font-size: 15px;
  margin-bottom: 15px;
  line-height: 1.6;
  color: #333;
}

.txn-box {
  margin-bottom: 15px;
  text-align: left;
}

.txn-box label {
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

.txn-box input {
  width: 100%;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.btn-send {
  width: 100%;
  padding: 10px;
  background: #0077b6;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.btn-send:hover {
  background: #023e8a;
}

/* Left Box */
.policy-box {
  flex: 1;
  max-width: 900px;
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  font-family: 'Segoe UI', sans-serif;
  text-align: left;
  margin: 0;
}

/* Heading */
.policy-box h2 {
  font-size: 24px;
  color: #1d3557;
  margin-bottom: 20px;
  border-left: 4px solid #0077b6;
  padding-left: 10px;
}

/* List */
.policy-list {
  list-style: decimal inside;
  color: #333;
  line-height: 1.6;
  margin-bottom: 25px;
}

.policy-list li {
  margin-bottom: 12px;
}

/* Checkbox */
.policy-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.policy-check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.policy-check label {
  font-size: 15px;
  color: #1d3557;
  cursor: pointer;
}

/* Button */
.btn-agree {
  width: 100%;
  padding: 12px;
  background: #0077b6;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s, transform 0.2s;
}

.btn-agree:disabled {
  background: #cccccc;
  cursor: not-allowed;
}

.btn-agree:hover:not(:disabled) {
  background: #023e8a;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .policy-box {
    max-width: 90%;
    padding: 20px 15px;
    margin: 20px auto;
  }

  .policy-box h2 {
    font-size: 20px;
  }

  .policy-check label {
    font-size: 14px;
  }

  .btn-agree {
    font-size: 15px;
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .policy-box {
    padding: 15px 10px;
    border-radius: 12px;
  }

  .policy-box h2 {
    font-size: 18px;
  }

  .policy-list {
    font-size: 14px;
    line-height: 1.5;
  }

  .policy-check {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .policy-check label {
    font-size: 13px;
  }

  .btn-agree {
    font-size: 14px;
    padding: 8px;
  }
}


@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(8px); }
  60% { transform: translateY(4px); }
}


 /* RETAILPAY PAGE DESIGN START  */

 .payment-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 50px 20px;
  background: linear-gradient(135deg, #d0e8ff, #f0f7ff);
  border-radius: 30px;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s, box-shadow 0.4s;
}
.payment-container:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.company-box, .billing-box {
  background: linear-gradient(145deg, #ffffff, #f0f4f8);
  padding: 25px 20px;
  width: 380px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.company-box h2, .billing-box h2 {
  font-size: 22px;
  margin-bottom: 18px;
  border-left: 5px solid #0077b6;
  padding-left: 10px;
  color: #1d3557;
}


/* Logo Side */
.brand-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 60px; /* adjust as needed */
}

.brand-box img {
  width: 500px;          /* default size */
  max-width: 90%;        /* responsive: screen ke hisaab se shrink hoga */
  height: auto;
  border-radius: 10px;
  object-fit: contain;
}

.brand-box h3 {
  font-size: 28px;       /* default */
  font-weight: bold;
  color: #0077b6;
  text-align: center;
  word-break: break-word; /* long company names ke liye safe */
}

/* ===== Responsive Breakpoints ===== */
@media (max-width: 1024px) {
  .brand-box img {
    width: 220px;
  }
  .brand-box h3 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .brand-box {
    margin-top: 40px;
  }
  .brand-box img {
    width: 180px;
  }
  .brand-box h3 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .brand-box {
    margin-top: 30px;
  }
  .brand-box img {
    width: 150px;
  }
  .brand-box h3 {
    font-size: 18px;
  }
}


.input-block { margin-bottom: 12px; }
.input-block label { display: block; font-weight: 600; margin-bottom: 5px; font-size: 15px; color: #333; }
.input-block input, .input-block textarea, .input-block select {
  width: 100%; padding: 7px 10px; border: 1px solid #ccc; border-radius: 8px; font-size: 14px;
}
textarea { resize: vertical; min-height: 45px; }

.billing-row { margin-bottom: 15px; }
.billing-row label { display: block; font-size: 15px; font-weight: 600; margin-bottom: 5px; }
.billing-right { display: flex; justify-content: space-between; align-items: center; }
.item-price { font-weight: bold; color: #1d3557; }

.counter-box { display: flex; align-items: center; border: 1px solid #ccc; border-radius: 8px; overflow: hidden; }
.counter-box button { background: #f4f4f4; border: none; padding: 6px 12px; font-size: 16px; cursor: pointer; }
.counter-box button:hover { background: #0077b6; color: #fff; }
.qty-field { width: 50px; text-align: center; border: none; font-size: 15px; outline: none; }

.total-box { margin: 20px 0; display: flex; justify-content: space-between; font-size: 17px; font-weight: 600; border-top: 2px solid #0077b6; padding-top: 10px; color: #1d3557; }


/* Container */

.terms-wrapper {
  display: flex;
  justify-content: flex-start; /* left align */
  align-items: flex-start;     /* top align */
  gap: 30px;
  flex-wrap: wrap;
  margin: 40px; /* thoda common margin sab side */
}

.qr-container {
  display: none; /* hidden by default */
  background: #ffffff;
  padding: 25px 20px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  width: 360px;
  text-align: center;
   flex: 1; /* right div bhi flexible */
  max-width: 400px;
}

.qr-container h2 {
  font-size: 22px;
  color: #1d3557;
  margin-bottom: 15px;
  border-left: 4px solid #0077b6;
  padding-left: 8px;
  text-align: left;
}

.qr-img {
  width: 320px;
  height: 250px;
  margin-bottom: 10px;
}

.account-details {
  text-align: left;
  font-size: 15px;
  margin-bottom: 15px;
  line-height: 1.6;
  color: #333;
}

.txn-input {
  margin-bottom: 15px;
  text-align: left;
}

.txn-input label {
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

.txn-input input {
  width: 100%;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.btn-submit {
  width: 100%;
  padding: 10px;
  background: #0077b6;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.btn-submit:hover {
  background: #023e8a;
}


.terms-container {
  flex: 1; /* left div flexible */
  max-width: 900px; /* optional limit */
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  font-family: 'Segoe UI', sans-serif;
  text-align: left;
  margin: 0; /* 👈 extra margin hata do */
}


/* Heading */
.terms-container h2 {
  font-size: 24px;
  color: #1d3557;
  margin-bottom: 20px;
  border-left: 4px solid #0077b6;
  padding-left: 10px;
}

/* List */
.terms-list {
  list-style: decimal inside;
  color: #333;
  line-height: 1.6;
  margin-bottom: 25px;
}

.terms-list li {
  margin-bottom: 12px;
}

/* Checkbox accept section */
.terms-accept {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap; /* small screen pe line break ho sakta hai */
}

.terms-accept input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.terms-accept label {
  font-size: 15px;
  color: #1d3557;
  cursor: pointer;
}

/* Button */
.btn-accept {
  width: 100%;
  padding: 12px;
  background: #0077b6;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s, transform 0.2s;
}

.btn-accept:disabled {
  background: #cccccc;
  cursor: not-allowed;
}

.btn-accept:hover:not(:disabled) {
  background: #023e8a;
  transform: translateY(-2px);
}

/* 🔹 Responsive Design */
@media (max-width: 768px) {
  .terms-container {
    max-width: 90%;         /* side se gap kam */
    padding: 20px 15px;
    margin: 20px auto;
  }

  .terms-container h2 {
    font-size: 20px;
  }

  .terms-accept label {
    font-size: 14px;
  }

  .btn-accept {
    font-size: 15px;
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .terms-container {
    padding: 15px 10px;
    border-radius: 12px;
  }

  .terms-container h2 {
    font-size: 18px;
  }

  .terms-list {
    font-size: 14px;
    line-height: 1.5;
  }

  .terms-accept {
    flex-direction: column; /* checkbox aur label vertical ho jayenge */
    align-items: flex-start;
    gap: 6px;
  }

  .terms-accept label {
    font-size: 13px;
  }

  .btn-accept {
    font-size: 14px;
    padding: 8px;
  }
}

  .required-star {
    color: red;
    margin-left: 4px;
    font-weight: bold;
  }

  button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}




