/* Custom Styles for Cotsyn IT Services */

:root {
    --primary-color: #dc3545;
    --secondary-color: #0d6efd;
    --success-color: #198754;
    --warning-color: #ffc107;
    --info-color: #0dcaf0;
    --dark-color: #212529;
}

body {
    font-family: 'Mukta', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

* {
    font-family: 'Mukta', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Top Header Bar */
.top-header-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.top-header-bar a {
    transition: opacity 0.3s ease;
}

.top-header-bar a:hover {
    opacity: 0.8;
}

/* Main Navigation */
.navbar {
    z-index: 1029;
    top: 0;
}

@media (max-width: 991px) {
    .navbar {
        top: 0;
    }
}

.navbar-brand {
    font-size: 1.5rem;
    color: #000000 !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #000000 !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: #dc3545 !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #dc3545;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Hero Slider Section */
.hero-slider-section {
    margin-top: -30px;
    position: relative;
}

.hero-slide {
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.min-vh-50 {
    min-height: 60vh;
}

/* Hero Slider Image Support */
.hero-slide {
    overflow: hidden;
}

.hero-slide-img {
    opacity: 0;
    transition: opacity 0.5s ease;
    object-fit: contain;
    object-position: center;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    left: 0;
    top: 0;
}

.hero-slide-img[style*="display: block"] {
    opacity: 1;
}

.hero-slide {
    margin: 0;
    padding: 0;
}

.hero-content {
    transition: opacity 0.3s ease;
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transition-duration: 0.6s;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    opacity: 0;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: rgba(255, 255, 255, 0.4);
    opacity: 1;
}

.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background-color: #fff;
    width: 30px;
    border-radius: 6px;
}

/* Trust Cards */
.trust-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 12px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2) !important;
}

.trust-card i {
    transition: transform 0.3s ease;
    margin-bottom: 1rem;
}

.trust-card:hover i {
    transform: scale(1.1);
}

.trust-card h4 {
    font-size: 1.1rem;
    line-height: 1.4;
    margin: 0;
}

/* Feature Cards */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1) !important;
}

.feature-header {
    border: none;
    background: transparent;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.feature-header:hover {
    background-color: #f8f9fa;
}

.feature-header:focus {
    box-shadow: none;
    background-color: #f8f9fa;
}

.feature-chevron {
    transition: transform 0.3s ease;
    color: #6c757d;
    font-size: 1.2rem;
}

.feature-header[aria-expanded="true"] .feature-chevron {
    transform: rotate(180deg);
}

.feature-card .card-body {
    padding: 0;
}

.feature-card i {
    transition: transform 0.3s ease;
}

.feature-card:hover i {
    transform: scale(1.1);
}

.feature-card ul li {
    font-size: 0.95rem;
    padding: 0.3rem 0;
}

.collapse {
    transition: height 0.35s ease;
}

/* Feature Cards Mobile Responsive */
@media (max-width: 768px) {
    .feature-header {
        padding: 0.75rem !important;
    }
    
    .feature-header .display-6 {
        font-size: 1.5rem !important;
    }
    
    .feature-header h5 {
        font-size: 0.9rem !important;
    }
    
    .feature-card .collapse .p-3 {
        padding: 0.75rem !important;
    }
    
    .feature-card ul li {
        font-size: 0.85rem;
        padding: 0.25rem 0;
    }
}

@media (max-width: 480px) {
    .feature-header {
        padding: 0.6rem !important;
    }
    
    .feature-header .display-6 {
        font-size: 1.25rem !important;
    }
    
    .feature-header h5 {
        font-size: 0.8rem !important;
    }
    
    .feature-chevron {
        font-size: 1rem !important;
    }
    
    .feature-card .collapse .p-3 {
        padding: 0.5rem !important;
    }
    
    .feature-card ul li {
        font-size: 0.75rem;
    }
}

/* Service Cards */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 10px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15) !important;
}

.service-card .card-body {
    padding: 0;
}

.service-card i {
    transition: transform 0.3s ease;
}

.service-card:hover i {
    transform: scale(1.1);
}

.service-card ul li {
    padding: 0.3rem 0;
}

.service-card ul li:last-child {
    margin-bottom: 0;
}

.service-header {
    border: none;
    background: transparent;
    cursor: pointer;
    transition: background-color 0.3s ease;
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
}

.service-header:hover {
    background-color: #f8f9fa;
    color: #495057;
}

.service-header:focus {
    box-shadow: none;
    background-color: #f8f9fa;
}

.service-chevron {
    transition: transform 0.3s ease;
    color: #6c757d;
    font-size: 1rem;
}

.service-header[aria-expanded="true"] .service-chevron {
    transform: rotate(180deg);
}

