
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
  position: fixed;
  bottom: 20px;     /* distance from bottom */
  left: 20px;       /* position on left side */
  z-index: 99;
  display: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  text-align: center;
  line-height: 45px;

}

/* Optional: Add hover effect */
.back-to-top:hover {
  background-color: #414449;
  color: #fff;
}


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    background:#007bff !important;
    color: var(--bs-white) !important;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn-primary:hover {
    background: var(--bs-white) !important;
    color:#007bff !important;
}

.btn.btn-light {
    background: var(--bs-light) !important;
    color: var(--bs-primary) !important;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn-light:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-light) !important;
}


.RotateMoveLeft {
    position: relative;
    animation: RotateMoveLeft 10s linear infinite;
}

.RotateMoveRight {
    position: relative;
    animation: RotateMoveLeft 10s linear infinite;
}

@keyframes RotateMoveLeft {
    0%   {left: 0px;}
    50%   {left: 40px;}
    100%  {left: 0px;}
}

@keyframes RotateMoveRight {
    0%   {right: 0px;}
    50%   {right: 40px;}
    100%  {right: 0px;}
}


/*** Navbar ***/


.navbar-light .navbar-nav .nav-link {
    margin-right: 25px;
    padding: 35px 0;
    color: var(--bs-dark) !important;
    font-size: 16px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-brand img {
    max-height: 50px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover { 
    color: black;
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: .5s;
    opacity: 1;
}

.collapse.navbar-collapse {
    transition: 0.5s;
}

@media (max-width: 992px) {
    nav.bg-transparent {
        position: absolute;
        width: 100%;
        background: transparent !important;
    }

    .navbar.navbar-expand-lg button span {
        position: relative;
        z-index: 99;
    }

    .navbar {
        position: relative;
        background: var(--bs-light);
        z-index: 2;
    }

    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white) !important;
        padding: 0 20px 20px 20px !important;
    }

    .sticky-top.navbar-light {
        background: transparent;
    }

    nav.navbar {
        padding: 0 30px 30px 0;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark) !important;
    }


    .navbar-light .navbar-brand img {
        max-height: 45;
    }

    .hero-header {
        margin-top: -100px !important;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        background: transparent !important;
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light) !important;
    }
}
/* Mobile & Tablet (Below 768px) */
@media (max-width: 768px) {
    nav.bg-transparent {
        position: absolute;
        width: 100%;
        background: transparent !important;
    }

    .navbar.navbar-expand-lg button span {
        position: relative;
        z-index: 99;
    }

    .navbar {
        position: relative;
        background: var(--bs-light);
        z-index: 2;
    }

    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white) !important;
        padding: 0 20px 20px 20px !important;
    }

    .sticky-top.navbar-light {
        background: transparent;
    }

    nav.navbar {
        padding: 0 30px 30px 0;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }

    .hero-header {
        margin-top: -100px !important;
    }
}
/* Desktop (Above 768px) */
@media (min-width: 768px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        background: transparent !important;
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light) !important;
    }
}

/*** Navbar End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(102, 16, 242, 0.05), rgba(102, 16, 242, 0.05));
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 150px 0 60px 0;
    margin-bottom: 6rem;
    transition: 0.5s;
}

.bg-breadcrumb::after {
    content: "";
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    border-radius: 300px;
    border: 80px solid rgba(247, 71, 128, 0.05);
    background: transparent;
    animation: RotateMoveSingle 5s linear infinite;
    z-index: -1;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
    z-index: 2;
}


@keyframes RotateMoveSingle {
    0% {
        -webkit-transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
        transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
    }
      100% {
        -webkit-transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
        transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
    }

    0% {bottom: 0px;}
    50%   {left: -10px;}
    75%   {bottom: 10%;}
    100%  {bottom: 0px;}
}

.bg-breadcrumb::before {
    content: "";
    position: absolute;
    top: -15%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 300px;
    border: 80px solid rgba(247, 71, 128, 0.04);
    background: transparent;
    animation: RotateMoveSingle 5s linear infinite;
    z-index: -1;
}

@keyframes RotateMoveSingle {
    0% {
        -webkit-transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
        transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
    }
      100% {
        -webkit-transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
        transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
    }

    0% {top: 0px;}
    50%   {top: 10%;}
    100%  {top: 0px;}
}

@media (max-width: 992px) {
    .bg-breadcrumb {
        padding-top: 100px !important;
    }
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-dark) !important;
}





.breadcrumb-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.breadcrumb-animation li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(102, 16, 242, 0.07);
    animation: animate 25s linear infinite;
    bottom: -150px;
    
}

.breadcrumb-animation li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.breadcrumb-animation li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.breadcrumb-animation li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.breadcrumb-animation li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.breadcrumb-animation li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.breadcrumb-animation li:nth-child(6) {
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.breadcrumb-animation li:nth-child(7) {
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.breadcrumb-animation li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.breadcrumb-animation li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.breadcrumb-animation li:nth-child(10) {
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}

@keyframes animate {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}
/*** Single Page Hero Header End ***/


