body{
    font-family: "Rubik", sans-serif;
}

/* TopHeader */
.top-header{
    background:#2f4675;
    color:#fff;
    font-size:14px;
    padding:8px 0;
}

.top-header a{
    color:#fff;
    font-weight:600;
    text-decoration:none;
}

.top-header i{
    margin-right:5px;
}

.top-right span{
    margin-left:20px;
}
@media(max-width:768px){

.top-header .container{
flex-direction:column;
text-align:center;
}

.top-right{
margin-top:5px;
}

.top-right span{
display:block;
margin:3px 0;
}

}

/* Home Page */
.hero-section{
    background: linear-gradient(
        90deg,
        rgba(0,128,96,0.8) 0%,
        rgba(0,150,120,0.7) 40%,
        rgba(0,120,200,0.7) 100%
    ),
    url('../images/sliders/home-ecg-testing-hyderabad.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    min-height: 70vh;
    padding: 60px 0;
    display: flex;
    align-items: center;
    
   
}
.trust-line {
    display: flex;
    align-items: center;
    gap: 22px;
    width: 90%;
    white-space: nowrap;
    flex-wrap: nowrap;
    margin-top: 10px;
}

.trust-line > div {
    margin: 10px 0px;
    display: flex;
    align-items: center;
    font-weight: 400;
    line-height: 1.3;
}

.trust-line i {
    font-size: 16px;
    min-width: 12px;
}

/* Mobile responsive */
@media (max-width: 767px) {
    .trust-line {
        flex-wrap: wrap;
        white-space: normal;
        gap: 8px;
    }
}
.glow-heading{
    display: inline-block;
    animation: glowPulse 2.5s ease-in-out infinite;
}

/* smooth glow + zoom animation */
@keyframes glowPulse{
    0%{
        transform: scale(1);
        text-shadow: 0 0 0 rgba(255,255,255,0);
    }

    50%{
        transform: scale(1.05);
        text-shadow: 
            0 0 8px rgba(255,255,255,0.4),
            0 0 18px rgba(0,150,255,0.5);
    }

    100%{
        transform: scale(1);
        text-shadow: 0 0 0 rgba(255,255,255,0);
    }
}


.fancy-btn{
    position: relative;
    display: inline-block;
    border-radius: 16px;
    padding: 3px;
    overflow: hidden;
    text-decoration: none;
}

/* rotating gradient */
.fancy-btn::before{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: conic-gradient(
        from 0deg,
        #7a00ff,
        #00dbde,
        #ffd700,
        #ff007a,
        #7a00ff
    );
    animation: rotateBorder 4s linear infinite;
    transition: all 0.4s ease;
}

/* INNER BUTTON */
.btn-inner{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #ff3b57, #ff7a18);
    color: #fff;
    padding: 12px 28px;
    border-radius: 14px;
    font-weight: 600;
    z-index: 1;
}

/* 🔥 HOVER = FULL BORDER VISIBLE */
.fancy-btn:hover::before{
    filter: brightness(1.3) contrast(1.3); /* stronger colors */
    transform: scale(1.05); /* expand slightly */
}

/* optional glow */
.fancy-btn:hover{
    box-shadow: 0 0 15px rgba(255, 0, 120, 0.4),
                0 0 25px rgba(0, 200, 255, 0.4);
}

/* rotation */
@keyframes rotateBorder{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}

.glow-btn{
    background:#ffffff;
    color:#2f4675;
    font-weight:700;
    padding:14px 28px;
    border-radius:12px;
    border:none;
    position:relative;
    z-index:1;
    transition:all 0.3s ease;

    /* glow animation */
    animation: buttonGlow 2s ease-in-out infinite;
}

/* hover effect */
.glow-btn:hover{
    transform: translateY(-3px) scale(1.05);
    color:#2f4675;
}

/* glow animation */
@keyframes buttonGlow{
    0%{
        box-shadow: 0 0 0px rgba(37,99,235,0);
    }
    50%{
        box-shadow: 
            0 0 12px rgba(37,99,235,0.6),
            0 0 25px rgba(37,99,235,0.4);
    }
    100%{
        box-shadow: 0 0 0px rgba(37,99,235,0);
    }
}

.glow-text{
    font-weight:700;
    color:#2f4675;
    animation: textGlow 1s ease-in-out infinite;
}
@keyframes textGlow{
    0%{
        text-shadow: 0 0 0px rgba(37,99,235,0);
    }
    50%{
        text-shadow:
            0 0 6px rgba(37,99,235,0.5),
            0 0 12px rgba(37,99,235,0.3);
    }
    100%{
        text-shadow: 0 0 0px rgba(37,99,235,0);
    }
}

.book-test-btn{
    background:#2f4675;
    color:#fff;
    border:none;
    border-radius:12px;
    box-shadow:0 10px 24px rgba(47,70,117,0.35);
    animation: popBtn 1.8s ease-in-out infinite;
    transition:all 0.3s ease;
    position:relative;
    overflow:hidden;
}

/* Hover effect (keep it smooth) */
.book-test-btn:hover{
    background:#243963;
    color:#fff;
    transform:translateY(-4px) scale(1.05);
    box-shadow:0 16px 35px rgba(47,70,117,0.5);
}

/* Pop animation */
@keyframes popBtn{
    0%{ transform:scale(1); }
    50%{ transform:scale(1.05); }
    100%{ transform:scale(1); }
}

/* Shine layer */
.book-test-btn::after{
    content:"";
    position:absolute;
    top:0;
    left:-80%;
    width:40%;
    height:100%;
    background:linear-gradient(
        120deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.35) 50%,
        rgba(255,255,255,0) 100%
    );
    transform:skewX(-25deg);

    /* 👇 Auto animation added */
    animation: shineMove 1.5s infinite;
}

