   /* =========================
   KV Highlight Section
========================= */

.kv-highlight-section {
    padding: 60px 15px;
}

.kv-highlight-box {
    max-width: 1100px;
    margin: auto;
    padding: 40px 50px;
    text-align: center;
    border-radius: 24px;
    position: relative;
    overflow: hidden;

    background: linear-gradient(
        135deg,
        #0a2b5c 0%,
        #14407e 50%,
        #0a2b5c 100%
    );

    box-shadow:
        0 20px 50px rgba(0,0,0,0.18),
        0 10px 25px rgba(7,124,234,0.15);

    transition: all .4s ease;
}

/* Decorative Shapes */
.kv-highlight-box::before,
.kv-highlight-box::after {
    content: "";
    position: absolute;
    background: rgba(255,255,255,0.05);
    transform: rotate(35deg);
    transition: .5s;
}

.kv-highlight-box::before {
    width: 250px;
    height: 250px;
    top: -120px;
    left: 20%;
}

.kv-highlight-box::after {
    width: 220px;
    height: 220px;
    bottom: -120px;
    right: 15%;
}

/* Hover Effect */
.kv-highlight-box:hover {
    transform: translateY(-8px);
    box-shadow:
        0 30px 70px rgba(0,0,0,0.25),
        0 15px 40px rgba(7,124,234,0.25);
}

.kv-highlight-box:hover::before {
    left: 25%;
}

.kv-highlight-box:hover::after {
    right: 20%;
}

.kv-highlight-box .sub-tit {
    margin: 0;
    color: #fff;
    font-size: 22px;
    line-height: 1.5;
    font-weight: 700;
    position: relative;
    z-index: 2;

    text-shadow:
        0 3px 10px rgba(0,0,0,0.25);
}

