/* ================= HERO ================= */

.service-hero{
    padding:80px 0;
    background:#fff;
}

.service-hero-wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}
img{
        width: 128%;
}

/* LEFT */
.service-left{
    flex:1;
}

.breadcrumb{
    font-size:14px;
    color:#777;
    margin-bottom:15px;
}

.service-left h1{
    font-size:44px;
    line-height:1.2;
    margin-bottom:20px;
    font-weight:700;
}

.sub-text{
    font-size:16px;
    color:#555;
    margin-bottom:25px;
}

/* FEATURES */
.features{
    list-style:none;
    padding:0;
    margin-bottom:25px;
}

.features li{
    margin-bottom:10px;
    font-size:15px;
    position:relative;
    padding-left:25px;
}

.features li::before{
    content:"✔";
    position:absolute;
    left:0;
    color:#1ca244;
}

/* BUTTONS */
.hero-buttons{
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: nowrap;   /* ❗ wrap band */
}
/* equal height + clean look */
.hero-buttons a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.hero-buttons a{
    min-width: 275px;
    text-align: center;
}
.btn-primary{
    background:#1ca244;
    color:#fff;
    padding:12px 22px;
    border-radius:6px;
    text-decoration:none;
}

.btn-outline{
    border:1px solid #1ca244;
    color:#1ca244;
    padding:12px 22px;
    border-radius:6px;
    text-decoration:none;
}

.note{
    font-size:14px;
    color:#666;
}

.note span{
    color:#1ca244;
    font-weight:600;
}

/* RIGHT */
.service-right{
    flex:1;
    display:flex;
    justify-content:center;
}

.image-card{
    position:relative;
    border-radius:20px;
    overflow:hidden;
}

.hero-video{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:20px;
}

/* Optional: card styling maintain */
.image-card{
    position:relative;
    overflow:hidden;
    border-radius:20px;
}

/* LEFT → RIGHT ROTATION */
@keyframes rotateLR {
    from{
        transform: rotateY(0deg);
    }
    to{
        transform: rotateY(360deg);
    }
}

/* RATING BOX */
.rating-box{
    position:absolute;
    bottom:15px;
    left:15px;
    background:#fff;
    padding:10px 15px;
    border-radius:8px;
    font-size:14px;
    display:flex;
    align-items:center;
    gap:10px;
}

.divider{
    width:1px;
    height:15px;
    background:#ccc;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px){

    .service-hero-wrap{
        flex-direction:column;
        text-align:center;
    }

    .hero-buttons{
        justify-content:center;
        flex-wrap:wrap;
    }

    .service-left h1{
        font-size:32px;
    }

    .image-card{
        max-width:400px;
    }
}

@media (max-width: 576px){

    .service-left h1{
        font-size:26px;
    }

    .sub-text{
        font-size:14px;
    }

    .features li{
        font-size:14px;
    }

    .rating-box{
        font-size:12px;
    }
}



.info-strip {
  background: #f5f6f8;
  padding: 25px 0;
}

.info-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.icon {
  font-size: 26px;
  color: #1ca244;
}

.label {
  font-size: 14px;
  color: #777;
  margin-bottom: 3px;
}

.info-item h4 {
  font-size: 18px;
  margin: 0;
  color: #222;
}

.divider {
  width: 1px;
  height: 40px;
  background: #ddd;
}

@media (max-width: 768px) {
  .info-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .divider {
    display: none;
  }
}


/* ================= WHY SECTION ================= */

.why-section {
    padding: 80px 0;
    background: #f7f9fc;
}

.why-wrap {
    display: flex;
    gap: 40px;
}

/* LEFT */
.why-left {
    flex: 2;
}

.why-left h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

/* GRID */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* CARD */
.why-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.why-card:hover {
    transform: translateY(-5px);
}

.why-card .icon {
    font-size: 30px;
    margin-bottom: 10px;
}

.why-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: #666;
}

