.noedit p{
  font-family: 'Poppins', sans-serif;
  font-size:14px ;
}
/* ===== Designer Input Fields ===== */
.module-custom-fields .form-control,
.module-custom-fields textarea.form-control,
.module-custom-fields select.form-control,
.module-custom-fields select.form-select{
  height: 42px;
  border-radius: 10px;
  border: 1px solid #ddd;
  padding: 10px 14px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  background: #fff;
}
.module-custom-fields .form-control:focus,
.module-custom-fields textarea.form-control:focus,
.module-custom-fields select.form-control:focus,
.module-custom-fields select.form-select:focus{
  border-color: #1b3a2f; 
  box-shadow: 0px 6px 14px rgba(27,58,47,0.15);
  outline: none;
}
.module-custom-fields textarea.form-control{
  height: 90px !important;
}
@media (max-width: 768px){
  .module-custom-fields .form-control,
  .module-custom-fields textarea.form-control,
  .module-custom-fields select.form-control,
  .module-custom-fields select.form-select{
    width: 100%;
    height: 40px;
    font-size: 14px;
  }

  .module-custom-fields textarea.form-control{
    height: 85px !important;
  }
}
  .form-control{
	color:#555 !important;
}
.form-select{
  color:#555 !important;
}

/* ===== Designer Input Fields ===== END*/
.module-custom-fields .form-label {
  text-align: left;
  display: block;
  margin-top:20px !important;
   font-size:15px ;
  color:#555;
}
.custom-file-label{
   display:none;
}
.custom-file-label i{
  display:none;
}

.mw-accordion-faq-skin-button {
  height: 30px !important;
 
  border: 1px solid #EAEAE5 !important;
  border-radius: 12px;
 
  color: #333;
  font-weight: 400 !important;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.mw-accordion-faq-skin-button:hover {
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
  transform: translateY(-2px);
  background: linear-gradient(135deg, #f9f9f9, #ffffff);
}
.mw-accordion-faq-skin-button h5{
  font-size:14px !important;
  font-weight:500 !important;
  font-family: 'Poppins', sans-serif;
}


#product-inner-price{
  color:#000 !important;
}
/*WHAT'S IN THE BOX SECTION*/
.box-section{
  padding:70px 20px;
}
.box-heading{
  text-align:center;
  margin-bottom:60px;
}

.box-heading h1{
  font-size:42px;
  font-weight:600;
  color:#111;
  position:relative;
  display:inline-block;
  padding-bottom:14px;
}
.box-heading h1::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  transform:translateX(-50%);
  width:90px;
  height:5px;
  border-radius:10px;
  background:linear-gradient(90deg,#0087DD,#FAB516);
}
.box-items{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}
.box-card{
  background:rgba(255,255,255,0.85);
  border-radius:24px;
  padding:30px 20px 35px;
  text-align:center;
  box-shadow:0 20px 40px rgba(0,0,0,0.08);
  position:relative;
  transition:all 0.35s ease;
  overflow:hidden;
}

.box-card:hover{
  transform:translateY(-8px);
  box-shadow:0 30px 60px rgba(0,0,0,0.12);
}
.box-card::before{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:55%;
  background:linear-gradient(180deg,transparent,#eaf8f7);
  border-radius:0 0 24px 24px;
  z-index:0;
}

.box-card img{
  width:160px;
  height:160px;
  object-fit:contain;
  margin-bottom:25px;
  position:relative;
  z-index:1;
}
.box-card h3{
  font-size:18px;
  font-weight:500;
  color:#222;
  position:relative;
  z-index:1;
}
@media(max-width:992px){
  .box-items{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .box-heading h1{
    font-size:30px;
  }

  .box-heading h1::after{
    width:65px;
    height:4px;
  }

  .box-items{
    grid-template-columns:repeat(2,1fr);
    gap:16px;
  }

  .box-card{
    padding:22px 14px 26px;
    border-radius:18px;
  }

  .box-card img{
    width:110px;
    height:110px;
    margin-bottom:15px;
  }

  .box-card h3{
    font-size:15px;
  }
}
/* ===== END ===== */
/*QR Design*/
.ring-size-section{
  padding:60px 20px;
  max-width:1200px;
  margin:auto;
}

.ring-heading{
  text-align:center;
  margin-bottom:50px;
}

.ring-heading h2::after{
    content: "";
    width: 70px;
    height: 4px;
   
    display: block;
    margin: 10px auto 0;
}
.ring-cards{
  display:flex;
  gap:30px;
  justify-content:center;
  align-items:stretch;
  flex-wrap:wrap;
}

.ring-card{
  background:#fff;
  border-radius:18px;
  padding:30px;
  flex:1;
  min-width:320px;
  max-width:520px;
  display:flex;
  align-items:center;
  gap:25px;
  box-shadow:0 12px 35px rgba(0,0,0,0.08);
}

.ring-card h3{
  font-size:15px;
  font-weight:600;
  margin-bottom:10px;
}

.ring-card p{
  font-size:15px;
  color:#555;
  line-height:1.6;
}

.ring-image{
  width:160px;
  height:120px;
  background:#f4f4f4;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.ring-image img{
  max-width:100%;
  max-height:100%;
}

.qr-box{
  width:140px;
  height:140px;
  border-radius:14px;
  border:2px solid #eee;
  display:flex;
  align-items:center;
  justify-content:center;
}

.qr-box img{
  width:90px;
}

@media(max-width:768px){
  .ring-heading h2{
    font-size:30px;
  }

  .ring-card{
    flex-direction:column;
    text-align:center;
    padding:25px 20px;
  }

  .ring-image,
  .qr-box{
    width:160px;
    height:120px;
  }
}
/*QR Design END*/
/*Skora smart technology collections*/
.skora-section{
  padding:70px 20px;
  text-align:center;
}

.skora-section h2{
  font-size:2.3rem;
  font-weight:700;
  margin-bottom:12px;
}

.skora-section h2::after{
  content:"";
  width:70px;
  height:4px;
  background:linear-gradient(90deg,#0087DD,#FAB516);
  display:block;
  margin:10px auto 0;
}
.sub-para{
  max-width:720px;
  margin:15px auto 50px;
  font-size:15px;
  color:#555;
}
.skora-grid{
  max-width:1150px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(270px,1fr));
  gap:30px;
}
.skora-card{
  position:relative;
  height:340px; 
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 6px 18px rgba(0,0,0,0.12);
  transition:0.35s ease;
  background:#000;
}
.skora-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.5s ease;
}
.skora-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.15)
  );
}
.skora-card:hover{
  transform:translateY(-6px);
  box-shadow:0 10px 25px rgba(0,0,0,0.2);
}
.skora-card:hover img{
  transform:scale(1.04);
}
.skora-info{
  position:absolute;
  bottom:22px;
  left:22px;
  right:22px;
  color:#fff;
  z-index:2;
}