/*** Hearo Header Start ***/
.header::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: var(--bs-light);
    border-radius: 22% 78% 33% 67% / 32% 0% 100% 68%;
    animation: bgMove 5s linear infinite;
    z-index: -1;
}

@keyframes bgMove {
    0%   {right: 0px;}
    50%   {right: 20px;}
    100%  {right: 0px;}
}

.header::before {
    content: "";
    position: absolute;
    bottom: -9%;
    left: -7%;
    width: 400px;
    height: 400px;
    border-radius: 200px;
    border: 30px solid rgba(247, 71, 128, 0.05);
    background: transparent;
    animation: RotateMoveHeader 5s linear infinite;
    z-index: -1;

}

@keyframes RotateMoveHeader {
    0% {
        -webkit-transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
        transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
    }
      100% {
        -webkit-transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
        transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
    }


    0% {bottom: 0px;}
    50%   {left: -10px;}
    75%   {bottom: 9%;}
    100%  {bottom: 0px;}
}

.hero-header {
    padding-top: 160px;
    padding-bottom: 100px;
    position: relative;
}

.hero-header::after {
    content: "";
    position: absolute;
    left: 100px;
    bottom: 100px;
    width: 58px;
    height: 50px;
    background: url(../img/sty-1.png) center center no-repeat;
    animation: RotateMoveSty-3 45s linear infinite;
    transition: 0.5s;
    z-index: -1;
    
}

@keyframes RotateMoveSty-3 {
    0%   {left: 100px;}
    40%   {bottom: -0px;}
    50%   {left: 700px;}
    70%   {bottom: 500px;}
    80%   {left: 400px;}
    95%   {bottom: -0px;}
    100%  {left: 100px;}
}

.hero-header::before {
    content: "";
    position: absolute;
    left: 100px;
    bottom: 100px;
    width: 300px;
    height: 300px;
    border-radius: 150px;
    border: 30px solid rgba(102, 16, 242, 0.05);
    background: transparent;
    animation: RotateMoveSty-4 45s linear infinite;
    transition: 0.5s;
    z-index: -1;
    
}

@keyframes RotateMoveSty-4 {
    0%   {left: 100px;}
    40%   {bottom: -0px;}
    50%   {left: 700px;}
    70%   {bottom: 500px;}
    80%   {left: 400px;}
    95%   {bottom: -0px;}
    100%  {left: 100px;}
}


.hero-header .rotate-img {
    position: absolute;
    top: 70px;
    left: 20px;
}

.hero-header .rotate-img .rotate-sty-2 {
    position: absolute;
    top: 100px;
    left: 50px;
    width: 50px;
    height: 50px;
    border-radius: 30px;
    border: 5px solid rgba(247, 71, 128, 0.1);
    background: transparent;
    animation: RotateMoveSty-2 45s linear infinite;
    transition: 0.5s;

}

@keyframes RotateMoveSty-2 {
    0%   {left: 0px;}
    40%   {top: -30px;}
    50%   {left: 500px;}
    70%   {top: 200px;}
    80%   {left: 100px;}
    95%   {top: -30px;}
    100%  {left: 0px;}
}

