/* @import url("https://fonts.googleapis.com/css2?family=Inter:wght@600&display=swap"); */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@600&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    /*font-weight: 600;*/
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f9f9f9;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
}

.showcaser{

    height: 95vh;
    width: 100%;
}
.container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px;
    animation: fadeIn 1.2s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-header {
    display: flex;
    justify-content: center;
    margin-block: 1rem;
    animation: slideUp 0.8s ease-in-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-badge {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    font-size: 20px;
    font-weight: 500;
    transition: transform 0.3s ease;
}



.services-badge:hover {
    transform: scale(1.05);
}

@media(max-width:1000px){
    .service-badge{
        width:500px;
    }
}

@media(max-width:1000px){
    .heading{
        font-size:12px;
        margin:0;
        padding:0;

    }
}



@keyframes bounce {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-4px);
    }
}

.main-heading {
    font-family: 'Inter', sans-serif;
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

@media(max-width:1000px){
    .main-heading{
        font-size:20px;
        margin:0;
        padding:0;
        margin-inline:5px;
        margin-bottom:40px;
    }
}

/* heading */
#service
{

padding-top: 20px;
padding-bottom: 140px;
padding-inline: 200px;
}

@media(max-width:1000px){
    #service{
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

@media(max-width:768px){
    #service{
        padding-top: 100px;
        padding-bottom: 100px;
        padding-inline: 0px;
        margin-top:1vh;
    }
    .billbo-faq{
        height: 1400px !important;
    }
    .showcaser{
        height: 65vh;
        width: 100%;
    }
}
@media(max-height:1000px){
    .billbo-faq{
        height: 1000px ;
    }
}
@media (max-height: 884px) {
    .billbo-faq {
        height: 1900px ;
        background-color: lightgray; /* example: you can add more styles here */
    }

}
@media (min-width: 600px) and (max-width: 1023px) {
    .showcaser{
        height: 45vh;
        width: 100%;
    }
}
.billbo-faq{
    height: 1000px;
    width: 100%;
}



.highlight {
    color: #ffffff;
    background: linear-gradient(135deg, #4F5BFF, #171a48, #000000);
    padding: 0 4px;
    border-radius: 4px;
}

/* ✅ Updated services-container to wrap service-items */




.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

/* ✅ Updated service-item to fit properly */
.service-item {
    flex: 1 1 300px;
    max-width: 400px;
    display: grid;
    grid-template-columns: 30px 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
        "number title arrow"
        "number description arrow";
    gap: 10px 16px;
    padding: 14px;
    border-radius: 12px;
    background-color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);

    /* #4F5BFF with 50% opacity */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.service-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 4px 16px rgba(79, 91, 255, 0.5);
}

.service-number {
    grid-area: number;
    font-size: 14px;
    font-weight: 500;
    color: #aaa;
}

.service-title {
    grid-area: title;
    font-size: 22px;
    font-weight: 600;
    color: #222;
}

.service-description {
    grid-area: description;
    font-size: 15px;
    color: #666;
    max-width: 500px;
}

.service-arrow {
    grid-area: arrow;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 22px;
    color: #999;
    transition: transform 0.3s ease;
}

.service-arrow i {
    font-size: 22px;
}

.service-item:hover .service-arrow {
    transform: translateX(5px);
}

.services-badge>svg {
    margin-right: 0.5rem;
    height: 1rem;
    animation: bounce 0.8s infinite alternate;
}

/* ✅ Optional: Responsive for very small screens */
@media (max-width: 500px) {
    .service-item {
        flex: 1 1 100%;
    }
}

/* 2.css */
.container-fluid
{
    margin-top: 10vh;
    padding:2vh 4vw;
}

@keyframes fadeSlideDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}



@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulseGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes slideInLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes expandWidth {
    0% {
        width: 0;
    }
    100% {
        width: 80px;
    }
}

@keyframes letterSpacing {
    0% {
        letter-spacing: -10px;
        opacity: 0;
    }
    100% {
        letter-spacing: normal;
        opacity: 1;
    }
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f0f0;
    color: #000;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 40px;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

header {
    margin-bottom: 20px;
    position: relative;
}

.header-content {
    position: relative;
    padding: 1px 0;
    overflow: hidden;
}

.header-wrapper {
    position: relative;
}

.header-bg {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(69, 104, 220, 0.1), rgba(176, 106, 179, 0.1));
    border-radius: 50%;
    z-index: -1;
    opacity: 0; 
}

.title-mask {
    overflow: hidden;
}

.header-title-span {
    color: #4568dc;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: -5px;
    opacity: 0;
    display: block;
}

.header-title-main {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    opacity: 0; /* GSAP will control this */
}