/* Client Logos */
.client-logo {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 10px;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15) !important;
}

.client-logo i {
    transition: transform 0.3s ease;
}

.client-logo:hover i {
    transform: scale(1.2);
}

/* Client Logo Image Styling */
.client-logo .card-body {
    padding: 0.75rem !important;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo-img {
    width: 100%;
    height: 100%;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo-img img {
    transform: scale(1);
}

/* Clients Carousel */
#clientsCarousel {
    padding: 20px 0 10px 0;
}

#clientsCarousel .carousel-control-prev,
#clientsCarousel .carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
}

#clientsCarousel .carousel-control-prev {
    left: -20px;
}

#clientsCarousel .carousel-control-next {
    right: -20px;
}

#clientsCarousel .carousel-control-prev:hover,
#clientsCarousel .carousel-control-next:hover {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.2);
}

#clientsCarousel .carousel-indicators {
    bottom: 20px;
}

#clientsCarousel .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    border: none;
}

#clientsCarousel .carousel-indicators .active {
    background-color: rgba(0, 0, 0, 0.6);
}

.client-logo-img img {
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: none;
    opacity: 1;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
}

/* Desktop View - 6 Columns */
@media (min-width: 992px) {
    .clients-section .row .col-lg-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
    
    .client-logo-img {
        max-height: 150px;
        min-height: 120px;
    }
    
    .client-logo-img img {
        max-width: 180px;
        max-height: 120px;
        width: auto;
        height: auto;
        transform: scale(1);
    }
    
    .client-logo .card-body {
        min-height: 150px;
        max-height: 150px;
    }
}

/* Tablet View - 2 Columns */
@media (min-width: 769px) and (max-width: 991px) {
    .client-logo-img {
        max-height: 180px;
        min-height: 150px;
    }
    
    .client-logo-img img {
        max-width: 200px;
        max-height: 150px;
        width: auto;
        height: auto;
        transform: scale(1);
    }
    
    .client-logo .card-body {
        min-height: 180px;
        max-height: 180px;
    }
}

.client-logo:hover .client-logo-img img {
    transform: scale(1.05);
}

/* Client Cards Mobile Responsive */
@media (max-width: 768px) {
    .client-logo .card-body {
        padding: 0.5rem !important;
    }
    
    .client-logo-img {
        min-height: 100px !important;
        height: 100% !important;
    }
    
    .client-logo-img img {
        width: 100% !important;
        height: 100% !important;
        transform: scale(1.15);
    }
    
    .fallback-icon {
        width: 60px !important;
        height: 60px !important;
    }
    
    .fallback-icon i {
        font-size: 2rem !important;
    }
}

@media (max-width: 480px) {
    .client-logo .card-body {
        padding: 0.5rem !important;
    }
    
    .client-logo-img {
        min-height: 80px !important;
        height: 100% !important;
    }
    
    .client-logo-img img {
        width: 100% !important;
        height: 100% !important;
        padding: 3px !important;
        transform: scale(1.1);
    }
    
    .fallback-icon {
        width: 50px !important;
        height: 50px !important;
    }
    
    .fallback-icon i {
        font-size: 1.75rem !important;
    }
    
    .clients-section .row {
        margin-left: -0.5rem;
        margin-right: -0.5rem;
    }
    
    .clients-section .row > * {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

/* Demo Cards */
.demo-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

.demo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15) !important;
}

.demo-screenshot {
    background: #e9ecef !important;
    border-bottom: 2px solid #dee2e6;
    position: relative;
}

.demo-screenshot i,
.demo-screenshot h4,
.demo-screenshot p {
    color: #212529 !important;
}

.demo-screenshot img {
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.demo-card:hover .demo-screenshot img {
    transform: scale(1.05);
}

/* Pricing Cards */
.pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15) !important;
}

.pricing-card .card-body {
    text-align: center;
}

/* Testimonial Cards */
.testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 15px;
    min-height: auto;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15) !important;
}

.testimonial-card .card-text {
    font-style: italic;
    color: #495057;
    line-height: 1.6;
}

/* Testimonial Carousel */
#testimonialCarousel {
    padding: 10px 0 40px 0;
}

.testimonials-section {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.testimonial-prev,
.testimonial-next {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.testimonial-prev {
    left: -25px;
}

.testimonial-next {
    right: -25px;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 1;
}

.testimonial-indicators {
    bottom: -40px;
    margin-bottom: 0;
}

.testimonial-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.testimonial-indicators .active {
    background-color: #6f42c1;
    width: 30px;
    border-radius: 6px;
    border-color: #6f42c1;
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transition-duration: 0.6s;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    opacity: 0;
}

.testimonial-box {
    border-radius: 15px;
    background: white;
}

.text-purple {
    color: #6f42c1 !important;
}

/* Buttons */
.btn {
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Contact Section */
.contact-section {
    background: #0d6efd;
    position: relative;
    overflow: hidden;
}

/* Contact Section Graphic Background */
.contact-bg-graphics {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.15;
}

.graphic-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    animation: float 6s ease-in-out infinite;
}

.graphic-circle-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    left: 10%;
    animation-delay: 0s;
}

.graphic-circle-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    right: 15%;
    animation-delay: 2s;
}

