:root {
  --page-bg: #ffffff;
  --card-bg: #f6f6f6;
  --text-main: #0d0d0d;
  --border-color: #e5e5e5;
  --radius: 16px;
  --padding: 24px;
  --transition: 0.22s ease-out;
}



*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: system-ui, sans-serif;
    font-weight: 500;
}

 a{ text-decoration: none; }

.zoho-title-text{
    font-size: 36px;
    font-weight: 700;
    padding-bottom: 18px;
    color: #074574;
     margin-bottom: 10px;
}

p{
    color: #777;
    font-size: 16px;
    font-weight: 500;
    font-family: system-ui;
}


/* header section start */

   /* logo sizes */
.logokelevo {
    width: 110px;
}

.zoho-p {
    width: 200px;
}

.cta-btn {
    background: #ffc107;
    color: #000;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    transition: 0.3s;
    white-space: nowrap;
}

.cta-btn:hover {
    background: #ffb300;
}

/* header section end */

/* banner section start */
.hero-section {
    background: 
        linear-gradient(rgba(95,95,95,0.8), rgba(95,95,95,0.8)),
        url(../img/Rectangle-48.webp);
        
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px 0 120px 0;
}

.hero-title {
    font-size: 55px;
    font-weight: 800;
    color: #ffffff;
}

.hero-text {
    color: #e0e0e0;
    font-size: 17px;
    margin-top: 20px;
    max-width: 550px;
}

/* FORM CARD */
.form-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.form-card h4 {
    font-weight: 700;
    margin-bottom: 20px;
}

.form-control {
    background: #f1f1f1;
    border: 1px solid #f1f1f1;
    padding: 7px 10px;
    margin-bottom: 15px;
    border-radius: 6px;
    font-size: 14px;
    color: #000;
    font-weight: 500;
}

.form-control::placeholder{
    font-size: 14px;
    color: #777;
    font-weight: 500;
}

.form-control:focus {
    box-shadow: none;
    border: 1px solid #ddd;
}

.submit-btn {
    background: #074574;
    color: #fff;
    padding: 12px;
    border-radius: 6px;
    border: none;
    width: 100%;
    font-weight: 600;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #226db4;
}

.zoho-badge {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.zoho-badge img {
    max-height: 40px;
}

/* banner section end */


/* marquee css start */

.marquee-section {
    padding: 40px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: calc(200%);
    animation: scroll 20s linear infinite;
    align-items: center;
}

.marquee-item {
    flex: 0 0 auto;
    width: 130px;
    margin: 0 20px;
}

.marquee-item img {
    width: 110px;
    height: auto;
    transition: 0.3s;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.marquee-section:hover .marquee-track {
    animation-play-state: paused;
}

.mque_mrgin{
    background: #fff;
    padding: 0 30px ;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-top: -120px;
}

/* marquee css end */

/* Services section start */

.services-section {
    padding: 60px 0;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: 0.3s;
    height: 100%;
    box-shadow: 0 0px 8px rgba(0,0,0,0.1);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0px 15px rgba(0,0,0,0.8);
}

.service-icon img{
    width: 64px;
    margin-bottom: 15px;
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    color: #074574;
    margin-bottom: 10px;
}

.service-text {
    font-size: 17px;
    color: #777;
    line-height: 1.6;
    font-family: system-ui;
}

/* Services section end */

/* Ready section start */
.cta-section {
    padding: 40px 0;
}

.cta-box {
    background: linear-gradient(90deg, #074574, #4da4f7);
    border-radius: 8px;
    padding: 20px 40px;
    color: #fff;
    height: 200px;
}

.cta-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

/* Ready section end */
  

/* Proven section start */
.stats-section {
  padding: 60px 0;
}
.desktop-grid {
  display: flex;
  gap: 15px;
}

.desktop-grid .stat-card {
  flex: 1; 
}


.stat-card {
  background: #f5f5f5;
  border-radius: 12px;
  padding: 25px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 100%;
  min-height: 280px;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: url('https://www.transparenttextures.com/patterns/circuit-board.png');
  opacity: 0.08;
}

.stat-number {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
}

.stat-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #074574;
}

.stat-text {
  font-size: 14px;
  color: #6c757d;
}

.card-bottom {
  margin-top: auto;
}

.divider {
  border-top: 1px dotted #bbb;
  margin: 15px 0;
}

.stat-value {
  font-size: 32px;
  font-weight: 800;
}

/* Proven section end */

/* industry section start */

.industry-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px 10px;
  text-align: center;
  transition: 0.3s;
  height: 100%;
  border: 1px solid #eee;
  width: 100%;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.industry-icon {
  font-size: 28px;
  margin-bottom: 10px;
  color: #074574;
}

.pclor{
  color: #074574;
}


/* responsive spacing */
.row.g-4 > div {
  display: flex;
}

/* industry section end */

/* testimonials start */

.section-title {
    text-align: center;
    font-weight: 700;
}

.section-title span {
    text-decoration: underline;
}
.testimonial-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    position: relative;
    margin: 10px;
}
.testimonial-logo {
    width: 120px !important;
    margin-bottom: 15px;
}
.testimonial-text {
    font-size: 15px;
    color: #333;
    line-height: 1.7;
}
.testimonial-slider .owl-nav button {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background: transparent !important;
    font-size: 30px !important;
}
.testimonial-slider .owl-nav .owl-prev {
    left: -40px;
}
.testimonial-slider .owl-nav .owl-next {
    right: -40px;
}

/* testimonials end */


/* certificate section start */

.cert-slider .owl-stage {
  display: flex;
}
.cert-slider .item {
  display: flex;
  height: 100%;
}
.cert-card {
  background: #fff;
 
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  width: 100%;
 
}

.cert-card p {
  margin-top: auto;
}

.cert-title {
  margin-bottom: 10px;
}
.cert-badge img {
  width: 60px !important;
}
.cert-title {
  font-weight: 600;
  font-size: 16px;
}
.owl-dots {
  text-align: center;
  margin-top: 20px;
  
}
.owl-dot span {
  width: 10px;
  height: 10px;
  background: #ccc !important;
  display: block;
  border-radius: 50%;
  margin-right: 3px;
}

.owl-dot.active span {
  background: #074574 !important;
}
/* certificate section end */

/* faq-section start */


.faq-section {
  padding: 60px 0px;
}


.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}