/* Tablet */
@media (max-width: 991px) {
    .kv-highlight-box {
        padding: 35px 30px;
    }

    .kv-highlight-box .sub-tit {
        font-size: 15px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .kv-highlight-section {
        padding: 40px 15px;
    }

    .kv-highlight-box {
        padding: 25px 20px;
        border-radius: 18px;
    }

    .kv-highlight-box.sub-tit {
        font-size: 15px;
        line-height: 1.6;
    }
}
   .tj-about-btn{text-align:center;}
    .impact-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.impact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.impact-number {
    min-width: 90px;
    background: linear-gradient(135deg, #0d6efd, #00bfff);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(13,110,253,.2);
}

.impact-text {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

@media(max-width:767px){
    .impact-item{
        align-items:flex-start;
    }

    .impact-number{
        min-width:75px;
        font-size:18px;
        padding:8px 12px;
    }

    .impact-text{
        font-size:16px;
    }
}
/* =========================
   ABOUT BADGES
========================= */

.about-trust-badges{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
    margin:30px 0;
    align-items:center;
}

.about-badge{
    background:#fff;
    border:1px solid #eaf2ff;
    border-radius:15px;
    padding:15px;
    text-align:center;
    transition:.3s ease;
    box-shadow:0 5px 15px rgba(0,0,0,.05);
}

.about-badge:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 30px rgba(7,124,234,.15);
}

.about-badge img{
    width:100%;
    max-width:50%;
    height:auto;
    object-fit:contain;
}

/* Tablet */

@media(max-width:991px){

    .about-trust-badges{
        grid-template-columns:repeat(2,1fr);
    }
}

/* Mobile */

@media(max-width:767px){

    .about-trust-badges{
        grid-template-columns:repeat(2,1fr);
        gap:10px;
        margin:25px 0;
    }

    .about-badge{
        padding:12px;
    }

    .about-badge img{
        max-width:70px;
    }
}
   .services-btn-wrap{
    text-align:center;
    margin-top:20px;
}

.services-view-more-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:16px 35px;
    background:linear-gradient(135deg,#077CEA,#0456A6);
    color:#fff;
    font-size:16px;
    font-weight:600;
    text-decoration:none;
    border-radius:50px;
    transition:all .3s ease;
    box-shadow:0 10px 25px rgba(7,124,234,.25);
}

.services-view-more-btn span{
    transition:all .3s ease;
}

.services-view-more-btn:hover{
    transform:translateY(-4px);
    color:#fff;
    box-shadow:0 18px 35px rgba(7,124,234,.35);
}

.services-view-more-btn:hover span{
    transform:translateX(5px);
}

@media(max-width:767px){
    .services-view-more-btn{
        width:100%;
        justify-content:center;
        padding:15px 20px;
        font-size:15px;
    }
}
  .industry-section{
    padding:80px 0;
    background:#ffff;
}

.industry-header{
    text-align:center;
    max-width:800px;
    margin:0 auto 50px;
}

.industry-header span{
    display:inline-block;
    padding:8px 20px;
    background:#077CEA;
    color:#fff;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.industry-header h2{
    font-size:32px;
    margin-bottom:15px;
    color:#1a1a1a;
    font-weight:700;
}

.industry-header p{
    color:#666;
    font-size:18px;
    line-height:1.8;
}

.industry-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.industry-item{
    background:#dcf0ff;
    border:2px solid #e8f2ff;
    border-radius:16px;
    padding:22px 15px;
    text-align:center;
    font-size:16px;
    font-weight:600;
    color:#333;
    transition:.35s ease;
    cursor:pointer;
}

.industry-item:hover{
    background:#077CEA;
    color:#fff;
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(7,124,234,.25);
    border-color:#077CEA;
}

@media(max-width:991px){

    .industry-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .industry-header h2{
        font-size:34px;
    }
}

@media(max-width:767px){

    .industry-section{
        padding:60px 0;
    }

    .industry-grid{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
    }

    .industry-item{
        padding:18px 12px;
        font-size:14px;
    }

    .industry-header h2{
        font-size:28px;
    }

    .industry-header p{
        font-size:16px;
    }
}
  /* ===========================
   WHY CHOOSE KV CLEANING
=========================== */

.why-kv-section{
    padding:90px 0;
    background:#dcf0ff;
}

.why-kv-header{
    text-align:center;
    max-width:850px;
    margin:0 auto 50px;
}

.why-tag{
    display:inline-block;
    padding:8px 22px;
    background:#077CEA;
    color:#fff;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.why-kv-header h2{
    font-size:32px;
    font-weight:700;
    color:#1f2937;
    margin-bottom:15px;
}

.why-kv-header p{
    font-size:18px;
    line-height:1.8;
    color:#666;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    max-width:1100px;
    margin:auto;
}

.why-card{
    position:relative;
    background:#fff;
    padding:22px 25px 22px 65px;
    border-radius:16px;
    border:1px solid #e5eef9;
    font-size:18px;
    font-weight:600;
    color:#333;
    transition:.35s ease;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.why-card::before{
    content:"✓";
    position:absolute;
    left:22px;
    top:50%;
    transform:translateY(-50%);
    width:28px;
    height:28px;
    border-radius:50%;
    background:#077CEA;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
}

.why-card:hover{
    transform:translateY(-6px);
    background:#077CEA;
    color:#fff;
    box-shadow:0 15px 35px rgba(7,124,234,.25);
}

.why-card:hover::before{
    background:#fff;
    color:#077CEA;
}

.why-bottom-text{
    max-width:850px;
    margin:50px auto 0;
    text-align:center;
    font-size:18px;
    line-height:1.8;
    color:#555;
    font-weight:500;
}

/* Tablet */
@media(max-width:991px){

    .why-grid{
        grid-template-columns:1fr;
    }

    .why-kv-header h2{
        font-size:34px;
    }
}

/* Mobile */
@media(max-width:767px){

    .why-kv-section{
        padding:60px 0;
    }

    .why-kv-header h2{
        font-size:28px;
    }

    .why-kv-header p{
        font-size:16px;
    }

    .why-card{
        font-size:15px;
        padding:18px 15px 18px 55px;
    }

    .why-bottom-text{
        font-size:16px;
    }
}
   /* =========================
   SERVICE AREA SECTION
========================= */

.service-area-section{
    padding:90px 0;
    background:#ffff;
}

.service-area-wrapper{
    display:flex;
    align-items:center;
    gap:60px;
}

.service-area-image{
    flex:1;
}

.service-area-image img{
    width:100%;
    border-radius:20px;
    display:block;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.service-area-content{
    flex:1;
}

.section-tag{
    display:inline-block;
    background:#077CEA;
    color:#fff;
    padding:8px 20px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.service-area-content h2{
    font-size:32px;
    line-height:1.3;
    margin-bottom:20px;
    color:#1f2937;
    font-weight:700;
}

.service-area-content p{
    font-size:17px;
    line-height:1.8;
    color:#666;
    margin-bottom:30px;
}

/* Location Grid */

.location-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:12px;
}

.location-box{
    background:#fff;
    border:1px solid #e6eef9;
    border-radius:12px;
    height:55px;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;
    font-size:15px;
    font-weight:600;
    color:#333;

    transition:.3s;
    cursor:pointer;
}

.location-box:hover{
    background:#077CEA;
    color:#fff;
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(7,124,234,.25);
}

/* Bottom Box */

.area-note{
    margin-top:25px;
    padding:20px;
    background:#fff;
    border-radius:15px;
    border-left:4px solid #077CEA;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
    color:#555;
    line-height:1.8;
}

/* Tablet */

@media(max-width:991px){

    .service-area-wrapper{
        flex-direction:column;
    }

    .service-area-content h2{
        font-size:34px;
    }
}

/* Mobile */

@media(max-width:767px){

    .service-area-section{
        padding:60px 0;
    }

    .service-area-content h2{
        font-size:28px;
    }

    .service-area-content p{
        font-size:16px;
    }

    .location-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .location-box{
        height:50px;
        font-size:14px;
    }

    .area-note{
        font-size:15px;
    }
}
  /* =====================
   PROCESS SECTION
===================== */

.process-section{
    padding:90px 0;
    background:#dcf0ff;
}

.process-heading{
    text-align:center;
    max-width:800px;
    margin:0 auto 60px;
}

.process-tag{
    display:inline-block;
    background:#077CEA;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.process-heading h2{
    font-size:32px;
    font-weight:700;
    color:#1f2937;
    margin-bottom:15px;
}

.process-heading p{
    color:#666;
    font-size:18px;
    line-height:1.8;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.process-card{
    position:relative;
    background:#fff;
    padding:35px 25px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.35s ease;
    border:1px solid #edf2f7;
}

.process-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(7,124,234,.15);
}

.step-number{
    width:70px;
    height:70px;
    margin:0 auto 20px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    background:#077CEA;
    color:#fff;
    font-size:24px;
    font-weight:700;
}

.process-card h3{
    font-size:20px;
    color:#222;
    margin:0;
    line-height:1.5;
    font-weight:600;
}

/* Tablet */

@media(max-width:991px){

    .process-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .process-heading h2{
        font-size:34px;
    }
}

/* Mobile */

@media(max-width:767px){

    .process-section{
        padding:60px 0;
    }

    .process-grid{
        grid-template-columns:1fr;
    }

    .process-heading h2{
        font-size:28px;
    }

    .process-heading p{
        font-size:16px;
    }

    .process-card{
        padding:25px 20px;
    }

    .step-number{
        width:60px;
        height:60px;
        font-size:20px;
    }

    .process-card h3{
        font-size:18px;
    }
}
    .business-benefits{
    padding:90px 0;
    background:#ffff;
}

.benefits-title{
    text-align:center;
    max-width:800px;
    margin:0 auto 60px;
}

.benefits-title span{
    display:inline-block;
    padding:8px 20px;
    background:#077CEA;
    color:#fff;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
    margin-bottom:15px;
}

.benefits-title h2{
    font-size:32px;
    font-weight:700;
    margin-bottom:15px;
    color:#1f2937;
}

.benefits-title p{
    font-size:18px;
    color:#666;
    line-height:1.8;
}

.benefits-wrapper{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.benefit-item{
    background:#fff;
    border-radius:15px;
    padding:25px;
    display:flex;
    align-items:center;
    gap:20px;
    border-left:5px solid #077CEA;
    transition:.35s ease;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.benefit-item:hover{
    transform:translateX(8px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.number{
    min-width:60px;
    height:60px;
    background:#077CEA;
    color:#fff;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    font-weight:700;
}

.benefit-item h3{
    font-size:18px;
    margin:0;
    line-height:1.5;
    color:#222;
}

/* Tablet */

@media(max-width:991px){

    .benefits-wrapper{
        grid-template-columns:repeat(2,1fr);
    }

    .benefits-title h2{
        font-size:34px;
    }
}

/* Mobile */

@media(max-width:767px){

    .business-benefits{
        padding:60px 0;
    }

    .benefits-wrapper{
        grid-template-columns:1fr;
    }

    .benefits-title h2{
        font-size:28px;
    }

    .benefits-title p{
        font-size:16px;
    }

    .benefit-item{
        padding:18px;
        gap:15px;
    }

    .number{
        min-width:50px;
        height:50px;
        font-size:18px;
    }

    .benefit-item h3{
        font-size:16px;
    }
}
    .testimonial-section{
    padding:90px 0;
    background:#dcf0ff;
    overflow:hidden;
}

.testimonial-heading{
    text-align:center;
    max-width:800px;
    margin:0 auto 60px;
}

.section-tag{
    display:inline-block;
    background:#077CEA;
    color:#fff;
    padding:8px 20px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.testimonial-heading h2{
    font-size:32px;
    margin-bottom:15px;
    font-weight:700;
}

.testimonial-heading p{
    color:#666;
    line-height:1.8;
}

.testimonial-slider{
    overflow:hidden;
}

.testimonial-track{
    display:flex;
    gap:30px;
    width:max-content;
    animation:slideTestimonial 45s linear infinite;
}

.testimonial-card{
    width:620px;
    min-height:380px;
    background:#fff;
    padding:30px;
    border-radius:24px;
    border:1px solid #e8eef7;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    flex-shrink:0;
}

.testimonial-top{
    display:flex;
    justify-content:space-between;
    margin-bottom:20px;
}

.client-info{
    display:flex;
    gap:15px;
    align-items:center;
}

.client-info img{
    width:80px;
    height:80px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid #077CEA;
}

.client-info h4{
    margin:5px 0;
    font-size:22px;
}

.client-info span{
    font-size:14px;
    color:#666;
}

.stars{
    color:#f4b400;
    letter-spacing:2px;
}

.quote-icon{
    font-size:55px;
    color:#dbeafe;
}

.testimonial-card p{
    line-height:1.9;
    text-align:justify;
    color:#555;
    font-size:15px;
}

.slider-dots{
    display:flex;
    justify-content:center;
    gap:10px;
    margin-top:40px;
}

.slider-dots span{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#d1d5db;
    animation:dots 3s infinite;
}

.slider-dots span:nth-child(2){
    animation-delay:.4s;
}

.slider-dots span:nth-child(3){
    animation-delay:.8s;
}

.slider-dots span:nth-child(4){
    animation-delay:1.2s;
}

@keyframes slideTestimonial{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

@keyframes dots{
    0%,100%{
        background:#d1d5db;
    }
    50%{
        background:#077CEA;
    }
}

/* Tablet */

@media(max-width:991px){

    .testimonial-card{
        width:500px;
    }

    .testimonial-heading h2{
        font-size:34px;
    }
}

/* Mobile */

@media(max-width:767px){

    .testimonial-section{
        padding:60px 0;
    }

    .testimonial-heading h2{
        font-size:28px;
    }

    .testimonial-card{
        width:320px;
        padding:20px;
        min-height:auto;
    }

    .client-info img{
        width:60px;
        height:60px;
    }

    .client-info h4{
        font-size:18px;
    }

    .testimonial-card p{
        font-size:14px;
        line-height:1.8;
    }

    .quote-icon{
        font-size:35px;
    }
}
   /* ==================================
   CLIENT LOGO SECTION
================================== */

.client-logo-section{
    padding:90px 0;
    background:#ffff;
    overflow:hidden;
}

.client-logo-heading{
    text-align:center;
    max-width:850px;
    margin:0 auto 60px;
}

.section-tag{
    display:inline-block;
    background:#077CEA;
    color:#fff;
    padding:8px 20px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.client-logo-heading h2{
    font-size:32px;
    font-weight:700;
    color:#1f2937;
    margin-bottom:15px;
    line-height:1.3;
}

.client-logo-heading p{
    font-size:18px;
    line-height:1.8;
    color:#666;
}

/* Slider */

.logo-slider{
    overflow:hidden;
    position:relative;
    width:100%;
}

.logo-track{
    display:flex;
    align-items:center;
    gap:25px;
    width:max-content;
    animation:logoScroll 25s linear infinite;
}

/* Never stop on hover */

.logo-box{
    width:220px;
    height:120px;
    background:#fff;
    border-radius:18px;
    padding:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid #edf2f7;

    box-shadow:
    0 5px 20px rgba(0,0,0,.05);

    flex-shrink:0;

    transition:.35s ease;
}

.logo-box:hover{
    transform:translateY(-6px);
    border-color:#077CEA;
    box-shadow:
    0 15px 35px rgba(7,124,234,.15);
}

.logo-box img{
    width:100%;
    max-width:170px;
    max-height:70px;
    object-fit:contain;
    transition:.35s ease;
}

.logo-box:hover img{
    transform:scale(1.08);
}

/* Animation */

@keyframes logoScroll{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }
}

/* Tablet */

@media(max-width:991px){

    .client-logo-section{
        padding:80px 0;
    }

    .client-logo-heading h2{
        font-size:34px;
    }

    .client-logo-heading p{
        font-size:16px;
    }

    .logo-box{
        width:180px;
        height:100px;
    }

    .logo-box img{
        max-width:140px;
        max-height:55px;
    }
}

/* Mobile */

@media(max-width:767px){

    .client-logo-section{
        padding:60px 0;
    }

    .client-logo-heading{
        margin-bottom:40px;
    }

    .client-logo-heading h2{
        font-size:28px;
    }

    .client-logo-heading p{
        font-size:15px;
        line-height:1.7;
    }

    .logo-track{
        gap:15px;
    }

    .logo-box{
        width:140px;
        height:80px;
        padding:12px;
        border-radius:12px;
    }

    .logo-box img{
        max-width:100px;
        max-height:40px;
    }
}
   /* ===========================
   HOME CTA SECTION
=========================== */

.home-cta-section{
    padding:90px 0;
    background:#dcf0ff;
}

.home-cta-wrapper{
    display:grid;
    grid-template-columns:1.5fr 1fr;
    gap:50px;
    align-items:center;
}

.home-cta-tag{
    display:inline-block;
    padding:8px 20px;
    background:#077CEA;
    color:#fff;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.home-cta-content h2{
    font-size:42px;
    line-height:1.3;
    color:#1f2937;
    margin-bottom:20px;
    font-weight:700;
}

.home-cta-content p{
    font-size:17px;
    line-height:1.9;
    color:#666;
    margin-bottom:15px;
}

.home-cta-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:30px;
}

.home-feature-item{
    background:#fff;
    padding:14px 18px;
    border-radius:12px;
    border:1px solid #e5e7eb;
    font-size:15px;
    font-weight:500;
    color:#333;
}

.home-cta-card{
    background:#077CEA;
    padding:40px;
    border-radius:24px;
    box-shadow:0 20px 50px rgba(7,124,234,.20);
}

.home-cta-card-top{
    text-align:center;
    color:#fff;
    margin-bottom:30px;
}

.home-cta-card-top span{
    display:block;
    margin-bottom:10px;
    font-size:14px;
    opacity:.9;
}

.home-cta-card-top h2{
    font-size:32px;
    color:white;
    margin-bottom:15px;
    font-weight:700;
}

.home-cta-card-top p{
    font-size:15px;
    line-height:1.8;
    color:#fff;
}

.home-btn{
    display:block;
    width:100%;
    text-align:center;
    padding:16px;
    border-radius:12px;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    margin-bottom:15px;
    transition:.3s ease;
}

.home-btn-primary{
    background:#fff;
    color:#077CEA;
}

.home-btn-secondary{
    background:#111827;
    color:#fff;
}

.home-btn-outline{
    border:2px solid rgba(255,255,255,.35);
    color:#fff;
    background:transparent;
}

.home-btn:hover{
    transform:translateY(-4px);
}

/* Tablet */

@media(max-width:991px){

    .home-cta-wrapper{
        grid-template-columns:1fr;
    }

    .home-cta-content h2{
        font-size:34px;
    }

    .home-cta-card{
        max-width:500px;
        margin:auto;
        width:100%;
    }
}

/* Mobile */

@media(max-width:767px){

    .home-cta-section{
        padding:60px 0;
    }

    .home-cta-content h2{
        font-size:28px;
    }

    .home-cta-content p{
        font-size:15px;
    }

    .home-cta-features{
        grid-template-columns:1fr;
    }

    .home-feature-item{
        font-size:14px;
    }

    .home-cta-card{
        padding:25px;
    }

    .home-cta-card-top h2{
        font-size:22px;
    }

    .home-btn{
        padding:14px;
        font-size:15px;
    }
}

.faq-header {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}
.faq-header h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 12px;
}
.faq-header p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}
.faq-item {
    background: #fff;
    border-radius: 14px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.08);
}
.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-icon {
    font-size: 22px;
    transition: transform 0.3s ease;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.faq-answer p {
    padding: 0 24px 22px;
    color: #555;
    line-height: 1.7;
    font-size: 15px;
}
.faq-item.active .faq-answer {
    max-height: 400px;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
@media (max-width: 575px) {
    .faq-header h2 {
        font-size: 26px;
    }
    .faq-question {
        font-size: 15px;
    }
}
.faq-item {
    cursor: pointer;
}
.tj-contact-area {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
 .alert-success-msg {
    background: #e6fffa;
    color: #065f46;
    border-left: 4px solid #10b981;
    padding: 12px 14px;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 12px;
    animation: fadeIn 0.4s ease-in-out;
}

.alert-error-msg {
    background: #ffe6e6;
    color: #991b1b;
    border-left: 4px solid #ef4444;
    padding: 12px 14px;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 12px;
    animation: fadeIn 0.4s ease-in-out;
}

/* smooth fade animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}
        .subscribe-box {
    display: flex;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;

}

.subscribe-box input {
    flex: 1;
    padding: 12px;
    border: none;
    outline: none;
    font-size: 14px;
}

.subscribe-box button {
    background: #ffc107;
    border: none;
    padding: 0 20px;
    font-weight: 600;
    cursor: pointer;
}

.subscribe-box button:hover {
    background: #e0a800;
}
 
/* ===== TRICHY NETWORK SECTION STYLES ===== */
.trichy-network-section {
    position: relative;
    margin-bottom: 20px;
    border-bottom: 2px solid #333;
    width: 100%;
    z-index: 5;
    padding: 30px 0;
}

.network-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.network-header {
    text-align: center;
    margin-bottom: 35px;
}

.network-title {
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.network-icon {
    font-size: 38px;
    filter: drop-shadow(0 4px 8px rgba(255,215,0,0.3));
}

.network-card {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.network-card:hover {
    transform: translateY(-5px);
    border-color: #007bff;
    box-shadow:
    0 0 20px rgba(0, 123, 255, 0.6),
    0 0 40px rgba(0, 123, 255, 0.4),
    0 0 60px rgba(0, 123, 255, 0.2);
    background: rgba(255,255,255,0.05);
}

.network-card-content {
    padding: 25px 20px;
    position: relative;
    z-index: 1;
    height: 100%;
    border:solid 3px #007bff;
    display: flex;
    flex-direction: column;
}

.branch-icon {
    font-size: 36px;
    margin-bottom: 12px;
    display: inline-block;
    background: rgba(255,255,255,0.02);
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    border: 2px solid rgba(255,215,0,0.2);
    transition: all 0.3s ease;
}

.network-card:hover .branch-icon {
    border-color: #007bff;
    transform: scale(1.1);
}

.branch-title {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.branch-address {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}
.branch-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color:white;
    font-size: 14px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.03);
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    margin-bottom: 10px;
    align-self: flex-start;
}

.branch-phone:hover {
    background: rgba(255,215,0,0.15);
    border-color: #007bff;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .network-title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .trichy-network-section {
        padding: 20px 0;
    }
    
    .network-title {
        font-size: 24px;
       
        gap: 8px;
    }
    
    .network-icon {
        font-size: 32px;
    }
    
    .branch-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .network-title {
        font-size: 22px;
    }
    
    .branch-icon {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 28px;
    }
    
    .branch-title {
        font-size: 17px;
    }
}


.branch-map {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    text-decoration: none;
    font-size: 14px;
    color: white;
    font-weight: 600;
}

.g-icon {
    width: 20px;
    height: 20px;
    transition: 0.2s;
}

.branch-map:hover .g-icon {
    transform: scale(1.1);
}

.branch-map:hover span {
    color: yellow;
}
 .toast-success {
  position: fixed;
  bottom: 30px;
  right: 30px;

  background: #16a34a; /* strong green */
  color: #fff;

  padding: 16px 24px;   /* thicker padding */
  border-radius: 12px;

  font-weight: 700;
  font-size: 15px;

  box-shadow: 0 8px 25px rgba(0,0,0,0.25);

  border-left: 6px solid #0f7a35; /* thick side line */

  z-index: 9999;

  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}
   
/* ===== TRICHY NETWORK SECTION STYLES ===== */
.trichy-network-section {
    position: relative;
    margin-bottom: 20px;
    border-bottom: 2px solid #333;
    width: 100%;
    z-index: 5;
    padding: 30px 0;
}

.network-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.network-header {
    text-align: center;
    margin-bottom: 35px;
}

.network-title {
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.network-icon {
    font-size: 38px;
    filter: drop-shadow(0 4px 8px rgba(255,215,0,0.3));
}

.network-card {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.network-card:hover {
    transform: translateY(-5px);
    border-color: #007bff;
    box-shadow:
    0 0 20px rgba(0, 123, 255, 0.6),
    0 0 40px rgba(0, 123, 255, 0.4),
    0 0 60px rgba(0, 123, 255, 0.2);
    background: rgba(255,255,255,0.05);
}

.network-card-content {
    padding: 25px 20px;
    position: relative;
    z-index: 1;
    height: 100%;
    border:solid 3px #007bff;
    display: flex;
    flex-direction: column;
}

.branch-icon {
    font-size: 36px;
    margin-bottom: 12px;
    display: inline-block;
    background: rgba(255,255,255,0.02);
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    border: 2px solid rgba(255,215,0,0.2);
    transition: all 0.3s ease;
}

.network-card:hover .branch-icon {
    border-color: #007bff;
    transform: scale(1.1);
}

.branch-title {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.branch-address {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.branch-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color:white;
    font-size: 14px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.03);
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    margin-bottom: 10px;
    align-self: flex-start;
}

.branch-phone:hover {
    background: rgba(255,215,0,0.15);
    border-color: #007bff;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .network-title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .trichy-network-section {
        padding: 20px 0;
    }
    
    .network-title {
        font-size: 24px;
       
        gap: 8px;
    }
    
    .network-icon {
        font-size: 32px;
    }
    
    .branch-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .network-title {
        font-size: 22px;
    }
    
    .branch-icon {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 28px;
    }
    
    .branch-title {
        font-size: 17px;
    }
}


.branch-map {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    text-decoration: none;
    font-size: 14px;
    color: white;
    font-weight: 600;
}

.g-icon {
    width: 20px;
    height: 20px;
    transition: 0.2s;
}

.branch-map:hover .g-icon {
    transform: scale(1.1);
}

.branch-map:hover span {
    color: yellow;
}
 .toast-success {
  position: fixed;
  bottom: 30px;
  right: 30px;

  background: #16a34a; /* strong green */
  color: #fff;

  padding: 16px 24px;   /* thicker padding */
  border-radius: 12px;

  font-weight: 700;
  font-size: 15px;

  box-shadow: 0 8px 25px rgba(0,0,0,0.25);

  border-left: 6px solid #0f7a35; /* thick side line */

  z-index: 9999;

  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}




.tj-team-paragraph {
    text-align: justify;
}
.tj-slider-area {
    position: relative;
    z-index: 2;
}
.tj-slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    transform: scale(1);
    transition:
        transform 9s ease,
        opacity 1.5s ease-in;
    z-index: -1;
}
.tj-slider-bg-shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 58%;
    height: 100%;
    background: linear-gradient(90deg, #2946b8 0, rgb(0 21 29 / 0.5) 100%);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center right;
    mask-position: center right;
    -webkit-mask-size: cover;
    mask-size: cover;
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
    only screen and (min-width: 768px) and (max-width: 991px),
    only screen and (min-width: 576px) and (max-width: 767px),
    (max-width: 575px) {
    .tj-slider-bg-shape-1 {
        height: 100%;
        -webkit-mask-position: center right;
        mask-position: center right;
        -webkit-mask-size: cover;
        mask-size: cover;
    }
}
.tj-slider-bg-shape-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    z-index: -1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
    only screen and (min-width: 768px) and (max-width: 991px),
    only screen and (min-width: 576px) and (max-width: 767px),
    (max-width: 575px) {
    .tj-slider-bg-shape-2 {
        display: none;
    }
}
.tj-slider-bg-shape-3 {
    position: absolute;
    bottom: -2px;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 130px;
    background: var(--tj-color-common-white);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center top;
    mask-position: center top;
    -webkit-mask-size: cover;
    mask-size: cover;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-slider-bg-shape-3 {
        height: 85px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-slider-bg-shape-3 {
        height: 70px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-slider-bg-shape-3 {
        height: 50px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .tj-slider-bg-shape-3 {
        height: 40px;
    }
}
.tj-slider-content {
    padding: 240px 0 115px;
}
@media only screen and (min-width: 1601px) and (max-width: 1700px) {
    .tj-slider-content {
        padding: 260px 0 200px;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-slider-content {
        padding: 240px 0 120px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-slider-content {
        padding: 250px 0 90px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-slider-content {
        padding: 240px 0 45px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-slider-content {
        padding: 160px 0 45px;
    }
}
@media (max-width: 575px) {
    .tj-slider-content {
        padding: 155px 0 30px;
    }
}
.tj-slider-title-box {
    margin-bottom: 36px;
}
@media (max-width: 575px) {
    .tj-slider-title-box {
        margin-bottom: 30px;
    }
}
.tj-slider-sub-title {
    font-size: 20px;
    color: var(--tj-color-common-white);
    margin-bottom: 10px;
    text-transform: uppercase;
}
.tj-slider-sub-title span {
    font-size: 16px;
    margin-right: 8px;
}
.tj-slider-title {
    color: var(--tj-color-common-white);
    font-weight: var(--tj-fw-bold);
    line-height: 1.14;
    font-size: 50px;
    margin-bottom: 16px;
}
@media (max-width: 575px) {
   .tj-slider-title { font-size: 30px;}

}
.tj-slider-paragraph {
    font-size: 18px;
    line-height: 150%;
    color: var(--tj-color-grey-3);
    max-width: 600px;
    margin-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-slider-paragraph {
        max-width: 460px;
        width: 100%;
    }
}
@media (max-width: 575px) {
    .tj-slider-paragraph {
        font-size: 16px;
    }
}
.tj-slider-btn-box {
    display: inline-flex;
    align-items: center;
}
@media (max-width: 575px) {
    .tj-slider-btn-box {
        display: inherit;
    }
}
.tj-slider-btn-box .tj-primary-btn {
    margin-right: 30px;
}
@media (max-width: 575px) {
    .tj-slider-btn-box .tj-primary-btn {
        margin-bottom: 20px;
        padding: 18px 20px;
    }
}
.tj-slider-call-btn {
    display: flex;
    align-items: center;
}
.tj-slider-call-btn:hover .tj-slider-call-icon {
    color: var(--tj-color-heading-primary);
    background-color: var(--tj-color-theme-secondary);
}
.tj-slider-call-icon {
    width: 55px;
    height: 55px;
    line-height: 1;
    align-items: center;
    display: inline-flex;
    background: rgb(255 255 255 / 0.12);
    color: var(--tj-color-common-white);
    border-radius: 50%;
    font-size: 24px;
    position: relative;
    z-index: 1;
    justify-content: center;
    transition: 0.6s;
}
.tj-slider-call-icon i {
    display: inline-flex;
    line-height: 1;
}
.tj-slider-call-text a {
    font-weight: var(--tj-fw-sbold);
    font-size: 24px;
    font-family: var(--tj-ff-heading);
    color: var(--tj-color-common-white);
    margin-left: 12px;
    position: relative;
    z-index: 1;
    text-decoration: none;
}
.tj-slider-call-text a:hover {
    color: var(--tj-color-common-white);
}
.tj-slider-thumb {
    position: relative;
    z-index: 1;
    margin-left: 65px;
}
@media only screen and (min-width: 1601px) and (max-width: 1700px),
    only screen and (min-width: 1400px) and (max-width: 1600px),
    only screen and (min-width: 1200px) and (max-width: 1399px),
    only screen and (min-width: 768px) and (max-width: 991px),
    only screen and (min-width: 576px) and (max-width: 767px),
    (max-width: 575px) {
    .tj-slider-thumb {
        margin-left: 0;
    }
}
@media (max-width: 990px){

    .tj-slider-thumb img{
        display: none;
    }

}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-slider-thumb {
        margin-left: -190px;
    }
}
.tj-slider-thumb img {
    max-width: 151%;
}
@media only screen and (min-width: 1601px) and (max-width: 1700px),
    only screen and (min-width: 1400px) and (max-width: 1600px) {
    .tj-slider-thumb img {
        max-width: 130%;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-slider-thumb img {
        max-width: 120%;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-slider-thumb img {
        max-width: 550px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
    only screen and (min-width: 576px) and (max-width: 767px),
    (max-width: 575px) {
    .tj-slider-thumb img {
        max-width: 100%;
    }
}
  /* ===== MINI SIMPLE BANNER ===== */

.kv-mini-banner-section{
    padding: 20px 0;
}

.kv-mini-banner{
    background: #0d6efd;
    border-radius: 18px;
    padding: 18px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    transition: 0.3s ease;
}

.kv-mini-banner:hover{
    background: #005ce6;
    transform: translateY(-2px);
}

.kv-mini-banner-text{
    color: #fff;
    font-size: 22px;
    font-weight: 600;
}

.kv-mini-banner-icon{
    color: #fff;
    font-size: 24px;
}

/* ===== MOBILE ===== */

@media(max-width:767px){

.kv-mini-banner{
    padding: 14px 18px;
    border-radius: 14px;
}

.kv-mini-banner-text{
    font-size: 16px;
}

.kv-mini-banner-icon{
    font-size: 18px;
}

}
.services-section {
    padding: 30px 0;
    background-color:#dcf0ff;
}
.services-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 55px;
}
.services-heading h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
}
.services-heading p {
    font-size: 16px;
    color: #555;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: 18px;
    padding: 22px;
    text-decoration: none;
    box-shadow: 0 12px 40px rgb(0 0 0 / 0.08);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}
.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 22px 60px rgb(0 0 0 / 0.16);
}
.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 16px;
}
.service-card h3 {
    font-size: 20px;
    color: #222;
    margin-bottom: 10px;
    text-align: center;
}
.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    text-align: justify;
}
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .services-heading h2 {
        font-size: 28px;
    }
}
.tj-before-after-area {
    position: relative;
    padding-top: 30px;
    padding-bottom: 10px;
    z-index: 1;
}

.tj-before-after-area .tj-section-subtitle {
    color: var(--tj-color-common-white);
}
.tj-before-after-area .tj-section-subtitle img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
.tj-before-after-area .tj-section-title {
    color: var(--tj-color-common-white);
}
.tj-before-after-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 620px;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1;
}
.tj-before-after-bg::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgb(7 124 234 / 0.85);
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-before-after-bg {
        height: 510px;
    }
}
@media (max-width: 575px) {
    .tj-before-after-bg {
        height: 480px;
    }
}
.tj-before-after-wrapper {
    overflow: hidden;
    border-radius: 20px;
}
.tj-before-after-wrapper img {
    max-width: inherit;
    height: 570px;
    object-fit: cover;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-before-after-wrapper img {
        height: 480px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-before-after-wrapper img {
        height: 375px;
    }
}
@media (max-width: 575px) {
    .tj-before-after-wrapper img {
        height: 320px;
    }
}
@media (min-width: 768px) {
    .equal-height {
        display: flex;
        align-items: stretch;
    }
    .sidebar {
        flex: 0 0 220px;
        max-width: 220px;
    }
    .map-area {
        flex: 1;
    }
    .list-group {
        height: 100%;
        overflow-y: auto;
    }
}
@media (max-width: 767px) {
    .sidebar {
        width: 100%;
        margin-bottom: 20px;
    }
    #map-frame {
        height: 300px;
    }
}
.list-group-item + .list-group-item {
    border-top-width: 0;
    padding: 17px;
}
.boutique-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.boutique-card h4 {
    min-height: 48px;
    margin-bottom: 12px;
}
.boutique-card p {
    margin-top: 0;
}
.boutique-cards {
    background: #f7f9fc;
}
.boutique-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 1px;
}
.boutique-header h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 12px;
}
.boutique-header p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}
.boutique-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}
.boutique-card {
    padding: 30px 26px;
    border-radius: 20px;
    color: #fff;
    box-shadow: 0 18px 45px rgb(0 0 0 / 0.15);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}
.boutique-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 15px #2f80ed;
}
.boutique-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #fff;
}
.boutique-card p {
    font-size: 14.5px;
    line-height: 1.7;
    text-align: justify;
    flex-grow: 1;
}
.card-1 {
    background: linear-gradient(135deg, #1e88e5, #1e88e5);
}
.card-2 {
    background: linear-gradient(135deg, #1e88e5, #1e88e5);
}
.card-3 {
    background: linear-gradient(135deg, #1e88e5, #1e88e5);
}
.card-4 {
    background: linear-gradient(135deg, #1e88e5, #1e88e5);
}
.card-5 {
    background: linear-gradient(135deg, #1e88e5, #1e88e5);
}
.card-6 {
    background: linear-gradient(135deg, #1e88e5, #1e88e5);
}
.card-7 {
    background: linear-gradient(135deg, #1e88e5, #1e88e5);
}
.card-8 {
    background: linear-gradient(135deg, #1e88e5, #1e88e5);
}
@media (max-width: 1200px) {
    .boutique-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 991px) {
    .boutique-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575px) {
    .boutique-grid {
        grid-template-columns: 1fr;
    }
    .boutique-header h2 {
        font-size: 26px;
    }
}
.faq-section {
    background: #fff;
    padding: 30px 0;
}
.faq-header {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}
.faq-header h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 12px;
}
.faq-header p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}
.faq-item {
    background: #fff;
    border-radius: 14px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.08);
}
.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-icon {
    font-size: 22px;
    transition: transform 0.3s ease;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.faq-answer p {
    padding: 0 24px 22px;
    color: #555;
    line-height: 1.7;
    font-size: 15px;
}
.faq-item.active .faq-answer {
    max-height: 400px;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
@media (max-width: 575px) {
    .faq-header h2 {
        font-size: 26px;
    }
    .faq-question {
        font-size: 15px;
    }
}
.faq-item {
    cursor: pointer;
}
  .tj-testimonial-area{
    position: relative;
    overflow: hidden;
}

.tj-testimonial-area::before{
    content: "";
    position: absolute;
    inset: 0;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(1px);
    background: rgba(149, 148, 148, 0.35);
    z-index: 1;
}

.tj-testimonial-area .container{
    position: relative;
    z-index: 2;
}
.tj-contact-form-wrapper input:focus,
.tj-contact-form-wrapper textarea:focus {
    outline: none;
    box-shadow: 0 0 0 1px var(--tj-color-theme-primary);
}
.tj-contact-btn {
    position: relative;
    overflow: hidden;
    background: var(--tj-color-theme-primary);
    color: var(--tj-color-common-white);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border-radius: 6px;
    padding: 21px 62px;
    line-height: 1;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}
.tj-contact-btn:hover {
    color: #1f2937;
}
.tj-hover-btn-circle-dot {
    position: absolute;
    width: 0;
    height: 0;
    background: rgb(255 216 77 / 0.9);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition:
        width 0.6s ease,
        height 0.6s ease;
    z-index: -1;
}
.tj-contact-btn:hover .tj-hover-btn-circle-dot {
    width: 900px;
    height: 900px;
}
.tj-contact-btn span,
.tj-contact-btn {
    position: relative;
    z-index: 2;
}
.success-msg {
    background: #e6fff4;
    color: #0f5132;
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.success-msg .close-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}
@keyframes moving {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}
.client-logos-section {
    background: #fff;
    padding: 40px 0;
    overflow: hidden;
}
.section-header h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1f2937;
    font-weight: 800;
}
.mySwiper {
    padding: 20px 0;
}
.swiper-wrapper {
    align-items: center;
}
.logo-box {
    background: #fff;
    border-radius: 10px;
    padding: 24px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease;
}
.logo-box img {
    object-fit: contain;
    opacity: 1;
    transition: 0.3s ease;
}
.logo-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgb(0 0 0 / 0.1);
}
@media (max-width: 768px) {
    .client-logos-section {
        padding: 60px 0;
    }
    .section-header h2 {
        font-size: 26px;
    }
    .logo-box {
        height: 120px;
        padding: 18px;
    }
}
@media (max-width: 576px) {
    .logo-box {
        height: 110px;
        padding: 14px;
    }
}
:root {
    --tj-color-common-white: #ffffff;
    --tj-color-theme-primary: #007bff;
}
.tj-section-wrapper {
  
    position: relative;
    z-index: 10;
}
.tj-section-subtitle {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    color: #007bff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding: 8px 20px;
    border-radius: 30px;
}
.tj-section-subtitle .one,
.tj-section-subtitle .two {
    display: inline-block;
    margin: 0 10px;
    color: #007bff;
    font-size: 16px;
}
.tj-section-title {
    font-size: 35px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 0;
    text-shadow: 0 2px 4px rgb(0 0 0 / 0.1);
}
.tj-testimonial-area .container {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.tj-testimonial-slider {
    width: 100%;
    margin: 0 auto;
}
.tj-testimonial-active {
    max-width: 1400px;
    margin: 0 auto;
}
.tj-testimonial-area {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 20px 0 0 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.tj-testimonial-bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.tj-testimonial-bg-shape-1,
.tj-testimonial-bg-shape-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
html,
body {
    overflow-x: hidden;
    width: 100%;
}
.tj-testimonial-wrapper {
    background: var(--tj-color-common-white, #ffffff);
    border-radius: 50px 0;
    padding: 38px 34px 32px 40px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    width: 100% !important;
    max-width: 100%;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgb(0 0 0 / 0.08);
    border: 1px solid #e5e7eb;
}
.tj-testimonial-wrapper::before {
    content: "";
    position: absolute;
    width: 171px;
    height: 157px;
    background: var(--tj-color-theme-primary, #007bff);
    clip-path: polygon(0 0, 0% 100%, 100% 0);
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.9;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-testimonial-wrapper {
        padding: 35px 20px 35px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
    only screen and (min-width: 576px) and (max-width: 767px),
    (max-width: 575px) {
    .tj-testimonial-wrapper {
        padding: 30px 15px;
        width: 100% !important;
        min-width: 300px;
        max-width: 100%;
    }
}
.tj-testimonial-top-quate-icon span {
    font-size: 40px;
    color: var(--tj-color-theme-primary, #007bff);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1;
}
.tj-testimonial-bottom {
    flex-grow: 1;
   
    position: relative;
    z-index: 1;
}
.tj-testimonial-bottom-paragraph {
    font-style: italic;
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
    margin: 0;
    padding: 10px 0;
}
.tj-testimonial-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    
    position: relative;
    z-index: 1;
}
.tj-testimonial-top-member-details {
    display: flex;
    align-items: center;
}
.tj-testimonial-top-member-img {
    width: 70px;
    height: 70px;
    margin-right: 15px;
    flex-shrink: 0;
}
.tj-testimonial-top-member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--tj-color-theme-primary, #007bff);
    box-shadow: 0 5px 15px rgb(0 123 255 / 0.2);
}
.tj-testimonial-top-member-content {
    flex: 1;
}
.tj-testimonial-top-member-title {
    font-weight: 600;
    font-size: 18px;
    margin: 0 0 5px 0;
    color: #1f2937;
}
.testimonial-rating {
    margin-bottom: 5px;
}
.rating {
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 1;
    color: #e5e7eb;
    font-family: "Arial", sans-serif;
}
.rating::after {
    content: "★★★★★";
}
.rating::before {
    content: "★★★★★";
    position: absolute;
    left: 0;
    top: 0;
    width: var(--percent, 100%);
    overflow: hidden;
    color: #fbbf24;
}
.tj-testimonial-slider {
    position: relative;
    padding: 20px 0 60px;
}
.tj-testimonial-active.swiper {
    width: 100%;
    padding: 20px 0 60px;
    overflow: hidden;
}
.swiper-wrapper {
    align-items: stretch;
    display: flex;
}
.swiper-slide {
    height: auto;
    display: flex;
}
.swiper-pagination.tj-testimonial-slide-dot {
    bottom: 10px !important;
    position: absolute;
    width: 100%;
    text-align: center;
    z-index: 10;
}
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgb(0 123 255 / 0.3);
    opacity: 1;
    margin: 0 6px !important;
    transition: all 0.3s ease;
}
.swiper-pagination-bullet-active {
    background: #007bff;
    transform: scale(1.3);
}
.swiper-button-next,
.swiper-button-prev {
    display: none !important;
}
@media (max-width: 992px) {
  
    .tj-section-title {
        font-size: 36px;
    }
    .tj-testimonial-area {
        padding: 10px 0;
    }
}
@media (max-width: 768px) {
    .tj-testimonial-area {
        padding: 10px 0;
    }
    .tj-section-title {
        font-size: 30px;
    }
    .tj-section-subtitle {
        font-size: 15px;
    }
    .tj-testimonial-wrapper {
        width: 100% !important;
    }
    .tj-testimonial-top-member-img {
        width: 60px;
        height: 60px;
    }
    .tj-testimonial-bottom-paragraph {
        font-size: 15px;
    }
}
@media (max-width: 576px) {
    .tj-section-title {
        font-size: 26px;
    }
    .tj-section-subtitle {
        font-size: 14px;
        padding: 6px 15px;
    }
    .tj-testimonial-slider {
        padding: 10px 0 0px;
    }
    .tj-testimonial-wrapper {
        width: 100% !important;
    }
    .tj-testimonial-top {
        flex-direction: column;
        align-items: flex-start;
    }
    .tj-testimonial-top-quate-icon {
        margin-top: 15px;
        align-self: flex-end;
    }
    .tj-testimonial-top-quate-icon span {
        position: static;
        font-size: 30px;
    }
}
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.swiper-slide {
    animation: slideIn 0.5s ease forwards;
}
@media (min-width: 992px) {
    .tj-testimonial-active .swiper-slide {
        width: calc(50% - 15px) !important;
    }
}
@media (max-width: 991px) {
    .tj-testimonial-active .swiper-slide {
        width: 100% !important;
    }
}
.tj-testimonial-active .swiper-wrapper {
    align-items: stretch;
}
.tj-testimonial-active .swiper-slide {
    height: auto;
    display: flex;
}
.tj-testimonial-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.tj-testimonial-bottom-paragraph {
    text-align: justify;
}
.tj-testimonial-bottom {
    flex-grow: 1;
    display: flex;
    align-items: center;
}
.tj-about-area {
    position: relative;
    padding-top: 10px;
    padding-bottom: 30px;
    z-index: 1;
}
.tj-about-area .tj-section-title {
    margin-bottom: 25px;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
    only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-about-area {
        padding-top: 10px;
        padding-bottom: 50px;
    }
    .tj-about-area .column_1 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .tj-about-area .column_1 .tj-about-thumb {
        margin-top: 10px;
        margin-bottom: 0;
    }
}
@media (max-width: 575px) {
    .tj-about-area {
        padding-top: 10px;
        padding-bottom: 40px;
    }
    .tj-about-area .column_1 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .tj-about-area .column_1 .tj-about-thumb {
        margin-top: 10px;
        margin-bottom: 0;
    }
}
.tj-about-bg-shape-1 {
    position: absolute;
    top: 52%;
    left: 145px;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    z-index: -1;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px),
    only screen and (min-width: 768px) and (max-width: 991px),
    only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-about-bg-shape-1 {
        display: none;
    }
}
.tj-about-bg-shape-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    -webkit-animation: bounce-thum-1 4s forwards infinite alternate;
    animation: bounce-thum-1 4s forwards infinite alternate;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px),
    only screen and (min-width: 1200px) and (max-width: 1399px),
    only screen and (min-width: 992px) and (max-width: 1199px),
    only screen and (min-width: 768px) and (max-width: 991px),
    only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-about-bg-shape-2 {
        max-width: 200px;
    }
}
@media (max-width: 575px) {
    .tj-about-bg-shape-2 {
        max-width: 120px;
    }
}
.tj-about-bg-shape-3 {
    position: absolute;
    right: 0;
    bottom: 56px;
    z-index: -1;
    -webkit-animation: moving 8s linear infinite;
    animation: moving 8s linear infinite;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px),
    only screen and (min-width: 1200px) and (max-width: 1399px),
    only screen and (min-width: 992px) and (max-width: 1199px),
    only screen and (min-width: 768px) and (max-width: 991px),
    only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-about-bg-shape-3 {
        max-width: 140px;
    }
}
@media (max-width: 575px) {
    .tj-about-bg-shape-3 {
        display: none;
    }
}
.tj-about-wrapper {
    margin-left: 10px;
    margin-right: 25px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
    only screen and (min-width: 992px) and (max-width: 1199px),
    only screen and (min-width: 768px) and (max-width: 991px),
    only screen and (min-width: 576px) and (max-width: 767px),
    (max-width: 575px) {
    .tj-about-wrapper {
        margin-right: 0;
    }
}
.tj-about-wrapper .tj-section-paragraph {
    max-width: 581px;
}
.tj-about-thumb {
    position: relative;
    z-index: 1;
}
.tj-about-thumb-shape-1 {
    position: absolute;
    bottom: 64px;
    right: 74px;
    z-index: -2;
    -webkit-animation: moving 8s linear infinite;
    animation: moving 8s linear infinite;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-about-thumb-shape-1 {
        right: 40px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-about-thumb-shape-1 {
        display: none;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
    only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-about-thumb {
        margin-bottom: 50px;
    }
}
@media (max-width: 575px) {
    .tj-about-thumb {
        margin-bottom: 40px;
    }
}
.tj-about-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--tj-color-common-white);
    -webkit-box-shadow: 0 4px 30px 0 rgb(0 0 0 / 0.06);
    box-shadow: 0 4px 30px 0 rgb(0 0 0 / 0.06);
    border-left: 4px solid var(--tj-color-theme-primary);
    border-radius: 10px;
    padding: 25px 30px 25px 25px;
    margin-bottom: 35px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-about-box {
        padding: 25px 15px 25px 15px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-about-box {
        padding: 25px 10px 25px;
    }
}
@media (max-width: 575px) {
    .tj-about-box {
        display: inherit;
        padding: 25px 15px 25px;
    }
}
.tj-about-box-thumb {
    position: relative;
    z-index: 1;
    margin-right: 30px;
    border-radius: 10px;
}
.tj-about-box-thumb img {
    border-radius: 10px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-about-box-thumb {
        margin-right: 20px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-about-box-thumb {
        margin-right: 20px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-about-box-thumb {
        margin-right: 15px;
    }
}
.tj-about-thumb-paly-btn {
    position: absolute;
    top: 50%;
    left: 37%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}
@media (max-width: 575px) {
    .tj-about-thumb-paly-btn {
        left: 23%;
    }
}
.tj-about-thumb-paly-btn a {
    width: 30px;
    height: 30px;
    line-height: 1;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    position: relative;
    color: var(--tj-color-common-white);
    -webkit-animation: play-btn 1s linear infinite;
    animation: play-btn 1s linear infinite;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background: var(--tj-color-theme-primary);
    font-size: 8px;
    z-index: 44;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.tj-about-thumb-paly-btn a i {
    margin-left: 2px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    line-height: 1;
}
@media (max-width: 575px) {
    .tj-about-box-thumb-list {
        margin-top: 20px;
    }
}
.tj-about-box-thumb-list ul li {
    list-style: none;
    font-family: var(--tj-ff-heading);
    font-weight: var(--tj-fw-sbold);
    margin-bottom: 6px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-about-box-thumb-list ul li {
        font-size: 15px;
    }
}
@media (max-width: 575px) {
    .tj-about-box-thumb-list ul li {
        font-size: 16px;
    }
}
.tj-about-box-thumb-list ul li span {
    margin-right: 4px;
    color: var(--tj-color-theme-primary);
    line-height: 1;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 18px;
    -webkit-transform: translateY(1px);
    -ms-transform: translateY(1px);
    transform: translateY(1px);
}
.tj-about-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}
@media (max-width: 575px) {
    .tj-about-bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
    }
}
.tj-about-btn {
    margin-right: 20px;
}
@media (max-width: 575px) {
    .tj-about-btn {
        margin-bottom: 20px;
        margin-right: 0;
    }
}

/* CTA */
    .call-now{
    background: #198754;
    color: #fff;
    padding: 10px 18px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}
        .service-card{
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
}

.service-card::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    opacity: 0;
    transition: 0.4s ease;
    z-index: 1;
}

.service-card:hover::before{
    opacity: 1;
}

.service-hover-btns{
    position: absolute;
    left: 50%;
    bottom: -60px;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    opacity: 0;
    transition: 0.4s ease;
    z-index: 2;
}

.service-card:hover .service-hover-btns{
    bottom: 20px;
    opacity: 1;
}

.view-details,
.call-now{
    background: #0d6efd;
    color: #fff;
    padding: 10px 18px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.call-now{
    background: #198754;
}

.service-card img,
.service-card h3,
.service-card p{
    position: relative;
    z-index: 0;
}

<!-- Footer Area Start-->
   
/* ===== TRICHY NETWORK SECTION STYLES ===== */
.trichy-network-section {
    position: relative;
    margin-bottom: 20px;
    border-bottom: 2px solid #333;
    width: 100%;
    z-index: 5;
    padding: 30px 0;
}

.network-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.network-header {
    text-align: center;
    margin-bottom: 35px;
}

.network-title {
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.network-icon {
    font-size: 38px;
    filter: drop-shadow(0 4px 8px rgba(255,215,0,0.3));
}

.network-card {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.network-card:hover {
    transform: translateY(-5px);
    border-color: #007bff;
    box-shadow:
    0 0 20px rgba(0, 123, 255, 0.6),
    0 0 40px rgba(0, 123, 255, 0.4),
    0 0 60px rgba(0, 123, 255, 0.2);
    background: rgba(255,255,255,0.05);
}

.network-card-content {
    padding: 25px 20px;
    position: relative;
    z-index: 1;
    height: 100%;
    border:solid 3px #007bff;
    display: flex;
    flex-direction: column;
}

.branch-icon {
    font-size: 36px;
    margin-bottom: 12px;
    display: inline-block;
    background: rgba(255,255,255,0.02);
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    border: 2px solid rgba(255,215,0,0.2);
    transition: all 0.3s ease;
}

.network-card:hover .branch-icon {
    border-color: #007bff;
    transform: scale(1.1);
}

.branch-title {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.branch-address {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.branch-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color:white;
    font-size: 14px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.03);
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    margin-bottom: 10px;
    align-self: flex-start;
}

.branch-phone:hover {
    background: rgba(255,215,0,0.15);
    border-color: #007bff;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .network-title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .trichy-network-section {
        padding: 20px 0;
    }
    
    .network-title {
        font-size: 24px;
       
        gap: 8px;
    }
    
    .network-icon {
        font-size: 32px;
    }
    
    .branch-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .network-title {
        font-size: 22px;
    }
    
    .branch-icon {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 28px;
    }
    
    .branch-title {
        font-size: 17px;
    }
}


.branch-map {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    text-decoration: none;
    font-size: 14px;
    color: white;
    font-weight: 600;
}

.g-icon {
    width: 20px;
    height: 20px;
    transition: 0.2s;
}

.branch-map:hover .g-icon {
    transform: scale(1.1);
}

.branch-map:hover span {
    color: yellow;
}
 .toast-success {
  position: fixed;
  bottom: 30px;
  right: 30px;

  background: #16a34a; /* strong green */
  color: #fff;

  padding: 16px 24px;   /* thicker padding */
  border-radius: 12px;

  font-weight: 700;
  font-size: 15px;

  box-shadow: 0 8px 25px rgba(0,0,0,0.25);

  border-left: 6px solid #0f7a35; /* thick side line */

  z-index: 9999;

  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}
   
/* ===== TRICHY NETWORK SECTION STYLES ===== */
.trichy-network-section {
    position: relative;
    margin-bottom: 20px;
    border-bottom: 2px solid #333;
    width: 100%;
    z-index: 5;
    padding: 30px 0;
}

.network-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.network-header {
    text-align: center;
    margin-bottom: 35px;
}

.network-title {
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.network-icon {
    font-size: 38px;
    filter: drop-shadow(0 4px 8px rgba(255,215,0,0.3));
}

.network-card {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.network-card:hover {
    transform: translateY(-5px);
    border-color: #007bff;
    box-shadow:
    0 0 20px rgba(0, 123, 255, 0.6),
    0 0 40px rgba(0, 123, 255, 0.4),
    0 0 60px rgba(0, 123, 255, 0.2);
    background: rgba(255,255,255,0.05);
}

.network-card-content {
    padding: 25px 20px;
    position: relative;
    z-index: 1;
    height: 100%;
    border:solid 3px #007bff;
    display: flex;
    flex-direction: column;
}

.branch-icon {
    font-size: 36px;
    margin-bottom: 12px;
    display: inline-block;
    background: rgba(255,255,255,0.02);
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    border: 2px solid rgba(255,215,0,0.2);
    transition: all 0.3s ease;
}

.network-card:hover .branch-icon {
    border-color: #007bff;
    transform: scale(1.1);
}

.branch-title {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.branch-address {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.branch-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color:white;
    font-size: 14px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.03);
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    margin-bottom: 10px;
    align-self: flex-start;
}

.branch-phone:hover {
    background: rgba(255,215,0,0.15);
    border-color: #007bff;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .network-title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .trichy-network-section {
        padding: 20px 0;
    }
    
    .network-title {
        font-size: 24px;
       
        gap: 8px;
    }
    
    .network-icon {
        font-size: 32px;
    }
    
    .branch-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .network-title {
        font-size: 22px;
    }
    
    .branch-icon {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 28px;
    }
    
    .branch-title {
        font-size: 17px;
    }
}


.branch-map {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    text-decoration: none;
    font-size: 14px;
    color: white;
    font-weight: 600;
}

.g-icon {
    width: 20px;
    height: 20px;
    transition: 0.2s;
}

.branch-map:hover .g-icon {
    transform: scale(1.1);
}

.branch-map:hover span {
    color: yellow;
}
 .toast-success {
  position: fixed;
  bottom: 30px;
  right: 30px;

  background: #16a34a; /* strong green */
  color: #fff;

  padding: 16px 24px;   /* thicker padding */
  border-radius: 12px;

  font-weight: 700;
  font-size: 15px;

  box-shadow: 0 8px 25px rgba(0,0,0,0.25);

  border-left: 6px solid #0f7a35; /* thick side line */

  z-index: 9999;

  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

/* footer */


.tj-footer-widget-logo {
    background: linear-gradient(to left, #fff, #f5f5f5);
    border-radius: 10px;
}
.footer-blog-list li a:hover,
.footer-contact-list li a:hover,
.footer-contact-list li a:hover + i {
    color: #fedb5c !important;
}
.tj-footer-widget-title {
    position: relative;
    padding-bottom: 8px;
    margin-bottom: 15px;
}
.tj-footer-widget-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 2px;
    background: #fff;
}
.tj-footer-widget-title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: #4caf50;
}
.client-logos-section {
    background: #fff;
    padding: 80px 0;
    border-bottom: 1px solid #eef2f6;
}
.client-trust-text {
    color: #555;
    margin-bottom: 35px;
}
.client-logo-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo-box {
    width: 260px;
    height: 140px;
    background: #dcf0ff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgb(0 0 0 / 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-box img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}
@media (max-width: 991px) {
    .logo-box {
        width: 220px;
        height: 120px;
    }
}
@media (max-width: 575px) {
    .logo-box {
        height: 110px;
    }
}
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}
.footer-contact-list li {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14.5px;
    line-height: 1.6;
    color: #fff;
}
.footer-contact-list a {
    color: #fff;
    text-decoration: none;
}
.footer-contact-list i {
    color: #4caf50;
    margin-top: 3px;
}
.footer-blog-list {
    list-style: none;
    padding: 0;
    font-size: 14px;
}
.footer-blog-list li {
    margin-bottom: 6px;
}
.tj-footer-widget-socail {
    display: flex;
    gap: 14px;
    padding: 0;
    margin: 12px 0 0;
    list-style: none;
}
.tj-footer-widget-socail li {
    margin: 0;
}
.tj-footer-widget-socail li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgb(255 255 255 / 0.08);
    color: #fff;
    font-size: 16px;
    transition: 0.3s;
}
.tj-footer-widget-socail li a:hover {
    background: #fedb5c;
    color: #fff;
}
.tj-footer-bottom-row {
    row-gap: 40px;
    column-gap: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    margin-left: 0;
    margin-right: 0;
}
@media (min-width: 992px) {
    .tj-footer-bottom-row {
        gap: 90px;
    }
}
.tj-footer-bottom-row > [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
}
.popular-cleaning-services {
    background: #fff;
    padding: 40px 20px;
}
.popular-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #222;
    text-align: center;
}
.popular-links-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}
.popular-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.popular-links a {
    min-width: 190px;
    text-align: center;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 500;
    color: #0d6efd;
    background: #eef5ff;
    border-radius: 6px;
    white-space: nowrap;
    text-decoration: none;
    transition: 0.3s;
}
.popular-links a:hover {
    background: #0d6efd;
    color: #fff;
}
.scroll-btn {
    display: none;
}
@media (max-width: 768px) {
    .popular-links {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        scroll-behavior: smooth;
        padding: 12px 52px;
    }
    .popular-links::-webkit-scrollbar {
        display: none;
    }
    .scroll-btn {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 38px;
        height: 38px;
        border-radius: 50%;
        border: none;
        background: #0d6efd;
        color: #fff;
        font-size: 18px;
        font-weight: 700;
        cursor: pointer;
        z-index: 10;
        align-items: center;
        justify-content: center;
        box-shadow: 0 6px 15px rgb(0 0 0 / 0.15);
    }
    .scroll-left {
        left: 6px;
    }
    .scroll-right {
        right: 6px;
    }
}
.tj-footer-widget-logo {
    background: linear-gradient(to left, #fff, #f5f5f5);
    border-radius: 10px;
}
.footer-blog-list li a:hover,
.footer-contact-list li a:hover,
.footer-contact-list li a:hover + i {
    color: #fedb5c !important;
}
.tj-footer-widget-title {
    position: relative;
    padding-bottom: 8px;
    margin-bottom: 15px;
}
.tj-footer-widget-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 2px;
    background: #fff;
}
.tj-footer-widget-title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: #4caf50;
}
.client-logos-section {
    background: #fff;
    padding: 80px 0;
    border-bottom: 1px solid #eef2f6;
}
.client-trust-text {
    color: #555;
    margin-bottom: 35px;
}
.client-logo-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo-box {
    width: 260px;
    height: 140px;
    background: #dcf0ff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgb(0 0 0 / 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-box img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}
@media (max-width: 991px) {
    .logo-box {
        width: 220px;
        height: 120px;
    }
}
@media (max-width: 575px) {
    .logo-box {
        height: 110px;
    }
}
.mainmenu ul > li.has-dropdown > a {
    padding-right: 12px;
}
.mainmenu ul > li.has-dropdown > a::after {
    position: absolute;
    content: "";
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    z-index: 2;
    font-weight: var(--tj-fw-sbold);
}
.mainmenu ul > li.has-dropdown .sub-menu {
    position: absolute;
    width: 260px;
    background: var(--tj-color-common-white);
    -webkit-box-shadow: 0 0 15px 0 rgb(0 0 0 / 0.1);
    box-shadow: 0 0 15px 0 rgb(0 0 0 / 0.1);
    border-top: 6px solid var(--tj-color-theme-primary);
    padding: 20px 0;
    visibility: hidden;
    opacity: 0;
    top: 100%;
    left: 0;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    z-index: 9;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
}
.mainmenu ul > li.has-dropdown .sub-menu > li {
    display: block;
}
.mainmenu ul > li.has-dropdown .sub-menu > li.current-menu-item > .submenu,
.mainmenu ul > li.has-dropdown .sub-menu > li:hover > .submenu {
    visibility: visible;
    opacity: 1;
    left: 100%;
}
.mainmenu ul > li.has-dropdown .sub-menu > li.current-menu-item > a,
.mainmenu ul > li.has-dropdown .sub-menu > li:hover > a {
    color: var(--tj-color-theme-primary);
    margin-left: 10px;
}
.mainmenu ul > li.has-dropdown .sub-menu > li.current-menu-item > a::before,
.mainmenu ul > li.has-dropdown .sub-menu > li:hover > a::before {
    width: 10px;
}
.mainmenu ul > li.has-dropdown .sub-menu > li > a {
    padding: 7px 0 7px 25px;
    margin: 0;
    display: block;
    text-transform: capitalize;
    font-weight: var(--tj-fw-sbold);
    font-size: 16px;
    text-transform: uppercase;
    line-height: 1.5;
    color: var(--tj-color-grey-1);
    position: relative;
}
.mainmenu ul > li.has-dropdown .sub-menu > li > a::before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--tj-color-theme-primary);
    left: 8px;
    bottom: 18px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.mainmenu ul > li.has-dropdown .sub-menu > li > a:hover {
    color: var(--tj-color-theme-primary);
    margin-left: 10px;
}
.mainmenu ul > li.has-dropdown .sub-menu > li > a:hover::before {
    width: 10px;
}
.mainmenu ul > li.has-dropdown .sub-menu > li > .submenu {
    left: 120%;
    top: 25px;
    opacity: 0;
    visibility: hidden;
}
.mainmenu ul > li.has-dropdown .sub-menu > li > .submenu > li:hover .submenu {
    visibility: visible;
    opacity: 1;
}
.mainmenu ul > li.has-dropdown .sub-menu > li > .submenu > li:hover > a {
    color: var(--tj-color-theme-primary);
}
.mainmenu ul > li.has-dropdown .sub-menu > li > .submenu > li > .submenu {
    visibility: hidden;
    opacity: 0;
}
.tj-header-3-bottom.sticky .mainmenu-3 ul li.has-dropdown .sub-menu {
    top: 120%;
}
.container {
    max-width: 1200px;
    margin: auto;
}
.tj-footer-area {
    background: #0d56d6;
    position: relative;
    overflow: hidden;
}
.tj-footer-bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(5%, 3%);
    z-index: -1;
}
.tj-footer-bottom {
    padding-top: 60px;
}
.tj-footer-bottom-row {
    border-bottom: 1px solid rgb(255 255 255 / 0.2);
    padding-bottom: 60px;
}
.tj-footer-widget-logo {
    max-width: 220px;
    margin-bottom: 25px;
}
.tj-footer-widget-paragraph {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 25px;
}
.tj-footer-widget-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}
.tj-footer-widget-socail {
    display: flex;
    gap: 10px;
}
.tj-footer-widget-socail li {
    list-style: none;
}
.tj-footer-widget-socail a {
    width: 40px;
    height: 40px;
    border: 1px solid rgb(255 255 255 / 0.5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.tj-footer-widget-socail a:hover {
    background: #fff;
    color: #0d56d6;
}
.widget_nav_menu ul,
.footer-blog-list {
    padding: 0;
    margin: 0;
}
.widget_nav_menu li,
.footer-blog-list li {
    list-style: none;
    margin-bottom: 8px;
}
.widget_nav_menu a,
.footer-blog-list a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}
.widget_nav_menu a:hover,
.footer-blog-list a:hover {
    color: #fedb5c;
    transform: translateX(6px);
}
.gbp:hover {
    color: #fedb5c;
    transform: translateX(6px) !important;
}
.tj-footer-copyright {
    padding: 20px 0;
}
.tj-footer-copyright p {
    color: #fff;
    font-size: 13px;
    margin: 0;
    text-align: center;
}
.internal-links {
    color: #007bff;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.internal-links:hover {
    color: #0056b3;
}
   .alert-success-msg {
    background: #e6fffa;
    color: #065f46;
    border-left: 4px solid #10b981;
    padding: 12px 14px;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 12px;
    animation: fadeIn 0.4s ease-in-out;
}

.alert-error-msg {
    background: #ffe6e6;
    color: #991b1b;
    border-left: 4px solid #ef4444;
    padding: 12px 14px;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 12px;
    animation: fadeIn 0.4s ease-in-out;
}

/* smooth fade animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}
        .subscribe-box {
    display: flex;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;

}

.subscribe-box input {
    flex: 1;
    padding: 12px;
    border: none;
    outline: none;
    font-size: 14px;
}

.subscribe-box button {
    background:#e0a800;
    border: none;
    padding: 0 20px;
    font-weight: 600;
    cursor: pointer;
}

.industries-we-serve-section {
    background: #0d56d6;
    padding: 50px 50px;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.industries-header {
    text-align: center;
    margin-bottom: 32px;
}
.industries-title {
    color:white;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}
.industries-subtitle {
    color: #d1d5db;
    font-size: 16px;
    margin-bottom: 0;
}
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px 24px;
}
.industry-category {
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    padding:10px;
}
.category-title {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(255,193,7,0.3);
    letter-spacing: -0.2px;
}
.industries-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.industries-list li {
    color: white;
    font-size: 15px;
    padding: 5px 0;
    line-height: 1.4;
    transition: color 0.2s ease;
}
.industries-list li:hover {
    color: #ffc107;
}

@media (max-width: 992px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 20px;
    }
}
@media (max-width: 768px) {
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .industries-title {
        font-size: 24px;
    }
    .category-title {
        font-size: 17px;
    }
    .industries-we-serve-section {
        padding: 40px 0;
    }
}
/* pricing */
 .pricing-section{
    padding:90px 0;
    background:#dcf0ff;
}

.pricing-header{
    text-align:center;
    max-width:850px;
    margin:0 auto 60px;
}

.pricing-tag{
    display:inline-block;
    background:#077CEA;
    color:#fff;
    padding:8px 20px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.pricing-header h2{
    font-size:32px;
    font-weight:700;
    color:#1f2937;
    margin-bottom:15px;
}

.pricing-header p{
    font-size:18px;
    color:#666;
    line-height:1.8;
}

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.pricing-card{
    background:#fff;
    padding:35px 30px;
    border-radius:20px;
    border:1px solid #e6eef9;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.35s;
    position:relative;
}

.pricing-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(7,124,234,.15);
}

.featured-package{
    border:2px solid #077CEA;
}

.popular-badge{
    position:absolute;
    top:-14px;
    left:50%;
    transform:translateX(-50%);
    background:#077CEA;
    color:#fff;
    padding:8px 20px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

.package-icon{
    font-size:42px;
    margin-bottom:15px;
}

.pricing-card h3{
    font-size:24px;
    margin-bottom:8px;
}

.package-for{
    display:block;
    color:#077CEA;
    font-weight:600;
    margin-bottom:25px;
}

.pricing-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.pricing-card ul li{
    padding:10px 0;
    border-bottom:1px solid #edf2f7;
}

.package-price{
    margin:25px 0;
    color:#666;
}

.package-price strong{
    display:block;
    color:#077CEA;
    font-size:26px;
    margin-top:5px;
}

.pricing-btn{
    display:block;
    text-align:center;
    background:#077CEA;
    color:#fff;
    padding:15px;
    border-radius:12px;
    text-decoration:none;
    font-weight:600;
}

.pricing-btn:hover{
    color:#fff;
}

.included-section{
    margin-top:60px;
}

.included-section h3{
    text-align:center;
    margin-bottom:30px;
}

.included-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
}

.included-item{
    background:#fff;
    padding:18px;
    border-radius:12px;
    text-align:center;
    border:1px solid #e6eef9;
}
@media(max-width:991px){

    .pricing-grid{
        grid-template-columns:1fr;
    }

    .included-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:767px){

    .pricing-section{
        padding:60px 0;
    }

    .pricing-header h2{
        font-size:28px;
    }

    .included-grid{
        grid-template-columns:1fr;
    }

 
}