.pulse-btn{
    position: relative;
    animation: pulseBtn 1.6s ease-in-out infinite;
    transition: all 0.3s ease;
}

/* Pump effect */
@keyframes pulseBtn{
    0%{
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(220,53,69,0.6);
    }
    50%{
        transform: scale(1.06);
        box-shadow: 0 0 25px 8px rgba(220,53,69,0.25);
    }
    100%{
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(220,53,69,0);
    }
}

/* Hover (extra premium feel) */
.pulse-btn:hover{
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

/* Finger animation (optional but powerful) */
.finger{
    display:inline-block;
    animation: fingerMove 1s infinite;
}

@keyframes fingerMove{
    0%,100%{ transform: translateX(0); }
    50%{ transform: translateX(6px); }
}

/* Shine animation */
@keyframes shineMove{
    0%{ left:-80%; }
    100%{ left:130%; }
}
.animated-cta{
    display:inline-block;
    animation: colorShift 1.4s ease-in-out infinite;
}

@keyframes colorShift{
    0%{
        color:#ffc107; /* yellow */
        text-shadow:0 0 6px rgba(255,193,7,0.7);
    }
    50%{
        color:#ffffff; /* white */
        text-shadow:0 0 10px rgba(255,255,255,0.9);
    }
    100%{
        color:#ffc107;
        text-shadow:0 0 6px rgba(255,193,7,0.7);
    }
}

@keyframes colorShifts{
    0%{
        color:#ffc107; /* yellow */
        text-shadow:0 0 6px rgba(255,193,7,0.7);
    }
    50%{
        color:#dc3545; /* white */
        text-shadow:0 0 10px rgba(217, 64, 64, 0.9);
    }
    100%{
        color:#ffc107;
        text-shadow:0 0 6px rgba(255,193,7,0.7);
    }
}


.formcard{
    background-color:  #2f4675;
    border-radius: 30px;
    padding: 30px;
    border: 3px groove white;
}


/*service cards*/
.diagnostic-services-section {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: 42px;
    color: #0f172a;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: #5b6475;
    line-height: 1.7;
    max-width: 850px;
    margin: 0 auto;
}

.trust-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(47, 109, 246, 0.12);
    color: #243b64;
    padding: 12px 18px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.trust-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(47, 109, 246, 0.10);
}