.skora-info h3{
  font-size:1.35rem;
  font-weight:600;
  margin-bottom:6px;
}

.skora-info p{
  font-size:0.9rem;
  opacity:0.9;
  margin-bottom:12px;
}

.skora-info a{
  display:inline-block;
  padding:6px 16px;
  font-size:0.8rem;
  border-radius:18px;
  color:#fff;
  background:#0087DD;
  text-decoration:none;
  transition:0.3s ease;
}

.skora-info a:hover{
  background:#FAB516;
  color:#111;
}


@media(max-width:768px){
  .skora-card{
    height:320px;
  }
  .skora-section h2{
    font-size:1.8rem;
  }
}

@media(max-width:480px){
  .skora-card{
    height:300px;
  }
}
/*Skora smart technology collections END*/
/*blog post*/
.blog-posts-19 .h-100 {
    background-color: white;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  .row.blog-posts-19 > div {
  margin-top: 20px;
  height: 440px;
  width: 320px;}

  .blog-posts-19 h6 {
    color: #555;
     font-size: 14px !important;
    font-weight: 700 !important;
  }

  .blog-posts-19 p {
    text-align: start;
    font-size: 14px !important;
    color: #555 !important;
	line-height:1.9;
  }

  .blog-posts-19 .img-as-background {
    height: 220px !important;
    width: 265px !important;
	border-radius:10px !important;
  }

  .blog-posts-19 small {
    color: #555;
    font-size: 12px !important;
  }

  .blog-posts-19 .post-19::after {
    display: none;
  }

  @media (max-width: 768px) {
    .blog-posts-19 .img-as-background {
      height: 150px !important;
      width: 263px !important;
    }
  }
/*blog post END*/
/*Review sections*/
 .jeans-reviews-section {
  padding: 50px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
  background-color:#fff !important;
}

.jeans-reviews-section h4 {
  color: #828A97;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 8px;
}

.jeans-reviews-section h2 {
  font-size: 34px;
  font-weight: 700;
  color: #1B2A41;
  margin-bottom: 50px;
}

/* Desktop Grid */
.jeans-reviews-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Card */
.jeans-review-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  min-width: 250px;
}

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

.jeans-quote {
  font-size: 32px;
  color: #FF4C3B;
  position: absolute;
  top: 15px;
  right: 20px;
  opacity: 0.15;
}