.graphic-circle-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 5%;
    animation-delay: 4s;
}

.graphic-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 3px, transparent 3px),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.15) 2px, transparent 2px),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.15) 2px, transparent 2px),
        radial-gradient(circle at 60% 60%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.05) 49%, rgba(255, 255, 255, 0.05) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255, 255, 255, 0.05) 49%, rgba(255, 255, 255, 0.05) 51%, transparent 52%);
    background-size: 80px 80px, 100px 100px, 60px 60px, 120px 120px, 40px 40px, 40px 40px;
    background-position: 0 0, 50px 50px, 25px 25px, 80px 80px, 0 0, 20px 20px;
    opacity: 0.4;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    33% {
        transform: translateY(-20px) translateX(10px);
    }
    66% {
        transform: translateY(10px) translateX(-10px);
    }
}

/* Footer */
.footer {
    background: #212529 !important;
}

.footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #0dcaf0;
}

/* Section Spacing */
section {
    padding: 60px 0;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero-slider-section {
        margin-top: -40px;
    }
    
    .hero-slide {
        min-height: 500px;
    }
    
    .min-vh-50 {
        min-height: 50vh;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev {
        left: 15px;
    }
    
    .carousel-control-next {
        right: 15px;
    }
    
    .top-header-bar {
        position: relative;
    }
}

@media (max-width: 768px) {
    .hero-slide {
        min-height: 400px;
        padding: 0px 0;
    }
    
    .hero-slide h1 {
        font-size: 2rem !important;
    }
    
    .hero-slide .lead {
        font-size: 1.1rem;
    }
    
    .hero-slide ul li {
        font-size: 0.95rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    
    .trust-card h4 {
        font-size: 1rem;
    }
    
    .service-card .card-body {
        padding: 1.5rem;
    }
    
    section {
        padding: 40px 0;
        scroll-margin-top: 20px;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
    }
    
    .demo-screenshot {
        min-height: 250px !important;
    }
    
    .testimonial-prev {
        left: 10px;
    }
    
    .testimonial-next {
        right: 10px;
    }
    
    .testimonial-card {
        min-height: auto;
    }
    
    .testimonial-card .card-body {
        padding: 2rem !important;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation for fade-in effect */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.client-logo,
.demo-card,
.testimonial-card,
.feature-card,
.pricing-card {
    animation: fadeIn 0.6s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* What is News Portal Section */
.what-is-section {
    background: #fff;
}

/* Benefits Section */
.benefit-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15) !important;
}

/* Benefits Section Mobile Responsive */
@media (max-width: 768px) {
    .benefit-card .card-body {
        padding: 1.5rem 0.75rem !important;
    }
    
    .benefit-card .bg-opacity-10 {
        width: 60px !important;
        height: 60px !important;
    }
    
    .benefit-card .display-4 {
        font-size: 1.75rem !important;
    }
    
    .benefit-card h4 {
        font-size: 0.85rem !important;
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .benefit-card .card-body {
        padding: 1rem 0.5rem !important;
    }
    
    .benefit-card .bg-opacity-10 {
        width: 50px !important;
        height: 50px !important;
    }
    
    .benefit-card .display-4 {
        font-size: 1.5rem !important;
    }
    
    .benefit-card h4 {
        font-size: 0.75rem !important;
        line-height: 1.1;
    }
    
    .benefits-section .row {
        margin-left: -0.25rem;
        margin-right: -0.25rem;
    }
    
    .benefits-section .row > * {
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }
}

/* Earning Section */
.earning-card {
    transition: transform 0.3s ease;
    border-radius: 15px;
}

.earning-card:hover {
    transform: translateY(-5px);
}

.bg-gradient-primary {
    background: #667eea;
}

.bg-purple {
    background-color: #6f42c1 !important;
}

.text-purple {
    color: #6f42c1 !important;
}

/* Section Spacing Adjustments */
section {
    scroll-margin-top: 120px;
    position: relative;
}

/* Section Dividers */
section:not(:first-of-type) {
    position: relative;
    padding-top: 60px;
}

section:not(:first-of-type)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 1200px;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, #dee2e6 20%, #dee2e6 50%, #dee2e6 80%, transparent 100%);
    z-index: 1;
}

/* Decorative divider dots */
section:not(:first-of-type)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #dee2e6;
    border-radius: 50%;
    margin-top: -4px;
    z-index: 2;
    box-shadow: 
        -150px 0 0 #dee2e6,
        150px 0 0 #dee2e6;
}

/* Exclude certain sections from dividers if needed */
.hero-slider-section::before,
.hero-slider-section::after,
.contact-section::before,
.contact-section::after,
.footer::before,
.footer::after {
    display: none;
}

/* FAQ Section */
.faq-section {
    background: #fff;
}

.accordion-item {
    border: 1px solid #dee2e6 !important;
    border-radius: 8px !important;
    overflow: hidden;
}

.accordion-button {
    background-color: #fff;
    border: none;
    padding: 1.25rem 1.5rem;
    font-weight: 500;
    color: #212529;
}

.accordion-button:not(.collapsed) {
    background-color: #fff;
    color: #212529;
    box-shadow: 0 0 0 2px #198754;
    border-radius: 8px 8px 0 0;
}

.accordion-button:focus {
    box-shadow: 0 0 0 2px #198754;
    border-color: transparent;
}

.accordion-button.collapsed {
    border-radius: 8px;
}

.accordion-body {
    padding: 1.5rem;
    color: #212529;
    line-height: 1.8;
}

/* Sticky WhatsApp Button */
.sticky-whatsapp-btn {
    position: fixed;
    bottom: 160px;
    right: 20px;
    background-color: #25D366;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.sticky-whatsapp-btn:hover {
    background-color: #20BA5A;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
    text-decoration: none;
}

.sticky-whatsapp-btn i {
    font-size: 20px;
}

/* Sticky Call Button */
.sticky-call-btn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background-color: #dc3545;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulseRed 2s infinite;
    animation-delay: 0.5s;
}

.sticky-call-btn:hover {
    background-color: #bb2d3b;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(220, 53, 69, 0.5);
    text-decoration: none;
}

.sticky-call-btn i {
    font-size: 20px;
}

/* Pulse Animation for WhatsApp */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

/* Pulse Animation for Call Button */
@keyframes pulseRed {
    0% {
        box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(220, 53, 69, 0.6);
    }
    100% {
        box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
    }
}

/* Sticky Book a Demo Bottom Bar */
.sticky-demo-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #000000;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    padding: 0;
}