.header-line {
    height: 4px;
    width: 0; /* GSAP will control this */
    background: linear-gradient(90deg, #4568dc, #b06ab3);
    margin: 15px 0;
}

.header-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 300;
    max-width: 80%;
    opacity: 0; /* GSAP will control this */
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    padding: 20px 20px;
}

.card {
    display: flex;
    gap: 15px;
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
    transition: transform 0.3s ease;
}

.card:nth-child(1) { animation-delay: 0.3s; }
.card:nth-child(2) { animation-delay: 0.5s; }
.card:nth-child(3) { animation-delay: 0.7s; }
.card:nth-child(4) { animation-delay: 0.9s; }
.card:nth-child(5) { animation-delay: 1.1s; }
.card:nth-child(6) { animation-delay: 1.3s; }

.card:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4F5BFF, #252525, #000000);
    background-size: 200% 200%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.card:hover .icon-box {
    animation: pulseGradient 2s ease infinite;
    box-shadow: 0 5px 15px rgba(70, 104, 220, 0.3);
}

.arrow {
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
   }

.content h2 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.card:hover .content h2 {
    color: #4568dc;
}

.content h3 {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: #333;
}

.content p {
    font-size: 0.9rem;
    color: #666;
    font-weight: 300;
}

.divider {
    height: 1px;
    background-color: #eee;
    margin: 40px 0;
    animation: fadeIn 1s ease-out 1.5s forwards;
    opacity: 0;
}

.website {
    color: #666;
    font-weight: 300;
}

@media (max-width: 900px) {
    .cards-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .container {
        padding: 40px 30px;
    }

    .header-title-main {
        font-size: 3.5rem;
    }
}

@media (max-width: 600px) {
    .cards-container {
        grid-template-columns: 1fr;
    }

    .header-title-main {
        font-size: 2rem ;
    }

 
} 


/* 3.css */
.process-wrapper {
    text-align: center;
    position: relative;
    border-radius: 25px;
    box-shadow: cadetblue;
    background-color: #e8e8e8;
    width: 100%;
    padding-top: 80px;
    padding-bottom: 80px;
    box-shadow: 0 20px 12px rgb(0 0 0 / 11%);
}

.process-wrapper h2 {
    /* font-family: 'Playfair Display', serif; */
    font-size: 3.2rem;
    margin-bottom: 80px;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #4F5BFF, #171a48, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;

    transition: all 0.4s ease;
}

/* Animated underline */
.process-wrapper h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0; /* stick to bottom */
    transform: translateX(-50%); /* center it */
    width: 0;
    height: 2px;
    background: rgb(0, 0, 0);
    transition: width 0.4s ease;
}

.process-wrapper h2:hover::after {
    width: 80%;
}





.process-container {
    position: relative;
    width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, auto);
    justify-items: center;
    align-items: center;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    margin-left: 20px;
}

.circle,
.circle2,
.circle3,
.circle5 {
    background: linear-gradient(135deg, #4F5BFF, #171a48, #000000);
    color: white;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    z-index: 2;
    transition: all 0.3s ease;
    /* cursor: pointer; */
}

/* New clean hover effect */
.step:hover .circle,
.step:hover .circle2,
.step:hover .circle3,
.step:hover .circle5 {
    transform: translateY(-5px);
    box-shadow: 0 0 20px #4F5BFF;
    color: rgb(255, 255, 255);
    background: linear-gradient(135deg, #000000, #0c1599);
}

.step:hover .label {
    transform: translateY(-5px);
    box-shadow: 0 0 15px #4F5BFF;
    color: rgb(0, 0, 0);
    background: white
}


.circle2 {
    margin-left: 50px;
}

.circle3 {
    margin-left: 1px;
}

.circle5 {
    margin-left: 187px;
}

.label {
    background:  #fff;
    color: rgb(0, 0, 0);
    padding-block: 5px;
    border-radius: 12px;
    margin-top: 2.8rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}


/* Label positioning */
#label1,
#label2,
#label3,
#label4,
#label5 {
    position: absolute;
    z-index: 9;
    width: 100px;
}

#label1 {
    top: 60px;
    margin-left: -80px;
}

@media(max-width:1000px){
    #label1{
        margin-left:20px;
    }
}

#label2 {
    top: 60px;
    margin-left: -40px;
}

@media(max-width:1000px){
    #label2{
        margin-left:20px;
    }
}

#label3 {
    top: 60px;
    margin-left: -100px;
}

@media(max-width:1000px){
    #label3{
        margin-left:20px;
    }
}

#label4 {
    top: 210px;
    margin-left: -120px;
}

@media(max-width:1000px){
    #label4{
        margin-left:20px;

    }
    #showcaser_web{
        height: 60vh !important;
    }
}

#label5 {
    top: 210px;
    margin-left: 40px;
}
@media(max-width:1000px){
    #label5{
        margin-left:20px;
    }
}

.step-1 {
    grid-column: 1;
    grid-row: 1;
}