.jeans-review-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.jeans-review-header img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 12px;
  border: 3px solid #1E2D42;
}

.jeans-review-header h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 3px;
}

.jeans-review-header p {
  font-size: 13px;
  color: #777;
}

.jeans-review-text {
  font-size: 14px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 18px;
}

.jeans-review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.jeans-stars {
  color: #FFD700;
  font-size: 16px;
}

.jeans-review-date {
  font-size: 12px;
  color: #fff;
  background: #1B2A41;
  padding: 4px 10px;
  border-radius: 6px;
}

/* Tablet */
@media (max-width: 992px) {
  .jeans-reviews-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* -------- MOBILE FIX: ONE BY ONE LINE -------- */
@media (max-width: 768px) {
  .jeans-reviews-container {
    display: grid;
    grid-template-columns: 1fr; /* ONE CARD PER LINE */
    gap: 18px;
    overflow: visible;
    padding: 0 10px;
  }

  .jeans-review-card {
    width: 100%;
    min-width: unset;
  }

  .jeans-review-text {
    max-height: none;
    overflow: visible;
  }
}

/* Scrollbar (won’t appear now on mobile) */
.jeans-reviews-container::-webkit-scrollbar {
  height: 6px;
}

.jeans-reviews-container::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}
/*Review sections END*/
/*ai electrochornmuic smart glass descriptions*/
.cyan-glass-sheet {
  background: #f4f6fb;
  padding: 40px 16px;
  font-family: Arial, sans-serif;
}

.cyan-glass-wrapper {
  max-width: 1500px;
  margin: auto;
}

.cyan-glass-title h1 {
  font-size: 26px;
  text-align: center;
  font-weight: 700;
}

.cyan-glass-title h2 {
  font-size: 15px;
  text-align: center;
  margin-top: 6px;
  color: #555;
}

.cyan-glass-desc {
  text-align: center;
  margin: 20px auto 30px;
  max-width: 800px;
  font-size: 15px;
  color: #444;
}

.cyan-glass-section h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.cyan-glass-card {
  background: #fff;
  padding: 18px;
  margin-bottom: 18px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
}

.cyan-glass-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.cyan-glass-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 4px;
}

.cyan-spec-row {
  display: flex;
  justify-content: space-between;
  background: #fff;
  padding: 12px 14px;
  margin-bottom: 8px;
  border-radius: 10px;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}


@media (max-width: 768px) {
  .cyan-glass-title h1 {
    font-size: 22px;
  }

  .cyan-spec-row {
    flex-direction: column;
    gap: 4px;
  }
}
/*ai electrochornmuic smart glass descriptions END*/
/*smart ring for daily health */

.smartRing-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  background: #ffffff;
  padding: 35px 40px;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  max-width: 100%;
}


.smartRing-content h2 {
  font-size: 28px;
  font-weight: 600;
  color: #FFF;
  margin-bottom: 12px;
}



.smartRing-content p {
  color: #555;
  line-height: 1.6;
  max-width: 420px;
}


.smartRing-stats {
  display: flex;
  gap: 18px;
}

.ringStat {
  background: #f9f9f9;
  padding: 18px 22px;
  border-radius: 14px;
  text-align: center;
  min-width: 120px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.ringStat h3 {
  font-size: 22px;
  font-weight: 700;
  color: #5c3a21;
  margin-bottom: 6px;
}

.ringStat p {
  font-size: 13px;
  color: #666;
}


@media (max-width: 768px) {
  .smartRing-section {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .smartRing-content p {
    max-width: 100%;
  }

  .smartRing-stats {
    justify-content: center;
    flex-wrap: wrap;
  }

  .ringStat {
    min-width: 100px;
  }
}
/*smart ring for daily health END*/
/*Ring description img*/
.skora-ring-section {
  padding: 60px 20px;
  background: #f6f6f6;
}

.skora-ring-wrapper {
  max-width: 1500px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: center;
  background: #ffffff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}


.skora-ring-image img {
  max-width: 360px;
  width: 100%;
  border-radius: 16px;
}


.skora-ring-content h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111;
}



.skora-ring-content .intro {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 620px;
}


.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 20px;
  margin-bottom: 25px;
}

.feature-list li {
  list-style: none;
  font-size: 13px;
  color: #333;
  position: relative;
  padding-left: 18px;
}

.feature-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #5c3a21;
  font-size: 12px;
}


.skora-stats {
  display: flex;
  gap: 16px;
  margin-bottom: 25px;
}

