/********** Template CSS **********/
:root {
    --primary: #ffa600;
    --secondary: #F4B400;
    --secondary-rgb: 244, 180, 0;
    --light: #F7FAFF;
    --dark: #1D1D27;
    --accent: #F6AF61;
    --text-muted: #bababb;
    --button-glow: rgba(71, 119, 245, 0.4);
}

.row>*{
    padding-right: 10px;
    padding-left: 10px;
}

.btn-primary{
    color: #fff;
    background-color: var(--secondary) !important;
    border-color: var(--secondary) !important;
}

.btn-outline-primary{
    color: var(--secondary) !important;
    border-color: var(--secondary) !important;
}

.btn-outline-primary:hover{
    background-color: var(--secondary) !important;
    color: #fff !important;
}

.text-primary{
    color: var(--secondary) !important;
}


/*** 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;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 100px;
    z-index: 99;
}


/*** Heading ***/
h1,
h2,
h3,
.fw-bold {
    font-weight: 700 !important;
}

h4,
h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}

.btn-check +.btn-primary, .btn-primary {
    box-shadow: none !important;
}

.swiper-button-next::after,
.swiper-button-prev::after{
    display: none;
}

.swiper-button-next i,
.swiper-button-prev i{
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-primary{
    background-color: var(--secondary) !important;
}


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: var(--light) !important;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--secondary) !important;
}

.navbar-light .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .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(--dark) !important;
    }

    .navbar-light .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }

    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--secondary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-light .navbar-brand h1 {
        color: var(--primary);
    }
}


/*** Hero Header ***/
.hero-header {
    /* background:
        url(../img/bg-dot.png),
        url(../img/bg-dot.png),
        url(../img/bg-round.png),
        url(../img/bg-tree.png),
        url(../img/bg-bottom-hero.png);
    background-position:
        10px 10px,
        bottom 190px right 10px,
        left 55% top -1px,
        left 45% bottom -1px,
        center bottom -1px;
    background-repeat: no-repeat; */
    background-image: url(../img/all-page-banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.hero-header::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    top: 0;
    left: 0;
}

.hero-header .breadcrumb{
    position: relative;
    z-index: 1;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 4px;
    bottom: 0;
    left: 0;
    background: var(--dark);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    bottom: 0;
    left: 50px;
    background: var(--dark);
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -25px;
}

.section-title.text-center::after {
    left: 50%;
    margin-left: 25px;
}

.section-title h6::before,
.section-title h6::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    top: 2px;
    left: 0;
    background: rgba(var(--secondary-rgb), .5);
}

.section-title h6::after {
    top: 5px;
    left: 3px;
}


/*** Service ***/
.service-item {
    position: relative;
    height: 100%;
    padding: 30px 25px;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item .service-icon {
    margin: 0 auto 20px auto;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    background: url(../img/icon-shape-primary.png) center center no-repeat;
    transition: .5s;
    filter: hue-rotate(340deg) invert(1);
}

.service-item:hover .service-icon {
    color: var(--primary);
    background: url(../img/icon-shape-white.png);
    filter: hue-rotate(340deg) invert(0);
}

.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover h5,
.service-item:hover p {
    color: var(--light);
}

.service-item a.btn {
    position: relative;
    display: flex;
    color: var(--primary);
    transition: .5s;
    z-index: 1;
}

.service-item:hover a.btn {
    color: var(--primary);
}

.service-item a.btn::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 35px;
    top: 0;
    left: 0;
    border-radius: 35px;
    background: #DDDDDD;
    transition: .5s;
    z-index: -1;
}

.service-item:hover a.btn::before {
    width: 100%;
    background: var(--light);
}


/*** Testimonial ***/
.newsletter,
.testimonial {
    background:
        url(../img/bg-top.png),
        url(../img/bg-bottom.png);
    background-position:
        left top,
        right bottom;
    background-repeat: no-repeat;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--light) !important;
    border-color: var(--light);
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #888888;
}

.testimonial-carousel .owl-item.center .testimonial-item i {
    color: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item h6 {
    color: var(--dark) !important;
}


/*** Team ***/
.team-item {
    position: relative;
    transition: .5s;
    z-index: 1;
}

.team-item::after {
    position: absolute;
    content: "";
    top: 3rem;
    right: 3rem;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    background: var(--primary);
}

.team-item h5,
.team-item small {
    transition: .5s;
}

.team-item:hover h5,
.team-item:hover small {
    color: var(--light);
}


/*** Project Portfolio ***/
#portfolio-flters .btn {
    position: relative;
    display: inline-block;
    margin: 10px 4px 0 4px;
    transition: .5s;
}

#portfolio-flters .btn::after {
    position: absolute;
    content: "";
    right: -1px;
    bottom: -1px;
    border-left: 20px solid transparent;
    border-right: 0 solid transparent;
    border-bottom: 50px solid #FFFFFF;
}

#portfolio-flters .btn:hover,
#portfolio-flters .btn.active {
    color: var(--light);
    background: var(--primary);
}

.portfolio-overlay {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 30px;
    top: 0;
    left: 0;
    background: var(--primary);
    transition: .5s;
    z-index: 1;
    opacity: 0;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item .btn {
    position: absolute;
    width: 90px;
    height: 90px;
    top: 0px;
    right: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../img/icon-shape-white.png) center center no-repeat;
    border: none;
    transition: .5s;
    opacity: 0;
    z-index: 2;
}

