/* =========================================================
   GLOBAL
========================================================= */

* {
    transition: background .3s, color .3s, border .3s;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: #ffffff;
    color: #111827;
    overflow-x: hidden;
    transition: background .3s ease, color .3s ease;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #111827;
}

/* Text */
p,
span,
li {
    color: #374151;
}

/* Links */
a {
    text-decoration: none;
}

.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
    background-color: #25D366;
    border-color: #25D366;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    background: #ffffff !important;
    backdrop-filter: blur(10px);
}

.navbar-brand {
    color: #16a34a !important;
    font-weight: 700;
}

.navbar-brand img {
    transition: .3s;
}

.nav-link {
    color: #111827 !important;
    font-weight: 500;
}

.nav-link:hover {
    color: #16a34a !important;
}

/* Dark toggle */

.toggle-dark {
    cursor: pointer;
    font-size: 20px;
}


.breadcrumb-nav{
    font-size:.9rem;
    color:#6c757d;
    margin-bottom: 0px !important;	
}

.breadcrumb-nav a{
    text-decoration:none;
    color:#6c757d;
}

.breadcrumb-nav span{
    margin:0 6px;
}
/* =========================================================
   DROPDOWN
========================================================= */

.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.dropdown-item {
    padding: 10px 16px;
}

.dropdown-item:hover {
    background: #f3f4f6;
    color: #16a34a;
}






/* =========================================================
   HERO
========================================================= */

.hero{
    background: radial-gradient(circle at top left, #198754, #198754);
    color:#fff;

    padding:60px 0 40px;
}

.hero h1,
.hero p {
    color: #fff;
}

/* Hero Visual */

.hero-visual {
    position: relative;
}

.hero-visual img {
    transition: transform 0.5s ease;
}

.hero-visual:hover img {
    transform: scale(1.03);
}

/* Floating Badges */

.floating-badge {
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    animation: floatY 4s ease-in-out infinite;
}

/* Badge positions */

.floating-badge:nth-child(2) {
    top: 10%;
    left: -10%;
}

.floating-badge:nth-child(3) {
    bottom: 15%;
    right: -10%;
}

.floating-badge:nth-child(4) {
    top: 50%;
    right: -15%;
}

/* Hero Slider */

.hero-slider{
    position:relative;
    overflow:hidden;

    width:100%;
    max-width:650px;   /* increased */

    margin:auto;
    height:650px;      /* increased */
}

/* slides */
.hero-slider .slide{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    opacity:0;
    transition:all .8s ease;
}

/* active */
.hero-slider .slide.active{
    opacity:1;
    transform:translateX(0);
    z-index:2;
}

/* previous */
.hero-slider .slide.prev{
    opacity:0;
    transform:translateX(-100%);
}

/* image */
.hero-slider img{
    width:100%;
    height:100%;
    object-fit:contain;
}

/* =========================================================
   SECTION
========================================================= */

.section {
    padding: 110px 0;
}

/* Section Header */

.section-header {
    max-width: 720px;
    margin: auto;
}

.section-header h2 {
    font-size: 34px;
}

.section-header p {
    font-size: 16px;
    line-height: 1.6;
}

/* Section Tag */

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
}

/* =========================================================
   CARDS
========================================================= */

.feature-card,
.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .05);
    transition: .3s;
}

.feature-card:hover {
    transform: translateY(-8px);
}

.feature-card h5,
.testimonial-card p,
.testimonial-card h6 {
    color: #111827;
}

/* =========================================================
   BUTTONS
========================================================= */

.btn-success {
    background: #16a34a;
    border: none;
    box-shadow: 0 10px 25px rgba(34, 197, 94, .35);
}

.btn-success:hover {
    background: #15803d;
}

.btn-light {
    background: #fff;
    color: #111827;
}

/* WhatsApp CTA Button */

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 50px;
    background: #25D366;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    transition: 0.3s;
    animation: pulseWhats 2s infinite;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn i {
    font-size: 18px;
}

.lead{
	font-weight:400;
}

/* =========================================================
   BADGE
========================================================= */

.badge {
    --bs-badge-font-size: 1em;
}

@media (max-width: 768px) {
    .badge {
        --bs-badge-font-size: 0.85em !important;
    }
}

/* =========================================================
   SCREENSHOT / CAROUSEL
========================================================= */

.carousel-item img {
    height: 520px;
    object-fit: contain;
}

/* =========================================================
   SLIDER
========================================================= */

