/* Fonts */
:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
        "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
        "Noto Color Emoji";
    --heading-font: "Nunito", sans-serif;
    --nav-font: "Inter", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff;
    /* Background color for the entire website, including individual sections */
    --default-color: #212529;
    /* Default color used for the majority of the text content across the entire website */
    --heading-color: #2d465e;
    /* Color for headings, subheadings and title throughout the website */
    --accent-color: #b9fb6a;
    --surface-color: #ffffff;
    /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    /* --contrast-color: #ffffff; */
    --contrast-color: black;
    /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #212529;
    /* The default color of the main navmenu links */
    --nav-hover-color: #b9fb6a;
    --nav-mobile-background-color: #ffffff;
    /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff;
    /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #212529;
    /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #b9fb6a;
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

/* .light-background {
  --background-color: #f3f9ff;
  --surface-color: #ffffff;
} */

.dark-background {
    /* --background-color: #B9FB6A;  */
    --background-color: #ffffff;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #409dfd;
    /* --contrast-color: #ffffff; */
    --contrast-color: black;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    /* color: var(--accent-color); */
    color: #000;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    /* color: color-mix(in srgb, var(--accent-color), transparent 25%); */
    color: color-mix(in srgb, var(--contrast-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

.php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--accent-color);
    border-top-color: var(--surface-color);
    animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/

/* ===== Navbar Wrapper ===== */
.navbar-wrapper {
    /* background: #ffffff; */
    padding: 10px 25px;
    /* box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05); */
    margin-top: 5px;
    margin-bottom: 5px;
}

/* ===== Logo ===== */
.logo .sitename {
    color: #000;
    font-weight: 600;
    font-size: 22px;
}

/* ===== Nav List ===== */
.navmenu.navbar-bg-sec {
    background: #ffffff;
    /* padding: 10px 25px; */
    border-radius: 50px;
}

.navmenu .nav-list {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navmenu .nav-list li a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    padding: 6px 12px;
    transition: color 0.3s ease;
}

.navmenu .nav-list li a:hover,
.navmenu .nav-list li a.active {
    color: #000;
    background: #f2f2f2;
    border-radius: 20px;
}

/* ===== Buttons ===== */
.nav-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Shared Button Base */
.login-btn,
.signup-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 30px;
    padding: 8px 18px;
    transition: all 0.3s ease;
    font-size: 15px;
    line-height: 1.4;
}

/* ===== LOG IN BUTTON ===== */
.login-btn {
    color: #000;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background-color: #fff;
}

.login-btn:hover {
    background-color: #bfff4d;
    color: black;
}

/* Small green circle for icon */
.login-btn i {
    background-color: #bfff4d;
    color: #000;
    border-radius: 50%;
    font-size: 13px;
    padding: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.login-btn:hover i {
    /* transform: translateX(3px); */
    background-color: black;
    color: white;
}

/* ===== SIGN UP BUTTON ===== */
.signup-btn {
    background-color: #bfff4d;
    color: #000;
    font-weight: 600;
    border: 1px solid #bfff4d;
}

.signup-btn:hover {
    background-color: black;
    color: white;
    border: 1px solid black !important;
}

/* Black circle for icon */
.signup-btn i {
    background-color: #000;
    color: #bfff4d;
    border-radius: 50%;
    font-size: 13px;
    padding: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.signup-btn:hover i {
    /* transform: translateX(3px); */
    background-color: white;
    color: black;
}

.navmenu {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 991px) {
    /* .navmenu {
    display: none;
  } */

    .nav-buttons {
        display: none;
    }
}

.scrolled .header {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.scrolled .navmenu.navbar-bg-sec {
    background: transparent;
}

.header .logo {
    line-height: 1;
    padding-left: 5px;
}

.header .logo img {
    max-height: 60px;
}

@media screen and (max-width: 768px) {
    .header .logo img {
        max-height: 50px;
    }
}

/* .header .logo {
  line-height: 1;
  padding-left: 5px;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 500;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 16px;
  padding: 8px 20px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
} */

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1024px) and (max-width: 1024px) {
    .nav-buttons a.login-btn {
        display: none;
    }
}

@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        /* padding: 18px 15px; */
        padding: 8px 20px;
        font-size: 16px;
        font-family: var(--nav-font);
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu li:last-child a {
        /* padding-right: 0; */
    }

    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        /* color: var(--nav-hover-color); */
        color: black;
        background: #eeeeee;
        border-radius: 20px;
    }

    /*
  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  } */

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
        background: none !important;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        /* inset: 60px 20px 20px 20px; */
        inset: 70px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: 0.3s ease-in-out;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb,
                var(--accent-color),
                transparent 90%);
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    /*
  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  } */

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        /* color: #fff; */
        color: black;
        position: absolute;
        font-size: 32px;
        /* top: 15px;
    right: 15px; */
        top: 75px;
        right: 30px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
        border-radius: 0px;
    }

    .mobile-nav-active .navmenu>ul {
        display: block;
    }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    position: relative;
}

.footer .footer-top {
    padding-top: 50px;
}

.footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 25px;
}

.footer .footer-about .logo img {
    max-height: 40px;
    margin-right: 6px;
}

