/*
Main Stylesheet
*/

:root{
    --black-color: #000000;
    --white-color: #ffffff;
    --gradient-one: linear-gradient(90deg, #05FFF6 0%, #63FF49 100%);
    --gradient-one-45: linear-gradient(45deg, #05FFF6 0%, #63FF49 100%);
    --gradient-two: linear-gradient(90deg, #ad1ce6 0%, #0A189E 100%);
    --gradient-two-60: linear-gradient(60deg, #da06be 20%, #1609d3 100%);
    --gradient-two-25: linear-gradient(20deg, #da06be 20%, #1609d3 100%);
    --wa-g1: #006eff;
    --wa-g2: #ff00fb;
}
body{
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
}
a{
    text-decoration: none;
}
button{
    font-weight: 300;
}
.container{
    max-width: 1140px;
}
.heading-xxl{
    font-size: 14rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.heading-xl{
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.heading-lg{
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.heading-md{
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.heading-sm{
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.lh-9{
    line-height: 0.9;
}
.nsd{
    font-family: "Noto Serif Display", serif;
}
.font-light{
    font-weight: 400;
}
.bg-white{
    background: var(--white-color);
    color: var(--black-color);
}
.bg-white a{
    color: var(--black-color);
}
.bg-black{
    background: var(--black-color);
    color: var(--white-color);
}
.bg-black a{
    color: var(--white-color);
}
.color-black{
    color: var(--black-color);
}

.black-btn{
    background: var(--black-color);
    color: #ffffff;
    border-radius: 25px;
    padding: 10px 30px;
}
.white-btn{
    background: var(--white-color);
    color: var(--black-color);
    border-radius: 25px;
    padding: 10px 30px;
}


/* Common button styles */
.btn-hover-c {
  position: relative;
  padding: 10px 30px;
  border-radius: 25px;
  cursor: pointer;
  overflow: hidden; /* allows hover animation inside */
  z-index: 1;
  transition: color .2s ease;
}

/* Gradient Border Button (black inside by default) */
.gradient-border-btn {
  background: var(--gradient-two);
  border: none;
  color: #fff;
}

.gradient-border-btn::before {
  content: "";
  position: absolute;
  top: 2px; left: 2px; right: 2px; bottom: 2px;
  background: var(--black-color);
  border-radius: 25px;
  z-index: -1;
}

/* Hover effect (gradient spreads inside from mouse point) */
.gradient-border-btn::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 30px;
  background: var(--gradient-two);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.3s ease;
  z-index: -1;
}

.gradient-border-btn:hover::after {
  width: 300%; 
  height: 300%; /* grows to cover whole button */
}

/* Gradient Filled Button */
.gradient-btn {
  background: var(--gradient-one);
  border: none;
  color: #000;
  padding: 10px 40px;
  text-decoration: none; 
}

/* Hover effect (black spreads in) */
.gradient-btn::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 30px;
  background: var(--gradient-two);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.3s ease;
  z-index: -1;
}

.gradient-btn:hover {
  color: #fff;
}

.gradient-btn:hover::after {
  width: 300%;
  height: 300%;
}



.gradient-text{
    background-image: var(--gradient-one);
    color: transparent;
    background-clip: text;
}

.gradient-text-2{
    background-image: var(--gradient-two-60);
    color: transparent;
    background-clip: text;
}

.gradient-text-3{
    background-image: var(--gradient-two-25);
    color: transparent;
    background-clip: text;
}

.info, .info-dark{
    padding: 8px 20px;
    background: rgba(6, 205, 148, 0.25);
    border: 1px solid #000000;
    border-radius: 25px;
    display: inline-block;
    font-size: 1rem;
}
.info-dark{
    background: #252525;
}
.section{
    margin-bottom: 8rem;
}
.pt-10{
    padding-top: 10rem;
}
.pb-10{
    padding-bottom: 10rem;
}

/* Hero Section */
.hero-section{
    height: 110vh;
    background: var(--black-color);
    color: #fff;
    padding-left: 0;
    padding-right: 0;
}
.hero-content{
    position: relative;
}
.hero-text{
    position: relative;
    width: 60%;
    z-index: 2;
    margin-bottom: 5vh;
}
.hero-img{
    position: absolute;
    top: -100px;
    left: 40%;
    z-index: 1;
}
.tophigh{
    padding-top: 20vh;
}

/* Navbar Custom */
.navbar-custom{
    padding-top: 1.5rem;
    padding-bottom: 0rem;
}
.navbar-custom .navbar-nav{
    margin: 0 auto;
}
.brand-name{
    margin-left: 1rem;
    font-weight: 700;
    font-size: 1.4rem;
    display: none;
}
.navspace{
    padding-left: 1.5rem;
}

.navbar-nav .active{
    background-color: transparent;
}
.navbar-nav .active:after {
  content: "";
}
/* About Section */
.about-section{
    position: relative;
}
.about-img{
    border-radius: 40px;
    margin-bottom: 20px;
}
.about-wrap{
    position: absolute;
    background: #fff;
    margin-top: 600px;
    border-radius: 80px;
    padding: 30vh;
    padding-top: 60px;
    padding-bottom: 50px;
}


/* CSS */

.mission-side-text {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 100;
}

.mission-content {
  flex: 1;
}



.strike {
  position: relative;
  display: inline-block;
  background-image: var(--gradient-two-60);
  background-repeat: no-repeat;
  background-size: 0% 8px;   /* start with 0% width */
  background-position: 0 80%; /* slightly above the bottom */
  padding: 0 2px;
  transition: background-size 1.5s ease-out;
}

.strike.animate {
  background-size: 100% 8px; /* expand to full width */
}


.mission-content p {
  line-height: 1.8;
  margin: 15px 0;
}

.dot {
  font-weight: bold;
  margin-right: 15px;
}



/* Service Section */
.services-section{
    margin-top: 65vh;
}
.service-box{
    padding: 30px;
}
.service-box-title{
    margin-top: 24px;
    margin-bottom: 10px;
}
.service-box img{
    border-radius: 20px;
    box-shadow: 0px 0px 25px #c9c9c9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box img:hover {
    transform: scale(1.01); /* zoom a bit */
    box-shadow: 0px 10px 35px #b8b8b8; /* bigger shadow */
}

.portfolio-sec{
    padding-top: 80px;
}

.heading-movement{
    font-size: 110px;
    font-weight: 800;
    opacity: .1;
    text-align: center;
    margin-bottom: 10px;

}

.mouse-text {
  color: transparent;
  background: var(--gradient-two-25);
  -webkit-background-clip: text;
  background-clip: text;
  transition: background-position 0.05s;
  background-size: 400% 400%;
}


.mouse-circle {
  position: fixed;
  top: 0;
  left: 0;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(242, 0, 255, 0.12) 0%, rgba(0, 0, 0, 0) 60%);
  transform: translate(-50%, -50%);
  filter: blur(10px); /* makes it glow */
  z-index: 9999;
}


.parallax-heading {
  position: relative;          /* keeps natural layout */
  overflow: visible;           /* don't clip the inner movement */
  will-change: transform;      /* performance hint */
}

.parallax-heading .parallax-inner {
  display: inline-block;       /* so translateY moves just the text */
  will-change: transform;
  transition: transform 0.06s linear; /* slight smoothing (optional) */
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .parallax-heading .parallax-inner {
    transition: none;
    transform: none !important;
  }
}



/* mobile slider*/
.swiper {
  width: 100%;
  padding: 20px 0;
}
.swiper-pagination-bullet {
  background: #ffffff; /* bullet color */
  border: 1px solid #353535;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #000000;
}
.swiper-pagination-a .swiper-pagination-bullet {
  background: #000000; /* bullet color */
  border: 1px solid #ffffff;
  opacity: 1;

}
.services-swiper-p{
  text-align: center;
}

.swiper-pagination-a .swiper-pagination-bullet-active {
  background: #ffffff;
}



/* Works Section */
span.em{
    display: block;
    font-style: italic;
    font-weight: 500;
}
.works-section-content{
    margin-top: -100px;
    padding-top: 50px;
    position: relative;
    z-index: 1;
}
.works-section-content::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: block;
    background: var(--black-color);
    z-index: -1;
    opacity: .8;
}
.work-img{
    margin-bottom: 20px;
    border-radius: 10px;
}


.card-black{
    background: #0e0e0e;
    border: 1px solid #4E4E4E;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
}
span.small{
    font-size: 1.2rem;
    font-weight: 300;
}


/* Partners */
.partner-logo{
    display: flex;
    justify-content: center; 
    align-items: center;  
    height: 10vh;
}


/* FAQ */
.faq-card{
    background: url(images/faq-col-bg.jpg);
    background-size: cover;
    padding: 20px;
    border-radius: 14px;
    color: var(--white-color);
}
.card-imgs{
    position: relative;
    margin-bottom: 60px;
}
.card-imgs img{
    position: absolute;
}
.card-imgs .faq-imgs-1{
    top: 0px;
    left: 0px;
    z-index: 1;
}
.card-imgs .faq-imgs-2{
    top: 0px;
    left: 20px;
    z-index: 2;
}
.card-imgs .faq-imgs-3{
    top: 0px;
    left: 40px;
    z-index: 3;
}



.content {
    padding: 0 18px;
    display: none;
    overflow: hidden;
}

.accordion {
  background-color: #ffffff;
  color: #111111;
  cursor: pointer;
  padding: 15px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  border-radius: 1vh;
  font-size: 1.3rem;
  font-weight: 400;
}
.faq2{
    border-bottom: 1px solid #ccc;
    padding-top: 10px;
    padding-bottom: 10px;
}


.active, .accordion:hover {
  background-color: #f0f0f0;
}

.ques {
 padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.ans1{
    margin-top: 20px;
}

.accordion:after {
  content: "+";
  font-size: 15px;
  color: #777;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "−";
}




/* Wrapper */
.wa-fab{
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 140px;
  height: 140px;
  z-index: 9999;
  pointer-events: none; /* let clicks pass except on the button */
}

/* WhatsApp button */
.wa-btn{
  pointer-events: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%);
  background: #25D366;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  transition: transform .2s ease-in-out, box-shadow .2s ease-in-out;
}
.wa-btn:hover{
  transform: translate(-50%, -50%) scale(1.07);
  box-shadow: 0 10px 28px rgba(0,0,0,.3);
}
.wa-btn img{
  width: 36px; height: 36px;
}

/* SVG ring that holds the text */
.wa-ring{
  position: absolute;
  inset: 0;
  width: 140px;
  height: 140px;
  pointer-events: none; /* so clicks still hit the button */
}

/* Text styling + rotation */
.wa-ring text{
  font-weight: 500;
  letter-spacing: 2px;
}
.wa-spin{
  animation: wa-rotate 12s linear infinite;
  transform-origin: 100px 100px; /* center of the viewBox */
}
@keyframes wa-rotate{
  from{ transform: rotate(0deg); }
  to  { transform: rotate(360deg); }
}



/* Footer Section */
.footer-section{
    padding-top: 160px;
}
.address-section{
    background: #353535;
    color: #fff;
    border-radius: 20px;
    margin-bottom: -100px;
    padding: 20px;
    position: relative;
    z-index: 1;
}
.address-box{
    padding: 20px;
}
.address-box img{
    margin-bottom: 20px;
}

.footer{
    margin-bottom: 30px;
}
.brand-footer p{
    text-align: justify;
}
.copyright-border-top{
    border-top: 1px solid #BCBCBC;
}
.nav-footer{
    list-style: none;
}
.nav-footer li{
    list-style: none;
    margin-bottom: 10px;
}
.nav-footer li a{
    text-decoration: none;
    transition: all 0.3s;
}
.nav-footer li a:hover{
    margin-left: 20px;
}
p.git{
    color: #ccc;
    font-size: 0.9rem;
}
.social-nav{
    display: flex;
    gap: 20px;
}



/* Contact Page Start */

.contact-section{
    padding-left: 90px;
    padding-right: 90px;
}
 .hero-text-2{
    font-size: 65px;
    letter-spacing: 5px;
    font-weight: 100;
}


    form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 15px;
    }

    form label {
      grid-column: span 2;
      font-size: 14px;
      margin-bottom: 5px;
    }

   .form-style {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid transparent;          /* Needed for border-radius */
  border-radius: 8px;                    /* Rounded corners */
  background: #fff;                       /* White input background */
  background-clip: padding-box, border-box;
  background-origin: border-box;
  background-image: 
    linear-gradient(#fff, #fff),          /* inside */
    var(--gradient-one-45);               /* border gradient */
  outline: none;
  transition: 0.3s;

  /* Drop Shadow */
  box-shadow: 0 0 12px rgba(0, 255, 200, 0.15); /* neon-like glow */
}

    textarea {
      min-height: 100px;
      resize: none;
      grid-column: span 2;
    }

    .services {
      grid-column: span 2;
      margin-top: 10px;
    }

    .services p {
      margin-bottom: 8px;
      font-weight: 500;
    }

    .services label {
    display: flex;
    align-items: center;
    gap: 8px;       /* space between bullet and text */
    font-size: 15px;
    cursor: pointer;
    padding: 5px;
}

.services input[type="radio"] {
  accent-color: #000000; /* modern browsers support custom radio color */
  margin: 0;             /* reset */
}


/* Contact Page End */





   /* --- Main Section Container --- */
        .how-we-work-section {
            margin-bottom: 80px;
            padding-top: 200px;
            padding-bottom: 50px;
            width: 100%;
        }

        /* --- Section Header --- */
        .section-header {
            display: flex;
            align-items: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 3rem; /* 48px */
            font-weight: 200; /* Light weight to match the design */
            color: #121212;
            white-space: nowrap; /* Prevents "How We Work" from breaking into two lines */
            margin-right: 30px;
        }

        .heading-line {
            flex-grow: 1; /* Allows the line to take up the remaining space */
            height: 2px;
            background: var(--gradient-two-25);
        }

        /* --- Steps Grid Container --- */
        .work-steps-container {
            display: grid;
            /* Create 4 equal columns on desktop */
            grid-template-columns: repeat(4, 1fr);
            gap: 40px; /* Space between the columns */
        }

        /* --- Individual Step Styling --- */
        .work-step {
            text-align: left;
        }

        .step-number {
            font-size: 4rem; /* 64px */
            font-weight: 700;
            color: #a435f0; /* A color picked from the gradient */
            display: block;
            margin-bottom: 10px;
        }

        .step-title {
            font-size: 1.25rem; /* 20px */
            font-weight: 600;
            color: #1f1f1f;
            margin: 0 0 10px 0;
        }

        .step-description {
            font-size: 1rem; /* 16px */
            color: #555;
            line-height: 1.6;
            margin: 0;
        }

       





@media screen and (max-width: 768px) {
    .brand-name{
        display: inline-block;
    }
    .heading-xxl{
        font-size: 5rem;
    }
    .heading-xl{
        font-size: 2.6rem;
    }
    .hero-section{
        height: 100% !important;
    }
    .hero-img, .hero-text{
        position: static;
        width: 100%;
    }
    .button-box{
        text-align: center;
    }
    .align-self-end{
        display: none;
    }
    .tophigh {
    padding-top:10px;
    padding-bottom: 10vh;
    }

    .hero-img{
    padding-bottom: 3vh;
    }
    .hero-section .align-items-sm-top{
    align-items: start !important;
    }

    .about-wrap{
        padding: 2vh;
        margin-top: 300px;
    }
 
    .strike{
        display: none;
    }
    .mission-side-text{
        display: none;
    }
   .mouse-circle {
  display: none;
   }
   .heading-movement{
    font-size: 60px;
}

.contact-section{
    padding-left: 10px;
    padding-right: 10px;
}

.how-we-work-section {
                padding: 10px;
                padding-top: 350px;
            }

            .section-header {
                flex-direction: column; /* Stack heading and line vertically */
                align-items: flex-start; /* Align to the left */
                margin-bottom: 40px;
                
            }

            .section-header h2 {
                font-size: 2rem; /* 32px */
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .heading-line {
                width: 100%; /* Make the line full-width */
            }

            .work-steps-container {
                /* Switch to a 1-column layout */
                grid-template-columns: 1fr;
                gap: 50px;
                
            }
            
            .step-number {
                font-size: 3rem; /* 48px */
            }
        

}


 /* --- Responsive Design --- */
        
        /* For Tablets (e.g., screen width <= 992px) */
        @media (max-width: 992px) {
            .work-steps-container {
                /* Switch to a 2-column layout */
                grid-template-columns: repeat(2, 1fr);
            }
            .section-header h2 {
                font-size: 2.5rem; /* 40px */
            }
        }