.slider-wrapper {
    overflow: hidden;
    position: relative;
}

.slider-wrapper:hover .slider-track {
    animation-play-state: paused;
}

.slider-track {
    display: flex;
    gap: 10px;
    width: calc(250px * 12);
    animation: scrollSlider 25s linear infinite;
}

.slider-track img {
    height: 650px;
    width: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: .3s;
}

.slider-track img:hover {
    transform: scale(1.02);
}

/* =========================================================
   WHATSAPP SECTION
========================================================= */

.whatsapp-section {
    background: linear-gradient(180deg, #ffffff, #f0fdf4);
}

/* Points */

.whatsapp-points .point {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 15px;
}

/* WhatsApp Mock */

.whatsapp-mock {
    background: #e5ddd5;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Chat Header */

.chat-header {
    background: #075E54;
    color: white;
    padding: 12px 15px;
    font-weight: 600;
}

/* Chat Body */

.chat-body {
    padding: 15px;
    position: relative;
    min-height: 260px;
}

/* Chat Bubble */

.chat-bubble {
    max-width: 75%;
    margin-bottom: 10px;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 14px;
}

.chat-bubble.user {
    background: #dcf8c6;
    margin-left: auto;
}

.chat-bubble.bot {
    background: white;
    line-height: 1.5;
}

.chat-bubble.highlight {
    background: #dcfce7;
    font-weight: 600;
    border-left: 4px solid #22c55e;
}

/* Chat Sets */

.chat-set {
    opacity: 0;
    position: absolute;
    width: 100%;
    transition: opacity 0.6s ease;
}

.chat-set.active {
    opacity: 1;
    position: relative;
}

/* =========================================================
   MESSAGE META
========================================================= */

.msg-meta {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
    font-size: 11px;
    color: #6b7280;
}

/* Ticks */

.tick {
    font-size: 12px;
}

.tick.sent::before {
    content: "✓";
    color: #9ca3af;
}

.tick.delivered::before {
    content: "✓✓";
    color: #9ca3af;
}

.tick.read::before {
    content: "✓✓";
    color: #3b82f6;
}

/* =========================================================
   PDF BUBBLE
========================================================= */

.pdf-bubble {
    padding: 12px;
}

.pdf-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pdf-icon {
    font-size: 28px;
    color: #ef4444;
}

.pdf-title {
    font-size: 14px;
    font-weight: 600;
}

.pdf-size {
    font-size: 12px;
    color: #6b7280;
}

/* =========================================================
   TEXT ROTATION
========================================================= */

.text-rotating {
    position: relative;
    height: 40px;
    overflow: hidden;
}

#changingText {
    display: inline-block;
    animation: fadeSlide 0.6s ease;
}

/* =========================================================
   FLOATING WHATSAPP BUTTON
========================================================= */

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;

    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #25D366;
    color: white;
    font-size: 24px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .2);
}

/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: #0f172a;
    color: #d1d5db;
    padding: 70px 0;
}

.footer h4,
.footer h5 {
    color: #ffffff;
}

.footer p,
.footer li,
.footer a {
    color: #d1d5db;
}

.footer a:hover {
    color: #ffffff;
}