.step-2 {
    grid-column: 2;
    grid-row: 1;
}

.step-3 {
    grid-column: 4;
    grid-row: 1.5;
}

.step-4 {
    grid-column: 3;
    grid-row: 2;
}

.step-5 {
    grid-column: 1;
    grid-row: 2;
}

.connector-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 115%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.connector-line path {
    stroke: #000000;
    stroke-width: 3;
    fill: transparent;
    transition: stroke 0.3s ease;
}

.connector-line path:hover {
    stroke: #00D4FF;
}

/* Mobile Responsive */
@media (max-width: 1000px) {
    .process-container {
        width: 95%;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto auto;
        gap: 40px;
    }

    .step {
        margin-left: 0;
    }

    .circle,
    .circle2,
    .circle3,
    .circle5 {
        margin-left: auto;
        margin-right: auto;
    }

    .label {
        position: static !important;
        margin-top: 1rem;
        margin-left: auto;
        margin-right: auto;
        width: auto;
    }

    #label1,
    #label2,
    #label3,
    #label4,
    #label5 {
        position: static !important;
        margin-top: 1rem;
    }

    .step-1,
    .step-2,
    .step-3,
    .step-4,
    .step-5 {
        grid-column: 1;
        grid-row: auto;
    }

    .connector-line {
        display: none;
    }
}

.website {
    color: #666;
    font-weight: 300;
}

@media (max-width: 900px) {
    .cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .container {
        padding: 40px 30px;
    }
    
    .header-title-main {
        font-size: 3.5rem;
    }
}

@media (max-width: 600px) {
    .cards-container {
        grid-template-columns: 1fr;
    }
    
    .header-title-main {
        font-size: 2.4rem;
    }
    
    .container {
        padding: 30px 20px;
        border-radius: 0;
    }
}
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    animation: fadeIn 1s ease-out 1.7s forwards;
    opacity: 0;
  }
  
  .footer-left h2 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
  }
  
  .footer-right {
    text-align: right;
    font-size: 0.9rem;
  }
  @media (max-width: 600px) {
    footer {
      flex-direction: column;
      gap: 15px;
      align-items: flex-start;
  }
  
  .footer-right {
      text-align: left;
      color:black;
  }
  
  .container {
      padding: 30px 20px;
      border-radius: 0;
  }
  }
  @media (max-width: 600px) {
      #social-section{
      margin-top:20px;
  }
}
  @media (max-width: 768px) {
    .ri-map-pin-line, .ri-phone-fill, .ri-mail-open-line {
      margin-right: 8px; /* Adjust margin on smaller screens */
    }
    p {
      font-size: 14px; /* Adjust font size on mobile */
    }
    .ri-map-pin-line {
      margin-bottom: 5px; /* Add some space for the address */
    }
  }
  .quick-link {
    color: black;
    text-decoration: none;
  }
  
  .quick-link:hover {
    color: #0ba34e;
  }
/* Floating Enquiry Button Styles */
.floating-enquiry-btn {
    position: fixed;
    right: 0; /* Changed from 20px to 0 to stick to edge */
    bottom: 50%;
    transform: translateY(50%);
    z-index: 9999;
background: linear-gradient(135deg, #4F5BFF, #171a48, #000000);    color: white;
    padding: 15px 8px; /* More vertical padding, less horizontal */
    border-radius: 13px 0 0 13px; /* Rounded only on left side */
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: -3px 0 10px rgba(0, 0, 0, 0.1); /* Shadow on left only */
    cursor: pointer;
    transition: all 0.3s ease;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    height: auto;
    border: none;
    outline: none;
}

.floating-enquiry-btn:hover {
    right: 0; /* Maintain position on hover */
    padding: 15px 12px; /* Slight expansion on hover */
    transform: translateY(50%) scale(1.05);
}

.floating-enquiry-btn i {
    transform: rotate(90deg);
    margin-top: 8px;
    margin-right: 2px; /* Adjust icon position */
}

/* Enquiry Modal Styles */
.enquiry-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.close-btn:hover {
    color: #333;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #3a7bd5;
    outline: none;
}

.submit-btn {
background: linear-gradient(135deg, #4F5BFF, #171a48, #000000);    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    transition: all 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(58, 123, 213, 0.4);
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .floating-enquiry-btn {
        transition: right 0.2s ease;
    }
    
    body:hover .floating-enquiry-btn {
        right: 0;
    }
    
    /* When near scrollbar, nudge slightly left */
    body.scrolled .floating-enquiry-btn {
        right: 6px;
    }
}
/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366; /* WhatsApp brand color */
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  z-index: 9998; /* One below enquiry button */
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  background: #128C7E; /* Darker WhatsApp color */
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Pulsing animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 25px;
    bottom: 20px;
    right: 20px;
  }
}