.faq-item {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid transparent;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: border-color var(--transition), background-color var(--transition);
}


.faq-item.is-open {
  border-color: var(--border-color);
}


.faq-header {
  width: 100%;
  padding: var(--padding);
  border: none;
  outline: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  text-align: left;
}

.faq-header:hover {
  background: rgba(0, 0, 0, 0.02);
}

.faq-header:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.faq-question {
  flex: 1;
}


.faq-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}


.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 2px;
  background: var(--text-main);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}


.faq-icon::before {
  transform: translate(-50%, -50%);
}


.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}


.faq-item.is-open .faq-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.faq-item.is-open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}


.faq-body {
  padding: 0 var(--padding);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition), padding-bottom var(--transition),
    padding-top var(--transition);
  will-change: max-height;
  color: var(--text-main);
}

.faq-item.is-open .faq-body {
  padding-top: 0;
  padding-bottom: var(--padding);
}


.faq-body p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-main);
 
}

/* faq-section end */

/* map section start */



/* title */
.section-title {
  font-weight: 700;
}

/* tabs */
.nav-tabs .nav-link {
  border: none;
  color: #555;
  font-weight: 700;
  font-size: 16px;
}

.nav-tabs .nav-link.active {
  color: #074574 !important;
  border-bottom: 2px solid #074574 !important;
}

/* office box */
.office-box {
  margin-top: 30px;
}

.icon-box {
  width: 40px;
  height: 40px;
  background: #e9ecef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.map-box{
  padding: 10px;
  border-radius: 10px;
  border: 2px solid #ccc;
}

.map-box iframe {
  width: 100%;
  height: 250px;
  border-radius: 10px;
  border: none;
}
/* map section end */

/* footer setion start */
.footer-section {
  background: #074574;
  color: #ccc;
  padding: 15px 0;
  font-size: 16px;
}
/* footer setion end */

/* resposive css  */

 @media (max-width: 991px) {
    .hero-title {
        font-size: 36px;
        text-align: center;
    }

    .hero-text {
        text-align: center;
        margin: 20px auto;
    }

    .form-card {
        margin-top: 30px;
    }
    .stat-card {
        width: 100% !important;
    }
    }

 @media (max-width: 768px) {
    .cta-box {
      text-align: center;
      min-height: 255px;
    }

    .cta-title {
      font-size: 18px;
      margin-bottom: 10px;
    }

    .marquee-item {
        width: 100px;
        margin: 0 10px;
    }
    .testimonial-slider .owl-nav .owl-prev {
        left: -10px;
    }
    .testimonial-slider .owl-nav .owl-next {
        right: -10px;
    }
    .testimonial-card {
        padding: 20px;
    }
  }

  @media (max-width: 640px) {
  .faq-section {
    padding: 40px 12px 56px;
  }

  .faq-header {
    padding: 20px;
    font-size: 15px;
  }

  .faq-body {
    padding: 0 20px;
  }

  .faq-item.is-open .faq-body {
    padding-bottom: 20px;
  }
}

/* MOBILE FIX */
@media (max-width: 576px) {

  .logokelevo {
    width: 90px;
  }

  .zoho-p {
    width: 50px;
  }

}