.stat-box {
  background: #fafafa;
  padding: 16px 20px;
  border-radius: 14px;
  text-align: center;
  min-width: 130px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
}

.stat-box h3 {
  font-size: 20px;
  font-weight: 700;
  color: #5c3a21;
}

.stat-box p {
  font-size: 13px;
  color: #666;
}


.skora-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #0D093B;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 14px;
  transition: background 0.3s ease;
}
@media (max-width: 768px) {
  .skora-ring-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .skora-stats {
    justify-content: center;
    flex-wrap: wrap;
  }
}
/*Ring description img END*/
/*sHIIPING POLICY AND RETURN POLICY*/
.skora-policy {
  padding: 40px 15px;
  font-family: "Poppins", sans-serif;
}

.policy-container {
  max-width: 1800px;
  margin: auto;
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.policy-container h1 {
  text-align: center;
  font-size: 26px;
  margin-bottom: 12px;
  color: #222;
}

.policy-intro {
  text-align: center;
  font-size: 14px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.7;
}

.policy-section {
  margin-bottom: 30px;
}

.policy-section h2 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #111;
}

.policy-box {
  margin-bottom: 16px;
}

.policy-box h3 {
  font-size: 15px;
  margin-bottom: 6px;
  color: #000;
}

.policy-box p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

.policy-contact {
  border-top: 1px solid #eee;
  padding-top: 15px;
  text-align: center;
}

.policy-contact p {
  font-size: 14px;
  color: #444;
}


@media (max-width: 600px) {
  .policy-container {
    padding: 20px 15px;
  }

  .policy-container h1 {
    font-size: 22px;
  }

  .policy-section h2 {
    font-size: 18px;
  }

  .policy-box h3 {
    font-size: 14px;
  }

  .policy-box p,
  .policy-contact p {
    font-size: 13.5px;
  }
}
/*sHIIPING POLICY AND RETURN POLICY end*/
/*help center*/
.skora-help {
  padding: 40px 15px;
  font-family: "Poppins", sans-serif;
}

