/* Fix button turning black when clicked */

.btn.bg-danger:focus,
.btn.bg-danger:active,
.btn.bg-danger:focus:active {
    background-color: #ed1212!important;
    /* Same as the danger color */
    color: white !important;
    /* Ensure text remains readable */
    outline: none;
    /* Remove focus outline */
    box-shadow: none;
    /* Remove any box-shadow */
}

a {
    text-decoration: none;
}

:root {
    --primary-color: #f5c255;
    --secondary-color: #f5c255;
    --accent-color: #1e90ff;
    --light-gray: #f5c255;
}

body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

header {
    background: #ed1212no-repeat center center/cover;
    color: white;
    padding: 60px 0;
}

.btn-homepage {
    display: inline-block;
    margin: 20px auto;
    padding: 10px 20px;
    font-size: 1rem;
    color: white;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease;
}

.btn-homepage:hover {
    background-color: #f5c255;
}

/* Enhanced Navigation */

.navbar {
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.nav-link {
    position: relative;
    padding: 0.5rem 1rem !important;
    margin: 0 0.2rem;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.auth-err {
    min-height: 20px;
}

/* Title Styles */

.section-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
    /* text-transform: uppercase; */
    letter-spacing: 2px;
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
    padding-bottom: 10px;
}

/* Enhanced Hero Section */

.hero-section {
    /* background: linear-gradient(
      135deg,
      rgba(30, 144, 255, 0.95),
      rgba(255, 107, 107, 0.95)
    ),
    url("/api/placeholder/1920/1080"); */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
  
    padding: 25px 0 120px;
 
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
}

/* Enhanced Form Styles */

.floating-form-container {
    position: relative;
    margin-top: -80px;
    z-index: 2;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-5px);
}

.form-control {
    padding: 0.8rem;
    border-radius: 8px;
    border: 1px solid #e1e1e1;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 107, 0.25);
}

/* Enhanced Problem Cards */

.problem-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* margin-bottom: 1.5rem; */
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Enhanced Benefit Items */

.benefit-item {
    height: 9rem;
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-item i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-right: 1.5rem;
}

/* Enhanced Testimonials */

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Enhanced CTA Section */

.cta-box {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
}

.urgent-cta {
    background: linear-gradient( 135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 3rem;
    border-radius: 20px;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.urgent-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient( 45deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.urgent-cta:hover::before {
    transform: translateX(100%);
}

/* Enhanced Footer */

footer {
    background:#313d49;
    color: white;
    padding: 5rem 0 2rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    color: #313d49;
    margin: 0 0px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.social-icons a:hover {
    transform: translateY(-5px);
    color: white;
    background: var(--primary-color);
}

/* Responsive Adjustments */

@media (max-width: 768px) {
    .hero-section {
        padding: 25px 0 80px;
        background-attachment: scroll;
    }
    .floating-form-container {
        margin-top: -40px;
    }
    .contact-form {
        padding: 1.5rem;
    }
    .benefit-item {
        padding: 1rem;
    }
    .benefit-item i {
        font-size: 1.5rem;
        margin-right: 1rem;
    }
    .urgent-cta {
        padding: 2rem;
    }
    .cta-box {
        padding: 2rem;
    }
}

/* Animation Classes */

.fade-up {

    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.cta-box {
    background: #f8f9fa;
    /* Light background */
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cta-box h2 {
    font-size: 1.75rem;
    color: #333;
    font-weight: 700;
}

.checklist-benefits {
    padding-left: 0;
    font-size: 1rem;
    line-height: 1.8;
}

.checklist-benefits i {
    font-size: 1.25rem;
}

#resourceForm input,
#contactForm input,
#ebookForm input {
    /* padding: 0.8rem 1rem; */
    font-size: 1rem;
    /* border: 2px solid #007bff; */
    transition: border-color 0.3s ease;
}

#resourceForm input:focus {
    outline: none;
    /* border-color: #0056b3; */
}

/* Floating button style */

.floating-btn {
    z-index: 1000;
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 100px;
    right: 20px;
    /* background-color: #007bff; */
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 22px;
    /* padding: 15px; */
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: none;
    /* Initially hidden */
}

.floating-btn:hover {
    background-color: #0056b3;
}

#resourceForm button {
    /* background: linear-gradient(90deg, #007bff, #0056b3); */
    border: none;
    padding: 0.8rem;
    font-size: 1.2rem;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    transition: background 0.3s ease, transform 0.2s ease;
}

#resourceForm button:hover {
    /* background: linear-gradient(90deg, #0056b3, #003d7a); */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.shadow-sm {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Section Styles */

.event-manager-section {
    font-family: "Arial", sans-serif;
}

/* Responsive Video Wrapper */

.video-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
    /* Aspect ratio 16:9 */
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive Styles */

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
    }
}

/* WhatsApp Chat Widget */

#whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

/* Floating Button */

/* .whatsapp-button {
  animation: bounce 2s infinite;
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #25d366;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 10px 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
}

.whatsapp-button img {
  width: 20px;
  height: 20px;
}

.whatsapp-button:hover {
  background-color: #1eb954;
} */

.floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
}

.chat-button {
    background-color: #25d366;
    border: none;
    border-radius: 20px;
    color: white;
    padding: 2px 20px;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background-color 0.3s ease;
}

.chat-button:hover {
    background-color: #1eb154;
}

.whatsapp-icon {
    position: relative;
    background-color: #25d366;
    width: 60px;
    height: 60px;
    border-radius: 50% 50% 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.whatsapp-icon::before {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 10px;
    background-color: #25d366;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.whatsapp-icon img {
    width: 25px;
    height: 25px;
}

/* Chatbox */

#chatbox {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: fixed;
    bottom: 100px;
    right: 20px;
}

.hidden {
    display: none !important;
}

.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #128c7e;
    color: white;
    padding: 15px;
}

