/* Basic visual styling to match the long-scroll design */
@import url(font.css);
:root{
--brand-red: #9E000F;
--brand-dark: #222;
--brand-blue:#168ABE;
--brand-white:#fff;
--padding-l-100: 100px;
--padding-r-100: 100px;
--padding-t-100: 100px;
--padding-b-100: 100px;
}
html{
    scroll-behavior: smooth;
}
body{
font-family: 'Ruberoid', sans-serif;
color:#222;
font-size: 20px;
background:#fff;
}
.container-fluid{
padding-left: var(--padding-l-100);
padding-right: var(--padding-r-100);
}
.inner-shadow{
    box-shadow: inset 0 0 25px rgba(0,0,0,0.25);
}
.knowmore-btn{
    color: var(--brand-red);
    border: 1px solid var(--brand-red);
    border-radius: 25px;
    font-size: 20px;
    width: 190px;
    height: 40px;
    text-align: center;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    transition: all 0.3s ease;
}
.knowmore-btn span{
    transform: rotate(315deg);
}
.knowmore-btn:hover{
    background: var(--brand-red);
    color:#fff;
    text-decoration:none;
}
.knowmore-btn:hover span{
    transform: rotate(0deg);
}
.knowmore-btn:hover span svg path{
    fill:#fff;
}
.btn-enquiry{
    color: #fff;
    border: 1px solid #fff;
    border-radius: 25px;
    font-size: 20px;
    width: 176px;
    height: 50px;
    text-align: center;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    transition: all 0.3s ease;
}
.btn-enquiry span{transform: rotate(315deg);}
.btn-enquiry:hover{background: #fff;color: var(--brand-red);text-decoration:none;}
.btn-enquiry:hover span{transform: rotate(0deg);}
.btn-enquiry:hover span svg path{fill: var(--brand-red);}
.btn-enquiry.white-block:hover{color: #222;}
.btn-enquiry.white-block:hover span svg path{fill: #222;}
.btn-enquiry.blue-white:hover{color: var(--brand-blue);}
.btn-enquiry.blue-white:hover span svg path{fill: var(--brand-blue);}
.whitebg-section .btn-enquiry{
    color: #484848;
    border: 1px solid #484848;
}
.whitebg-section .btn-enquiry:hover{color: #fff;background: #484848;}
.whitebg-section .btn-enquiry:hover span svg path{fill: var(--brand-white);}
.btn-enquiry-red{
    border-color: var(--brand-red);
    color: var(--brand-red);
}
.quicklinks-fixed {
  background: #000000;
  border: 1px solid #9E000F;
  border-radius: 5px;
  list-style: none;
  position: fixed;
  padding: 0;
  border-radius: 10px;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none; /* prevent clicks when hidden */
  z-index: 99;
  margin: 0;
}

.quicklinks-fixed.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto; /* clickable when visible */
}

.quicklinks-fixed li {
  display: inline-block;
  padding: 21px 37px;
  cursor: pointer;
  border-right: 1px solid #9E000F;
}
.quicklinks-fixed li:last-child {
  border-right: none;
}
.quicklinks-fixed li a{
    color: #fff;
    font-weight: 400;
    font-size: 20px;
    text-decoration: none;
}



/* Top navbar */
.navbar{
background:var(--brand-red); padding:12px 100px;
}
.navbar-brand strong{ color: #fff; }
.nav-link{
color:#fff;
font-weight:600;
font-size: 20px;
}
nav .paybtn{
border:1px solid #fff; border-radius:10px; padding:6px 28px !important;
transition: all 0.3s ease;background: var(--brand-red);font-size: 20px;
}
nav .paybtn:hover{
background: #fff; color:var(--brand-red) !important;
text-decoration:none;
}
.fix-appointment-btn{
border:2px solid #fff; border-radius:10px; padding:6px 32px; color:#fff; margin-left:auto;
font-weight:600;
font-size: 20px;
transition: all 0.3s ease;
}
.fix-appointment-btn:hover{
background: #fff; color:var(--brand-red);
text-decoration:none;
}
.fix-appointment-form{
    position: absolute;
    right: 0;
    z-index: 99;
    width: 748px;
    padding: 72px 45px 82px;
    margin: 0 0 0 auto;
    display: none;
    background: #1C1919;
    border-radius: 17px;
    background: url(../images/hand-imgg2.png), linear-gradient(90deg, rgba(28, 25, 25, 1) 0%, rgba(94, 92, 91, 1) 100%);
    background-repeat: no-repeat;
    background-position: center;
}
.slide-form{
    position: fixed;
    top: 50%;
    right: -748px;
    transform: translate(50%, -50%);
    z-index: 99;
    width: 748px;
    padding: 72px 45px 82px;
    margin: 0 0 0 auto;
    background: #1C1919;
    border-radius: 17px;
    background: url(../images/hand-imgg2.png), linear-gradient(90deg, rgba(28, 25, 25, 1) 0%, rgba(94, 92, 91, 1) 100%);
    background-repeat: no-repeat;
    background-position: center;
    transition: right 0.4s ease;
}
.slide-form.active {
  right: 50%;
}
/* Hero */
.hero-section{
position: relative;
}
.banner-wrapper{
background: url('../images/here-img.jpg') center/cover no-repeat;
width: 100%;
height: 50vh;
}
.rotating-stamp{
position: absolute;
top: -155px;
left: 190px;
width: 277px;
height: 277px;
background: url('../images/stamp-rotate.png') center/contain no-repeat;
z-index: 2;
animation: rotate-circle 8s linear infinite;
}
.arrow-img{
left: 280px;
position: absolute;
top: -50px;
z-index: 99;
}

@keyframes rotate-circle {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
.hero-heading{
font-size: 110px;
line-height: 1.1;
text-align: right;
margin-top: -135px;
font-weight: 700;
}
.what-we-do{
    padding: 85px 0 100px;
}
.section-title{
    display: inline-block;
    margin-bottom: 40px;
    width: 100%;
}
.section-title h4{font-size: 20px;color: var(--brand-red);line-height: 1.5;}
.section-title h4 .number-fnt{font-size: 25px;}
.what-we-do p{font-size: 25px;}
.reveal {
    /* opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease-out; */
}
.reveal.active {
    opacity: 1;
    /* transform: translateY(0px); */
}
.story-section {
    position: sticky;
    top: 0;
    overflow: hidden;
    padding: 77px 0;
    min-height: 585px;
    /* Animation initial state */
    /* opacity: 0;
    transform: translateY(40px);
    transition: all 0.5s ease-out; */
}
.story-section.active {
    opacity: 1;
    transform: translateY(0);
}
/* Numbered sections */
.story-number {
    font-weight:700;
    font-size: 200px;
    line-height: 1;
}
.story-card h2{
    font-size: 62px;
    margin: 0 0 40px;
    color: #fff;
    font-weight: 600;
    line-height: 1.2;
}
.story-card p{
    font-size: 20px;
    color: #fff;
    line-height: 1.2;
    font-weight: 300;
}
.whitebg-section .story-card h2, .whitebg-section .story-card p{
    color: #484848;
}
/* Alternating backgrounds */
.bg-brand-red { background: linear-gradient(90deg,var(--brand-red), #8f0f12); color:#fff; }
.bg-brand-dark-gradient { background: #1C1919; background: linear-gradient(90deg,rgba(28, 25, 25, 1) 60%, rgba(157, 156, 156, 1) 100%);color:#fff; }
.bg-brand-blue { background: linear-gradient(90deg,var(--brand-blue), #0a8fb1); color:#fff; }
.bg-light-contrast { background: var(--brand-white); color:#484848; }
.story-section .img-wrap img { width:100%; height:220px; object-fit:cover; border-radius:6px; }
.storiesmodal .modal-content{
    background: #787878;
    background: linear-gradient(90deg, rgba(120, 120, 120, 1) 0%, rgba(28, 25, 25, 1) 100%);
    box-shadow: 0 0 10px 0 #ffffff25;
    border-radius: 18px;
    border: none;
}
.storiesmodal .modal-body{
    padding-bottom: 0;
}
.storiesmodal .modal-header, .storiesmodal .modal-footer{
    border: none;
    justify-content: flex-start;
}
.storiesmodal .modal-header{padding-bottom: 0;}
.storiesmodal .modal-footer{padding-top: 0;padding-bottom: 30px;}
.storiesmodal .modal-header .modal-title{
    color: #fff;
    font-size: 27px;
}
.storiesmodal .form-control{
    background: #F4F4F4;
    border-radius: 7px;
    height: 36px;
    padding-left: 27px;
    margin-bottom: 18px;
}
.storiesmodal .btn-enquiry{
    width: 145px;
    height: 37px;
    font-size: 14px;
    justify-content: space-around;
}
.storiesmodal .btn-enquiry span {
    transform: rotate(45deg);
}
.whychoose{
    padding-bottom: var(--padding-b-100);
    padding-top: var(--padding-t-100);
}
.choosewhy-main-title{
    font-size: 55px;
    line-height: 1.6;
    font-weight: 600;
}
.whychoose-right-section ul li{
    padding: 74px 0;    
    border-bottom: 1px solid #48484850;
    list-style: none;
}
.whychoose-right-section ul li:first-child{
    border-top: 1px solid #48484850;
}
.whychoose-right-section ul li a{
    display: flex;
    align-items: center;
    gap: 60px;
    color: #222222;
    font-weight: 600;
    font-size: 40px;
    text-decoration: none;
}
.yourvoice-container{
    position: fixed;
    top: 50%;
    right: -60%;
    transform: translate(50%, -50%);
    z-index: 99;
    padding: 0;
    background: #F4F4F4;
    border-radius: 0;
    transition: right 0.4s ease;
    width: 1200px;
    margin: 0 auto;
}

.yourvoice-container.active {
    right: 50%;
}
.yourvoice-container .card{
    background: transparent;
    border: none;
    border-radius: 0;
}
.yourvoice-container .card-body{
    padding: 95px 0 100px 50px;
}
.yourvoice-container .card-title{
    font-weight: 700;
    font-size: 40px;
    color: var(--brand-red);
}
.yourvoice-container .card-text{
    font-size: 25px;
    color: #000000;
    line-height: 1.5;
    margin: 60px 0 100px;
    font-weight: 400;
}
.trusted-entrepreneurs{
    padding-bottom: var(--padding-b-100);
    padding-top: var(--padding-t-100);
}
.trusted-video-wrapper{
    overflow: hidden;
}
.trusted-video-card-img .video-thumbnail-img{
    object-fit: cover;
    max-width: 100%;
}
.vplay-icon, .faqplay-icon{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.faqlist{
    list-style: none;
    padding: 0;
    margin: 0;
}
.faqlist li{
    border-bottom: 1px solid #48484850;
    padding: 30px 20px;
}
.faqlist li:first-child{
    border-top: 1px solid #48484850;
}
.faqlist li a{
    text-decoration: none;
    display: flex;
    align-items: center;
    color: #222;
    font-size: 25px;
    font-weight: 500;
    gap: 15px;
}
.faqlist li a h5{
    margin: 0;
    flex-grow: 1;
    font-size: 25px;
}
.faq-arrow{
    margin-left: auto;
}
.faq-rightside h4{
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--brand-red);
}
.faq-video{position: relative;}
.contact-section{
    padding-bottom: var(--padding-b-100);
}
.contact-card {
background: #fff url(../images/hand-bg.png) no-repeat center/contain;
height: 457px;
}
.contact-card p{
    font-size: 25px;
    color: #222;
    line-height: 1.5;
}
.contact-form-card{
    background: #1C1919;
    background: linear-gradient(120deg, rgba(28, 25, 25, 1) 39%, rgba(28, 25, 25, 1) 61%, rgba(100, 98, 98, 1) 82%, rgba(157, 156, 156, 1) 100%);
    border-radius: 20px;
    padding: 45px 50px 35px;
}
.form-control{
    border-radius: 10px;
}
.form-select{
    font-size: 15px;
    border-radius: 10px;
    color: #48484865;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-image: url("../images/expand_circle_down.svg");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 14px;
}
.form-select:not(:invalid) {
  color: #222;
}
.form-select option{
    color: #222;
}

.form-control::placeholder, .form-select option[disabled]{
    font-size: 15px;
    color: #48484865;
}
.form-control:focus, .form-select:focus{
    box-shadow: none;
    border-color: #fff;
}
.contact-form-card h5{
    font-size: 30px;
    color: #fff;
    font-weight: 600;
}
.paytitle{
    font-weight: 35px;
    color: var(--brand-red);
    line-height: 1.4;
    font-weight: 600;
    margin: 0 0 40px;
}
.pay-lft-section .form-control{
    border-radius: 5px;
    border-color: #00000020;
}
.total-box{
    border-radius: 20px;
    border: 1px solid #00000030;
    padding: 20px 0px 20px 65px;
    margin: 0;
}
.custom-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 25px;
  gap: 30px;
  user-select: none;
  color: #222222;
}
.custom-checkbox input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.custom-checkbox .checkmark {
  width: 24px;
  height: 24px;
  background: url("../images/check_box_outline_blank.svg") no-repeat center/contain;
  transition: 0.2s ease;
}
.custom-checkbox input:checked + .checkmark {
  background: url("../images/select_check_box.svg") no-repeat center/contain;
}
.pay-rght-section{
    background: #fff;
    position: relative;
}
.pay-rght-section::after{
    content: '';
    position: absolute;
    width: 315px;
    height: 250px;
    background: var(--brand-red);
    bottom: -30px;
    left: 0;
}
.pay-rght-section::before{
    content: '';
    position: absolute;
    width: 315px;
    height: 250px;
    background: var(--brand-red);
    right: 0;
    top: -30px;
}
.pay-rght-inner{
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 40px 38px;
    border-radius: 20px;
    position: relative;
    min-height: 400px;
    z-index: 2;
    background: #fff;
    margin: 30px;
}
.payment-methods{
    margin: 20px 0;
}
.form-values-text label{
    font-size: 16px;
}
.btn-proceed{
    width: 355px;
    height: 67px;
    background: #222222;
    border-radius: 100px;
    text-align: center;
    color: #fff;
    box-shadow: 0 4px 4px rgba(0,0,0,0.25);
    font-size: 25px;
    font-weight: 600;
    margin: 30px 0 0;
}
.modal.paydetails-popup{
    --bs-modal-width: 747px;
}
.paydetails-popup .modal-title{
    font-size: 30px;
    font-weight: 600;
    color: #1C1919;
    margin: 0 0 45px;
}
.paysubtitle{
    font-size: 20px;
    font-weight: 500;
    margin: 0px 0 25px;
}
.paydetails-popup .modal-content{
    border: none;
    border-radius: 45px;
    box-shadow: 0 4px 4px rgba(0,0,0,0.25);
}
.paydetails-popup .modal-header, .paydetails-popup .modal-footer{
    border: none;
}
.paydetails-popup .modal-header{
    padding: 30px 50px 0;
}
.paydetails-popup .modal-footer{
    padding: 0 50px 50px;
}
.paydetails-popup .modal-body{
    padding: 10px 50px 0;
}
.paydetails-popup .form-control{
    background-color: #E0E0E050;
    border-radius: 10px;
    padding: 10px 25px;
    border: none;
    height: 40px;
}
.qrinput{
    width: 70%;
}
.qrcode-btn{
    background: #168ABE;
    color: var(--brand-white);
    height: 40px;
    border-radius: 100px;
    width: 166px;
    text-align: center;
    font-size: 15px;
}
.paybtn{
    background: #168ABE;
    color: var(--brand-white);
    height: 40px;
    border-radius: 100px;
    width: 129px;
    text-align: center;
    font-size: 15px;
}
.paydetails-popup label{
    font-size: 15px;
    font-weight: 400;
}
.paydetails-popup.payqrcode .modal-content{
    padding-top: 100px;
    padding-bottom: 100px;
}
.amout-dtls{
    margin: 20px 0;
    color: #388409;
}
.amout-dtls strong{font-size: 25px;}
.paybtn.downloadbtn{
    width: 260px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 0 auto;
    margin-top: 40px;
}
footer{
    background: #1C1919;
    background: linear-gradient(120deg, rgba(28, 25, 25, 1) 39%, rgba(28, 25, 25, 1) 61%, rgba(100, 98, 98, 1) 82%, rgba(157, 156, 156, 1) 100%);
    border-radius: 25px;
    padding: 25px 0 100px 0;
    color: #fff;
}
.f-title h2{
    font-weight: 600;
    font-size: 55px;
    line-height: 1.5;
}
.f-title .btn{
    background: var(--brand-red);
    border-radius: 30px;
    font-size: 35px;
    width: 220px;
    height: 70px;
    text-align: center;
    color: #fff;
}
footer a{ color:#fff;}
address{
    float: right;
    font-size: 30px;
}
.footer-btm{
    border-top: 1px solid #fff;
    padding-top: 35px;
}
.footer-quicklinks{
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-quicklinks li{
    margin-bottom: 24px;
}
.font-size-40{
    font-size: 40px;
}
.font-size-20{
    font-size: 20px;
}
.text-decoration-none{
    text-decoration: none;
}
/* responsive tweaks */
@media (min-width:1920px){
    .yourvoice-container{
        width: 1700px;
    }
}
/* 1200px – 1399px */
@media (max-width: 1399.98px) {
    body{
        font-size: 18px;
    }
    .nav-link,.fix-appointment-btn {
    font-size: 18px;
    }
    .hero-heading{
    font-size: 90px;
    margin-top: -110px;
    }
    .what-we-do p{font-size: 20px;}
    .story-number {
    font-size: 150px;
    }
    .yourvoice-container{
        width: 80vw;
    }
}

/* 992px – 1199px */
@media (max-width: 1199.98px) {
    body{
        font-size: 16px;
    }
    .nav-link {
    font-size: 17px;
    }
    .hero-heading{
    font-size: 80px;
    margin-top: -90px;
    }
    .what-we-do p{font-size: 18px;}
    .story-number {
    font-size: 120px;
    }
}

/* 768px – 991px (tablet) */
@media (max-width: 991.98px) {
    body{
        font-size: 16px;
    }
    .nav-link {
    font-size: 16px;
    }
    .hero-heading{
    font-size: 70px;
    margin-top: -80px;
    }
    .what-we-do p{font-size: 16px;}
    .story-number {
    font-size: 100px;
    }
}

/* Mobile (<= 767px) */
@media (max-width: 767.98px) {
    body{
        font-size: 16px;
    }
    .font-size-40 {
        font-size: 26px;
    }
    .container-fluid{
        padding-left: 15px;
        padding-right: 15px;
    }
    .navbar-toggler{
        background-color: #fff;
        border-color: #fff;
    }
    .navbar-collapse{
        margin-top: 15px;
        margin-bottom: 15px;
    }
    .fix-appointment-btn{
        margin-top:20px;
    }
    .nav-link {
    font-size: 15px;
    }
    .hero-heading{
        margin-top: 130px;
        font-size: 60px;
        text-align: center;
    }
    .hero-heading span:first-of-type{
        color: #000;
    }
    .story-card h2{
        font-size: 42px;
    }
    .whychoose-right-section ul li a{
        gap: 30px;
        font-size: 34px;
    }
    .contact-card{
        height: auto;
    }
    .contact-form-card{
        padding-left: 25px;
        padding-right:25px;
    }
    .fix-appointment-form{
        width: 100%;
        z-index: 999;
        padding-left: 25px;
        padding-right: 25px;
    }
    .custom-checkbox{
        gap: 15px;
        margin-bottom: 5px;
        font-size: 20px;
    }
    .pay-rght-inner{
        margin: 15px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .pay-rght-section::before, .pay-rght-section::after{
        width: 200px;
        height: 175px;
    }
    .f-title h2{
        font-size: 40px;
    }
    address{
        width: 100%;
    }
    .rotating-stamp{
        left: 0;
    }
    .arrow-img{
        left: 95px;
    }
    .what-we-do p{font-size: 16px;}
    .story-number {
    font-size: 90px;
    }
    .navbar{
        padding:12px 15px;
    }
}