.sticky-demo-btn {
    background-color: #000000;
    color: white;
    padding: 18px 20px;
    border: none;
    border-radius: 0;
    width: 100%;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
    cursor: pointer;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sticky-demo-btn:hover {
    background-color: #1a1a1a;
    color: white;
}

.sticky-demo-btn i {
    font-size: 20px;
}

/* Pulse Animation for Book Demo Button */
@keyframes pulseBlue {
    0% {
        box-shadow: 0 4px 12px rgba(13, 110, 253, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(13, 110, 253, 0.6);
    }
    100% {
        box-shadow: 0 4px 12px rgba(13, 110, 253, 0.4);
    }
}

/* Responsive adjustments for sticky buttons */
@media (max-width: 768px) {
    .sticky-whatsapp-btn,
    .sticky-call-btn {
        padding: 12px 16px;
        font-size: 12px;
        right: 15px;
    }
    
    .sticky-call-btn {
        bottom: 70px;
    }
    
    .sticky-whatsapp-btn {
        bottom: 130px;
    }
    
    .sticky-demo-bar {
        padding: 0;
    }
    
    .sticky-demo-btn {
        padding: 15px 15px;
        font-size: 16px;
    }
    
    .sticky-demo-btn i {
        font-size: 18px;
    }
    
    .sticky-whatsapp-btn span,
    .sticky-call-btn span {
        display: none;
    }
    
    .sticky-whatsapp-btn,
    .sticky-call-btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .sticky-whatsapp-btn i,
    .sticky-call-btn i {
        font-size: 24px;
    }
}

/* Trust Cards Mobile Responsive */
@media (max-width: 768px) {
    .trust-card {
        padding: 1.5rem 0.75rem !important;
        min-height: 140px;
    }
    
    .trust-card i {
        font-size: 2rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .trust-card h4 {
        font-size: 0.9rem !important;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .trust-card {
        padding: 1rem 0.5rem !important;
        min-height: 130px;
    }
    
    .trust-card i {
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .trust-card h4 {
        font-size: 0.8rem !important;
        line-height: 1.2;
    }
    
    .trust-section {
        padding: 2rem 0 !important;
    }
    
    .trust-section .row {
        margin-left: -0.5rem;
        margin-right: -0.5rem;
    }
    
    .trust-section .row > * {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