.chat-profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.chat-header h4 {
    margin: 0;
    font-size: 16px;
}

.chat-header p {
    margin: 0;
    font-size: 12px;
    color: #d4f5e1;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

.chat-body {
    padding: 15px;
    flex: 1;
    background-color: #f8f8f8;
}

.chat-message {
    background-color: #f1f1f1;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.timestamp {
    font-size: 10px;
    color: #777;
    align-self: flex-end;
}

.chat-footer {
    display: flex;
    gap: 5px;
    padding: 10px;
    background: #ffffff;
}

.chat-footer input {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 25px;
    padding: 10px;
}

.chat-footer input:focus {
    /* Example color */
    outline: none;
    /* Remove the default focus outline */
}

.send-btn {
    font-size: 25px;
    background: transparent;
    color: #128c7e;
    border: none;
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Mobile responsiveness */

@media (max-width: 768px) {
    .whatsapp-button {
        font-size: 12px;
        padding: 12px;
    }
    .whatsapp-button img {
        width: 25px;
        height: 25px;
    }
    #chatbox {
        width: 90%;
        max-width: 350px;
        /* bottom: 80px; */
    }
    .chat-header h4 {
        font-size: 16px;
    }
    .chat-footer {
        padding: 10px 8px;
    }
    #message-input {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .whatsapp-button {
        font-size: 10px;
        padding: 10px;
    }
    .whatsapp-button img {
        width: 20px;
        height: 20px;
    }
    #chatbox {
        width: 90%;
        max-width: 320px;
        /* bottom: 70px; */
    }
    .chat-header h4 {
        font-size: 14px;
    }
    .chat-footer {
        padding: 10px 6px;
    }
    #message-input {
        font-size: 12px;
    }
    .whatsapp-icon {
        width: 50px;
        height: 50px;
    }
    .whatsapp-icon img {
        width: 25px;
        height: 25px;
    }
    .floating-btn {
        width: 45px;
        height: 45px;
        bottom: 80px;
        right: 20px;
        font-size: 20px;
    }
    .chat-button {
        font-size: 12px;
    }
}

.thank-you-container {
    align-content: center;
    height: 100vh;
    max-width: 900px;
}

.success-icon {
    width: 100px;
    height: 100px;
    /* background: var(--primary-color); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: pulse 2s infinite;
}

.success-icon i {
    color: white;
    font-size: 50px;
}

.next-steps {
    background: white;
    border-radius: 15px;
    /* padding: 30px; */
    margin-top: 40px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); */
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 107, 107, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateX(10px);
}

.step-number {
    background: var(--primary-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.social-links {
    margin-top: 30px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    color: var(--primary-color);
    margin: 0 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-5px);
    color: white;
    background: var(--primary-color);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(255, 107, 107, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
    }
}

.calendar-link {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.calendar-link:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    color: white;
}

.top-section {
    background-color: #000;
    color: #ffffff; padding-top: 60px; padding-bottom:90px;
}

.section-title-top {
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.4;
}

.highlight {
    background: #ed1212;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Base styles for the button */

.btn {
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    padding: 3px 30px;
    /* Ensure the button is wide enough for the gradient effect */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    /* Ensures no overflow when the gradient moves */
}

.bg-highlight {
    position: relative;
    display: inline-block;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    /* Transparent glass-like background */
    backdrop-filter: blur(10px);
    /* Frosted glass effect */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    /* Subtle shadow for depth */
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
}

/* Create the shiny gloss using a linear gradient with animation */

.bg-highlight::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient( 45deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    /* Glossy shine gradient */
    transform: skewX( -20deg);
    /* Adds a dynamic skew for the glossy shine effect */
    animation: gloss-shine 2s ease-in-out infinite;
    /* Smooth and continuous gloss animation */
    pointer-events: none;
}

/* Shine animation to sweep from left to right */

@keyframes gloss-shine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: -100%;
    }
}