/* RATINGS */
.ratings {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.rate-box {
    background: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

/* RIGHT FORM */
.why-right {
    flex: 1;
}

.form-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    position: sticky;
    top: 100px;
}

.form-card h3 {
    margin-bottom: 20px;
}

/* COUNTDOWN */
.countdown {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.countdown div {
    text-align: center;
}

.countdown span {
    font-size: 18px;
    font-weight: bold;
    display: block;
}

/* FORM */
.lead-form input,
.lead-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.checkbox {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.lead-form button {
    width: 100%;
    padding: 12px;
    background: #1ca244;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .why-wrap {
        flex-direction: column;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .form-card {
        position: static;
    }
}



/* ================= ADVANTAGE SECTION ================= */

.advantage-section {
    padding: 80px 0;
    background: #f7f9fc;
}

/* HEAD */
.adv-head {
    text-align: center;
    max-width: 700px;
    margin: auto;
    margin-bottom: 50px;
}

.adv-head h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.adv-head p {
    color: #666;
}

/* TOP */
.adv-top {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

/* CARDS */
.adv-card {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    position: relative;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

/* CERTIFICATE */
.certificate-card {
   
    padding: 30px;
    text-align: center;
}

.certificate-card img {
    width: 100%;
    border-radius: 8px;
    background: #fff;
}

.certificate-card span {
    display: block;
    margin-top: 15px;
    color: #000;
    font-weight: 500;
}

/* META */
.meta-card ul {
    margin-bottom: 20px;
}

.meta-card li {
    margin-bottom: 10px;
    font-size: 14px;
}

.meta-box {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    margin-bottom: 10px;
}

.meta-box img {
    max-width: 100%;
}

.meta-text {
    text-align: center;
    font-size: 13px;
    color: #777;
}

/* BOTTOM */
.adv-bottom {
    display: flex;
    gap: 40px;
}

.adv-col {
    flex: 1;
}

.adv-col h3 {
    margin-bottom: 15px;
}

.adv-col ul li {
    margin-bottom: 10px;
    font-size: 14px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

    .adv-top {
        flex-direction: column;
    }

    .adv-bottom {
        flex-direction: column;
    }
}


/* ================= TOOLS SECTION ================= */

.tools-section {
    padding: 80px 0;
    background: #f7f9fc;
    text-align: center;
}

.tools-head h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

/* GRID */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    align-items: center;
}

/* LOGOS */
.tools-grid img {
    max-width: 120px;
    margin: auto;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: 0.3s;
}

.tools-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .tools-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* SECTION */
.testimonial-section {
    padding: 80px 0;
    background: #f9fbfc;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
}

/* SLIDER */
.testimonial-slider {
    position: relative;
    overflow: hidden;
}

/* TRACK */
.testimonial-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

/* CARD */
.testimonial-card {
    min-width: calc(33.333% - 14px);
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

/* TEXT */
.review {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* USER */
.user h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.user span {
    font-size: 13px;
    color: #888;
}

/* ARROWS */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    font-size: 20px;
    z-index: 10;
    transition: 0.3s;
}

.arrow:hover {
    background: #1ca244;
    color: #fff;
}

.arrow.left {
    left: -20px;
}

.arrow.right {
    right: -20px;
}

/* TABLET */
@media (max-width: 992px) {
    .testimonial-card {
        min-width: calc(50% - 10px);
    }

    .arrow.left {
        left: 5px;
    }

    .arrow.right {
        right: 5px;
    }
}

/* MOBILE */
@media (max-width: 576px) {
    .testimonial-card {
        min-width: 100%;
    }

    .arrow {
        width: 38px;
        height: 38px;
    }
}

.faq-section {
    padding: 80px 20px;
    background: #f9fbff;
}

.faq-head {
    text-align: center;
    margin-bottom: 40px;
}

.faq-head h2 {
    font-size: 32px;
    font-weight: 700;
}

.faq-head p {
    color: #666;
    margin-top: 10px;
}

/* FAQ ITEMS */
.faq-wrap {
    max-width: 800px;
    margin: auto;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 18px 20px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question span {
    font-size: 20px;
    transition: 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    color: #555;
    transition: all 0.4s ease;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 15px 20px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

/* RESPONSIVE */
@media(max-width:768px){
    .faq-head h2 {
        font-size: 24px;
    }
}


/* ================= VAPT MODULES ================= */

.vapt-modules{
    padding:80px 0;
    background:#f8f9fb;
}

/* HEADING */
.module-head{
    text-align:center;
    max-width:700px;
    margin:0 auto 50px;
}

.module-head h2{
    font-size:32px;
    font-weight:700;
    margin-bottom:15px;
}

.module-head p{
    color:#666;
    font-size:16px;
    line-height:1.6;
}

/* GRID */
.module-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

/* CARD */
.module-card{
    background:#fff;
    padding:30px 20px;
    border-radius:16px;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
    transition:0.3s ease;
    position:relative;
    overflow:hidden;
}

/* NUMBER */
.module-card span{
    font-size:40px;
    font-weight:700;
    color:#e6e6e6;
    display:block;
    margin-bottom:10px;
}

/* TITLE */
.module-card h3{
    font-size:16px;
    font-weight:600;
    color:#222;
}

/* HOVER EFFECT */
.module-card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

/* LEFT BORDER ANIMATION */
.module-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    height:0%;
    width:4px;
    background:#1ca244;
    transition:0.3s;
}

.module-card:hover::before{
    height:100%;
}


/* TABLET */
@media(max-width:992px){
    .module-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* MOBILE */
@media(max-width:576px){
    .module-grid{
        grid-template-columns:1fr;
    }
}


.service-hero {
    padding: 80px 0;
    background: #ffffff;
    margin-top: -55px;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .service-hero {
        margin-top: 0;
    }
}