.footer .footer-about .logo span {
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer .footer-about p {
    font-size: 14px;
    font-family: var(--heading-font);
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-right: 10px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    /* color: var(--accent-color); */
    color: var(--contrast-color);
    border-color: var(--contrast-color);
}

.footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-links {
    margin-bottom: 30px;
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links ul i {
    padding-right: 2px;
    font-size: 12px;
    line-height: 0;
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    display: inline-block;
    line-height: 1;
}

.footer .footer-links ul a:hover {
    /* color: var(--accent-color); */
    color: var(--contrast-color);
    padding-left: 8px;
}

.footer .footer-contact p {
    margin-bottom: 5px;
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
    margin-bottom: 0;
}

.footer .credits {
    margin-top: 8px;
    font-size: 13px;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 170px 0 80px 0;
    text-align: center;
    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;
    justify-content: center;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
    padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 90px;
    overflow: clip;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 66px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-title h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    position: relative;
    padding-top: 160px;
    background-color: #f1fee1;
    background-image: url("/assets/images/hero-banner.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero .hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.hero-content {
    max-width: 1000px;
    margin: 50px auto 60px auto;
}

.heading-title {
    font-size: 80px;
    /* font-size: 75px; */
    line-height: 92px;
    display: block;
    font-weight: bold;
}

.hero-content p {
    max-width: 765px;
    /* margin: 20px 0px calc(var(--kit-widget-spacing, 0px) + 20px) 0px; */
    /* margin: 10px 0px calc(var(--kit-widget-spacing, 0px) + 10px) 0px; */
    --container-widget-width: 765px;
    --container-widget-flex-grow: 0;
    text-align: center;
    font-size: 22px;
    line-height: 35px;
    color: #696969;
}

@media (max-width: 992px) {
    .hero .hero-content {
        text-align: center;
        margin-bottom: 3rem;
    }

    .hero .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero .hero-content .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .hero .hero-content h1 {
        font-size: 2rem;
    }

    .heading-title {
        font-size: 85px;
        line-height: 62px;
    }
}

.hero .company-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: #f1fee1;
    border-radius: 50px;
    color: black;
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 22px;
}

.hero .btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 0.75rem 2.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hero .btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 20%);
    border-color: color-mix(in srgb, var(--accent-color), black 20%);
}

