@font-face {
    font-family: 'Inter';
    /*font-weight: 400;*/
    font-style: normal;
}

html {
    scroll-behavior: smooth;
}


:root {
    --color-primary: #4D4100;
    --color-secondary: #222222;
    --color-tertiary: #F0F0F0;

    /* Gradients */
    --color-gradient-start: #FFD700;
    --color-gradient-stop: #FFCC33;
    --color-gradient-start-secondary: #222222;
    --color-gradient-stop-secondary: #555555;
    --color-gradient-start-tertiary: #FFF5CC;
    --color-gradient-stop-tertiary: #FFFFFF;
}

body {
    font-family: 'Cerebri Sans', sans-serif;
    font-size: 16px;
    line-height: 1.9em;
    color: #828282;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6 .h6 {
    font-family: 'neuzeit-grotesk', 'sans-serif';
    color: #060221;
}

h1, .h1 {
    font-family: 'Inter', sans-serif; /* Using a cleaner, modern font */
    font-size: 56px; /* Slightly larger font size for prominence */
    line-height: 1.4em;
    letter-spacing: -0.5px; /* Reduced letter-spacing for a more compact look */
    font-weight: 700; /* Bold font weight for more impact */
}

.h2,
h2 {
    font-size: 44px;
    line-height: 1.4;
    letter-spacing: 0;
}

.h3,
h3 {
    font-size: 32px;
    line-height: 1.5em;
}

.h4,
h4 {
    font-size: 26px;
    line-height: 1.6em;
}

.h5,
h5 {
    font-size: 20px;
    line-height: 1.6em;
}

.h6,
h6 {
    font-size: 18px;
    line-height: 1.8;
}

.font-family-roboto {
    font-family: 'Roboto', sans-serif;
}

.font-family-amiri {
    font-family: 'Amiri', sans-serif;
}

/* General Navigation Styling */
.main-header {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.main-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.main-nav > li > a {
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.main-nav > li > a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

.mainbar-wrap {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Optional shadow */
}

/* Sticky Header Styling */
.mainbar-wrap.is-stuck {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mainbar-wrap.is-stuck .main-nav > li > a {
    color: #333;
}

.mainbar-wrap.is-stuck .btn-gradient-yellow {
    background: var(--color-gradient-start);
    color: #fff;
}

/* Logo Alignment */
.logo-container {
    margin-right: auto; /* Push the logo closer to the center */
    display: flex;
    align-items: center;
}

.logo-icon {
    margin-right: 15px; /* Adjust spacing for centering */
}

/* CTA Button Alignment */
.cta-container {
    margin-left: auto; /* Push the button closer to the center */
    display: flex;
    justify-content: center;
}

.btn-cta {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    background: black;
    color: white;
    border-radius: 25px;
    transition: all 0.3s ease;
}


/* Navigation Alignment */
.main-nav-container {
    text-align: center;
}

.navbar-brand {
    margin-left: 120px;
}

.navbar-collapse {
    display: none;
}

.navbar-collapse.show {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #fff;
    padding: 15px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    border-top: 1px solid #ddd;
}

/* Mobile Menu Toggle */
.nav-trigger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    border: none;
    background: none;
    padding: 5px;
}

.nav-trigger .bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: 0.3s ease;
}

.nav-trigger[aria-expanded="true"] .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-trigger[aria-expanded="true"] .bar:nth-child(2) {
    opacity: 0;
}

.nav-trigger[aria-expanded="true"] .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .main-nav-container {
        display: none; /* Hide main nav for mobile */
    }

    .navbar-collapse.show {
        display: flex; /* Show when toggled */
    }

    .cta-container {
        display: none; /* Optionally hide CTA on smaller screens */
    }
}

@media (max-width: 576px) {
    .logo-default {
        width: 150px; /* Adjust logo size for small screens */
    }

    .navbar-collapse {
        gap: 15px;
    }
}

.col-auto.cta-container {
    margin-right: 130px;
}