.hero-header .rotate-img img {
    position: relative;
    animation: RotateMove 30s linear infinite;
    z-index: -1;
}

@keyframes RotateMove {
    0%   {left: 0px;}
    50%   {left: 200px;}
    100%  {left: 0px;}
}


@media (max-width: 992px) {
    .hero-header {
        padding-top: 280px;
        
    }

    .hero-header .rotate-img img {
        margin-top: 100px;
    }
   
}


/*** Hero Header End ***/


/*** Service Start ***/
.service .service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
}

.service .service-item,
.service .service-item .service-icon,
.service .service-item a {
    transition: 0.5s;
}

.service .service-item:hover {
 
    border: 1px ;
}






/*** Service End ***/


/*** Features Start ***/
.feature .feature-img {
    background: var(--bs-light);
    border-radius: 58% 42% 21% 79% / 30% 29% 71% 70%;
}
/*** Features End ***/


/*** Pricing Start ***/
.price .price-item {
    position: relative;
    overflow: hidden;
    transition: 0.5s;
}

.price .price-item:hover {
    background: var(--bs-white) !important;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

.price .price-item .pice-item-offer {
    position: absolute;
    width: 200px;
    height: 110px;
    top: -45px;
    right: -80px;
    background: var(--bs-primary) !important;
    color: var(--bs-white);
    transform: rotate(42deg);
    display: flex;
    align-items: end;
    justify-content: center;
    padding-bottom: 10px;
}
/*** Pricing End ***/


/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    background: rgba(102, 16, 242, 0.2);
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.blog .blog-item .blog-img .blog-info {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    padding: 20px;
    background: rgba(102, 16, 242, 0.2);
    color: var(--bs-white) !important;
    display: flex;
    align-items: end;
    justify-content: space-between;
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-info {
    background: rgba(0, 0, 0, .4);
}


.blog .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover img {
    transform: scale(1.3);
}
/*** Blog End ***/


/*** Testimonial Start ***/
.testimonial {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.testimonial .testimonial-carousel.owl-carousel {
    position: relative;
    padding: 0 35px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    width: 65px;
    height: 65px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(102, 16, 242, 0.09);
    color: var(--bs-primary);
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 65px;
    height: 65px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(102, 16, 242, 0.09);
    color: var(--bs-primary);
    transition: 0.5s;
}


.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: var(--bs-white) !important;
}


.testimonial-carousel .owl-dots {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot img {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    margin-right: 15px;
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    width: 70px;
    height: 70px;
    border-radius: 40px;
    border: 4px solid var(--bs-secondary);
}

@media (min-width: 900px) {
    .testimonial .testimonial-carousel .testimonial-item .testimonial-inner p.fs-7 {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .testimonial .testimonial-carousel.owl-carousel {
        padding: 0;
    }

    .testimonial .testimonial-carousel .owl-nav .owl-prev {
        margin-top: -250px;
        margin-left: -15px;
    }

    .testimonial .testimonial-carousel .owl-nav .owl-next {
        margin-top: -250px;
        margin-right: -15px;
    }
}
/*** Testimonial End ***/

/*** Contact Start ***/
.contact {
    position: relative;
    overflow: hidden;
    transition: 0.5s;
    z-index: 1;
}

.contact::after {
    content: "";
    position: absolute;
    top: 10%;
    left: -1%;
    width: 400px;
    height: 400px;
    border-radius: 200px;
    border: 60px solid rgba(102, 16, 242, 0.05);
    background: transparent;
    animation: ContactMoveLeft 50s linear infinite;
    z-index: 1;
}

@keyframes ContactMoveLeft {
    0%   {left: 0px;}
    25%   {top: 100px;}
    50%   {left: 90%;}
    75%   {top: 80%;}
    100%  {left: 0px;}
}

.contact::before {
    content: "";
    position: absolute;
    top: 10%;
    right: -1%;
    width: 400px;
    height: 400px;
    border-radius: 200px;
    border: 60px solid rgba(102, 16, 242, 0.05);
    background: transparent;
    animation: ContactMoveRight 50s linear infinite;
    z-index: 1;
}

@keyframes ContactMoveRight {
    0%   {right: 0px;}
    25%   {top: 100px;}
    50%   {right: 90%;}
    75%   {top: 80%;}
    100%  {right: 0px;}
}
/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: black;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.footer .footer-item a {
    line-height: 35px;
   color: white;
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-primary);
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark) !important;
}
/*** copyright end ***/

 
/* ===== OUR PROCESS SECTION ===== */
.process-section {
  background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
  color: #fff;
  padding: 90px 0;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

/* Header */
.process-header {
  max-width: 800px;
  margin: 0 auto 60px;
}

.process-tag {
  display: inline-block;
  background: #ff7f50;
  color: #fff;
  padding: 10px 22px;
  border-radius: 25px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-weight: 600;
}

.process-header h2 {
  font-size: 2.5rem;
  margin: 20px 0;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Steps Layout */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* ✅ 5 per row desktop */
  gap: 35px;
  justify-items: center;
  position: relative;
  padding: 0 40px;
}

/* Step Card */
.step {
  background: #1c1c1c;
  padding: 40px 25px;
  border-radius: 15px;
  width: 100%;
  max-width: 240px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(255, 127, 80, 0.15);
  transition: all 0.4s ease;
  animation: fadeInUp 0.8s ease forwards;
}

.step:hover {
  transform: translateY(-10px);
  background: #262626;
  box-shadow: 0 10px 30px rgba(255, 127, 80, 0.3);
}

/* Icons */
.step .icons {
  background: #ff7f50;
  color: #fff;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 32px;
  box-shadow: 0 0 20px rgba(255, 127, 80, 0.4);
  transition: all 0.3s ease;
}

.step:hover .icons {
  background: #ff9565;
  transform: scale(1.1);
  box-shadow: 0 0 35px rgba(255, 149, 101, 0.7);
}

/* Step Title */
.step h3 {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 600;
  margin-top: 10px;
  line-height: 1.4;
}

/* Connector hidden (optional, for grid layout) */
.connector {
  display: none;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Responsive Layout ===== */

/* 🖥 Large Desktop - 5 per row */
@media (min-width: 1201px) {
  .process-steps {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* 💻 Tablet - 4 per row */
@media (max-width: 1200px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* 📱 Mobile - 3 per row */
@media (max-width: 768px) {
  /* 3 cards per row on mobile */
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 0px;
    justify-items: center;
  }

    .mobile-justify {
    text-align: justify !important;
  }

  /* Each card slightly smaller */
  .step {
    max-width: 210px;
    padding: 28px 18px;
    border-radius: 12px;
  }

  /* Icon size balanced */
  .step .icons {
    width: 60px;
    height: 60px;
    font-size: 24px;
    margin-bottom: 15px;
  }

  /* Title sizing */
  .step h3 {
    font-size: 1rem;
    line-height: 1.3;
  }

  /* Header text */
  .process-header h2 {
    font-size: 1.9rem;
  }
}

/* 📱 Small Mobile (optional fallback) */
@media (max-width: 480px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* Know More Button */
.process-btn {
  margin-top: 50px;
  text-align: center;
}
.process-btns {
  margin-top: 50px;

}

.know-more-btn {
  display: inline-block;
  background: #ff7f50;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px 35px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.know-more-btn:hover {
  background: #ff9565;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
  transform: translateY(-3px);
  color: white;
}






   #aboutCarousel {
            max-width: 1000px; /* Wider to accommodate two columns */
            margin: 40px auto;
            border-radius: 12px; /* Smooth, modern rounded corners */
            overflow: hidden; 
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Soft shadow for lift */
            background-color: #ffffff; 
        }

        /* --- Carousel Item Structure (Key Flexbox Setup) --- */

        .carousel-item {
            padding: 0;
        }

        .carousel-item .row {
            display: flex; /* Activate Flexbox */
            align-items: stretch; /* Ensures both containers have equal height */
            margin: 0;
            padding: 0;
            min-height: 450px; /* Set a minimum height for the slide */
        }

        /* --- Image Container (The First Box) --- */

        .carousel-item .col-lg-6 {
            padding: 0;
        }

        .carousel-item img {
            /* Image now fills its column container completely */
            display: block;
            width: 100%;
            height: 100%; /* Fill the height of the container */
            max-height: 100%;
            object-fit: cover;
            border-radius: 0;
        }


        /* --- Content Container (The Second Box) --- */

        /* Targets the column that holds the caption/content for styling */
        .carousel-item .col-lg-6:last-child {
             background-color: #ffffff;
        }

        .carousel-caption {
            /* Caption is now positioned as a regular content block inside its column */
            position: relative; 
            left: auto;
            right: auto;
            bottom: auto;
            
            padding: 40px; /* Generous padding */
            color: #333;
            text-align: left !important;
            height: 100%; /* Ensure content block fills its container height */
            display: flex;
            flex-direction: column;
            justify-content: center; /* Vertically center the text within the block */
        }

        .carousel-caption h5 {
            font-size: 2rem;
            font-weight: 700;
            color: #1a73e8; /* Vibrant blue accent */
            margin-bottom: 15px;
        }

        .carousel-caption p {
            font-size: 1.05rem;
            line-height: 1.7;
            color: #555;
        }

        /* --- Controls (Arrows) Styles --- */

        .carousel-control-prev,
        .carousel-control-next {
            width: 5%; 
            opacity: 0; /* Hide arrows for a super clean look */
            transition: opacity 0.3s;
        }
        #aboutCarousel:hover .carousel-control-prev,
        #aboutCarousel:hover .carousel-control-next {
            opacity: 1; /* Show arrows only on hover */
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            /* Simple, clean control button */
            background-image: none; /* Remove default icon */
            background-color: #1a73e8;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        /* Custom arrow symbols */
        .carousel-control-prev-icon::before { content: '‹'; font-size: 24px; color: white; display: block; line-height: 40px; }
        .carousel-control-next-icon::before { content: '›'; font-size: 24px; color: white; display: block; line-height: 40px; }


        /* --- Indicators (Dots) Styles --- */

        .carousel-indicators {
            bottom: -40px; /* Move indicators below the main container */
        }

        .carousel-indicators button {
            width: 10px;
            height: 10px;
            margin: 0 5px;
            border-radius: 50%;
            background-color: #99a8b6; /* Soft gray for inactive */
            opacity: 0.8;
            transition: background-color 0.3s;
        }

        .carousel-indicators .active {
            background-color: #1a73e8; /* Bright blue for active dot */
            opacity: 1;
        }


        /* --- Mobile Responsiveness (Stacking on Small Screens) --- */

        @media (max-width: 991.98px) {
            /* Force the two columns to stack on tablet/mobile */
            .carousel-item .row {
                flex-direction: column;
                min-height: auto;
            }

            .carousel-item img {
                height: 300px; /* Adjust height for mobile/tablet view */
            }
            
            .carousel-caption {
                padding: 30px;
                text-align: center !important;
            }
            
            .carousel-caption h5 {
                font-size: 1.7rem;
            }
            
            .carousel-indicators {
                bottom: -30px; 
            }
        }  








        .process-card {
  background: #fff;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Responsive tweaks */




/* Tranding Section */
#tranding {
  text-align: center;
  padding: 100px 0; /* extra space to ensure image fully visible */
}

/* Wrapper */
.tranding-wrapper {
  position: relative;
  max-width: 1000px;
  margin: auto;
  overflow: visible; /* allow scaled image to show fully */
}

/* Swiper Slider */
.tranding-slider {
  width: 100%;
  overflow: visible;
  padding-bottom: 60px; /* ensure pagination stays below images */
}

/* Slide */
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Slide Image */
.swiper-slide img {
  width: 300px;
  height: 300px;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


/* Active Slide Image Effect */
.swiper-slide-active img {
  transform: scale(1.1) translateY(10px); /* shift down a bit */
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  z-index: 5;
}

/* Pagination */
.swiper-pagination {
  margin-top: 30px;
  position: static !important;
}

.swiper-pagination-bullet {
  background: #ff7b00 !important;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

/* Food Info */
.food-info {
  margin-top: 25px;
  animation: fadeIn 0.6s ease;
}

.food-info h1 {
  font-size: 2rem;
  color: #333;
}

.food-info p {
  margin-top: 5px;
  font-size: 1.1rem;
  color: #666;
}

#food-price {
  color: #ff7b00;
  font-weight: 600;
  font-size: 1.3rem;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}





/* WhatsApp floating button */
.mobile-contact-btn.whatsapp-btn {
    position: fixed;
    bottom: 20px;           /* distance from bottom */
    right: 20px;            /* distance from right */
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #25D366;  /* WhatsApp green */
    color: white;
    padding: 10px 16px;
    border-radius: 50px;         /* rounded pill shape */
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    z-index: 999;
}

/* Icon inside button */
.mobile-contact-btn.whatsapp-btn i {
    font-size: 1.2rem;     /* adjust icon size */
    display: flex;
    align-items: center;
}

/* Hover animation */
.mobile-contact-btn.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}
/* Phone floating button */
.mobile-contact-btn.phone-btn {
    position: fixed;
    bottom: 80px;           /* above WhatsApp button */
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #007bff;  /* blue color */
    color: white;
    padding: 10px 16px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    z-index: 999;
}

/* Icon inside button */
.mobile-contact-btn.phone-btn i {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

/* Hover animation */
.mobile-contact-btn.phone-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}



/* === Our Approach Section === */
.our-approach {
  padding: 80px 0;
  background-color: #fff;
  text-align: center;
}

.our-approach h2 {
  font-size: 52px;
  font-weight: 700;
  color: #222;
  margin-bottom: 50px;
  position: relative;
}

.our-approach h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background-color: #007bff;
  display: block;
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Grid layout */
.our-approach .approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.our-approach .step {
  transition: all 0.3s ease;
  background-color: #f9f9f9;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.our-approach .step:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Number Circle */
.our-approach .number-circle {
  width: 70px;
  height: 70px;
  background-color: #e0edff;
  color: #007bff;
  font-size: 26px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

/* Step Title & Text */
.our-approach h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.our-approach p {
  color: #666;
  font-size: 15px;
}

/* Button */
.our-approach .btn-approach {
  display: inline-block;
  color: #fff;
  font-weight: 500;
  padding: 12px 30px;
  border-radius: 8px;
  margin-top: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.our-approach .btn-approach:hover {

  transform: scale(1.05);
}

/* === Responsive Design === */
@media (max-width: 992px) {
  .our-approach h2 {
    font-size: 28px;
  }

  .our-approach .approach-grid {
    gap: 30px;
  }
}


@media (max-width: 480px) {
  .our-approach h2 {
    font-size: 24px;
  }

  .our-approach .approach-grid {
    gap: 25px;
  }

  .our-approach .step {
    padding: 20px 10px;
  }

  .our-approach .number-circle {
    width: 55px;
    height: 55px;
    font-size: 20px;
  }
}





.approach-section {
  text-align: center;
  padding: 0px 20px;
  background-color: #fff;
  position: relative;
  width: 100%;
}

.containers {
  max-width: 1200px;
  text-align: center;
  position: relative;
  margin: 0 auto;
}


/* ===== Steps Layout ===== */
.steps1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  max-width: 1100px;
  margin: 0 auto 40px auto;
  gap: 20px;
}

.step1 {
  position: relative;
  width: 22%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.4s ease;
}

.step1:hover {
  transform: translateY(-10px);
}

/* Staggered layout */
.step1:nth-child(odd) {
  transform: translateY(-40px);
}
.step1:nth-child(even) {
  transform: translateY(150px);
}

/* ===== Number Style ===== */
.number {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.05);
  z-index: 1;
}

/* ===== Hexagon Shape ===== */
.hexagon {
  position: relative;
  background: #fff;
  width: 160px;
  height: 160px;
  margin: 0 auto;
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.3s ease;
}

.hexagon:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.hexagon i {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

/* ===== Individual Step Colors ===== */
.step1:nth-child(1) .hexagon {
  background: linear-gradient(135deg, #fff3cd, #ffeaa7);
}
.step1:nth-child(1) i {
  color: #f39c12;
}

.step1:nth-child(2) .hexagon {
  background: linear-gradient(135deg, #ffeaa7, #fab1a0);
}
.step1:nth-child(2) i {
  color: #e17055;
}

.step1:nth-child(3) .hexagon {
  background: linear-gradient(135deg, #a29bfe, #74b9ff);
}
.step1:nth-child(3) i {
  color: #0984e3;
}

.step1:nth-child(4) .hexagon {
  background: linear-gradient(135deg, #74b9ff, #a29bfe);
}
.step1:nth-child(4) i {
  color: #6c5ce7;
}

/* ===== Connector Line ===== */
.connector1 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -80px;
  width: 120%;
  max-width: 1600px;
  height: 200px;
  z-index: 0;
}

.connector1 path {
  fill: none;
  stroke: #ff7b00;
  stroke-width: 5;
  stroke-dasharray: 12 6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .steps1 {
    justify-content: center;
    gap: 40px;
  }

  .step1 {
    width: 40%;
    transform: none !important;
  }

  .connector1 {
    width: 100%;
    height: 150px;
  }

  .connector1 path {
    stroke-width: 4;
  }
}





/* --- Mobile Responsiveness (Stacking on Small Screens) 
           Digital marketing
--- */



.about-section img {
  width: 100%;
  max-width: 500px; /* limits oversized images */
  height: auto;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: block;
  margin: 0 auto; /* centers the image in column */
}




.text-primarys {
  background: linear-gradient(90deg, #4b2e05, #b8860b, #d4af37, #f7e7a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'DM Serif Display', serif;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.display-51 {
  color: #1a1a1a; /* deep black for headline */
   font-family: 'DM Serif Display', serif;
}


.Rotates {
  overflow: hidden;
  border-radius: 12px;
}

.Rotates video {
  width: 100%;
  height: 700px; /* adjust height */
  object-fit: cover; /* fills full area */
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) { 
  .mobile-justify {
    text-align: justify !important;
  }

  .hero-img-hide {
    display: none !important;
  }
  .about-section img {
    max-width: 100%;
    margin-bottom: 20px;
  }
    .section-paddings img {
    display: none;
  }
  .steps1 {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }

  .step1 {
    width: 80%;
    transform: none !important;
    position: relative;
  }

  .hexagon {
    width: 130px;
    height: 130px;
  }

  .hexagon i {
    font-size: 2rem;
  }

  /* Hide curved connector, show vertical connectors */
  .connector1 {
    display: none;
  }

  .step1:not(:last-child) .mobile-connector {
    display: block;
  }


  
  .our-approach {
    padding: 60px 20px;
  }

  .our-approach h2 {
    font-size: 26px;
    margin-bottom: 40px;
  }

  .our-approach .step {
    padding: 25px 15px;
  }

  .our-approach h3 {
    font-size: 18px;
  }

  .our-approach p {
    font-size: 14px;
  }

  .our-approach .number-circle {
    width: 60px;
    height: 60px;
    font-size: 22px;
  }

  .our-approach .btn-approach {
    padding: 10px 25px;
    font-size: 14px;
  }
  .approach-grid{
    margin-left: 60px;
  }

    .swiper-slide img {
    width: 220px;
    height: 220px;
  }

  .food-info h1 {
    font-size: 1.5rem;
  }

  .process-card {
    padding: 20px;
  }

  .process-card h5 {
    font-size: 16px;
  }

  .process-card p {
    font-size: 14px;
  }

  .icon {
    font-size: 2rem;
  }

  .process-section {
    padding: 40px 15px;
  }

  .process-section h2 {
    font-size: 22px;
  }

  .process-section p {
    font-size: 14px;
  }
}