.hero .btn-link {
    color: var(--heading-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hero .btn-link:hover {
    color: var(--accent-color);
}

.hero .btn-link i {
    font-size: 1.5rem;
    vertical-align: middle;
}

.hero .hero-image {
    position: relative;
    text-align: center;
    z-index: 1;
}

.hero .hero-image img {
    max-width: 100%;
    height: auto;
}

.hero .customers-badge {
    position: absolute;
    bottom: 10px;
    right: 30px;
    background-color: var(--surface-color);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    animation: float-badge 3s ease-in-out infinite;
    will-change: transform;
}

.hero .customers-badge .customer-avatars {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.hero .customers-badge .avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid var(--surface-color);
    margin-left: -8px;
}

.hero .customers-badge .avatar:first-child {
    margin-left: 0;
}

.hero .customers-badge .avatar.more {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

.hero .customers-badge p {
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 992px) {
    .hero .customers-badge {
        position: static;
        margin: 1rem auto;
        max-width: 250px;
    }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-meta {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

.about .about-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
}

@media (max-width: 992px) {
    .about .about-title {
        font-size: 2rem;
    }
}

.about .about-description {
    margin-bottom: 2rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .feature-list-wrapper {
    margin-bottom: 2rem;
}

.about .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about .feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.about .feature-list li i {
    color: var(--accent-color);
    font-size: 1.25rem;
}

.about .profile .profile-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.about .profile .profile-name {
    font-size: 1.125rem;
    margin: 0;
}

.about .profile .profile-position {
    color: var(--accent-color);
    margin: 0;
    font-size: 0.875rem;
}

.about .contact-info {
    padding: 1rem 1.5rem;
    background-color: var(--surface-color);
    border-radius: 0.5rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}

.about .contact-info i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.about .contact-info .contact-label {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 0.875rem;
    margin: 0;
}

.about .contact-info .contact-number {
    font-weight: 600;
    margin: 0;
}

.about .image-wrapper {
    position: relative;
}

@media (max-width: 992px) {
    .about .image-wrapper {
        padding-left: 0;
        margin-top: 3rem;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .about .image-wrapper .images {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .about .image-wrapper .main-image {
        margin-left: 0;
    }
}

.about .image-wrapper .small-image {
    position: absolute;
    top: 20%;
    left: -10%;
    width: 45%;
    border: 8px solid var(--surface-color);
}

@media (max-width: 992px) {
    .about .image-wrapper .small-image {
        position: static;
        width: 100%;
        margin: 0 auto;
        border: 0;
    }
}

.about .image-wrapper .experience-badge {
    position: absolute;
    bottom: 5%;
    right: 5%;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
    min-width: 200px;
    animation: experience-float 3s ease-in-out infinite;
}

@media (max-width: 992px) {
    .about .image-wrapper .experience-badge {
        position: static;
        width: fit-content;
        margin: 0 auto;
    }
}

.about .image-wrapper .experience-badge h3 {
    color: var(--contrast-color);
    font-size: 2.5rem;
    margin: 0;
    line-height: 0.5;
}

.about .image-wrapper .experience-badge h3 span {
    font-size: 1rem;
    display: inline-block;
    margin-left: 0.25rem;
}

.about .image-wrapper .experience-badge p {
    margin: 0.5rem 0 0;
    font-size: 0.875rem;
}

@keyframes experience-float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/*--------------------------------------------------------------
# Features Cards Section
--------------------------------------------------------------*/
.feature-sec {
    background-color: #f1fee1;
    background-image: url("/assets/images/bg-linear.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.feature-sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.subtitle-badge {
    /* background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem; */
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: black;
    padding: 12px 28px;
    margin-bottom: 10px;
    border: 1px solid #eeeeee;
    background-color: #f1fee1;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    border-radius: 999px;
    width: auto;
}

.subtitle-para {
    max-width: 620px;
    margin: 0px 0px calc(var(--kit-widget-spacing, 0px) + 50px) 0px;
    --container-widget-width: 620px;
    --container-widget-flex-grow: 0;
    text-align: center;
    color: #0e0e0eb3;
}

.features-cards {
    --default-color: #555;
    --heading-color: #333;
}

.features-cards .feature-box {
    height: 100%;
    padding: 40px 30px;
    border-radius: 10px;
    transition: 0.3s ease-in-out;
}

.features-cards .feature-box:hover {
    transform: translateY(-10px);
}

.features-cards .feature-box i {
    font-size: 44px;
    display: inline-block;
    line-height: 0;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.features-cards .feature-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.features-cards .feature-box p {
    font-size: 15px;
    margin-bottom: 0;
}

.features-cards .feature-box {
    text-align: left;
    gap: 40px;
    border-color: #ffffff10;
    background: white;
    padding: 50px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.features-cards .feature-box i {
    border-color: #0e0e0e09;
    color: black;
    /* background: #b9fb6a; */
    transition: 0.3s ease-in-out;
}

.features-cards .feature-box i::before {
    border-radius: 15px 15px 15px 15px;
    padding: 15px;
    background-color: transparent;
    background-image: linear-gradient(180deg,
            #b9fb6a 0%,
            #b9fb6a00 100%) !important;
}

.features-cards .feature-box i::after {
    background: #b9fb6a;
    padding: 15px;
    border-radius: 15px 15px 15px 15px;
}

.features-cards .feature-box:hover i {
    background: #b9fb6a;
    border-radius: 15px 15px 15px 15px;
}

/*--------------------------------------------------------------
# Features 2 Section
--------------------------------------------------------------*/
.features-2 .feature-item .feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.features-2 .feature-item .feature-icon i {
    font-size: 24px;
    color: var(--accent-color);
}

.features-2 .feature-item .feature-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.features-2 .feature-item .feature-content p {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    font-size: 15px;
    margin-bottom: 0;
}

.features-2 .phone-mockup {
    position: relative;
    padding: 30px 0;
}

.features-2 .phone-mockup img {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

@media (max-width: 991.98px) {
    .features-2 .feature-item {
        text-align: center !important;
        margin-bottom: 2rem;
    }

    .features-2 .feature-item .d-flex {
        flex-direction: column;
        text-align: center;
        justify-content: center !important;
    }

    .features-2 .phone-mockup {
        margin: 3rem 0;
    }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
/* .call-to-action .container {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  padding: 4rem 2rem;
} */
.call-to-action .container {
    background-color: #f1fee1;
    background-image: url("/assets/images/bg-linear.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.call-to-action .container {
    /* background: var(--accent-color); */
    color: var(--contrast-color);
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    padding: 4rem 2rem;
}

.call-to-action .content h2,
.call-to-action .content p {
    color: var(--contrast-color);
    position: relative;
    z-index: 2;
}

/*
.call-to-action .btn-cta {
  background-color: color-mix(in srgb, var(--contrast-color) 15%, transparent);
  color: var(--contrast-color);
  padding: 12px 40px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid var(--contrast-color);
  position: relative;
  z-index: 2;
}

.call-to-action .btn-cta:hover {
  background-color: var(--contrast-color);
  color: var(--accent-color);
}

.call-to-action .shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.call-to-action .shape svg {
  width: 100%;
  height: 100%;
}

.call-to-action .shape svg path {
  fill: color-mix(in srgb, var(--contrast-color) 50%, transparent);
}

.call-to-action .shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
  opacity: 0.1;
  transform: rotate(45deg);
  animation: shapes-float 3s ease-in-out infinite;
}

.call-to-action .shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -50px;
  opacity: 0.15;
  transform: rotate(-15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .shape-3 {
  width: 150px;
  height: 150px;
  top: 20%;
  right: 15%;
  opacity: 0.08;
  transform: rotate(15deg);
}

.call-to-action .dots {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  color: var(--contrast-color);
}

.call-to-action .dots svg {
  width: 100%;
  height: 100%;
}

.call-to-action .dots-1 {
  width: 200px;
  height: 200px;
  top: -30px;
  left: 10%;
  opacity: 0.1;
  transform: rotate(15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .dots-2 {
  width: 150px;
  height: 150px;
  bottom: 20px;
  right: 15%;
  opacity: 0.15;
  transform: rotate(-10deg);
}

@keyframes shapes-float {
  0%,
  100% {
    transform: scale(0.8) rotate(45deg) translateY(0);
  }

  50% {
    transform: scale(0.8) rotate(45deg) translateY(-20px);
  }
}

@media (max-width: 992px) {
  .call-to-action .container {
    padding: 3rem 1.5rem;
  }

  .call-to-action .shape-1 {
    width: 200px;
    height: 200px;
  }

  .call-to-action .shape-2 {
    width: 150px;
    height: 150px;
  }

  .call-to-action .shape-3 {
    width: 100px;
    height: 100px;
  }

  .call-to-action .dots-1 {
    width: 150px;
    height: 150px;
  }

  .call-to-action .dots-2 {
    width: 120px;
    height: 120px;
  }

  .call-to-action .dots-3 {
    width: 80px;
    height: 80px;
  }
} */

@media (max-width: 575px) {
    .call-to-action .container {
        border-radius: 0;
    }
}

.feature-box {
    text-align: center;
    gap: 40px;
    border-color: #ffffff10;
    background: white;
    padding: 50px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border-radius: 10px;
}

.feature-box i {
    border-color: #0e0e0e09;
    color: black;
    /* background: #b9fb6a; */
    transition: 0.3s ease-in-out;
    font-size: 44px;
    display: inline-block;
    line-height: 0;
    margin: auto;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* width: 80px;
  height: 80px; */
}

.feature-box i::before {
    border-radius: 15px 15px 15px 15px;
    padding: 15px;
    background-color: transparent;
    background-image: linear-gradient(180deg,
            #b9fb6a 0%,
            #b9fb6a00 100%) !important;
}

.feature-box i::after {
    background: #b9fb6a;
    padding: 15px;
    border-radius: 15px 15px 15px 15px;
}

.feature-box:hover i {
    background: #b9fb6a;
    border-radius: 15px 15px 15px 15px;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
    /* opacity: 0.5; */
    transition: 0.3s;
    /* filter: grayscale(100); */
}

.clients .swiper-slide img:hover {
    filter: none;
    opacity: 1;
}

.clients .swiper-wrapper {
    height: auto;
}

.clients .swiper-pagination {
    display: none;
}

/* .clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
} */

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
    background-color: var(--surface-color);
    box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.08);
    padding: 30px;
    position: relative;
    height: 100%;
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50px;
    border: 6px solid var(--background-color);
    float: left;
    margin: 0 10px 0 0;
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 0;
}

.testimonials .testimonial-item .stars {
    margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: color-mix(in srgb, var(--accent-color), transparent 50%);
    font-size: 26px;
    line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 15px 0 0 0;
    padding: 0;
}

.testimonial-item {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.testimonial-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.stars i {
    color: #ffc107;
}

.swiper-button-prev,
.swiper-button-next {
    color: #000;
}

.swiper-pagination-bullet-active {
    background: #000;
}

/*--------*/
.testimonial-item {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.swiper.testimonial-slider .swiper-wrapper {
    padding-bottom: 50px;
}

.testimonial-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.stars i {
    color: #ffc107;
}

.swiper-button-prev,
.swiper-button-next {
    color: #000;
    display: none;
}

.swiper-pagination-bullet-active {
    background: #000;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
/* .stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 48px;
  display: block;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.stats .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 500;
} */

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
/* .services .service-card {
  height: 100%;
  padding: 30px;
  background: var(--surface-color);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.services .service-card:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

.services .service-card:hover .icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.services .service-card:hover .read-more {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.services .service-card .icon {
  width: 60px;
  height: 60px;
  margin-right: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--accent-color);
  font-size: 28px;
  transition: all 0.3s ease;
  line-height: 1;
}

.services .service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.services .service-card p {
  margin-bottom: 25px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
  line-height: 1.6;
}

.services .service-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

.services .service-card .read-more i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.services .service-card .read-more:hover i {
  transform: translateX(5px);
} */

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing-sec {
    /* background-color: #f1fee1; */
    background-image: url("/assets/images/pricing-linear.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding-top: 130px;
}

.pricing .pricing-card {
    height: 100%;
    padding: 2rem;
    /* background: var(--surface-color); */
    background-color: transparent;
    background-image: linear-gradient(180deg, #0e0e0e0d 0%, #0e0e0e00 100%);
    border-radius: 1rem;
    transition: all 0.3s ease;
    position: relative;
    border: #0e0e0e1a 1px solid;
}

.pricing .pricing-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing .pricing-card.popular {
    /* background: var(--accent-color); */
    /* background: #fc0000ce ; */
    background-color: transparent;
    background-image: linear-gradient(180deg, #f1fee1 0%, #f1fee100 100%);
    color: var(--contrast-color);
}

.pricing .pricing-card.popular h3,
.pricing .pricing-card.popular h4 {
    color: var(--contrast-color);
}

.pricing .pricing-card.popular .price .currency,
.pricing .pricing-card.popular .price .amount,
.pricing .pricing-card.popular .price .period {
    color: var(--contrast-color);
}

.pricing .pricing-card.popular .features-list li {
    color: var(--contrast-color);
}

.pricing .pricing-card.popular .features-list li i {
    color: var(--contrast-color);
}

.pricing .pricing-card.popular .btn-light {
    background: var(--contrast-color);
    color: var(--accent-color);
}

.pricing .pricing-card.popular .btn-light:hover {
    background: color-mix(in srgb, var(--contrast-color), transparent 10%);
}

.pricing .pricing-card .popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--contrast-color);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.08);
}

.pricing .pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pricing .pricing-card .price {
    margin-bottom: 1.5rem;
}

.pricing .pricing-card .price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
    line-height: 1;
}

.pricing .pricing-card .price .amount {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

.pricing .pricing-card .price .period {
    font-size: 1rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pricing .pricing-card .description {
    margin-bottom: 2rem;
    font-size: 0.975rem;
}

.pricing .pricing-card h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.pricing .pricing-card .features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.pricing .pricing-card .features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.pricing .pricing-card .features-list li i {
    color: var(--accent-color);
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

.pricing .pricing-card .btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
    border-radius: 50px;
}

.pricing .pricing-card .btn.btn-primary {
    background: var(--accent-color);
    border: none;
    color: var(--contrast-color);
}

.pricing .pricing-card .btn.btn-primary:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.faq .faq-description {
    font-size: 1rem;
    color: var(--default-color);
    margin-bottom: 2rem;
}

.faq .faq-arrow {
    color: var(--accent-color);
}

.faq .faq-container .faq-item {
    /* background-color: var(--surface-color); */
    position: relative;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eeeeee;
}

.faq-item.faq-active {
    background-image: url("/assets/images/home1-bg-faqs.svg") !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
    margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
    font-weight: 600;
    /* font-size: 16px; */
    font-size: 20px;
    line-height: 24px;
    margin: 0 30px 0 0;
    transition: 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.faq .faq-container .faq-item h3 .num {
    color: var(--accent-color);
    padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
    /* color: var(--accent-color); */
    color: black;
}

.faq .faq-container .faq-item .faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
    margin-bottom: 0;
    overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 16px;
    line-height: 0;
    transition: 0.3s;
    cursor: pointer;
    background: #eeeeee;
    padding: 10px;
    border-radius: 20px;
    color: black;
}

.faq .faq-container .faq-item .faq-toggle:hover {
    /* color: var(--accent-color); */
    color: black;
}

.faq .faq-container .faq-active h3 {
    /* color: var(--accent-color); */
    color: black;
}

.faq .faq-container .faq-active .faq-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
    transform: rotate(90deg);
    /* color: var(--accent-color); */
    color: black;
    background: #b9fb6a;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-box {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 3rem;
    border-radius: 1rem;
    height: 100%;
}

.contact .info-box h3 {
    color: var(--contrast-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
    .contact .info-box h3 {
        font-size: 1.75rem;
    }
}

.contact .info-box p {
    opacity: 0.8;
    margin-bottom: 2rem;
}

.contact .info-box a {
    color: var(--contrast-color);
}

@media (max-width: 992px) {
    .contact .info-box {
        padding: 1.5rem;
    }
}

.contact .info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact .info-item:last-child {
    margin-bottom: 0;
}

.contact .info-item .icon-box {
    width: 3.5rem;
    height: 3.5rem;
    background-color: color-mix(in srgb,
            var(--contrast-color),
            transparent 85%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.3s;
}

.contact .info-item .icon-box i {
    font-size: 1.5rem;
    color: var(--contrast-color);
}

.contact .info-item:hover .icon-box {
    background-color: color-mix(in srgb,
            var(--contrast-color),
            transparent 70%);
}

.contact .info-item .content h4 {
    color: var(--contrast-color);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact .info-item .content p {
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.contact .info-item .content p:last-child {
    margin-bottom: 0;
}

.contact .contact-form {
    background-color: var(--surface-color);
    padding: 3rem;
    border-radius: 1rem;
    height: 100%;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
    .contact .contact-form {
        padding: 1.5rem;
    }
}

.contact .contact-form h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .contact .contact-form h3 {
        font-size: 1.75rem;
    }
}

.contact .contact-form p {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 2rem;
}

.contact .contact-form .form-control,
.contact .contact-form .form-select {
    padding: 0.875rem 1.25rem;
    border-color: color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 0.5rem;
    background-color: color-mix(in srgb, var(--surface-color) 90%, white 5%);
    color: var(--default-color);
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
    box-shadow: none;
    border-color: var(--accent-color);
}

.contact .contact-form .form-control::placeholder,
.contact .contact-form .form-select::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact .contact-form .btn {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 1rem 2rem;
    border-radius: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: 0.3s;
}

.contact .contact-form .btn i {
    font-size: 1.25rem;
}

.contact .contact-form .btn:hover {
    background-color: color-mix(in srgb,
            var(--accent-color),
            var(--contrast-color) 20%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
    background-color: var(--surface-color);
    padding: 20px;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
    margin-top: 30px;
}

.service-details .service-box h4 {
    font-size: 20px;
    font-weight: 700;
    border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.service-details .services-list {
    background-color: var(--surface-color);
}

.service-details .services-list a {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    background-color: color-mix(in srgb, var(--default-color), transparent 96%);
    display: flex;
    align-items: center;
    padding: 12px 15px;
    margin-top: 15px;
    transition: 0.3s;
}

.service-details .services-list a:first-child {
    margin-top: 0;
}

.service-details .services-list a i {
    font-size: 16px;
    margin-right: 8px;
    color: var(--accent-color);
}

.service-details .services-list a.active {
    color: var(--contrast-color);
    background-color: var(--accent-color);
}

.service-details .services-list a.active i {
    color: var(--contrast-color);
}

.service-details .services-list a:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    color: var(--accent-color);
}

.service-details .download-catalog a {
    color: var(--default-color);
    display: flex;
    align-items: center;
    padding: 10px 0;
    transition: 0.3s;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
    border-top: 0;
    padding-top: 0;
}

.service-details .download-catalog a:last-child {
    padding-bottom: 0;
}

.service-details .download-catalog a i {
    font-size: 24px;
    margin-right: 8px;
    color: var(--accent-color);
}

.service-details .download-catalog a:hover {
    color: var(--accent-color);
}

.service-details .help-box {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    margin-top: 30px;
    padding: 30px 15px;
}

.service-details .help-box .help-icon {
    font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
    color: var(--contrast-color);
}

.service-details .services-img {
    margin-bottom: 20px;
}

.service-details h3 {
    font-size: 26px;
    font-weight: 700;
}

.service-details p {
    font-size: 15px;
}

.service-details ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.service-details ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.service-details ul i {
    font-size: 20px;
    margin-right: 8px;
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.partner-carousel {
    padding: 20px 0;
}

.partner-carousel .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-carousel img {
    max-width: 150px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.partner-carousel img:hover {
    opacity: 1;
}

/*---------------*/
/* Feature Section Typography */
.feature-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0e0e0e;
    margin-bottom: 10px;
}

.feature-section p {
    color: #696969;
    margin-bottom: 20px;
}

/* Images */
.feature-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

/* .feature-img:hover {
  transform: scale(1.05);
} */

/* Column Layout */
.feature-left-part,
.feature-right-part,
.feature-middle-part {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 5px;
}

.feature-middle-part {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 15px;
}

/* Middle Inner Content */
.feature-middle-inner-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

/* Icon List */
.icon-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.icon-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #696969;
    font-size: 0.95rem;
}

.icon-list svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .feature-section {
        padding: 60px 0;
    }

    .feature-left-part,
    .feature-right-part {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }
}

/* End of Feature Section Typography */
/*--------------------------------------------------------------
feature-sec
--------------------------------------------------------------*/
.btn-login-unique {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background-color: #000;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-login-unique:hover {
    background-color: #bfff4d;
    color: black;
}

.btn-login-unique-icon {
    background-color: white;
    color: black;
    border-radius: 50%;
    font-size: 13px;
    padding: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-login-unique:hover .btn-login-unique-icon {
    background-color: black;
    color: white;
    transform: translateX(3px);
}

/*------------*/
.sasi-icon-list-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sasi-icon-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.sasi-icon-list-icon svg {
    display: block;
}

.sasi-icon-list-text {
    font-size: 16px;
    color: #333;
}

/*-------*/
.launch-with-ease .container {
    /* background-color: #f1fee1; */
    background-image: url("/assets/images/bg-cta.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 80px 0;
    border-radius: 20px;
}

/*-------------*/
.analytic-result-sec {
    padding-left: 30px;
}

.subtitle-badge.analytic-result {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: black;
    padding: 12px 28px;
    margin-bottom: 10px;
    border: 1px solid #eeeeee;
    background-color: #f1fee1;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    border-radius: 999px;
    width: 45%;
}

/* Extra small devices (≤480px) */
@media (max-width: 480px) {
    .subtitle-badge.analytic-result {
        width: 45%;
        font-size: 13px;
        padding: 8px 16px;
    }

    .analytic-result-sec {
        padding-left: 10px;
    }
}

/*----svg animation----*/
.rotating-svg {
    position: absolute;
    width: 50vw;
    /* use viewport width for responsiveness */
    max-width: 800px;
    height: auto;
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
    /* ensures it doesn’t block interactions */
}

.rotating-svg svg {
    width: 100%;
    height: auto;
}

.rotating-left {
    top: -15%;
    left: -35%;
}

.rotating-right {
    top: -15%;
    right: -35%;
}

.rotating-svg .rotating {
    transform-origin: center;
    animation: spin 15s linear infinite;
    will-change: transform;
    /* for smoother GPU rendering */
}

.rotating-svg svg:hover .rotating {
    animation-play-state: paused;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Tablet view (≤1024px) */
@media (max-width: 1024px) {
    .rotating-svg {
        width: 60vw;
        opacity: 0.5;
    }

    .rotating-left {
        top: -10%;
        left: -25%;
    }

    .rotating-right {
        top: -10%;
        right: -25%;
    }
}

/* Mobile view (≤768px) */
@media (max-width: 768px) {
    .rotating-svg {
        width: 40vw;
        opacity: 0.4;
    }

    .rotating-left {
        top: -5%;
        left: -15%;
    }

    .rotating-right {
        top: -5%;
        right: -15%;
    }
}

/* Extra small screens (≤480px) */
@media (max-width: 480px) {
    .rotating-svg {
        width: 100vw;
        opacity: 0.3;
    }

    .rotating-left,
    .rotating-right {
        top: 0;
        left: auto;
        right: auto;
        transform: translateX(-50%);
    }
}

/* Ensure SVGs stay behind content */

/*-----home requst demo ----*/
.demo-request-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.demo-request-container {
    flex-direction: column;
}

.demo-request-form {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    background: #fff;
    border-radius: 50px;
    padding: 6px;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); */
    border: 1px solid #eeeeee;
}

.demo-request-form input[type="email"] {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    /* padding: 12px 18px; */
    padding: 16px 230px 15px 30px;
    border-radius: 50px 0 0 50px;
    color: #333;
}

.demo-request-form input::placeholder {
    color: #aaa;
}

.demo-btn {
    background: #b9fb6a;
    color: black;
    border: none;
    outline: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.demo-btn:hover {
    background: black;
    /* transform: translateY(-2px); */
    /* box-shadow: 0 5px 15px rgba(0, 120, 255, 0.3); */
    color: white;
}

.arrow-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
    background: black;
    padding: 5px 10px;
    border-radius: 50%;
    color: white;
}

.arrow-icon svg {
    margin-top: -3px;
}

.demo-btn:hover .arrow-icon {
    /* transform: translateX(5px); */
    background: white;
    color: black;
}

@media (max-width: 480px) {
    .demo-request-form {
        /* flex-direction: column; */
        border-radius: 12px;
    }

    .demo-request-form {
        flex-wrap: nowrap;
    }

    .demo-request-form input[type="email"] {
        border-radius: 12px;
        margin-bottom: 8px;
    }

    .demo-btn {
        width: 100%;
        border-radius: 12px;
        justify-content: center;
    }

    .demo-btn {
        padding-right: 10px;
    }

}

@media (max-width: 779px) {
    .heading-title {
        line-height: 70px;
    }

    .demo-request-container {
        /* max-width: 1000px; */
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .demo-request-container {
        padding: 1rem;
        border-radius: 10px;
        width: 100%;
    }

    .demo-request-form input[type="email"] {
        /* padding: 12px 18px; */
        padding: 16px 120px 15px 30px;
    }
}

/*--------feature-right-part--------*/
@media (max-width: 991px) and (min-width: 768px) {

    /* Tablet View */
    .feature-left-part {
        flex-direction: row !important;
        /* Change to side-by-side */
        align-items: center;
        justify-content: center;
    }

    .feature-left-part .feature-img {
        width: 48%;
        /* Adjust width so both fit nicely */
        height: auto;
    }

    /* Tablet View */
    .feature-right-part {
        flex-direction: row !important;
        /* Change to side-by-side */
        align-items: center;
        justify-content: center;
    }

    .feature-right-part .feature-img {
        width: 48%;
        /* Adjust width so both fit nicely */
        height: auto;
    }
}

/* marquee-container */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    position: relative;
    margin-bottom: 2rem;
}

.marquee-track {
    display: flex;
    gap: 1rem;
    animation: scrollLeft 25s linear infinite;
}

.marquee-container.reverse .marquee-track {
    animation: scrollRight 25s linear infinite;
}

.marquee-track img {
    height: 220px;
    width: auto;
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* .marquee-track img:hover {
    transform: scale(1.05);
} */

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* ✅ Mobile & Tablet Fixes */
@media (max-width: 992px) {
    .marquee-track img {
        height: 160px;
    }
}

@media (max-width: 576px) {
    .marquee-track img {
        height: 120px;
    }

    .marquee-track {
        gap: 0.5rem;
    }
}

/* brand-logo-area-home*/
/* ------------------------------
   Marketing Types Section
------------------------------ */

.brand-logo-area-home {
    /* background: linear-gradient(135deg, #f1f8ff, #e8f0fe); */
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.marketing-types::before {
    content: "";
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    height: 200px;
    width: 300px;
    background: transparent;
    filter: blur(20px);
}

.marketing-types {
    height: 450px;
    /* reduced from 600px */
    width: 450px;
    /* reduced from 600px */
    margin: 40px auto;
    border: 1px solid #c4c9d3;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 70px;
    /* reduced from 100px */
    background: #f1fee1;
}

/* Outer dashed border resized */
.marketing-types::after {
    content: "";
    position: absolute;
    left: -35px;
    top: -35px;
    height: 520px;
    /* reduced from 700px */
    width: 520px;
    /* reduced from 700px */
    border: 2px dashed rgb(63, 62, 62);
    border-radius: 50%;
    z-index: -1;
    animation: spinnerReverse 40s linear infinite;
}

/* Content Text */
.marketing-types h2 {
    font-size: 26px;
    font-weight: 600;
    color: black;
    text-align: center;
}

.types-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
    grid-column-gap: 10px;
    margin-top: 30px;
    border-top: 1px dashed #858484;
    padding-top: 25px;
    color: #ccc;
}

.types-list li {
    list-style: none;
    font-weight: 500;
    position: relative;
    /* padding-left: 25px; */
    line-height: 35px;
    color: black;
}

.types-list li::before {
    content: "";
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%234caf50' class='bi bi-check-circle-fill' viewBox='0 0 16 16'%3E%3Cpath d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM6.97 10.97a.75.75 0 0 0 1.08.02l3.992-4.093a.75.75 0 1 0-1.08-1.04L7.477 9.417 5.383 7.323a.75.75 0 0 0-1.06 1.06l2.646 2.646z'/%3E%3C/svg%3E") no-repeat center;
    background-size: 18px;
    width: 18px;
    height: 18px;
    display: inline-block;
    margin-right: 8px;
    position: relative;
    top: 2px;
}

/* Floating Icons */

.marketing-types .icon i {
    position: absolute;
    color: black;
    height: 30px;
    width: 30px;
    line-height: 85px;
    /* background: #1954ed; */
    border-radius: 50%;
    font-size: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: UpDown 5s linear infinite;
}

.marketing-types .icon i:nth-child(1) {
    left: -35px;
    top: 50%;
    animation-delay: 0s;
    /* background: linear-gradient(180deg, #b9fb6a 0%, #b9fb6a00 100%) !important; */
}

.marketing-types .icon i:nth-child(2) {
    bottom: -55px;
    left: 45%;
    animation: UpDown 6s linear infinite;
    animation-delay: 1s;
    /* background: linear-gradient(180deg, #b9fb6a 0%, #b9fb6a00 100%) !important; */
}

.marketing-types .icon i:nth-child(3) {
    right: -20px;
    top: 65%;
    animation: UpDown 4s linear infinite;
    animation-delay: 0.5s;
    /* background: linear-gradient(180deg, #b9fb6a 0%, #b9fb6a00 100%) !important; */
}

.marketing-types .icon i:nth-child(4) {
    top: 25%;
    right: -20px;
    animation: UpDown 9s linear infinite;
    animation-delay: 1.5s;
    /* background: linear-gradient(180deg, #b9fb6a 0%, #b9fb6a00 100%) !important; */
}

/* Bottom Blur Glow */
.blur-shape {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 200px;
    width: 300px;
    /* background: #1954ed; */
    bottom: -120px;
    filter: blur(60px);
    opacity: 0.6;
    border-radius: 50%;
}

/* --------------------
   Animations
-------------------- */
@keyframes UpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes spinnerReverse {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

/* --------------------
   Responsive Design
-------------------- */
@media (max-width: 992px) {
    .marketing-types {
        height: 450px;
        width: 450px;
        padding: 60px;
    }

    .marketing-types .icon i {
        height: 65px;
        width: 65px;
        font-size: 25px;
    }

    .types-list {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .marketing-types {
        height: 280px;
        width: 280px;
        padding: 40px;
    }

    .marketing-types h2 {
        font-size: 18px;
    }

    .marketing-types .icon i {
        height: 50px;
        width: 50px;
        font-size: 20px;
    }

    .marketing-types::after {
        height: 350px;
        width: 350px;
    }
}

/* brand-logo-area-home-end */
/*------blog---------*/
/*--------------------------------------
Page Header
---------------------------------------*/
.page-header.ph-default {
    background-color: #f1fee1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 350px;
}

.text-center {
    text-align: center;
}

.blog-page-title {
    background-color: #f1fee1 !important;
    margin-bottom: 20px;
    color: black;
}

.ph-default .blog-page-title {
    margin: -10px 0 0;
}

.ph-default .sasi-breadcrumbs {
    margin-top: 35px;
}

/*--------------------------------------
Breadcrumbs
---------------------------------------*/
.sasi-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    text-transform: capitalize;
}

.sasi-breadcrumbs li {
    display: inline-block;
    color: black;
}

.sasi-breadcrumbs li a {
    color: black;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sasi-breadcrumbs li a:hover {
    color: black;
}

.sasi-breadcrumbs li.active {
    color: #6c757d;
}

.sasi-breadcrumbs .sasi-breadcrumb-items:before {
    content: "";
    width: 5px;
    height: 5px;
    margin: 0 20px;
    display: inline-block;
    vertical-align: middle;
    background: #0e0e0e;
    border-radius: 5px;
}

/*--------------------------------------
Custom Blog Card
---------------------------------------*/
.custom-blog-card {
    border: none;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #fff;
}

.custom-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/*--------------------------------------
Image & Overlay
---------------------------------------*/
.image-wrapper {
    position: relative;
    overflow: hidden;
}

.custom-blog-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.custom-blog-card:hover .custom-blog-img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 110, 253, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-wrapper:hover .overlay {
    opacity: 1;
}

.overlay i {
    font-size: 2.5rem;
    color: #fff;
    transition: transform 0.3s ease;
}

.image-wrapper:hover .overlay i {
    transform: scale(1.2);
}

/*--------------------------------------
Text & Meta
---------------------------------------*/
.custom-blog-card .card-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.custom-blog-card .card-title a:hover,
.custom-blog-card .text-muted a:hover {
    color: #0d6efd;
}

.custom-blog-card .text-muted a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

/*--------------------------------------
Custom Blog Buttons
---------------------------------------*/
.custom-blog-btn {
    width: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 1.2rem;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    background: #b9fb6a;
    color: black;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
}

.custom-blog-btn i {
    margin-left: 0.4rem;
    transition: transform 0.3s ease;
}

.custom-blog-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(13, 110, 253, 0.3);
    color: black;
}

/*--------------------------------------
Pagination Design
---------------------------------------*/
.custom-pagination .page-item {
    margin: 15px 5px;
}

.custom-pagination .page-link {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-size: 1rem;
    border: 2px solid black;
    transition: 0.3s ease-in-out;
    font-weight: 600 !important;
}

.custom-pagination .page-item.active .page-link {
    background: black;
    color: #fff;
    border: none;
}

.custom-pagination .page-link:hover {
    background: #b9fb6a;
    color: #fff;
    border: 2px solid #b9fb6a;
}

/*--------------------------------------
Post Title
---------------------------------------*/
.single-blog-post-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.3;
    color: #111;
}

/*--------------------------------------
Blog Section
---------------------------------------*/
.sasi-single-section {
    padding: 60px 0;
}

.sasi-single-article {
    border: 1px solid #eeeeee;
    border-radius: 16px;
    overflow: hidden;
    padding: 20px;
    transition: all 0.3s ease;
}

.sasi-single-article:hover {
    transform: translateY(-3px);
}

.sasi-post-img img {
    border-radius: 12px;
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.sasi-post-img img:hover {
    transform: scale(1.03);
}

.sasi-post-content h2 {
    font-size: 1.6rem;
    margin-top: 40px;
    color: var(--sasi-primary);
}

.sasi-post-content p {
    color: var(--sasi-text-light);
    margin-top: 15px;
}

/*--------------------------------------
Sidebar
---------------------------------------*/
.sasi-sidebar-block {
    font-size: 16px;
    line-height: 1.6;
    border: 1px solid gainsboro;
    border-radius: 12px;
    padding: 25px 20px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.sasi-sidebar-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.sasi-sidebar-title {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    padding-bottom: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    color: #111;
}

.sasi-sidebar-title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 60px;
    height: 3px;
    background: #000;
    border-radius: 3px;
}

.sasi-sidebar-categories {
    list-style: square;
    margin: 0;
    padding: 0 0 0 25px !important;
}

.sasi-sidebar-categories li {
    margin-bottom: 10px;
}

.sasi-sidebar-categories a {
    display: block;
    color: #333;
    text-decoration: none;
    padding: 10px 14px 0 0;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}

.sasi-sidebar-recent {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sasi-sidebar-recent li {
    margin-bottom: 15px;
}

.sasi-sidebar-recent a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #222;
    border-radius: 10px;
    padding: 10px;
    transition: all 0.3s ease;
}

.sasi-sidebar-recent a:hover {
    transform: translateY(-2px);
}

.sasi-recent-thumb img {
    width: 65px;
    height: 65px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 15px;
}

.sasi-recent-info h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.sasi-recent-info span {
    display: block;
    font-size: 0.8rem;
    color: gray;
    margin-top: 4px;
}

/*--------------------------------------
Responsive
---------------------------------------*/
@media (max-width: 992px) {
    .custom-blog-img {
        height: 220px;
    }

    .sasi-sidebar-block {
        padding: 20px 15px;
    }

    .sasi-recent-thumb img {
        width: 55px;
        height: 55px;
    }

    .sasi-single-article {
        padding: 25px;
    }

    .sasi-post-content h2 {
        font-size: 1.4rem;
    }

    .sasi-blog-sidebar {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .custom-blog-img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .custom-blog-img {
        height: 180px;
    }

    .overlay i {
        font-size: 2rem;
    }

    .post-title {
        font-size: 1.5rem;
    }
}

/*------------*/
.footer.footer-sec {
    background: #f1fee1;
    /* border-top: 1px solid #ddd; */
}