/* Custom hover for solid button */
.custom-hover:hover {
  background-color: #218739 !important;
  color: #fff !important;
  transform: scale(1.05);
  transition: all 0.3s ease;
}
.atai-color{
      background: linear-gradient(90deg, #f9b233, #008a5b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent; /* Fallback for non-WebKit browsers */
}

/* Custom hover for outline button */
.custom-outline-hover:hover {
  background-color: #218739 !important;
  color: #fff !important;
  border-color: #218739 !important;
  transform: scale(1.05);
  transition: all 0.3s ease;
}

/* Hero image with soft shadow & gradient glow */
.hero-image-container {
  position: relative;
  max-width: 100%;
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(178, 255, 219, 0.2), rgba(255, 243, 178, 0.2));
  box-shadow: 0 20px 50px rgba(0, 128, 96, 0.1);
  transition: transform 0.4s ease;
}

.hero-image-container:hover {
  transform: scale(1.03);
  box-shadow: 0 25px 70px rgba(0, 128, 96, 0.2);
}

.hero-banner-img {
  border-radius: 20px;
  width: 100%;
  height: auto;
}
/* Icon container */
.icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 24px;
  border-radius: 12px;
}

/* Button hover */
.custom-hover:hover {
  transform: scale(1.03);
  opacity: 0.95;
  transition: all 0.3s ease;
}

/* Enterprise badge pill */
.badge-pill-enterprise {
  background-color: #1164b6;
  color: #fff;
  padding: 6px 20px;
  font-size: 0.85rem;
  border-radius: 999px;
  font-weight: 600;
  z-index: 3;
}

/* Features Section Box */
.feature-box {
  background-color: #fff;
  transition: all 0.3s ease;
}

.feature-box:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-5px);
}
.cta-section {
  background: #f9fff9;
}

.footer a:hover {
  text-decoration: underline;
}

.footer i {
  font-size: 1rem;
}


