:root{
--blue: #007bff;
--indigo: #6610f2;
--purple: #6f42c1;
--pink: #e83e8c;
--red: #dc3545;
--orange: #fd7e14;
--yellow: #ffc107;
--green: #28a745;
--teal: #20c997;
--cyan: #17a2b8;
--black: #000000;
--white: #ffffff;

--gray-600: #6c757d;
--gray-700: #343a40;
--gray-800: #212529;
--gray-900: #495057;
--gray-100: #f8f9fa;
--danger-color: #b92b30;
--primary-color: #0ea6df;
--success-color: #d75210;
}

.btn-primary{
    background-color: var(--primary-color) !important;
}
.btn-success{
    background-color: var(--success-color) !important;
}
.btn-danger{
    background-color: var(--danger-color) !important;
}
.bg-primary{
    background-color: var(--primary-color) !important;
}
.bg-success{
    background-color: var(--success-color) !important;
}
.bg-danger{
    background-color: var(--danger-color) !important;
}
.text-primary{
    color: var(--primary-color) !important;
}
.text-success{
    color: var(--success-color) !important;
}
.text-danger{
    color: var(--danger-color) !important;
}

.text-pink{
    color:#ff0080 !important;
}

*{
    a{
        text-decoration: none;
    }
    
}
a{
    text-decoration: none;
}




body{
    margin: 0;
    padding: 0;
    font-family: roboto, sans-serif;
}

h1{
    font-size: 2rem;

}
ul,li,ol{
    list-style: none;
    padding: 0;
    margin: 0;
}
.fa{
    padding: 0px;
    margin: 0px;
}
.top-header{

    padding: 10px 0;
}

.fa a{
  font-family: poppins, sans-serif;
}


.floating-buttons {
  position: fixed;
  bottom: 100px;
  right: 20px;
  display: flex;
  flex-direction: column; /* stack vertically */
  gap: 10px; /* space between buttons */
  z-index: 1000;
}

.floating-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  /* background-color: white; optional for better visibility */
  transition: transform 0.3s, box-shadow 0.3s;
}

.floating-buttons img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  object-fit: cover;
}


/* section {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
} */


.card {
  opacity: 0;
  transition: all 0.8s ease-out;
} 
/*
Slide directions */
.slide-left { transform: translateX(-60px); }
.slide-right { transform: translateX(60px); }
.slide-up { transform: translateY(60px); }
.slide-down { transform: translateY(-60px); }

/* When visible */
.card.visible {
  opacity: 1;
  transform: translate(0, 0);
}




.navbar{
  transition: all 0.5s ease;
}


.breadcrumbOne{
    align-items: center;
    text-align: left;
    /* margin-top: 100px; */
}
.breadcrumbOne a{
    color: #007bff;
    text-decoration: none;
    margin: 0 5px;
    font-weight: bold;
    font-size: 1rem;
}
.breadcrumb-item.active{
    color: #ffffff;
    font-weight: bold;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    color: #ffffff;
}

#myCarousel .carousel-inner .carousel-item {
    width: 100%;
    height: 50vh;
}

.carousel-indicators [data-bs-target]{
    background-color: var(--primary-color);
}
#particles-js {
    width: 100%;
    height: 40vh;
    position: relative;
    background-image: linear-gradient(rgba(0, 0, 0, 0.517), rgba(0, 0, 0, 0.661)), url('../../img/breadcrumbpic.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.particles-js-canvas-el{
    position: absolute;
    top: 0;
    left: 0;
} 

#particles-js > canvas{
    display: block;
    width: 100%;
    height: 40vh;
    position: absolute;
} 



/* home page style */