/* Adjust spacing for larger screens */
@media (min-width: 1200px) {
    .logo-container {
        margin-right: 20px;
    }

    .cta-container {
        margin-left: 20px;
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .logo-container,
    .cta-container {
        margin: 0 auto; /* Center-align on smaller screens */
    }

    .main-nav-container {
        text-align: center;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .mt-4 {
        display: flex;
        flex-direction: column; /* Stack buttons vertically */
        align-items: center; /* Center align buttons */
        gap: 12px; /* Add space between buttons */
    }

    .mt-4 .btn {
        width: 100%; /* Make buttons take full width on mobile */
        text-align: center; /* Center text inside the button */
    }
}

/* Call-to-Action Button */
.btn-gradient-yellow {
    background: linear-gradient(45deg, var(--color-gradient-start), var(--color-gradient-stop));
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-gradient-yellow:hover {
    background: linear-gradient(45deg, var(--color-gradient-stop), var(--color-gradient-start));
    transform: scale(1.05);
}

/* Mobile Menu Adjustments */
@media (max-width: 992px) {
    .main-nav {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .btn-gradient-yellow {
        margin-top: 10px;
    }
}

.main-header .social-icon {
    font-size: 17px;
}

.main-header .social-icon:not([class*=scheme-]) a,
.main-nav > li > a {
    color: rgba(255, 255, 255, 0.7);
}

.main-header .social-icon:not([class*=scheme-]) a:hover,
.main-nav > li > a:hover {
    color: #fff;
}

.main-nav > li > a {
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.main-nav > li.is-active > a,
.main-nav > li.current-menu-item > a,
.main-nav > li:hover > a,
.main-nav > li > a:hover {
    color: #fff;
}

.nav-light .main-nav > li > a {
    color: rgba(255, 255, 255, 0.75);
}

.nav-light .main-nav > li > a .link-ext {
    background-color: #fff;
}

.nav-dark .main-nav > li > a {
    color: rgba(0, 0, 0, 0.75);
}

.nav-dark .main-nav > li.is-active > a,
.nav-dark .main-nav > li.current-menu-item > a,
.nav-dark .main-nav > li:hover > a,
.nav-dark .main-nav > li > a:hover {
    color: #000;
}

.main-footer {
    color: #98a2aa;
}

.main-footer a:not(.btn) {
    color: #98a2aa;
}

.main-footer a:not(.btn):hover {
    color: #fff;
}

@media (min-width: 1200px) {
    .main-header .is-stuck {
        background: #fff !important;
    }

    .mainbar-wrap.is-stuck .social-icon a,
    .mainbar-wrap.is-stuck .header-module .ld-module-trigger,
    .mainbar-wrap.is-stuck .main-nav > li > a,
    .mainbar-wrap.is-stuck .ld-module-search-visible-form .ld-search-form input {
        color: rgba(0, 0, 0, 0.7) !important;
    }

    .mainbar-wrap.is-stuck .social-icon a:hover,
    .mainbar-wrap.is-stuck .main-nav > li > a:hover {
        color: #000 !important;
    }

    .megamenu-heading {
        color: #3b91f7;
    }

    [data-megamenu-bg-scheme=light] .lqd-custom-menu a {
        color: #3e3f42;
    }

    .megamenu .lqd-custom-menu a:hover {
        color: #3b91f7;
    }
}

/* General Animation Classes */
.animated {
    opacity: 0;
    transform: translateY(20px);
    animation: fade-in 1s ease-in-out forwards;
}

/* Specific Animations */
.fade-in {
    animation-name: fade-in;
}

.slide-in-from-left {
    animation-name: slide-in-from-left;
    transform: translateX(-30px);
}

.fade-in-up {
    animation-name: fade-in-up;
    transform: translateY(30px);
}

.zoom-in {
    animation-name: zoom-in;
    transform: scale(0.8);
}

/* Keyframes */
@keyframes fade-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide-in-from-left {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fade-in-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoom-in {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Button Styles */
.btn-gradient-yellow {
    background: linear-gradient(45deg, #ffba00, #e68a00); /* Deep yellow to orange gradient */
    color: #fff; /* White text for contrast */
    font-weight: bold; /* Bold text for better readability */
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Slight shadow for depth */
    transition: all 0.3s ease;
}

.btn-gradient-yellow:hover {
    background: linear-gradient(45deg, #e68a00, #cc7000); /* Darker gradient for hover */
    color: #fff; /* Keep text white */
    transform: translateY(-3px); /* Lift button slightly */
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.15); /* Stronger shadow on hover */
}


.btn-outline-light {
    background: transparent;
    color: #fff; /* White text for visibility */
    font-weight: bold; /* Bold text for better readability */
    border: 2px solid #fff; /* White border for clarity */
    border-radius: 5px;
    padding: 10px 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: #fff; /* Invert colors on hover */
    color: var(--color-primary); /* Use the primary color for text */
    border-color: var(--color-primary); /* Match the border with primary color */
    transform: translateY(-3px); /* Lift button slightly */
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.2); /* Enhance shadow */
}

/* General Button Styles */
.btn {
    display: inline-block;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Primary Button (Dark Background, White Text) */
.btn-dark {
    background-color: #29365C; /* Dark blue */
    color: #FFFFFF; /* White text */
    border: none;
}

.btn-dark:hover {
    background-color: #1A2540; /* Slightly darker blue */
    color: #FFD700; /* Gold text on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Secondary Button (White Background, Dark Text) */
.btn-light {
    background-color: #FFFFFF; /* White */
    color: #29365C; /* Dark blue text */
    border: 2px solid #29365C;
}

.btn-light:hover {
    background-color: #F0F0F0; /* Light gray on hover */
    color: #1A2540; /* Darker blue text */
    border-color: #1A2540;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Button Sizing */
@media (max-width: 768px) {
    .btn {
        padding: 10px 16px;
        font-size: 14px;
    }
}

/* Style for the Contact Us Section */
.vc_row {
    position: relative;
    padding-top: 100px;
    padding-bottom: 60px;
    background-color: #f4f4f4; /* Light grey background for the entire section */
}

.row.justify-content-center {
    display: flex;
    /*gap: 20px;*/
    flex-wrap: wrap;
}

/* Fancy box styling */
.vc_row.lqd-column {
    background: linear-gradient(to right, #ff8a00, #e52e71); /* Orange gradient background */
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    width: 50%; /* Make the box take up half of the section */
    position: relative; /* Ensure the box is aligned properly */
    margin-left: 0; /* Align the box to the left */
}

/* On hover, make the box slightly pop */
.vc_row.lqd-column:hover {
    transform: translateY(-5px);
    box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.15);
}

/* Section Title */
.vc_row h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

/* Subtitle text */
.vc_row p {
    font-size: 18px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Button styling */
.vc_row .btn-gradient-primary {
    background: linear-gradient(to right, #ff8a00, #e52e71); /* Matching gradient for the button */
    padding: 15px 30px;
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.vc_row .row {
    justify-content: center; /* Center the column horizontally */
}

.text-center {
    text-align: center; /* Center align text */
}

.vc_row .btn {
    margin: 0 auto; /* Center the buttons if they have dynamic widths */
}

/* Button hover effect */
.vc_row .btn-gradient-primary:hover {
    background: linear-gradient(to right, #e52e71, #ff8a00);
    transform: translateY(-5px);
}

/* Mobile responsiveness */
@media (max-width: 767px) {
    .vc_row h2 {
        font-size: 28px;
    }

    .vc_row p {
        font-size: 16px;
    }

    .vc_row .btn-gradient-primary {
        font-size: 16px;
        padding: 12px 25px;
    }

    /* Make the box take full width on mobile */
    .vc_row.lqd-column {
        width: 100%;
        margin-left: 0;
    }
}

@media (min-width: 992px) {
    .vc_row.contact-section .col-md-8 {
        width: auto !important; /* Forcefully overrides the default width */
    }
}

@media (max-width: 768px) {
    .font-weight-bold {
        line-height: 1.2 !important; /* Reduce line-height for bold text */
    }

    .vc_row .mb-15 {
        margin-bottom: 10px; /* Reduce bottom margin between paragraphs */
    }
}

/* Ensure consistent column height */
.row.d-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.iconbox {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
}

.iconbox:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.iconbox-icon-wrap {
    margin-bottom: 20px;
    font-size: 32px;
    color: var(--color-primary);
}

.iconbox-icon-container {
    background: linear-gradient(45deg, #FFD700, #FFCC33);
    color: #fff; /* White icon for contrast */
}


.iconbox .contents h3 {
    margin-bottom: 10px;
    color: #060221;
}

.iconbox .contents p {
    color: #777;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .iconbox {
        padding: 15px;
    }
}

.iconbox {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 380px; /* Ensure cards have the same minimum height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.iconbox:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.iconbox-icon-wrap {
    margin-bottom: 20px;
    font-size: 32px;
    color: var(--color-primary);
}

.iconbox .contents h3 {
    margin-bottom: 15px;
    font-size: 18px; /* Ensure consistent font size */
    color: #060221; /* Title color */
    font-weight: bold; /* Make the titles stand out */
}

.iconbox .contents p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.iconbox .contents ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    margin-bottom: 20px;
    color: #777;
    line-height: 1.6;
}

.iconbox .btn {
    margin-top: auto; /* Ensures the button stays at the bottom */
    margin-bottom: 15px; /* Gives a bit of space between the button and the content above it */
}

.iconbox .contents {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* This will space out the content evenly */
    height: 100%; /* Ensures all cards have the same height */
}

.iconbox .btn-dark {
    background-color: var(--color-primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.iconbox .btn-dark:hover {
    background-color: #e5b700; /* Slightly darker shade of gold */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive Design Adjustments */
@media (max-width: 992px) {
    .iconbox {
        min-height: auto; /* Removes height restriction on smaller screens */
        margin-bottom: 20px;
    }
}

h2, h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: black; /* White for contrast */
}

/* Subheading style */
p.text-yellow {
    font-size: 22px !important; /* Slightly larger subheading */
    color: #FFD700; /* Yellow text to stand out */
    font-weight: 600;
    letter-spacing: 1px; /* Little more spacing for clarity */
}

p.text-dark-yellow {
    font-size: 22px !important; /* Slightly larger subheading */
    color: #4D4100; /* Yellow text to stand out */
    font-weight: 600;
    letter-spacing: 1px; /* Little more spacing for clarity */
}

/* Description Text */
p.text-light {
    font-size: 22px; /* Increased font size for readability */
    line-height: 1.7em; /* More spacing between lines for easier reading */
    opacity: 0.9; /* Slightly better opacity for contrast */
}

/* Button Styles */
.btn-gradient-yellow {
    background: linear-gradient(45deg, #FFD700, #FFCC33);
    color: #fff;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background 0.3s, transform 0.3s;
}

.btn-gradient-yellow:hover {
    background: linear-gradient(45deg, #FFCC33, #E5B700);
    transform: translateY(-2px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}


.btn-outline-light {
    background: transparent;
    color: #FFD700; /* Use primary yellow color for text */
    font-weight: bold;
    border: 2px solid #FFD700; /* Yellow border for visibility */
    border-radius: 5px;
    padding: 10px 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: #FFD700; /* Yellow background on hover */
    color: #fff; /* White text for contrast */
    border-color: #FFD700; /* Keep border consistent */
    transform: translateY(-3px); /* Lift button slightly */
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.2); /* Stronger shadow */
}

.btn-inviting {
    background: linear-gradient(45deg, #FFD700, #FFA500); /* Vibrant yellow-orange gradient */
    color: #fff; /* White text for contrast */
    font-weight: bold; /* Bold text to grab attention */
    text-transform: uppercase; /* Uppercase text for emphasis */
    border: 2px solid #FFA500; /* Border matching the gradient */
    border-radius: 30px; /* Rounded button for a friendly feel */
    padding: 14px 28px; /* Generous padding for prominence */
    font-size: 18px; /* Slightly larger font */
    transition: all 0.3s ease; /* Smooth hover effects */
    box-shadow: 0 4px 8px rgba(255, 165, 0, 0.3); /* Subtle glow effect */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2); /* Subtle text shadow */
}

.btn-inviting:hover {
    background: linear-gradient(45deg, #FFA500, #FF4500); /* Slightly deeper gradient on hover */
    color: #fff; /* Ensure text remains visible */
    transform: translateY(-5px) scale(1.05); /* Add lift and slight scale on hover */
    box-shadow: 0 8px 16px rgba(255, 69, 0, 0.4); /* Enhance glow on hover */
    cursor: pointer; /* Pointer cursor for interactivity */
}

.btn-outline-black {
    background-color: #fff; /* White background */
    color: #000; /* Black text */
    border: 2px solid #000; /* Black border */
    border-radius: 5px; /* Optional rounded corners */
    font-size: 16px; /* Adjust font size */
    font-weight: bold; /* Make text bold */
    padding: 10px 20px; /* Padding for the button */
    transition: all 0.3s ease; /* Smooth transition for hover effect */
    text-transform: uppercase; /* Optional: Make text uppercase */
}

/*.btn-outline-black:hover {*/
/*    background-color: #000; !* Black background on hover *!*/
/*    color: #fff; !* White text on hover *!*/
/*    border-color: #000; !* Keep the border black *!*/
/*    transform: translateY(-2px); !* Slight lift effect *!*/
/*    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); !* Add shadow on hover *!*/
/*}*/

.btn-black {
    background-color: #000; /* Black background */
    color: #fff; /* White text */
    border: 2px solid #000; /* Black border */
    border-radius: 5px; /* Optional rounded corners */
    font-size: 16px; /* Adjust font size */
    font-weight: bold; /* Make text bold */
    padding: 10px 20px; /* Padding for the button */
    transition: all 0.3s ease; /* Smooth transition for hover effect */
    text-transform: uppercase; /* Optional: Make text uppercase */
}

/*.btn-black:hover {*/
/*    background-color: #fff; !* White background on hover *!*/
/*    color: #000; !* Black text on hover *!*/
/*    border-color: #000; !* Keep the border black *!*/
/*    transform: translateY(-2px); !* Slight lift effect *!*/
/*    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); !* Add shadow on hover *!*/
/*}*/


/* Mobile responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 42px; /* Smaller size on mobile */
    }

    p.text-light {
        font-size: 18px; /* Smaller description text */
    }

    .btn-gradient-yellow, .btn-outline-light {
        padding: 10px 20px; /* Adjusted button size for mobile */
    }
}

.testimonial-photo figure.avatar {
    width: 100px; /* Set a larger width */
    height: 100px; /* Set a fixed height to maintain aspect ratio */
    margin: 0 auto; /* Center the image within the container */
    overflow: hidden; /* Ensure the image fits within the container */
}

.testimonial-photo figure.avatar img {
    width: 100%; /* Make the image stretch to fill the container */
    height: 100%; /* Ensure the image is a square */
    object-fit: cover; /* Keep the aspect ratio intact and cover the entire space */
    border-radius: 50%; /* Ensure the image remains circular */
    border: 3px solid #fff; /* Optional: Add a border around the image for better contrast */
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

.bounce-animation {
    animation: bounce 1.5s ease-out;
}

/* Inputs and Textarea Styles */
.form-modern .modern-input,
.form-modern .modern-textarea {
    border: 2px solid #ff8a00;
    background: #fff;
    color: #333;
    padding: 15px 20px;
    font-size: 16px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.form-modern .modern-input:focus,
.form-modern .modern-textarea:focus {
    border-color: #e52e71;
    box-shadow: 0 4px 15px rgba(229, 46, 113, 0.5);
    outline: none;
}

/* Button Styles */
.btn-modern {
    padding: 12px 30px;
    font-size: 18px;
    color: #fff;
    background: linear-gradient(to right, #ff8a00, #e52e71);
    border: none;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}

.btn-modern:hover {
    background: linear-gradient(to left, #ff8a00, #e52e71);
    box-shadow: 0 6px 20px rgba(255, 138, 0, 0.4);
    transform: translateY(-2px);
}

/* Title and Section Spacing */
.contact-us-form h2 {
    font-weight: bold;
    text-transform: uppercase;
}

.contact-us-form p {
    font-size: 18px;
    color: #666;
}

.main-header .main-nav > li > a {
    color: #333; /* Dark gray for better contrast */
    /*font-weight: bold;*/
}

.main-header .main-nav > li > a:hover {
    color: #000; /* Black for hover */
}

.carousel-container .flickity-button {
    background-color: #000000; /* Solid black background */
    border: 2px solid #000000; /* Black border to blend with the background */
    border-radius: 50%; /* Circular shape */
    width: 40px;
    height: 40px;
    color: #ffffff; /* White arrow/text color */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease; /* Smooth hover effect */
}

/* Hover effect */
.carousel-container .flickity-button:hover {
    background-color: #ffffff; /* White background on hover */
    color: #000000; /* Black arrow/text color */
    border: 2px solid #ffffff; /* White border on hover */
    transform: scale(1.1); /* Slight enlargement on hover */
}

/* Disabled state */
.carousel-container .flickity-button:disabled {
    opacity: 0.5; /* Reduced visibility for disabled state */
    cursor: not-allowed;
}


@media (max-width: 992px) {
    .iconbox {
        min-height: auto;
    }
}

.btn-no-hover:hover {
    /* background-color: inherit; */ /* Keep the original background */
    /* color: inherit; */ /* Keep the original text color */
    /* border-color: inherit; */ /* Keep the original border color */
    /* transform: none; */ /* Remove any transform effect */
    /* box-shadow: none; */ /* Remove the shadow */
}

/* Disable hover effect on the specific button with the .btn-outline-black class */
.no-hover-btn.btn-outline-black:hover {
    background-color: inherit !important;
    color: inherit !important;
    border-color: inherit !important;
    transform: none !important;
    box-shadow: none !important;
}

.cta-section {
    background-color: #000; /* Dark background */
    color: #fff; /* White text */
    padding: 50px 20px;
    text-align: center;
}

.cta-section .btn-primary {
    background-color: #ffc107; /* Accent color */
    color: #000;
    padding: 10px 30px;
    text-transform: uppercase;
    border-radius: 5px;
}

.highlighted-benefits {
    display: flex !important;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 26px;
    font-weight: bold;
    grid-column-gap: 5px !important;
    grid-row-gap: 7px !important;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    /*margin-top: -60px;*/
    position: static;
}

.highlighted-benefits .highlighted-item {
    color: #777; /* Gray color for non-highlighted items */
    opacity: 0.5; /* Reduced visibility for non-active items */
    transition: opacity 0.6s ease-in-out, color 0.6s ease-in-out;
}

.highlighted-benefits .highlighted-item.active {
    color: #d66f3c; /* Orange color for highlighted item */
    opacity: 1; /* Full visibility for active item */
}

.benefits-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    margin: 0;
}

.benefits-list {
    display: flex;
    flex-direction: row; /* Aligns checkmarks horizontally */
    justify-content: flex-start; /* Aligns items to the left */
    align-items: center; /* Align text and icons vertically */
    gap: 3rem; /* Space between checkmarks */
    margin-top: 1rem; /* Adds space above the checkmarks */
}

.benefits-item {

    grid-column-gap: .25rem;
    grid-row-gap: .25rem;
    background-image: linear-gradient(89deg, #ffffff21 38%, #000);
    border-radius: 200px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 20px;
    display: flex;
}

.benefits-icon {
    width: 36px; /* Icon size */
    height: 36px;
}

.benefits-text {
    font-size: 1.4rem;
    font-weight: bold;
    color: #fff !important; /* Text color */
    line-height: 3;
}

@media (max-width: 768px) {
    .benefits-list {
        flex-direction: column; /* Stack items vertically on smaller screens */
        align-items: center; /* Center items */
    }

    .benefits-item {
        flex: 1 1 100%; /* Make each item take full width */
        margin-bottom: 20px; /* Add space between items */
    }
}

@media (max-width: 480px) {
    .benefits-item {
        flex: 1 1 100%; /* Ensure each item is full width on mobile */
    }

    .benefits-text {
        font-size: 14px; /* Slightly smaller text for mobile */
    }
}


.star-separator {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0.2));
    margin: 15px 0;
}

.clients-section {
    text-align: left;
}

.clients-header {
    margin-bottom: 20px;
}

.clients-reviews {
    display: flex;
    align-items: center;
    gap: 30px; /* Space between each review item and the separator */
    position: relative; /* For proper separator alignment */
}


.clients-logos {
    display: flex;
    justify-content: center; /* Align the logos container horizontally */
    align-items: center;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    grid-gap: 20px; /* Space between logos */
    justify-items: center; /* Center align each logo */
    align-items: center; /* Vertically align logos */
    margin-top: 80px;
}

.client-logo {
    max-width: 100%; /* Ensure logos are responsive */
    height: 100px; /* Set a consistent height for all logos */
    object-fit: contain; /* Ensures logos fit nicely within their container */
}


.review-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.community-icon {
    width: 50px; /* Adjust icon size */
    height: auto;
    margin-bottom: 5px; /* Space between the icon and text */
}

.star-icon {
    width: 120px; /* Adjust icon size */
    height: auto;
    margin-bottom: 15px; /* Space between the icon and text */
}

.review-text {
    font-size: 14px;
    color: #aaa; /* Lighter text for better contrast */
}

/* Separator Styling */
.review-separator {
    height: 50px; /* Match the height of icons */
    width: 2px; /* Thin vertical line */
    background-color: #555; /* Neutral gray color */
    opacity: 0.8; /* Slight transparency */
}

/* General Footer Styling */
.footer {
    background-color: #000; /* Dark background */
    padding: 60px 20px;
    color: #ddd;
    font-size: 14px;
}

/* Footer Grid Layout */
.footer_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    align-items: flex-start;
}

/* Left Column Styling */
.footer_left {
    text-align: left;
}

.footer_logo {
    /*max-width: 100px;*/
    margin-bottom: 15px;
}

.footer_contact {
    margin-top: 15px;
}

.footer_contact p {
    margin: 5px 0;
}

.footer_link {
    color: #ddd;
    text-decoration: none;
    margin-top: 10px;
    display: block;
}

.footer_link:hover {
    color: #ffa500; /* Accent color */
}

/* Center Column Styling */
.footer_links {
    display: flex;
    gap: 30px;
}

.footer_column p {
    font-weight: bold;
    margin-bottom: 10px;
}

.footer_column .footer_link {
    margin-bottom: 8px;
}

/* Right Column: Social and Logos */
.footer_social {
    text-align: left;
}

.social_links {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.socmed_icon {
    width: 24px;
    height: 24px;
    transition: opacity 0.3s ease;
}

.socmed_icon:hover {
    opacity: 0.7;
}

.footer_logos {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .footer_grid {
        grid-template-columns: 1fr 1fr; /* Change to 2 columns on smaller screens */
        gap: 20px;
    }

    .footer_left, .footer_links, .footer_social {
        text-align: center;
    }

    .footer_links {
        flex-direction: column;
        align-items: center;
    }

    .footer_column {
        margin-bottom: 20px;
    }

    .social_links {
        justify-content: center;
    }

    .footer_logo {
        width: 120px;
    }
}

@media (max-width: 480px) {
    .footer_grid {
        grid-template-columns: 1fr; /* Stack all items in one column on mobile */
        gap: 15px;
    }

    .footer_logo {
        width: 100px; /* Adjust logo size */
    }

    .footer_contact, .footer_links, .footer_social {
        padding: 0 10px;
    }

    .footer_column p {
        font-size: 16px; /* Make column headings larger for mobile */
    }

    .socmed_icon {
        width: 30px; /* Increase icon size on mobile */
        height: 30px;
    }
}

/* Section Styling */
#offer-section {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: white;
    padding: 80px 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Logo Styling */
.logo-wrapper {
    margin-bottom: 20px;
}

.offer-logo {
    max-width: 150px;
    height: auto;
    object-fit: contain;
}

/* Title Styling */
.offer-title {
    font-size: 2.4rem;
    line-height: 1.4;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.offer-title .highlight {
    color: #f1b100; /* Match your logo color */
}

/* Subtitle Styling */
.offer-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
}


.offer-button:hover {
    background-color: #d19a00;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
}

/*#offer-section {*/
/*    opacity: 0;*/
/*    transform: translateY(30px);*/
/*    transition: opacity 0.6s ease, transform 0.6s ease;*/
/*}*/

/*#offer-section.loaded {*/
/*    opacity: 1;*/
/*    transform: translateY(0);*/
/*}*/
#multi-step-form {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 40px auto;
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden; /* Hidden by default */
    pointer-events: none; /* Prevent interactions until shown */
    transition: all 0.4s ease;
}

#multi-step-form.show {
    opacity: 1;
    transform: translateY(0);
    visibility: visible; /* Ensure form is visible */
    pointer-events: auto; /* Enable interactions */
}

.form-step {
    display: none;
    text-align: center;
}

.form-step.active {
    display: block;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin: 10px 0;
}

.option-button {
    display: inline-block;
    padding: 12px 25px;
    margin: 10px;
    background-color: #f1b100;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.option-button:hover {
    background-color: #d19a00;
}

.option-button.selected {
    background-color: #d19a00;
}

.next-step, .prev-step {
    padding: 0; /* Remove padding */
    margin: 0; /* Remove margin */
    border: none; /* Remove border */
    background: none; /* Remove background */
    width: 50px; /* Set width of button to match the image size */
    height: 50px; /* Set height of button to match the image size */
    cursor: pointer; /* Pointer cursor to indicate interactivity */
}

button.next-step::after,
button.prev-step::after {
    content: '';
    display: block;
    width: 100%; /* Make the image fill the button */
    height: 100%; /* Make the image fill the button */
    background-size: contain; /* Ensure the image fits within the button */
    background-repeat: no-repeat;
    background-position: center; /* Center the image */
}

button.next-step::after {
    background-image: url('/assets/img/icon/next.png'); /* Right arrow icon */
}

button.prev-step::after {
    background-image: url('/assets/img/icon/back.png'); /* Left arrow icon */
}

.hidden {
    display: none;
}

input[type="text"], input[type="tel"], input[type="email"] {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
}

