* {
     font-family: 'DM Sans', sans-serif;
 }

 .font-display {
     font-family: 'Playfair Display', serif;
 }

 /* Smooth nav scroll */
 html {
     scroll-padding-top: 80px;
 }

 /* Custom gradient text */
 .text-gradient {
     background: linear-gradient(135deg, #0c8de0 0%, #005799 60%, #C9973F 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 /* Animated underline */
 .animated-underline {
     position: relative;
 }

 .animated-underline::after {
     content: '';
     position: absolute;
     bottom: -4px;
     left: 0;
     width: 0;
     height: 3px;
     background: linear-gradient(90deg, #0c8de0, #C9973F);
     border-radius: 2px;
     transition: width 0.4s ease;
 }

 .animated-underline:hover::after {
     width: 100%;
 }

 /* Sticky nav blur */
 .nav-blur {
     backdrop-filter: blur(16px);
     -webkit-backdrop-filter: blur(16px);
 }

 /* Card hover lift */
 .card-lift {
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .card-lift:hover {
     transform: translateY(-6px);
     box-shadow: 0 24px 48px -8px rgba(12, 141, 224, 0.18);
 }

 /* Reveal animation on scroll */
 .reveal {
     opacity: 0;
     transform: translateY(28px);
     transition: opacity 0.7s ease, transform 0.7s ease;
 }

 .reveal.visible {
     opacity: 1;
     transform: translateY(0);
 }

 .reveal-delay-1 {
     transition-delay: 0.1s;
 }

 .reveal-delay-2 {
     transition-delay: 0.2s;
 }

 .reveal-delay-3 {
     transition-delay: 0.3s;
 }

 .reveal-delay-4 {
     transition-delay: 0.4s;
 }

 /* FAQ accordion */
 .faq-content {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.4s ease, padding 0.3s ease;
 }

 .faq-content.open {
     max-height: 400px;
 }

 .faq-icon {
     transition: transform 0.3s ease;
 }

 .faq-icon.open {
     transform: rotate(45deg);
 }

 /* Slider dots */
 .dot.active {
     background-color: #0c8de0;
     width: 28px;
 }

 /* Counter animation */
 .counter-val {
     display: inline-block;
 }

 /* Testimonial card */
 .testimonial-card {
     transition: all 0.4s ease;
 }

 .testimonial-slide {
     display: none;
 }

 .testimonial-slide.active {
     display: block;
 }

 /* Mobile menu */
 #mobile-menu {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.4s ease;
 }

 #mobile-menu.open {
     max-height: 500px;
 }

 /* Gold accent border */
 .border-gold-accent {
     border-left: 4px solid #C9973F;
 }

 /* Noise texture overlay */
 .noise-overlay::before {
     content: '';
     position: absolute;
     inset: 0;
     background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
     opacity: 0.03;
     pointer-events: none;
     border-radius: inherit;
 }

 /* Scroll progress bar */
 #progress-bar {
     position: fixed;
     top: 0;
     left: 0;
     height: 3px;
     background: linear-gradient(90deg, #0c8de0, #C9973F);
     z-index: 9999;
     width: 0%;
     transition: width 0.1s linear;
 }

 /* Step connector line */
 .step-line::before {
     content: '';
     position: absolute;
     top: 28px;
     left: calc(50% + 36px);
     width: calc(100% - 72px);
     height: 2px;
     background: linear-gradient(90deg, #0c8de0 40%, transparent);
     border-radius: 2px;
 }

 /* Gradient border card */
 .gradient-border {
     background: linear-gradient(white, white) padding-box,
         linear-gradient(135deg, #0c8de0, #C9973F) border-box;
     border: 2px solid transparent;
 }

 /* Hero blob */
 .hero-blob {
     border-radius: 60% 40% 70% 30% / 50% 60% 40% 60%;
     animation: morphBlob 10s ease-in-out infinite;
 }

 @keyframes morphBlob {

     0%,
     100% {
         border-radius: 60% 40% 70% 30% / 50% 60% 40% 60%;
     }

     25% {
         border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%;
     }

     50% {
         border-radius: 70% 30% 50% 50% / 30% 70% 30% 70%;
     }

     75% {
         border-radius: 30% 70% 60% 40% / 70% 30% 70% 30%;
     }
 }

.line-clamp-5 {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
 /* Styling for the HTML list coming from the database */
 .custom-tailwind-list ul {
     list-style: none;
     padding-left: 0;
 }

 .custom-tailwind-list ul li {
     position: relative;
     padding-left: 2rem;
     margin-bottom: 1rem;
 }

 .custom-tailwind-list ul li::before {
     content: '✓';
     position: absolute;
     left: 0;
     color: #059669;
     /* Change to your brand color */
     font-weight: bold;
     background: #ecfdf5;
     width: 1.5rem;
     height: 1.5rem;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
     font-size: 0.8rem;
 }