.home-bg{
    background-image:  url('../../img/home-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100%;
}



.navbar-nav .nav-link.active, .navbar-nav .show>.nav-link {
    color: var(--bs-navbar-active-color);
    background-color: var(--success-color);
    color: white;
    border-radius: 5px;
    transition: all 0.3s ease;
}




/*------------------ Footer ------------------*/
/* .color-bg-icon.fa-instagram, a.fa-instagram.bg-icon:hover, .fa-instagram.color-icon.border-icon:hover {
    background-color: #e4405f;
} */
 /* linear-gradient(rgba(0, 0, 0), rgba(0, 0, 0)), */








.image-styled img{
    width: 100px;
    transition: all 0.3s ease;
    background-blend-mode: color-burn;      
}

.media{
    
    .image-styled{
        border:20px solid #ffffff79;
        display: inline-block;
        border-radius: 50%;
        img{
            width: 100px;
            height: 100px;
            transition: all 0.3s ease;
            border-radius: 50%;
            background-blend-mode: color-burn;
        }
    }
}

.row-pkg {
    padding: 0;
    gap: 15.5px;
}

.row>* {
    padding: 0;
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
     --bs-gutter-x: 0;
}



.card-custom {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: none;
    /* margin: 0 auto; */
}
.card-header-custom {
    background-color: #0d6efd;
    color: white;
    border-radius: 10px 10px 0 0 !important;
    padding: 20px;
    text-align: center;
}
.card-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0;
}
.card-subtitle {
    font-size: 0.9rem;
    opacity: 0.8;
}
.speed-badge {
    background-color: #e9f0ff;
    color: #0d6efd;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    margin: 15px 0;
}
.feature-item {
    margin-bottom: 10px;
    padding-left: 5px;
}
.feature-item i {
    color: #0d6efd;
    margin-right: 8px;
}
.price-section {
    text-align: center;
    margin: 20px 0;
}
.price-label {
    font-size: 0.9rem;
    color: #6c757d;
}
.price-amount {
    font-size: 1.8rem;
    font-weight: bold;
    color: #0d6efd;
}
.btn-buy {
    background-color: #0d6efd;
    color: white;
    font-weight: bold;
    padding: 10px 25px;
    border-radius: 5px;
    border: none;
    width: 100%;
    transition: all 0.3s;
}
.btn-buy:hover {
    background-color: #0b5ed7;
    transform: translateY(-2px);
}


/* paybill section style */




/* testimonial carousel style */


.testimonial-card {
    height: 100%; /* Ensures card takes full height of parent */
    padding: 20px;
    border-radius: 10px;
    border-top-left-radius: 50px; /* Rounded corner */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin: 0 10px;
    position: relative;
    display: flex;
    flex-direction: column;
}
.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}
.quote-icon {
    position: absolute;
    top: 15px;
    right: 20px;
    opacity: 0.1;
    font-size: 48px;
}
.carousel-control-prev, .carousel-control-next {
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.1);
    border-radius: 50%;
    top: auto;
    bottom: -60px;
}
.carousel-control-prev { left: calc(50% - 50px); }
.carousel-control-next { right: calc(50% - 50px); }
.section-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #0d6efd;
}
/* Ensures columns in carousel have equal height */
.carousel-item .row {
    display: flex;
    flex-wrap: wrap;
}
.carousel-item .col-md-6 {
    display: flex;
    flex-direction: column;
}
.terms_conditions li, .privacy_policy li {
    padding-bottom: 10px;
    line-height: 22px;
    text-align: justify;
    color: #7f7f7f;
}







.service-card {
    height: 100%;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    background: white;
    position: relative;
}
/* .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
} */
.service-card-header {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    color: white;
    padding: 25px;
    text-align: center;
    position: relative;
}
.grid-container{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    justify-content: center;
}


.card-container {
    position: relative;
    margin-bottom: 1.5rem;
    height: 100%;
}

.back-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0d6efd; /* Bootstrap primary color */
    border-radius: 12px;
    z-index: 0;
    transition: all 0.5s ease;
    opacity: 0.8;
}

.service-card {
    position: relative;
    transition: all 0.5s ease;
    height: 100%;
    z-index: 1;
}

.card-container:hover .back-card {
    transform: rotate(-3deg);
    opacity: 1;
}

.svg-icon{
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
}

.service-card-header .icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 30px;
}
.service-features {
    padding: 25px;
}
.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.feature-icon {
    width: 36px;
    height: 36px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: #0d6efd;
    font-size: 16px;
    flex-shrink: 0;
}
.price-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    color: #0d6efd;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    z-index: 2;
}
.cta-button {
    display: block;
    text-align: center;
    padding: 10px;
    background: #0d6efd;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0 0 12px 12px;
    transition: background 0.3s;
}
.cta-button:hover {
    background: #0b5ed7;
    color: white;
}
.badge-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ffc107;
    color: #212529;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}
.card-container-pk {
    position: relative;
    margin-bottom: 1.5rem;
}
.back-card-pk {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0dfd5d; /* Bootstrap primary color */
    border-radius: 12px;
    z-index: 0;
    transition: all 0.5s ease;
    opacity: 0.8;
}