.trust-pill i {
    color: #2f6df6;
}

.service-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 28px 20px;
    box-shadow: 0 10px 35px rgba(16, 24, 40, 0.08);
    border: 1px solid rgba(47, 109, 246, 0.08);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}


/* Attractive badge */
.popular-badge{
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(90deg, #ff3b57, #ff7a18);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 50px;
    box-shadow: 0 8px 18px rgba(255, 59, 87, 0.35);
    z-index: 5;
    animation: popularPulse 1.8s ease-in-out infinite;
}

.popular-badge i{
    margin-right: 5px;
    color: #ffd700;
}

/* smooth attention effect */
@keyframes popularPulse{
    0%{
        transform: scale(1);
        box-shadow: 0 8px 18px rgba(255, 59, 87, 0.30);
    }
    50%{
        transform: scale(1.06);
        box-shadow: 0 10px 25px rgba(255, 59, 87, 0.50);
    }
    100%{
        transform: scale(1);
        box-shadow: 0 8px 18px rgba(255, 59, 87, 0.30);
    }
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #00a884, #2f6df6);
    transform: scaleX(1);
    transform-origin: left;
    opacity: 0.75;
    transition: all 0.35s ease;
    box-shadow: 0 2px 8px rgba(0, 168, 132, 0.25);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(16, 24, 40, 0.14);
}

.service-card:hover::before {
    opacity: 1;
    height: 6px;
    box-shadow: 0 3px 12px rgba(47, 109, 246, 0.35);
}

.service-icon-wrap {
    width: 78px;
    height: 78px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 168, 132, 0.10), rgba(47, 109, 246, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
}

.service-card:hover .service-icon-wrap {
    transform: scale(1.08) rotate(4deg);
}

.service-icon {
    font-size: 34px;
    color: #dc3545;
}

.service-title {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 14px;
}

.service-text {
    font-size: 17px;
    line-height: 1.7;
    color: #5b6475;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}

.service-list li {
    color: #334155;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 500;
}

.service-list li i {
    color: #00a884;
}

.service-note {
    font-size: 14px;
    font-weight: 700;
    color: #e63946;
    margin-bottom: 18px;
}

.service-btn {
    background:  linear-gradient(90deg, #2e8b85, #2f6fa8);
    color: #fff;
    border: none;
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.28);
    transition: all 0.3s ease;
    animation: softPulse 1.6s ease-out infinite;
}

.service-btn:hover {
     background: none;
    color: #2f4675;
    border: 2px solid #2f4675;
   
    box-shadow: 0 14px 26px rgba(37, 99, 235, 0.35);
}

.book-btn{
    background: linear-gradient(90deg, #ff3b57, #ff7a18);
    font-weight:600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.book-btn:hover{
    transform: scale(1.08);
    box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

.finger{
    display:inline-block;
    margin-right:8px;
    animation:fingerMove 0.8s ease-in-out infinite;
}

@keyframes fingerMove{
    0%{ transform: translateX(0); }
    50%{ transform: translateX(6px); }
    100%{ transform: translateX(0); }
}



/* smoother + earlier pulse */
@keyframes softPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
    }
    40% {
        box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
}

@media (max-width: 991px) {
    .section-title {
        font-size: 34px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .service-text {
        min-height: auto;
    }
}

@media (max-width: 767px) {
    .diagnostic-services-section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .section-title {
        font-size: 28px;
    }

    .trust-wrapper {
        gap: 10px;
    }

    .trust-pill {
        font-size: 13px;
        padding: 10px 14px;
    }

    .service-card {
        padding: 26px 20px;
    }

    .service-title {
        font-size: 24px;
    }

    .service-text {
        font-size: 16px;
    }

    .service-list li {
        font-size: 15px;
    }

    .service-btn {
        width: 100%;
    }
}


.home-service-content p{
    margin-bottom:16px;
}

.trust-points{
    display:flex;
    flex-wrap:wrap;
    gap:10px 18px;
    color:#fff;
    font-weight:600;
    font-size:15px;
}

.trust-points span{
    display:inline-block;
}

.cta-call-btn{
    border-radius:12px;
    font-size:18px;
    box-shadow:0 10px 24px rgba(220,53,69,0.28);
    transition:all 0.3s ease;
}

.cta-call-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 14px 28px rgba(220,53,69,0.35);
}
.call-icon{
    display:inline-block;
    margin-right:8px;
    transform-origin: center;
    animation: phoneRing 2.5s infinite;
}

.call-icon{
    display:inline-block;
    margin-right:8px;
    transform-origin: center;
    animation: phoneRing 0.8s linear infinite; /* fast + continuous */
}

/* 📞 continuous ringing */
@keyframes phoneRing{
    0%   { transform: rotate(0deg); }
    25%  { transform: rotate(15deg); }
    50%  { transform: rotate(-15deg); }
    75%  { transform: rotate(10deg); }
    100% { transform: rotate(0deg); }
}
.call-icon{
    animation: phoneRing 0.6s linear infinite;
}

@keyframes phoneRing{
    0%   { transform: rotate(0deg); }
    10%  { transform: rotate(18deg); }
    20%  { transform: rotate(-18deg); }
    30%  { transform: rotate(14deg); }
    40%  { transform: rotate(-14deg); }
    50%  { transform: rotate(10deg); }
    60%  { transform: rotate(-10deg); }
    70%  { transform: rotate(6deg); }
    80%  { transform: rotate(-6deg); }
    90%  { transform: rotate(3deg); }
    100% { transform: rotate(0deg); }
}

.section-badge{
    background: #e9efff;
    color: #2f6df6;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
}

.accordion-button{
    font-weight: 600;
    padding: 20px 24px;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed){
    background-color: #eaf2ff;
    color: #0f172a;
}

.accordion-body{
    padding: 22px 24px;
    color: #4b5563;
}

.faq-side-card{
    background: #fff;
}

@media (max-width: 767px){
    .home-service-content{
        text-align:center;
        margin-top:25px;
    }

    .home-service-content h2{
        max-width:100%;
        font-size:32px;
    }

    .trust-points{
        justify-content:center;
    }
}

.how-work-section{
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.section-badge{
    background:#e9efff;
    color:#2f6df6;
    font-weight:700;
    padding:10px 24px;
    border-radius:50px;
    font-size:14px;
}

.how-card{
    background:#fff;
    border-radius:22px;
    padding:35px;
    box-shadow:0 10px 35px rgba(16,24,40,0.08);
    border:1px solid rgba(47,109,246,0.08);
}

.step-item{
    display:flex;
    gap:18px;
    position:relative;
    padding-bottom:32px;
}

.step-item:not(:last-of-type)::after{
    content:"";
    position:absolute;
    left:22px;
    top:48px;
    width:3px;
    height:45px;
    background:linear-gradient(180deg,#2f6df6,#00a884);
    border-radius:20px;
}

.step-dot{
    width:46px;
    height:46px;
    min-width:46px;
    border-radius:50%;
    background:linear-gradient(135deg,#2f6df6,#00a884);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    font-weight:800;
    box-shadow:0 8px 18px rgba(47,109,246,0.25);
}

.step-item h5{
    font-size:20px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:6px;
}

.step-item p{
    color:#5b6475;
    margin-bottom:0;
    font-size:16px;
}

.info-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    margin-bottom:30px;
}

.info-row h6{
    font-weight:800;
    margin-bottom:6px;
}

.info-row p{
    color:#6b7280;
    margin-bottom:0;
}

@media(max-width:767px){
    .how-card{
        padding:26px 20px;
    }

    .step-item{
        gap:14px;
    }

    .step-item h5{
        font-size:18px;
    }

    .step-item p{
        font-size:15px;
    }

    .info-row{
        align-items:flex-start;
        flex-direction:column;
        gap:8px;
    }
}

/* about */
.breadcrumb-section{
    position: relative;
    background: 
        linear-gradient(rgba(47,70,117,0.75), rgba(47,70,117,0.75)),
        url('../images/breadcrumb.jpg') center/cover no-repeat;
    padding: 90px 0;
}

.breadcrumb-title{
    font-size: 34px;
    font-weight: 700;
    line-height: 1.4;
}

.breadcrumb{
    background: transparent;
}

.breadcrumb a{
    color: #ffc107;
    text-decoration: none;
}

.breadcrumb a:hover{
    text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item::before{
    color: #fff;
}
.about-points li{
    font-size:16px;
    margin-bottom:9px;
    color:#4b5563;
    font-weight:500;
}

.about-points li span{
    color:#198754;
    font-weight:800;
    margin-right:6px;
}

.about-trust{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.about-trust span{
    background:#f3f7ff;
    color:#2f4675;
    padding:8px 12px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
}

/* contact */
.contact-card{
    background:#2f4675;
    padding:20px 20px;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:all 0.3s ease;
    border:1px solid rgba(0,0,0,0.05);
}

.contact-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,0.15);
}

/* icon circle */
.icon-box{
    width:70px;
    height:70px;
    margin:0 auto 15px;
    border-radius:50%;
    background:linear-gradient(135deg,#2f4675,#4f6fd6);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:26px;
    box-shadow:0 10px 20px rgba(47,70,117,0.3);
}

/* heading */
.contact-card h5{
    font-weight:700;
    margin-bottom:8px;
}

/* link */
.contact-link{
    display:block;
    font-weight:600;
    color:#ffff;
    text-decoration:none;
    margin-top:8px;
}

/* Mobile */
@media(max-width:768px){
    .breadcrumb-title{
        font-size: 24px;
    }
}

/* Book test */
.appointment-hero{
    background:linear-gradient(135deg,#eef7ff,#ffffff);
}

.appointment-hero h1{
    font-size:42px;
    color:#1f2f55;
}

.trust-card{
    background:#fff;
    padding:14px 16px;
    border-radius:14px;
    box-shadow:0 8px 22px rgba(0,0,0,0.08);
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:600;
    color:#243963;
}

.trust-card i{
    color:#2f6fa8;
    font-size:20px;
}

.appointment-form-box{
    background:#fff;
    padding:30px;
    border-radius:22px;
    box-shadow:0 14px 35px rgba(0,0,0,0.12);
}

.form-control,
.form-select{
    height:50px;
    border-radius:12px;
}

textarea.form-control{
    height:auto;
}

.submit-btn,
.emergency-btn{
    background:#dc3545;
    color:#fff;
    border:none;
    border-radius:12px;
    position:relative;
    overflow:hidden;
    animation:pumpBtn 1.5s ease-in-out infinite;
}

.submit-btn:hover,
.emergency-btn:hover{
    background:#bb2d3b;
    color:#fff;
}

@keyframes pumpBtn{
    0%{
        transform:scale(1);
        box-shadow:0 0 0 0 rgba(220,53,69,0.55);
    }
    50%{
        transform:scale(1.04);
        box-shadow:0 0 25px 8px rgba(220,53,69,0.22);
    }
    100%{
        transform:scale(1);
        box-shadow:0 0 0 0 rgba(220,53,69,0);
    }
}

.finger{
    display:inline-block;
    animation:fingerMove 1s infinite;
}

@keyframes fingerMove{
    0%,100%{transform:translateX(0);}
    50%{transform:translateX(6px);}
}

.step-process {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.step-process::before {
    content: "";
    position: absolute;
    top: 35px;
    left: 12%;
    right: 12%;
    height: 3px;
    background: #2f4675;
    z-index: 1;
}

.step-box {
    position: relative;
    z-index: 2;
    width: 25%;
    text-align: center;
}

.step-number {
    width: 70px;
    height: 70px;
    background: #2f4675;
    color: #fff;
    border-radius: 50%;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    border: 6px solid #f8f9fa;
}

.step-box h6 {
    font-size: 18px;
    font-weight: 700;
    color: #1f2f55;
    margin-bottom: 8px;
}

.step-box p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

/* Mobile */
@media (max-width: 767px) {
    .step-process {
        flex-direction: column;
    }

    .step-process::before {
        display: none;
    }

    .step-box {
        width: 100%;
        background: #fff;
        padding: 20px;
        border-radius: 14px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }
}
.cta-box{
    background:linear-gradient(90deg,#2e8b85,#2f6fa8);
    color:#fff;
    border-radius:24px;
    padding:45px 25px;
}

@media(max-width:767px){
    .appointment-hero h1{
        font-size:30px;
    }

    .appointment-form-box{
        padding:22px;
    }
}

/*term conditions*/
.terms-section {
    background: #f8f9fb;
}

.terms-box {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.terms-box h2 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #2f4675;
}

.terms-box h5 {
    margin-top: 25px;
    font-weight: 600;
    color: #1f2f55;
}

.terms-box p {
    color: #555;
    line-height: 1.7;
}

@media(max-width:768px){
    .terms-box {
        padding: 25px;
    }

    .inner-banner h1 {
        font-size: 26px;
    }
}

/*Policy*/
.privacy-section {
    background: #f8f9fb;
}

.privacy-box {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.privacy-box h2 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #2f4675;
}

.privacy-box h5 {
    margin-top: 25px;
    font-weight: 600;
    color: #1f2f55;
}

.privacy-box p {
    color: #555;
    line-height: 1.7;
}

@media(max-width:768px){
    .privacy-box {
        padding: 25px;
    }
}

/* Blog */
.blog-content {
    color: #374151;
    font-size: 16px;
    line-height: 1.8;
}

.blog-content h2,
.blog-content h3 {
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #111827;
}

.blog-content p {
    margin-bottom: 16px;
}

.blog-content img {
    max-width: 100%;
    border-radius: 12px;
    margin: 15px 0;
}

/* Footer */
footer p{
    line-height:1.7;
}

footer h5{
    font-weight:700;
    margin-bottom:18px;
}

footer ul li{
    margin-bottom:8px;
}

footer ul li a{
    transition:all 0.3s ease;
}

footer ul li a:hover{
    color:#ffc107 !important;
    padding-left:6px;
}

.footer-cta{
    background:rgba(255,255,255,0.07);
    padding:22px;
    border-radius:16px;
    display:inline-block;
    box-shadow:0 8px 25px rgba(0,0,0,0.12);
}

.footer-cta p{
    animation:footerBlink 1.8s ease-in-out infinite;
}

@keyframes footerBlink{
    0%,100%{
        opacity:1;
    }
    50%{
        opacity:0.75;
    }
}

.footer-cta .btn{
    font-weight:700;
    border-radius:10px;
    padding:10px 22px;
    transition:all 0.3s ease;
}

.footer-cta .btn-danger{
    box-shadow:0 8px 20px rgba(220,53,69,0.35);
}

.footer-cta .btn-danger:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 28px rgba(220,53,69,0.5);
}

.footer-cta .btn-light:hover{
    transform:translateY(-3px);
    background:#ffc107;
    color:#111;
}

footer hr{
    border-color:rgba(255,255,255,0.25);
}

/*@media(max-width:767px){*/
/*    footer{*/
/*        text-align:center;*/
/*    }*/

/*    footer img{*/
/*        width:230px;*/
/*        margin-bottom:15px;*/
/*    }*/

/*    footer .col-md-4{*/
/*        margin-bottom:30px;*/
/*    }*/

/*    .footer-cta{*/
/*        display:block;*/
/*    }*/

/*    .footer-cta .btn{*/
/*        width:100%;*/
/*        margin:6px 0 !important;*/
/*    }*/
/*}*/

.mobile-sticky-menu {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    z-index: 9999;
    border: 1px solid #eaeaea;
    gap: 10px;
}

.mobile-sticky-menu .menu-item {
    flex: 1;
    min-height: 72px;
    background: #ffffff;
    border-radius: 18px;
    text-align: center;
    text-decoration: none;
    color: #222;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-sticky-menu .menu-item i {
    font-size: 20px;
    color: #20b15a;
    transition: all 0.3s ease;
}

.mobile-sticky-menu .menu-item span {
    line-height: 1.2;
    white-space: nowrap;
}

/* Hover / tap effect */
.mobile-sticky-menu .menu-item:hover,
.mobile-sticky-menu .menu-item:focus,
.mobile-sticky-menu .menu-item:active {
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(32, 177, 90, 0.18);
}

/* Animated glow border */
.mobile-sticky-menu .menu-item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(32,177,90,0.7), rgba(32,177,90,0), rgba(32,177,90,0.7));
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0;
    transition: 0.4s ease;
}

.mobile-sticky-menu .menu-item:hover::before,
.mobile-sticky-menu .menu-item:focus::before {
    opacity: 1;
}

/* Subtle attention animation for all buttons */
.mobile-sticky-menu .menu-item {
    animation: floatBtn 2.8s ease-in-out infinite;
}

.mobile-sticky-menu .menu-item:nth-child(2) {
    animation-delay: 0.2s;
}

.mobile-sticky-menu .menu-item:nth-child(3) {
    animation-delay: 0.4s;
}

.mobile-sticky-menu .menu-item:nth-child(4) {
    animation-delay: 0.6s;
}

/* Strong CTA for book test */
.mobile-sticky-menu .book-btn {
    background: linear-gradient(135deg, #17b857, #22c55e);
    color: #fff;
    box-shadow: 0 10px 24px rgba(34, 197, 94, 0.35);
    animation: pulseGlow 1.8s infinite;
}

.mobile-sticky-menu .book-btn i,
.mobile-sticky-menu .book-btn span {
    color: #fff;
}

/* Floating animation */
@keyframes floatBtn {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-3px); }
    100% { transform: translateY(0); }
}

/* Highlight animation for main CTA */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(34, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

/* Show only on mobile */
@media (min-width: 768px) {
    .mobile-sticky-menu {
        display: none;
    }
}

/* Prevent content hidden behind footer */
@media (max-width: 768px) {
    body {
        padding-bottom: 110px;
    }
}



/* Common Footer CSS */
/* ========================= */
/* WHATSAPP CHAT WIDGET */
/* ========================= */

.chat-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    display: inline-block;
    width: auto;
    height: auto;
}

/* Chat Box */
.chat-box {
    width: 280px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    transition: 0.4s ease;
    margin-bottom: 12px;
    display: none;
}

.chat-box.show {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

/* Header */
.chat-header {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    padding: 10px;
    font-size: 13px;
    font-weight: 600;
    position: relative;
}

.dot {
    height: 8px;
    width: 8px;
    background: #00ff88;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
    animation: blink 1.2s infinite;
}

@keyframes blink {
    0%,100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.close-btn {
    position: absolute;
    right: 10px;
    top: 5px;
    cursor: pointer;
}

/* Body */
.chat-body {
    padding: 12px;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

/* CTA */
.chat-action {
    display: block;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    text-align: center;
    padding: 10px;
    margin: 10px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.chat-action:hover {
    color: #fff;
    transform: scale(1.04);
}

/* WhatsApp Floating Button */
.chat-toggle {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 25px;
    box-shadow: 0 10px 25px rgba(37,211,102,0.5);
    animation: whatsappPulse 2s infinite;
}

.chat-toggle i {
    color: #fff;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0.6);
    }
    70% {
        box-shadow: 0 0 0 16px rgba(37,211,102,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}

.chat-widget.open .chat-toggle {
    display: none;
}

/* Hide on Mobile */
@media (max-width: 767px) {
    .chat-widget {
        display: none !important;
    }
}





/* ============================= */
/* 📞 PREMIUM CALL BUTTON */
/* ============================= */
.premium-call-btn {
    position: fixed;
    right: 20px;
    bottom: 30px;

    width: 68px;
    height: 68px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 26px;
    color: #fff;
    text-decoration: none;

    /* 🔴 Premium Gradient */
    background: linear-gradient(135deg, #ff3b30, #ff7a45);

    /* Soft Premium Shadow */
    box-shadow: 0 10px 25px rgba(255, 59, 48, 0.4);

    z-index: 9999;

    /* Smooth Animation */
    animation: callFloat 3s ease-in-out infinite;
}

/* Icon */
.premium-call-btn i {
    color: #fff;
}

/* ============================= */
/* 🔥 SOFT FLOAT (Premium feel) */
/* ============================= */
@keyframes callFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

/* ============================= */
/* 🔥 GLOW RING */
/* ============================= */
.premium-call-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255, 59, 48, 0.35);
    z-index: -1;

    animation: callGlow 2s infinite;
}

@keyframes callGlow {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    70% {
        transform: scale(1.5);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

/* ============================= */
/* HOVER */
/* ============================= */
.premium-call-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(255, 59, 48, 0.5);
}

/* ============================= */
/* MOBILE HIDE */
/* ============================= */
@media (max-width: 767px) {
    .premium-call-btn {
        display: none !important;
    }
}










/* Container */
.social-bar {
    position: fixed;
    right: 0;
    top: 40%;
    transform: translateY(-50%);
    z-index: 9999;

    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* Toggle Button */
.social-toggle {
    width: 50px;
    height: 50px;
    background: #111;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50% 0 0 50%;
    cursor: pointer;

    font-size: 18px;

    box-shadow: 0 8px 20px rgba(0,0,0,0.3);

    transition: 0.3s;
}

/* Rotate animation */
.social-toggle.rotate {
    transform: rotate(180deg);
}

/* Icons wrapper */
.social-icons {
    display: flex;
    flex-direction: column;
    gap: 10px;

    margin-top: 10px;

    transition: 0.4s ease;
}

/* Hide animation */
.social-icons.hide {
    transform: translateX(80px);
    opacity: 0;
}

/* Icon */
.social-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 20px;

    border-radius: 10px 0 0 10px;

    text-decoration: none;

    transition: 0.3s;
}

/* Hover */
.social-icon:hover {
    transform: translateX(-6px) scale(1.08);
}

/* Brand Colors */
.instagram {
    background: linear-gradient(135deg, #f09433, #dc2743, #cc2366);
}

.facebook {
    background: #1877f2;
}

.youtube {
    background: #ff0000;
}

.linkedin {
    background: #0a66c2;
}

/* Mobile */
@media (max-width: 767px) {
    /* .social-bar {
        top: auto;
        bottom: 120px;
    } */
     /* Move slightly inside */
    .social-bar {
        right: 5px;
        top: 50%;
        transform: translateY(-50%);
    }

    /* Smaller icons */
    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
        border-radius: 6px 0 0 6px;
    }

    /* Smaller toggle */
    .social-toggle {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    /* Reduce spacing */
    .social-icons {
        gap: 6px;
    }

     .social-icon {
        opacity: 0.9;
    }
}

.instagram {
    animation: instaPulse 2s infinite;
}

@keyframes instaPulse {
    0% { box-shadow: 0 0 0 0 rgba(220, 39, 67, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(220, 39, 67, 0); }
}