.portfolio-item:hover .btn {
    opacity: 1;
    transition-delay: .15s;
}


/*** Footer ***/
.footer {
    background: url(../img/internet.png) center center no-repeat;
    background-size: contain;
}

.footer p{
    font-size: 14px;
    text-wrap: wrap;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.breadcrumb-item+.breadcrumb-item::before{
    color: #fff;
}





@import url("https://fonts.googleapis.com/css?family=Roboto:400,400i,700");
* { font-family: "Roboto", sans-serif; }

/* Common button styles */
button.wh-ap-btn, button.call-ap-btn {
  outline: none;
  width: 60px;
  height: 60px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  transition: transform 0.3s, box-shadow 0.3s;
}
button.wh-ap-btn:hover, button.call-ap-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
}

/* WhatsApp Icon */
button.wh-ap-btn {
  background-color: #2ecc71;
}
button.wh-ap-btn::after {
  content: "";
  background-image: url("../img/watsapp-icon.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 80%;
  width: 100%;
  height: 100%;
  display: block;
}

/* Call Icon */
button.call-ap-btn {
  background-color: #007bff;
}
button.call-ap-btn::after {
  content: "";
  background-image: url("../img/call-icon.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 55%;
  width: 100%;
  height: 100%;
  display: block;
  filter: invert(1);
}

/* Tooltips */
button.wh-ap-btn::before,
button.call-ap-btn::before {
  position: absolute;
  top: 18px;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.4s, transform 0.4s;
  color: #fff;
}
button.wh-ap-btn::before {
  content: "Chat on WhatsApp";
  background: #2ecc71;
  right: 70px;
  transform: translateX(10px);
}
button.call-ap-btn::before {
  content: "Call Us Now";
  background: #007bff;
  left: 70px;
  transform: translateX(-10px);
}
a:hover button.wh-ap-btn::before,
a:hover button.call-ap-btn::before {
  opacity: 1;
  transform: translateX(0);
}

/* WhatsApp button (Right Bottom) */
.whatsapp-pulse {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #2ecc71;
  border-radius: 50%;
  z-index: 999;
}
.whatsapp-pulse::before {
  position: absolute;
  content: "";
  z-index: -1;
  background-color: #2ecc71;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  top: -15px;
  left: -15px;
  opacity: 0.6;
  animation: pulse 1.8s ease-out infinite;
}

/* Call button (Left Bottom) */
.call-pulse {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background-color: #007bff;
  border-radius: 50%;
  z-index: 999;
}
.call-pulse::before {
  position: absolute;
  content: "";
  z-index: -1;
  background-color: #007bff;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  top: -15px;
  left: -15px;
  opacity: 0.6;
  animation: pulse 1.8s ease-out infinite;
}

/* Pulse animation */
@keyframes pulse {
  0% { transform: scale(0); opacity: 0; }
  25% { transform: scale(0.3); opacity: 1; }
  50% { transform: scale(0.6); opacity: 0.6; }
  75% { transform: scale(0.9); opacity: 0.3; }
  100% { transform: scale(1); opacity: 0; }
}


/* Hover dropdown open */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0; /* default bootstrap gap remove */
}
/* Default style */
.dropdown-item {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease-in-out;
}

/* Background effect */
.dropdown-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%; /* start from left side */
  width: 100%;
  height: 100%;
  background-color: #f4b400;
  z-index: -1;
  transition: left 0.3s ease-in-out;
}

/* Hover effect */
.dropdown-item:hover::before {
  left: 0; /* slide in from left */
}

.dropdown-item:hover {
  color: #000; /* text color black for contrast */
}

.contact-ab{
    color: #6c757d;
}
.contact-ab:hover{
    color: #3a3d40;
}
.contact-a{
    color: #fff;
}
.contact-a:hover{
    color: #f4b400;
}
.footer-img{
     position: relative; 
     background: url('../img/internet.png') center center / cover no-repeat; 
     z-index: 1;
}


.company-logo {
  max-height: 100px;   /*  fix height */
  object-fit: contain;
  transition: 0.3s;
}
.company-logo:hover {
  filter: grayscale(0%);   /* Hover pe color show */
  transform: scale(1.1);   /* Hover zoom */
}



#whyChooseUs-boxWrp .card {
  border-radius: 15px;
  transition: all 0.3s ease-in-out;
}
#whyChooseUs-boxWrp .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
#whyChooseUs-boxWrp .whyChooseUs-icon i {
  transition: transform 0.3s ease-in-out;
}



.workflow-area {
  position: relative;
}
.workflow-timeline {
  position: relative;
  margin: 0 auto;
  padding-left: 30px;
  border-left: 3px solid #f4b400;
}
.workflow-step {
  position: relative;
  margin-bottom: 50px;
  padding-left: 40px;
}
.workflow-step:last-child {
  margin-bottom: 0;
}
.workflow-icon {
  position: absolute;
  left: -23px;
  top: 0;
  width: 45px;
  height: 45px;
  background: #f4b400;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}
.workflow-content h5 {
  margin-bottom: 12px;
}
.workflow-step:hover .workflow-icon {
  transform: scale(1.1);
  background: #f4b400;
  transition: 0.3s;
}

.btn-square {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  min-width: 45px;
}



/*cursor circle ==========================*/



.cursor {
width: 30px;
  height: 30px;
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  background: #f4b400;   
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out;
}

.expand {
   background: #f4b400;
  animation: custom-click-effect-x9y 0.5s forwards;
}

@keyframes clickEffect {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}