.service-card {
    position: relative;
    transition: all 0.5s ease;
    height: 100%;
    z-index: 1;
}

.card-container-pk:hover .back-card-pk {
    transform: rotate(-3deg);
    opacity: 1;
}



.package-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin-bottom: 25px;
    background: white;
    position: relative;
}
/* .package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
} */
.package-header {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
}
.popular-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ffc107;
    color: #212529;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
.speed-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 10px 0;
}
.ser-price-tag {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
}
.ser-price-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    color: #0d6efd;
    padding: 5px 10px;
    border-radius: 20px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    z-index: 2;
}
.package-features {
    padding: 20px;
}
.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}
.feature-icon {
    width: 30px;
    height: 30px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: #0d6efd;
    font-size: 14px;
}
.cta-button {
    display: block;
    text-align: center;
    padding: 12px;
    background: #0d6efd;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0 0 12px 12px;
    transition: background 0.3s;
}
.cta-button:hover {
    background: #0b5ed7;
    color: white;
}
.highlight-card {
    border: 2px solid #0d6efd;
    margin-top: -5px;
}








/* -----------contact 3 style--- */


.contact-info-section {
            background-image: url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 40px;
            border-radius: 8px;
            height: 100%;
            position: relative;
        }
        
        .contact-info-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6);
            border-radius: 8px;
        }
        
        .contact-info-content {
            position: relative;
            z-index: 1;
        }
        
        .contact-info-item {
            margin-bottom: 25px;
            display: flex;
            align-items: flex-start;
        }
        
        .contact-icon {
            font-size: 1.5rem;
            margin-right: 15px;
            color: #0d6efd;
        }
        
        .contact-form-section {
            padding: 40px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
            height: 100%;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 40px;
            padding-bottom: 15px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 3px;
            background: #0d6efd;
        }
        
        .contact-info-section .section-title::after {
            background: white;
        }
        
        @media (max-width: 991.98px) {
            .contact-info-section,
            .contact-form-section {
                margin-bottom: 30px;
            }
        }



/* -----------contact 3 style--- */

.card {
  transition: all 0.35s ease;
}

/* Lift & Shadow on Hover */
.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Optional subtle glow */
.card:hover::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  box-shadow: 0 0 15px rgba(40, 167, 69, 0.3); /* greenish glow for SME */
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.card:hover::after {
  opacity: 1;
}

/* Smooth hover for buttons inside */
.card .btn {
  transition: all 0.3s ease;
}
.card:hover .btn {
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
}


.card:hover .ribbon span {
  filter: brightness(1.2);
  box-shadow: 0 0 10px rgba(255, 155, 14, 0.6);
}

.card:hover .ribbonC span {
  filter: brightness(1.2);
  box-shadow: 0 0 10px rgba(252, 4, 4, 0.503);
}

/* ==== 40° Corner Ribbon ==== */
.ribbon {
  width: 120px;
  height: 120px;
  overflow: hidden;
  position: absolute;
  top: -5px;
  left: -5px;
  z-index: 10;
}

.ribbon span {
    position: absolute;
    display: block;
    width: 160px;
    padding: 6px 0;
    background: linear-gradient(135deg, #cd7100ff, #ff5500ff);
    color: #fff;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.75rem;
    transform: rotate(-40deg);
    transform-origin: 0 0;
    top: 77px;
    left: -24px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* ==== 40° Corner Ribbon ==== */
.ribbonC {
  width: 120px;
  height: 120px;
  overflow: hidden;
  position: absolute;
  top: -5px;
  left: -5px;
  z-index: 10;
}

.ribbonC span {
    position: absolute;
    display: block;
    width: 160px;
    padding: 6px 0;
    background: linear-gradient(135deg, #a72828ff, #cc2e2eff);
    color: #fff;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.75rem;
    transform: rotate(-40deg);
    transform-origin: 0 0;
    top: 77px;
    left: -24px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}



.text-blue-500{
    width: 30px;
    height: 30px;
}

/* product cards style */
.product-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px;
  text-align: center;
  opacity: 0;
  transition: opacity .3s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}


@media (max-width: 667px) {
    .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl,
    .navbar, nav, .navbar-nav, header, .site-header, .main, .content, .wrapper {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    /* For carousel items that are left-oriented, remove margins on list items
       and hide the right-side content on small screens. */
    .carousel-item.slide-left ul li {
        margin: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .carousel-item.slide-left .slide-right {
        display: none !important;
    }
}