.cta-section {
  background: radial-gradient(ellipse at center, #f0fff5 0%, #ffffff 80%);
}

.footer {
  background: linear-gradient(135deg, #022b20 0%, #0b6c48 35%, #b27100 70%, #f7b42c 100%);
}
.footer {
  position: relative;
  background: linear-gradient(135deg, #022b20 0%, #0b6c48 35%, #b27100 70%, #f7b42c 100%);
  overflow: hidden;
}

.footer-overlay .glow {
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  filter: blur(60px);
}

  /* Custom CSS for the footer section */
        body {
            font-family: 'Inter', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f8f9fa; /* Light background for context */
        }

        .footer-top-section {
            background: linear-gradient(to right, #e0f7fa, #e8f5e9); /* Light gradient as seen in image */
            padding: 80px 0;
            text-align: center;
            border-radius: 15px; /* Rounded corners for the whole section */
            margin: 20px; /* Margin around the section */
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .footer-top-section .badge-custom {
            background-color: #fdd835; /* Yellowish background */
            color: #333; /* Dark text */
            padding: 8px 15px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 20px;
            display: inline-block;
        }

        .footer-top-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 20px;
        }

        .footer-top-section h2 .highlight {
            color: #ff8c00; /* Orange highlight */
        }

        .footer-top-section p {
            font-size: 1.1rem;
            color: #555;
            max-width: 700px;
            margin: 0 auto 30px auto;
        }

        .btn-custom-gradient {
            background: linear-gradient(to right, #4CAF50, #8BC34A); /* Green gradient */
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        .btn-custom-gradient:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
            color: white;
        }

        .btn-custom-outline {
            background: none;
            color: #333;
            border: 2px solid #ccc;
            padding: 12px 25px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-left: 15px;
        }

        .btn-custom-outline:hover {
            background-color: #f0f0f0;
            border-color: #999;
            color: #333;
        }

        .footer-bottom-section {
            background: linear-gradient(to right, #004d40, #00695c); /* Dark green gradient */
            color: white;
            padding: 60px 0 30px 0;
        }

        .footer-bottom-section h5 {
            font-weight: 600;
            margin-bottom: 25px;
            color: #a7ffeb; /* Light green for headings */
        }

        .footer-bottom-section ul {
            list-style: none;
            padding: 0;
        }

        .footer-bottom-section ul li {
            margin-bottom: 10px;
        }

        .footer-bottom-section ul li a {
            color: #e0f2f1; /* Lighter green for links */
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-bottom-section ul li a:hover {
            color: #ffffff;
            text-decoration: underline;
        }

        .footer-bottom-section .social-icons a {
            color: white;
            font-size: 1.3rem;
            margin-right: 15px;
            transition: color 0.2s ease;
        }

        .footer-bottom-section .social-icons a:hover {
            color: #a7ffeb;
        }

        .footer-bottom-section .contact-info p {
            margin-bottom: 10px;
            color: #e0f2f1;
        }

        .footer-bottom-section .contact-info i {
            margin-right: 10px;
            color: #a7ffeb;
        }

        .btn-support {
            background: linear-gradient(to right, #00897b, #00796b); /* Teal gradient */
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 500;
            margin-top: 15px;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }

        .btn-support:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            color: white;
        }

        .footer-bottom-section .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 40px;
            font-size: 0.9rem;
            color: #b2dfdb;
        }

        .footer-bottom-section .copyright a {
            color: #b2dfdb;
            text-decoration: none;
            margin-left: 15px;
            transition: color 0.2s ease;
        }

        .footer-bottom-section .copyright a:hover {
            color: #ffffff;
            text-decoration: underline;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .footer-top-section {
                padding: 50px 20px;
            }

            .footer-top-section h2 {
                font-size: 2rem;
            }

            .footer-top-section p {
                font-size: 1rem;
            }

            .btn-custom-outline {
                margin-left: 0;
                margin-top: 15px;
            }

            .footer-bottom-section .col-md-3,
            .footer-bottom-section .col-md-2 {
                margin-bottom: 30px;
            }

            .footer-bottom-section .contact-info {
                text-align: left;
            }
        }

        
        /* Styling for the "Trusted by Businesses Worldwide" section */
        .trusted-businesses-section {
            /* Refined background gradient for a more polished professional look */
            /* Deeper, richer tones transitioning smoothly, inspired by the screenshot's depth */
         background: linear-gradient(90deg, #064e3b, #c08401); /* Dark teal/blue to deep almost-black, then a subtle lighter blue-green */
            color: white; /* Default text color for contrast */
            padding: 80px 0; /* Vertical padding */
            text-align: center; /* Center align content */
            /* Full width layout, no rounded corners or external margin */
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); /* Slightly stronger shadow for premium feel */
        }

        .trusted-businesses-section h2 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #E0FFFF; /* Light cyan for heading, stands out well */
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* Subtle text shadow for depth */
        }

        .trusted-businesses-section p {
            font-size: 1.2rem;
            color: #B2DFDB; /* Muted light green for description, good readability */
            max-width: 800px;
            margin: 0 auto 50px auto; /* Center and add bottom margin */
        }

        .trusted-businesses-section .stats-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 30px; /* Space between stat items on smaller screens */
            padding: 15px; /* Add some padding around each stat item */
            transition: transform 0.3s ease, background-color 0.3s ease; /* Smooth hover effect */
        }

        .trusted-businesses-section .stats-item:hover {
            transform: translateY(-5px); /* Lift effect on hover */
            background-color: rgba(255, 255, 255, 0.05); /* Very subtle highlight on hover */
            border-radius: 10px; /* Slight rounding on hover */
        }

        .trusted-businesses-section .stats-item i {
            font-size: 3.8rem; /* Slightly larger icons for impact */
            color: #FFD700; /* Golden color for icons, consistent with original */
            margin-bottom: 18px; /* More space below icon */
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); /* Glowing effect for icons */
        }

        .trusted-businesses-section .stats-item .stat-number {
            font-size: 2.7rem; /* Slightly larger numbers */
            font-weight: 700;
            color: #FFFFFF; /* Pure white for numbers for strong contrast and prominence */
            margin-bottom: 8px; /* More space below number */
        }

        .trusted-businesses-section .stats-item .stat-description {
            font-size: 1.05rem; /* Slightly larger description text */
            color: #E0FFFF; /* Light cyan for description */
            text-transform: uppercase;
            letter-spacing: 1.5px; /* Increased letter spacing for emphasis */
        }

        /* Responsive adjustments for smaller screens */
        @media (max-width: 768px) {
            .trusted-businesses-section {
                padding: 50px 20px; /* Adjust padding for mobile */
            }
            .trusted-businesses-section h2 {
                font-size: 2.2rem;
            }
            .trusted-businesses-section p {
                font-size: 1.05rem;
            }
            .trusted-businesses-section .stats-item i {
                font-size: 3rem;
            }
            .trusted-businesses-section .stats-item .stat-number {
                font-size: 2.2rem;
            }
            .trusted-businesses-section .stats-item {
                margin-bottom: 20px; /* Less space on mobile */
            }
            a {
                font-size: larger;
            }
        }