.footer img {
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

/* =========================================================
   ANIMATIONS
========================================================= */

.fade-up {
    opacity: 1;
    transform: translateY(0);
    transition: all .8s ease;
}

@keyframes fadeSlide {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeChat {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatY {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes scrollSlider {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes pulseWhats {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* =========================================================
   DARK MODE
========================================================= */

body.dark {
    background: #000000;
    color: #f3f4f6;
}

/* Headings */

body.dark h1,
body.dark h2,
body.dark h3,
body.dark h4,
body.dark h5,
body.dark h6 {
    color: #ffffff;
}

/* Text */

body.dark p,
body.dark span,
body.dark li {
    color: #d1d5db !important;
}

/* Navbar */

body.dark .navbar {
    background: #000 !important;
    border-bottom: 1px solid #1f2937;
}

body.dark .navbar-brand {
    color: #22c55e !important;
}

body.dark .navbar-brand img {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

body.dark .nav-link {
    color: #f3f4f6 !important;
}

body.dark .nav-link:hover {
    color: #22c55e !important;
}

body.dark .toggle-dark {
    color: #fff;
}

/* Dropdown */

body.dark .dropdown-menu {
    background: #111;
    border: 1px solid #222;
    box-shadow: none;
}

body.dark .dropdown-item {
    color: #f3f4f6;
}

body.dark .dropdown-item:hover {
    background: #222;
    color: #fff;
}

/* Cards */

body.dark .feature-card,
body.dark .testimonial-card {
    background: #111;
    color: #f3f4f6;
    border: 1px solid #1f2937;
    box-shadow: none;
}

body.dark .feature-card h5,
body.dark .testimonial-card p,
body.dark .testimonial-card h6 {
    color: #f3f4f6;
}

/* Sections */

body.dark .section {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid #111827;
}

body.dark .section + .section {
    margin-top: -1px;
}

body.dark .bg-light {
    background: #000 !important;
}

/* Buttons */

body.dark .btn-light {
    background: #fff;
    color: #000 !important;
}

body.dark .btn-success {
    background: #22c55e;
    color: #fff !important;
}

/* Muted */

body.dark .text-muted {
    color: #d1d5db !important;
}

/* Badge */

body.dark .badge {
    background: #22c55e !important;
    color: #000 !important;
}

/* Footer */

body.dark .footer {
    background: #000;
    border-top: 1px solid #1f2937;
}

body.dark .footer img {
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

/* Images */

body.dark img {
    filter: grayscale(100%) brightness(.8);
    transition: .3s;
}

body.dark img:hover {
    filter: grayscale(0%) brightness(1);
}

/* Carousel */

body.dark .carousel-control-prev-icon,
body.dark .carousel-control-next-icon {
    filter: invert(1);
}

/* WhatsApp Section */

body.dark .whatsapp-section {
    background: #000;
}

body.dark .whatsapp-mock {
    background: #111;
}

body.dark .chat-bubble.bot {
    background: #222;
}

body.dark .chat-bubble.user {
    background: #14532d;
}

/* Misc */

body.dark .msg-meta,
body.dark .pdf-size {
    color: #9ca3af;
}

body.dark .section-tag {
    background: rgba(34, 197, 94, 0.2);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 768px) {

  .hero{
        padding:50px 0 30px;
    }
	
    .floating-badge {
        display: none !important;
    }

	.hero-slider{
        max-width:100%;
        height:420px;
    }

    .hero-slider img{
        width:100%;
        height:100%;
        object-fit:contain;
    }

    .slider-track {
        width: max-content;
        animation-duration: 40s;
    }

    .slider-track img {
        height: 420px;
    }

    .chat-bubble {
        max-width: 90%;
        font-size: 13px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

.hero h1 {

    font-size: 50px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.stat-card{
    background:#fff;
    padding:40px 30px;
    border-radius:22px;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
    transition:.3s;
}

.stat-card:hover{
    transform:translateY(-6px);
}

.stat-icon{
    width:70px;
    height:70px;
    margin:auto auto 20px;
    border-radius:50%;
    background:#f1fbf4;
    color:#1fa84b;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}


.role-card{
    background:#fff;
    border-radius:22px;
    padding:35px 28px;
    height:100%;
    transition:.3s;
    border:1px solid #ececec;
    box-shadow:0 8px 25px rgba(0,0,0,.04);
}

.role-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,0,0,.08);
}

.role-icon{
    width:72px;
    height:72px;
    border-radius:18px;
    background:#eefaf2;
    color:#1fa84b;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:22px;
}

.role-card h5{
    font-weight:700;
    margin-bottom:15px;
}

.role-card p{
    color:#666;
    margin:0;
    line-height:1.7;
}

.industry-tags{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
}

.industry-tags span{
    padding:10px 18px;
    background:#fff;
    border-radius:30px;
    border:1px solid #d8eadb;
    color:#1b8e43;
    font-size:.9rem;
    font-weight:600;
    transition:.3s;
}

.industry-tags span:hover{
    background:#1fa84b;
    color:#fff;
    border-color:#1fa84b;
}



#features {
    padding: 90px 0;
}

.feature-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 22px;
    padding: 35px 30px;
    transition: all 0.35s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    border-color: #d6eadc;
}

.feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: linear-gradient(135deg, #eefaf2, #e3f6ea);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 30px;
    color: #1fa84b;
}

.feature-card h5 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.75;
    margin: 0;
}

@media (max-width: 768px) {
    .feature-card {
        padding: 28px 24px;
    }

    .feature-icon {
        width: 64px;
        height: 64px;
        font-size: 26px;
    }
}





#industries{
    padding:90px 0;
}

.industry-simple{
    transition:all .3s ease;
}

.industry-circle{
    width:84px;
    height:84px;
    margin:0 auto 18px;
    border-radius:50%;
    background:#e6f4ea;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.industry-circle i{
    font-size:30px;
    color:#198754;
}

.industry-simple h6{
    font-size:16px;
    font-weight:600;
    margin:0;
    color:#222;
    line-height:1.5;
}

.industry-simple:hover{
    transform:translateY(-6px);
}

.industry-simple:hover .industry-circle{
    background:#198754;
    transform:scale(1.08);
}

.industry-simple:hover .industry-circle i{
    color:#fff;
}



.testimonial-card{
    border:1px solid #e9ecef;
    transition:all .3s ease;
}

.testimonial-card:hover{
    transform:translateY(-6px);
    box-shadow:0 1rem 3rem rgba(0,0,0,.08)!important;
}

.carousel-indicators button{
    width:10px;
    height:10px;
    border-radius:50%;
    margin:0 5px;
}

.carousel-control-prev,
.carousel-control-next{
    width:48px;
    height:48px;
    background:#fff;
    border-radius:50%;
    top:50%;
    transform:translateY(-50%);
    box-shadow:0 4px 12px rgba(0,0,0,.12);
}


	/* Testimonial Carousel Indicators */
		.custom-indicators {
			position: static;
			display: flex;
			justify-content: center;
			align-items: center;
			gap: 10px;
			margin-bottom: 0;
		}

		.custom-indicators button {
			width: 12px;
			height: 12px;
			border: 0;
			border-radius: 50px;
			background-color: #d6d6d6;
			opacity: 1;
			transition: all 0.35s ease;
		}

		.custom-indicators button:hover {
			background-color: #198754;
			transform: scale(1.15);
		}

		.custom-indicators button.active {
			width: 42px;
			height: 12px;
			background-color: #198754;
			border-radius: 50px;
		}
		
		.custom-indicators {
				position: static;
				margin-top: 30px;
				margin-bottom: 0;
				display: flex;
				justify-content: center;
				gap: 10px;
			}

			.custom-indicators [data-bs-target] {
				flex: 0 0 auto;
				width: 12px;
				height: 12px;
				padding: 0;
				margin: 0;
				border: none;
				border-radius: 50px;
				background-color: #d0d0d0;
				opacity: 1;
				transition: all 0.3s ease;
			}

			.custom-indicators [data-bs-target]:hover {
				background-color: #198754;
				transform: scale(1.1);
			}

			.custom-indicators .active {
				width: 40px;
				height: 12px;
				background-color: #198754;
				border-radius: 50px;
				opacity: 1;
			}
			
			

.cta-section{
    background: linear-gradient(135deg,#f7fcf8 0%,#eefaf1 100%);
}

.cta-box{
    max-width: 950px;
    margin: auto;
    padding: 70px 50px;
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
    border: 1px solid #edf0ee;
}

.cta-tag{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    background: #e8f7ee;
    color: #198754;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.cta-box h2{
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.2;
}

.cta-text{
    max-width: 700px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.cta-box .btn{
    min-width: 220px;
    border-radius: 50px;
    padding-top: 14px;
    padding-bottom: 14px;
    font-weight: 600;
}

.cta-stats{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.cta-stat{
    flex: 1;
    min-width: 180px;
    padding: 20px;
    background: #f8faf9;
    border-radius: 18px;
    border: 1px solid #ececec;
}

.cta-stat h4{
    margin-bottom: 6px;
    color: #198754;
    font-size: 2rem;
    font-weight: 700;
}

.cta-stat span{
    color: #6c757d;
    font-size: .95rem;
}

@media (max-width:768px){

    .cta-box{
        padding: 45px 25px;
    }

    .cta-box .btn{
        width: 100%;
    }

    .cta-stats{
        flex-direction: column;
    }
}			



.footer{
    background:#111827;
    color:#fff;
}

.footer h5{
    font-weight:600;
    margin-bottom:20px;
}

.footer-links li{
    margin-bottom:10px;
}

.footer-links a{
    color:#bfc4cc;
    text-decoration:none;
    transition:.25s;
}

.footer-links a:hover{
    color:#28a745;
    padding-left:4px;
}

.footer p{
    color:#bfc4cc;
}

.footer .btn-success{
    font-weight:600;
}

.footer hr{
    opacity:.15;
}