.help-container {
  max-width: 1500px;
  margin: auto;
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.help-container h1 {
  text-align: center;
  font-size: 26px;
  margin-bottom: 10px;
  color: #222;
}

.help-intro {
  text-align: center;
  font-size: 14px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.7;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.help-box {
  padding: 18px;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fafafa;
}

.help-box h3 {
  font-size: 16px;
  margin-bottom: 6px;
  color: #111;
}

.help-box p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.help-contact {
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid #eee;
  text-align: center;
}

.help-contact p {
  font-size: 14px;
  color: #444;
  line-height: 1.7;
}


@media (max-width: 600px) {
  .help-container {
    padding: 20px 15px;
  }

  .help-container h1 {
    font-size: 22px;
  }

  .help-grid {
    grid-template-columns: 1fr;
  }

  .help-box h3 {
    font-size: 15px;
  }

  .help-box p,
  .help-contact p {
    font-size: 13.5px;
  }
}
/*help center END*/
/*Store location*/
.skora-store {
  padding: 40px 15px;
  background: #f5f5f5;
  font-family: "Poppins", sans-serif;
}

.store-container {
  max-width: 1500px;
  margin: auto;
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.store-container h1 {
  font-size: 26px;
  margin-bottom: 10px;
  color: #222;
}

.store-intro {
  font-size: 14px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.7;
}

.store-card {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 25px 20px;
  background: #fafafa;
}

.store-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #111;
}

.store-address {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.store-details p {
  font-size: 14px;
  color: #444;
  margin-bottom: 6px;
}

.store-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 22px;
  font-size: 14px;
  color: #fff;
  background: #0087DD;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
}

@media (max-width: 600px) {
  .store-container {
    padding: 20px 15px;
  }

  .store-container h1 {
    font-size: 22px;
  }

  .store-card h3 {
    font-size: 16px;
  }

  .store-address,
  .store-details p {
    font-size: 13.5px;
  }

  .store-btn {
    width: 100%;
    padding: 12px;
  }
}
/*Store location END*/
/*Conatct info*/
.skora-contact-info {
  padding: 40px 15px;
  background: #f5f5f5;
  font-family: "Poppins", sans-serif;
}

.info-container {
  max-width: 420px; 
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.info-container h2 {
  font-size: 24px;
  margin-bottom: 6px;
  color: #111;
}

.info-intro {
  font-size: 14px;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.7;
}

.info-box {
  margin-bottom: 18px;
}

.info-box h4 {
  font-size: 13px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 4px;
}

.info-box p {
  font-size: 14px;
  color: #222;
  line-height: 1.7;
}


@media (max-width: 600px) {
  .info-container {
    max-width: 100%;
    padding: 22px 18px;
  }

  .info-container h2 {
    font-size: 20px;
  }

  .info-box p {
    font-size: 13.5px;
  }
}
/*Conatct info END*/
/*User Guide*/
.skora-user-guide {
  padding: 40px 15px;
  background: #f5f5f5;
  font-family: "Poppins", sans-serif;
}

.guide-container {
  max-width: 1500px;
  background: #ffffff;
  margin: auto;
  padding: 30px 25px;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.guide-container h1 {
  font-size: 26px;
  color: #111;
  margin-bottom: 8px;
}

.guide-intro {
  font-size: 14px;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.7;
}

.guide-box {
  margin-bottom: 18px;
}

.guide-box h3 {
  font-size: 16px;
  color: #111;
  margin-bottom: 6px;
}

.guide-box p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

.guide-note {
  margin-top: 25px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.guide-note p {
  font-size: 14px;
  color: #444;
}


@media (max-width: 600px) {
  .guide-container {
    padding: 22px 18px;
  }

  .guide-container h1 {
    font-size: 22px;
  }

  .guide-box h3 {
    font-size: 15px;
  }

  .guide-box p,
  .guide-note p {
    font-size: 13.5px;
  }
}
/*User Guide END*/
/*Our Tenchnology*/
.skora-technology {
  padding: 50px 15px;
  background: #f5f5f5;
  font-family: "Poppins", sans-serif;
}

.tech-container {
  max-width: 1500px;
  background: #ffffff;
  margin: auto;
  padding: 35px 30px;
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.tech-container h1 {
  font-size: 28px;
  color: #111;
  margin-bottom: 8px;
}

.tech-intro {
  font-size: 14px;
  color: #555;
  margin-bottom: 28px;
  line-height: 1.8;
}

.tech-box {
  margin-bottom: 20px;
}

.tech-box h3 {
  font-size: 17px;
  color: #111;
  margin-bottom: 6px;
}

.tech-box p {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
}

.tech-note {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid #eee;
}

.tech-note p {
  font-size: 14px;
  color: #444;
  font-style: italic;
}


@media (max-width: 600px) {
  .tech-container {
    padding: 24px 18px;
  }

  .tech-container h1 {
    font-size: 22px;
  }

  .tech-box h3 {
    font-size: 15.5px;
  }

  .tech-box p,
  .tech-note p {
    font-size: 13.5px;
  }
}
/*Our Tenchnology END*/
/*careers section*/
.skora-careers {
  padding: 50px 15px;
  background: #f5f5f5;
  font-family: "Poppins", sans-serif;
}

.careers-container {
  max-width: 1500px;
  background: #ffffff;
  margin: auto;
  padding: 35px 30px;
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.careers-container h1 {
  font-size: 28px;
  color: #111;
  margin-bottom: 8px;
}

.careers-intro {
  font-size: 14px;
  color: #555;
  margin-bottom: 28px;
  line-height: 1.8;
}

.career-box {
  margin-bottom: 20px;
}

.career-box h3 {
  font-size: 17px;
  color: #111;
  margin-bottom: 6px;
}

.career-box p {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
}

.career-note {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid #eee;
}

.career-note p {
  font-size: 14px;
  color: #444;
  font-style: italic;
}


@media (max-width: 600px) {
  .careers-container {
    padding: 24px 18px;
  }

  .careers-container h1 {
    font-size: 22px;
  }

  .career-box h3 {
    font-size: 15.5px;
  }

  .career-box p,
  .career-note p {
    font-size: 13.5px;
  }
}
/*careers section END*/
/*About us Section*/
.skoraAboutSection{
  max-width:1100px;
  margin:40px auto;
  padding:30px;
}


.skoraAboutTitle{
  text-align:center;
  font-size:28px;
  font-weight:600;
  color:#0a2540;
  margin-bottom:10px;
  position:relative;
}


.skoraAboutTitle:after{
  content:"";
  width:120px;
  height:4px;
  background:#1a365d;
  display:block;
  margin:10px auto 20px;
  border-radius:5px;
}


.skoraAboutBox{
  background:white;
  padding:25px;
  border-radius:12px;
  box-shadow:0px 4px 15px rgba(0,0,0,0.08);
  line-height:1.7;
  color:#333;
  font-size:16px;
}


@media(max-width:768px){
  .skoraAboutSection{
    padding:15px;
  }

  .skoraAboutTitle{
    font-size:22px;
  }

  .skoraAboutBox{
    font-size:15px;
    padding:20px;
  }
}
/*About us Section END*/