/* Hover state for interaction */

.bg-highlight:hover {
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    /* Slight increase in shadow for depth */
}

/* Gradient shine effect animation (left to right) */

@keyframes gradient-shine {
    0% {
        background-position: -100% 0%;
        /* Start from the left */
    }
    50% {
        background-position: 100% 0%;
        /* Move the gradient to the right */
    }
    100% {
        background-position: -100% 0%;
        /* Reset back to the left */
    }
}

/* Stronger shake animation for 1 second */

@keyframes shake {
    0% {
        transform: translateX(0);
    }
    20% {
        transform: translateX(-15px);
    }
    /* Stronger shake to the left */
    40% {
        transform: translateX(15px);
    }
    /* Stronger shake to the right */
    60% {
        transform: translateX(-15px);
    }
    /* Stronger shake to the left */
    80% {
        transform: translateX(15px);
    }
    /* Stronger shake to the right */
    100% {
        transform: translateX(0);
    }
}

/* Entry fade and shake animation */

.animate {
    opacity: 0;
    animation: fadeIn 0.3s ease forwards, shake 1s ease-out 0.3s;
}

/* Fade-in effect */

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}
.light-background {
    background-color: #f5f5f5 !important; padding-top: 40px; padding-bottom:40px;

}

.pic{border:1px solid #ccc; padding:5px; margin-bottom:20px;}
.checklist-icon {
    color: #ed1212 !important;
    margin-right: 5px;
    font-size: 1.6rem;
}

.checklist-item {
    font-size: 1.1rem;
    margin-bottom: 15px;
  
}

.checklist {
    list-style: none;
    padding: 0;
}

@media (max-width: 768px) {
    .mobile-top {
        width: 100% !important;
    }
    .section-title-top {
        font-size: 1.5rem;
    }
    .checklist-item {
        font-size: 1rem;
    }
    .offset-2 {
        margin-left:0 !important;
    }
}

@media (max-width: 768px) {
    .badge_instant {
        font-size: 12px;
        margin: 0px;
        padding: 1px !important;
    }
    .w-75 {
        width: 100% !important;
        font-size: 0.9rem !important;
    }
    .w-75 .fs-5 {
        font-size: 1rem !important;
    }
}
.w-75 {
    width: 85% !important;
    font-size: 0.9rem !important;
}
.testimonials-section {
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    text-align: justify;
}

.swiper-container,
.portfolio-swiper,
.testimonials-slider {
    padding: 20px 0 40px;
    position: relative;
    overflow: hidden;
}

.swiper-wrapper {
    display: flex;
    align-items: stretch;
    /* Makes all slides stretch to match tallest */
}

.swiper-slide {
    height: auto !important;
    /* Override Swiper's default height */
    display: flex;
    /* Enable flex layout */
}

.testimonial-card {
    background: #fff;
    position: relative;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    width: 100%;
    /* Ensure card takes full width of slide */
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.quote-icon {
    color: #dc3545;
    font-size: 2em;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    flex-grow: 1;
}

.profile-section {
    /* margin-top: 1.5rem; */
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
}

.profile-image-container {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.company-logo {
    position: absolute;
    width: 35px;
    height: 35px;
    bottom: -10px;
    right: -10px;
    border-radius: 50%;
    border: 2px solid white;
    background-color: white;
    object-fit: cover;
}

.profile-info {
    margin-left: 1rem;
}

.profile-name {
    font-weight: bold;
    display: block;
    margin-bottom: 0.2rem;
}

.profile-position {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.3;
}

.company-name {
    color: #dc3545;
    font-weight: bold;
}

.swiper-button-prev,
.swiper-button-next {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border-radius: 50%;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 18px !important;
    /* color: #333; */
}

.swiper-pagination {
    bottom: 10px !important;
}

.swiper-pagination-bullet {
    /* background: #333; */
    width: 8px;
    height: 8px;
    opacity: 0.5;
    background: #dc3545 !important;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

@media (max-width: 767px) {
    .testimonials-section {
        padding: 10px;
    }
    .testimonial-card {
        padding: 20px;
    }
}

/* Ensuring the outline button appears correctly */

.btn-outline-danger {
    border: 1px solid #dc3545;
    color: #dc3545;
    background-color: transparent;
}

.btn-outline-danger:hover {
    background-color: #dc3545;
    color: white;
}

.portfolio-section .card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.portfolio-section .card:hover {
    transform: translateY(-4px);
}

.portfolio-section .card-img-top {
    height: 300px;
    object-fit: cover;
}

.portfolio-section .swiper-button-next,
.portfolio-section .swiper-button-prev {
    color: #dc3545;
}

.portfolio-section .swiper-pagination-bullet-active {
    background: #dc3545;
}

@media (max-width: 768px) {
    .portfolio-section .card-img-top {
        height: 250px;
    }
}

.counter-card {
    transition: transform 0.6s ease;
}

.counter-card:hover {
    transform: translateY(-8px);
}

.counter-number {
    line-height: 1;
    margin-bottom: 8px;
}
.text-right{text-align: right;}
.counter-label {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.2;
}
.list-unstyled li {display: flex; margin-left: 20px; list-style:none;}


.list-unstyled{float: left; display: flex; list-style:none;}
.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.testimonial-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.star-rating {
    color: #ffd700;
    font-size: 20px;
}

.date {
    color: #666;
    font-size: 14px;
}

.google-reviews {
    display: flex;
    text-align: center;
    place-content: center;
}

.google-reviews img {
    height: 40px;
    margin-right: 10px;
}

.verified-badge {
    display: inline-block;
    margin-left: 4px;
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

.verified-badge svg {
    fill: #1da1f2;
}
.whatapp_btn {
    background: #01e675;
    width: 50px;
    height: 50px;
    color: #fff;
    position: fixed;
    left: 15px;
    bottom: 50px;
    cursor: pointer;
    z-index: 999;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 300ms ease-in-out; font-size:24px;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.16), 0px 3px 10px rgba(0, 0, 0, 0.16);
}

/* 
---------------------------------------------
Fun Facts Style
--------------------------------------------- 
*/

.fun-facts {
    text-align: center;
    margin-top: 25px;
  }
  
  .fun-facts .counter {
    background-color: #239dcf;
    position: relative;
    border-radius: 10px;
    width: 100%;
    padding: 50px 0px;
    display: inline-block;
  }
  
  .fun-facts .counter h2,
  .fun-facts .counter span {
    display: inline-flex;
    vertical-align: middle; color:#fff; font-size:38px;
  }
  .list{line-height:1.9;}
  .fun-facts .counter p {
    text-align: center;
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    line-height: 28px;
  }
  
  .fun-facts .counter h2 {
   
    font-size: 40px;
    color: #fff;
  }
  .count-text1{margin-top:20px;}
  span {
    font-weight: bold;
    color: #ed1212; 
}
.border{padding:10px;}

#top-projects {
    padding: 50px 0 50px 0;
    background: #fff
  }
  #top-projects .gallery-filter .row .product-box {
    box-shadow: 0 0 7px rgba(0, 0, 0, .2);
    margin: 15px 0;
    border-radius: 30px;
    overflow: hidden;
    padding: 3px
  }
  #top-projects .gallery-filter .img-box {
    position: relative;
    overflow: hidden
  }
  #top-projects .gallery-filter .img-box img {
    height: 250px;
    width: 100%;
    transition: all .3s;
    border-radius: 30px;
    text-align: center;
    overflow: hidden
  }
  #top-projects .gallery-filter .img-box:hover img.product-image {
    transform: scale(1.1)
  }
  #top-projects .gallery-filter .img-box .img-carv {
    height: auto;
    width: auto;
    position: absolute;
    bottom: 0;
    left: 0;
    display: none
  }
  #top-projects .gallery-filter .product-name {
    padding: 25px 15px 15px 15px;
    text-align: center;
    background: #fff
  }
  #top-projects .gallery-filter .product-name h2 {
    font-size: 22px;
    color: #ed1212;
    margin-bottom: 15px
  }
  #top-projects .gallery-filter .product-name p {
    line-height: 26px;
    opacity: .9;
    font-size: 14px
  }
  #top-projects .gallery-filter .product-name .btn.btn-warning {
    background: #ed1212;
    color: #fff;
    border-color: #ed1212
  }

  
/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    --background-color:#313d49;
    color:#fff;
    background-color: var(--background-color);
    padding: 50px 0;
    text-align: left;
    position: relative;
  }
  
  .page-title h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
  
    padding: 0;
    margin: 0;
    font-size: 18px;
    font-weight: 400;     color:#fff;
  }
  
  .page-title .breadcrumbs ol li+li {
    padding-left: 10px;
  }
  
  .page-title .breadcrumbs ol li+li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color:#fff;
  }