/**
* Template Name: iLanding
* Template URL: https://bootstrapmade.com/ilanding-bootstrap-landing-page-template/
* Updated: Nov 12 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* 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: #0d83fd; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --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 for text, ensuring readability against backgrounds of accent, heading, or default colors. */
/* Medical Color Scheme */
--primary-green: #2a5c8d;
--secondary-blue: #3f78e0;
--light-blue: #e6f0fa;
--white: #ffffff;
--dark-gray: #2a3545;
--medium-gray: #4e5d78;
--light-gray: #f8f9fa;

/* Transitions */
--transition-fast: 0.2s;
--transition-medium: 0.3s;
--transition-slow: 0.5s;

/* Shadows */
--shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
--shadow-md: 0 4px 12px rgba(0,0,0,0.15);
--shadow-lg: 0 8px 24px rgba(0,0,0,0.2);


}
  :root {
            --primary-green: #0d6403;
            --primary-orange: #fd511b;
            --white: #ffffff;
            --default-color: #212529;
            --dark-bg: #072918;
            --light-text: rgba(255, 255, 255, 0.9);
            --muted-text: rgba(255, 255, 255, 0.7);
              --accent-color: #0a5c36; /* Refined health green */
        }
 :root {
            --royal-green: #0d6403;

            --dark-green: #08442a;
            --light-green: #e6f2ed;
            --accent-gold: #d4af37;
            --light-bg: #f8f9fa;
            --dark-text: #2d3748;
            --light-text: #f8f9fa;
        }
/* 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: #0d83fd; /* Applied to main navmenu links when they are hovered over or active */
  --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: #0d83fd; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* 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: #0d83fd;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #409dfd;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}
:root {
          
            --accent-light: color-mix(in srgb, var(--accent-color), white 20%);
            --text-color: #2d3436;
            --light-bg: #f5f6fa;
            --card-bg: #ffffff;
            --shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 12px 24px rgba(0, 0, 0, 0.12);
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            --border-radius: 8px;
        }
/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  /*background-color: var(--background-color);*/
  font-family: var(--default-font);
  
}

a {
  color: var(--primary-orange);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  /*color: color-mix(in srgb, var(--accent-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);
  }
}

    /*--------------------------------------------------------------
    # Disclaimer Banner
    --------------------------------------------------------------*/
    .disclaimer-banner {
      background-color: #000000;
      color: var(--white);
      padding: 8px 0;
      text-align: center;
      font-size: 13px;
      position: relative;
      z-index: 1000;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .disclaimer-content {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
    }

    .disclaimer-badge {
      background-color: var(--primary-orange);
      color: var(--white);
      padding: 2px 8px;
      border-radius: 4px;
      font-size: 11px;
      font-weight: bold;
      text-transform: uppercase;
    }

    .disclaimer-text {
      margin: 0;
    }

    .disclaimer-link {
      color: var(--white);
      text-decoration: none;
      margin-left: 10px;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    .disclaimer-link:hover {
      text-decoration: underline;
    }

    /*--------------------------------------------------------------
    # Utility Bar
    --------------------------------------------------------------*/
    .utility-bar {
      padding: 10px 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      position: relative;
      z-index: 999;
    }

    .utility-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .utility-logo {
      text-decoration: none;
      color: var(--dark-gray);
      font-weight: 600;
      font-size: 18px;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: var(--transition-medium);
    }

    .utility-logo:hover {
      opacity: 0.9;
    }

    .utility-logo-icon {
      height: 60px;
      width: auto;
      border-radius: 6px;
    }

    .utility-items {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    /* Search Styles */
    .utility-search {
      position: relative;
      display: flex;
      align-items: center;
    }

    .search-form {
      display: flex;
      align-items: center;
      transition: all var(--transition-medium);
    }

    .search-input {
      border: 1px solid #dee2e6;
      border-radius: 5px;
      padding: 2px 10px;
      font-size: 14px;
      width: 200px;
      transition: all var(--transition-medium);
      outline: none;
      background-color: var(--white);
    }

    .search-input:focus {
      border-color: var(--primary-green);
      box-shadow: 0 0 0 3px rgba(63, 120, 224, 0.1);
      width: 250px;
    }

    .search-button {
      background: none;
      border: none;
      color: var(--medium-gray);
      margin-left: -38px;
      cursor: pointer;
      transition: color var(--transition-fast);
      display: flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;
    }

    .search-button:hover {
      color: var(--primary-green);
    }

    .search-toggle {
      display: none;
      background: none;
      border: none;
      color: var(--medium-gray);
      font-size: 20px;
      cursor: pointer;
      transition: color var(--transition-fast);
      width: 32px;
      height: 32px;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
    }

    .search-toggle:hover {
      color: var(--primary-green);
      background-color: rgba(0,0,0,0.05);
    }

    /* Contact Styles */
    .utility-contact {
      display: flex;
      align-items: center;
      gap: 25px;
    }

    .utility-phone, .utility-email {
      color: var(--medium-gray);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: color var(--transition-fast);
      font-size: 14px;
    }

    .utility-phone:hover, .utility-email:hover {
      color: var(--primary-green);
    }

    .utility-contact-icons {
      display: none;
      align-items: center;
      gap: 15px;
    }

    .utility-icon {
      color: var(--medium-gray);
      font-size: 18px;
      transition: color var(--transition-fast);
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
    }

    .utility-icon:hover {
      color: var(--primary-green);
      background-color: rgba(0,0,0,0.05);
    }

    /* Subscribe Button */
    .btn-subscribe {
      background-color: var(--primary-orange);
      color: var(--white);
      border: none;
      border-radius: 5px;
      padding: 8px 18px;
      font-size: 14px;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      transition: all var(--transition-medium);
      box-shadow: var(--shadow-sm);
    }

    .btn-subscribe:hover {
      background-color: #3568c5;
      transform: translateY(-1px);
      box-shadow: var(--shadow-md);
    }

    /* Mobile search active state */
    .utility-search.active .search-form {
      display: flex;
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      z-index: 100;
      background: var(--white);
      padding: 5px;
      border-radius: 5px;
      box-shadow: var(--shadow-md);
    }

    .utility-search.active .search-input {
      width: 400px;
      padding-right: 40px;
    }

    .utility-search.active .search-button {
      position: absolute;
      right: 10px;
      margin-left: 0;
    }

    .utility-search.active ~ .utility-contact-icons,
    .utility-search.active ~ .btn-subscribe ,
    .utility-search.active ~ .utility-logo {
      display: none;
    }
 /*--------------------------------------------------------------
    # Main Navigation
    --------------------------------------------------------------*/
    .header {
      background-color: var(--white);
      padding: 0;
      transition: all var(--transition-slow);
      z-index: 998;
      position: sticky;
      top: 0;
      box-shadow: var(--shadow-sm);
    }

    .header-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 25px;
      height: 60px;
      max-width: 1320px;
      margin: 0 auto;
    }

    .scrolled .header {
      box-shadow: var(--shadow-md);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }

    /* Main Navigation Button */
    .btn-getstarted {
      color: var(--white);
      background: var(--primary-green);
      font-size: 14px;
      font-weight: 500;
      padding: 10px 24px;
      margin: 0 0 0 30px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      transition: var(--transition-medium);
      box-shadow: var(--shadow-sm);
      text-decoration: none;
      display: inline-block;
    }

    .btn-getstarted:hover {
      background: #0d4b2c;
      transform: translateY(-1px);
      box-shadow: var(--shadow-md);
    }

    /*--------------------------------------------------------------
    # Desktop Navigation
    --------------------------------------------------------------*/
    @media (min-width: 992px) {
      .navmenu {
        padding: 0;
        flex-grow: 1;
      }

      .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
        justify-content: center;
      }

      .navmenu li {
        position: relative;
      }

      .navmenu a {
        color: var(--medium-gray);
        padding: 18px 15px;
        font-size: 15px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: var(--transition-medium);
        text-decoration: none;
        position: relative;
      }

      .navmenu a i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: var(--transition-medium);
      }

      .navmenu li:last-child a {
        padding-right: 0;
      }

      .navmenu li:hover > a,
      .navmenu .active {
        color: var(--primary-green);
      }

      /* Animated underline effect */
      .navmenu a:after {
        content: '';
        position: absolute;
        bottom: 15px;
        left: 15px;
        right: 15px;
        height: 2px;
        background-color: var(--primary-green);
        transform: scaleX(0);
        transform-origin: center;
        transition: transform var(--transition-medium);
      }

      .navmenu li:hover > a:after,
      .navmenu .active:after {
        transform: scaleX(1);
      }

     
      /* Mega Dropdown */
      .navmenu .mega-dropdown {
        position: static;
      }

      .navmenu .mega-dropdown > .dropdown-container {
        position: absolute;
        left: 0;
        right: 0;
        margin-top: 0;
        padding: 30px 0;
        background: var(--white);
        visibility: hidden;
        opacity: 0;
        transition: all var(--transition-medium);
        z-index: 99;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid rgba(0,0,0,0.1);
      }

      .navmenu .mega-dropdown:hover > .dropdown-container {
        visibility: visible;
        opacity: 1;
      }

      .dropdown-container {
        display: flex;
        flex-wrap: wrap;
        max-width: 1320px;
        margin: 0 auto;
        padding: 0 20px;
        gap: 20px;
      }

      .dropdown-column {
        flex: 1;
        min-width: 200px;
      }

      .dropdown-links {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 15px;
      }

      .dropdown-links a {
        color: var(--medium-gray);
        padding: 10px 15px;
        display: block;
        transition: all var(--transition-fast);
        font-size: 14px;
        border-radius: 6px;
        text-decoration: none;
      }

      .dropdown-links a:hover {
        color: var(--primary-green);
        background-color: var(--light-blue);
        transform: translateY(-2px);
      }

      /* Standard Dropdown */
      .navmenu .dropdown ul {
        margin: 0;
        padding: 15px 0;
        background: var(--white);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 50%;
        transform: translateX(-50%);
        top: 130%;
        opacity: 0;
        transition: all var(--transition-medium);
        border-radius: 0px;
        z-index: 99;
        box-shadow: var(--shadow-lg);
        min-width: 220px;
      }

      .navmenu .dropdown ul li {
        min-width: 100%;
      }

      .navmenu .dropdown ul a {
        padding: 10px 25px;
        font-size: 15px;
        color: var(--medium-gray);
      }

      .navmenu .dropdown ul a:after {
        display: none;
      }

      .navmenu .dropdown ul a:hover {
        color: var(--primary-green);
        background-color: var(--light-blue);
      }

      .navmenu .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
      }

      /* Hide mobile toggle on desktop */
      .mobile-nav-toggle {
        display: none;
      }

      /* Hide mobile sidebar on desktop */
      .mobile-nav-container {
        display: none;
      }
      .sidebar-overlay {
        display: none;
      }
    }

    /*--------------------------------------------------------------
    # Mobile Navigation
    --------------------------------------------------------------*/
    @media (max-width: 991px) {
      /* Hide desktop nav on mobile */
      .navmenu {
        display: none;
      }
      
      .btn-getstarted {
        display: none;
      }
      
      .mobile-nav-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: var(--primary-green);
      }
        
      /* Mobile Navigation */
      .mobile-nav-container {
          display: block;
      }
      
      .mobile-header {
          background-color: var(--dark-bg);
          padding: 1rem;
          display: none;
          justify-content: space-between;
          align-items: center;
          position: fixed;
          width: 100%;
          top: 0;
          z-index: 1000;
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      }
      
      .mobile-logo {
          
          font-size: 2.0rem;
          font-weight: 700;
          text-decoration: none;
          display: flex;
          align-items: center;
      }
      
      .mobile-logo img {
          height: 60px;
          margin-right: 8px;
      }
      
      .menu-toggle {
          background: none;
          border: none;
          color: var(--light-text);
          font-size: 1.5rem;
          cursor: pointer;
      }
      
      .mobile-nav {
          position: fixed;
          top: 0;
          left: -100%;
          width: 85%;
          max-width: 320px;
          height: 100vh;
          background-color: var(--white);
          box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
          z-index: 1100;
          transition: var(--transition);
          overflow-y: auto;
      }
      
      .mobile-nav.active {
          left: 0;
      }
      
      .mobile-nav-header {
          background-color: var(--dark-bg);
          padding: 1rem;
          display: flex;
          justify-content: space-between;
          align-items: center;
      }
      
      .mobile-nav-logo {
          color: var(--light-text);
          font-size: 1.2rem;
          font-weight: 700;
          text-decoration: none;
      }
      
      .close-btn {
          background: none;
          border: none;
          color: var(--light-text);
          font-size: 1.5rem;
          cursor: pointer;
      }
      
      .mobile-search {
          padding: 1rem;
          border-bottom: 1px solid #eee;
      }
      
      .mobile-search-bar {
          display: flex;
          align-items: center;
          background-color: #f5f5f5;
          border-radius: 5px;
          padding: 0.5rem;
      }
      
      .mobile-search-input {
          border: none;
          outline: none;
          background: transparent;
          padding: 0.3rem;
          flex: 1;
      }
      
      .mobile-search-btn {
          background: none;
          border: none;
          color: var(--primary-green);
          cursor: pointer;
      }
      
      .mobile-nav-links {
          padding: 1rem 0;
      }
      
      .mobile-nav-item {
          border-bottom: 1px solid #eee;
      }
      
      .mobile-nav-link {
          display: block;
          padding: 1rem;
          color: var(--default-color);
          text-decoration: none;
          font-weight: 500;
          display: flex;
          justify-content: space-between;
          align-items: center;
      }
      
      .mobile-dropdown-toggle::after {
          content: '▸';
          font-size: 0.9rem;
          color: var(--primary-green);
      }
      
      .mobile-dropdown {
          max-height: 0;
          overflow: hidden;
          transition: max-height 0.3s ease;
          background-color: #f9f9f9;
      }
      
      .mobile-dropdown.active {
          max-height: 1000px;
      }
      
      .mobile-dropdown-item {
          padding: 0.8rem 1rem 0.8rem 2rem;
          border-bottom: 1px solid #e0e0e0;
      }
      
      .mobile-dropdown-item:last-child {
          border-bottom: none;
      }
      
      .mobile-dropdown-link {
          color: var(--default-color);
          text-decoration: none;
          display: block;
          transition: var(--transition);
      }
      
      .mobile-dropdown-link:hover {
          color: var(--primary-green);
      }
      
      .mobile-nav-footer {
          padding: 1rem;
          border-top: 1px solid #eee;
          margin-top: auto;
      }
      
      .mobile-nav-icons {
          display: flex;
          justify-content: space-around;
          padding: 1rem 0;
      }
      
      .mobile-icon-link {
          color: var(--primary-green);
          font-size: 1.2rem;
          text-decoration: none;
          transition: var(--transition);
      }
      
      .mobile-icon-link:hover {
          color: var(--primary-orange);
      }
      
      /* Sidebar Footer */
      .sidebar-footer {
        padding: 20px;
        border-top: 1px solid rgba(0,0,0,0.1);
      }

      .support-contact {
        background: #f0f9f0;
        border-radius: 8px;
        padding: 15px;
        margin-bottom: 15px;
        border-left: 4px solid var(--primary-green);
      }

      .support-contact h4 {
        color: var(--primary-green);
        margin-bottom: 8px;
        font-size: 16px;
      }

      .support-contact a {
        color: var(--primary-green);
        font-weight: 600;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 8px;
      }

      .sidebar-social {
        display: flex;
        gap: 12px;
        justify-content: center;
      }

      .sidebar-social a {
        color: var(--medium-gray);
        font-size: 18px;
        transition: color var(--transition-fast);
      }

      .sidebar-social a:hover {
        color: var(--primary-green);
      }

      .overlay {
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background-color: rgba(0, 0, 0, 0.5);
          z-index: 1050;
          opacity: 0;
          visibility: hidden;
          transition: var(--transition);
      }
      
      .overlay.active {
          opacity: 1;
          visibility: visible;
      }
      
      .main-content {
          margin-top: 40px;
          padding: 1rem;
      }
    }

    /*--------------------------------------------------------------
    # Responsive Adjustments
    --------------------------------------------------------------*/
    @media (max-width: 768px) {
        .main-content {
          margin-top: 15px;
          padding: 1rem;
      }
      .utility-contact {
        display: none;
      }

      .utility-contact-icons {
        display: flex;
      }

      .utility-logo-text {
        display: none;
      }

      .search-form {
        display: none;
      }

      .search-toggle {
        display: flex;
      }

      .btn-subscribe span {
        display: none;
      }

      .header-container {
        height: 56px;
      }
    }

    @media (max-width: 576px) {
      .utility-bar {
        padding: 8px 0;
      }

      .utility-logo-icon {
        height: 60px;
      }

      .utility-items {
        gap: 12px;
      }

      .utility-icon {
        width: 28px;
        height: 28px;
        font-size: 16px;
      }

      .search-toggle {
        width: 28px;
        height: 28px;
        font-size: 16px;
      }

      .btn-subscribe {
        padding: 6px;
        width: 32px;
        height: 32px;
        justify-content: center;
      }

      .header-container {
        padding: 0 15px;
      }

      .mobile-nav-toggle {
        width: 36px;
        height: 36px;
        font-size: 24px;
      }
    }

    /* Animations */
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(-10px); }
      to { opacity: 1; transform: translateY(0); }
    }
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
  .footer-section {
            background-color: var(--dark-bg);
            color: var(--white);
            padding-top: 4rem;
            padding-bottom: 2rem;
            position: relative;
            overflow: hidden;
        }
        
        .footer-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background: linear-gradient(90deg, #ccd3cc, #dee2e6);
        }
        
        .footer-heading {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            display: inline-block;
        }
        
        .footer-heading::after {
            content: "";
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: var(--primary-orange);
        }
        
     .footer-section   .tagline {
            font-style: italic;
            color: var(--muted-text);
            font-size: 0.95rem;
            margin-top: -0.5rem;
        }
        
        /* Logo styling */
     .footer-section   .footer-brand img {
            max-width: 180px;
           /* filter: brightness(0) invert(1);*/
            transition: transform 0.3s ease;
        }
        
     .footer-section   .footer-brand:hover img {
            transform: scale(1.05);
        }
        
        /* Social Icons */
    .footer-section    .social-icons {
            display: flex;
            gap: 12px;
            margin-top: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
       .footer-section .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            background-color: var(--white);
            border-radius: 50%;
            color: var(--primary-orange);
            transition: all 0.3s ease;
            font-size: 1rem;
        }
        
     .footer-section   .social-icons a:hover {
            background-color: var(--primary-orange);
            transform: translateY(-3px) scale(1.1);
        }
        
        /* Quick Links */
      .footer-section  .quick-links ul {
            padding-left: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        
    .footer-section    .quick-links ul li {
            list-style: none;
        }
        
      .footer-section  .quick-links ul li a {
            color: var(--muted-text);
            text-decoration: none;
            transition: all 0.3s;
            font-weight: 300;
            position: relative;
            padding-left: 0;
            white-space: nowrap;
        }
        
      .footer-section  .quick-links ul li a::before {
            content: "→";
            position: absolute;
            left: -15px;
            opacity: 0;
            transition: all 0.3s;
            color: var(--primary-orange);
        }
        
      .footer-section  .quick-links ul li a:hover {
            color: var(--white);
            padding-left: 15px;
        }
        
   .footer-section     .quick-links ul li a:hover::before {
            opacity: 1;
            left: 0;
        }
        
        /* Podcast & Video Cards */
     .footer-section   .podcast-card, .video-card3 {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 10px;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            margin-bottom: 1.5rem;
        }
        
      .footer-section  .podcast-card:hover, .video-card3:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            background-color: rgba(255, 255, 255, 0.08);
        }
        
       .footer-section .podcast-cover {
            width: 80px;
            height: 80px;
            border-radius: 8px;
            object-fit: cover;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        
    .footer-section    .video-thumbnail3 {
            cursor: pointer;
            overflow: hidden;
            border-radius: 8px;
            position: relative;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        
      .footer-section  .video-thumbnail3 img {
            transition: transform 0.5s ease;
            width: 100%;
        }
        
     .footer-section   .video-thumbnail3:hover img {
            transform: scale(1.05);
        }
        
    .footer-section    .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background-color: var(--primary-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            transition: all 0.3s;
            opacity: 0.9;
        }
        
    .footer-section    .video-thumbnail3:hover .play-button {
            background-color: rgba(253, 81, 27, 1);
            transform: translate(-50%, -50%) scale(1.1);
        }
        
    .footer-section    .platform-badge {
            display: inline-flex;
            align-items: center;
            background-color: var(--white);
            border-radius: 20px;
            padding: 0.25rem 0.75rem;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
            transition: all 0.3s;
            text-decoration:none;
        }
        
    .footer-section    .platform-badge:hover {
            background-color: var(--primary-green);
            transform: translateY(-2px);
        }
        
     .footer-section   .platform-badge i {
            margin-right: 0.3rem;
            font-size: 0.9rem;
        }
        
        /* Hot Offerings Section */
    .footer-section    .hot-offerings {
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
    .footer-section       .offerings-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
        margin-bottom: 1.5rem;
    }
    
 .footer-section   .offering-item {
        background-color: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        padding: 0.5rem;
        transition: all 0.3s ease;
        text-align: center;
        position: relative;
        overflow: hidden;
        aspect-ratio: 1/1; /* Makes items square */
    }
    
 .footer-section   .product-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 5px;
        transition: all 0.3s ease;
    }
    
  .footer-section  .product-info {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(10, 92, 54, 0.9); /* Your primary green with transparency */
        color: white;
        padding: 0.5rem;
        transform: translateY(100%);
        transition: all 0.3s ease;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
    }
    
 .footer-section   .product-name {
        font-size: 0.7rem;
        margin-bottom: 0.2rem;
        line-height: 1.2;
    }
    
  .footer-section  .product-price {
        font-size: 0.6rem;
        opacity: 0.9;
    }
    
  .footer-section  .offering-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    
  .footer-section  .offering-item:hover .product-img {
        transform: scale(1.05);
    }
    
  .footer-section  .offering-item:hover .product-info {
        transform: translateY(0);
    }
    
    @media (max-width: 768px) {
     .footer-section   .offerings-grid {
            grid-template-columns: repeat(4, 1fr);
            gap: 8px;
        }
        
      .footer-section  .offering-item {
            padding: 0.3rem;
        }
        
     .footer-section   .product-name {
            font-size: 0.6rem;
        }
        
       .footer-section  .product-price {
            font-size: 0.5rem;
        }
    }

      .footer-section   .service-highlight {
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            padding: 1rem;
            margin-bottom: 1rem;
            transition: all 0.3s;
        }
        
    .footer-section     .service-highlight:hover {
            background-color: rgba(255, 255, 255, 0.08);
            transform: translateY(-3px);
        }
        
      .footer-section   .service-highlight i {
            color: var(--primary-orange);
            margin-right: 0.5rem;
            font-size: 1.2rem;
        }
        
        /* Founder Section */
    .footer-section     .founder-img {
            width: 90px;
            height: 90px;
            object-fit: cover;
            border-radius: 50%;
            border: 3px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: all 0.3s;
        }
        
      .footer-section   .founder-img:hover {
            transform: scale(1.05);
            border-color: var(--primary-orange);
        }
        
      .footer-section   .founder-bio {
            font-size: 0.9rem;
            color: var(--muted-text);
            line-height: 1.6;
        }
        
        /* Newsletter Form */
     .footer-section    .newsletter-form {
            margin-top: auto; /* Pushes to bottom of column */
        }
        
     .footer-section    .newsletter-form .form-control {
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            border-radius: 8px;
            padding: 0.7rem 1rem;
        }
        
    .footer-section     .newsletter-form .form-control::placeholder {
            color: var(--muted-text);
        }
        
    .footer-section     .newsletter-form .btn {
            border-radius: 8px;
            font-weight: 500;
            width: 100%;
            background-color: var(--primary-orange);
            border: none;
        }
        
      .footer-section   .newsletter-form .btn:hover {
            background-color: #e04819;
        }
        
        /* Copyright Bar */
      .footer-section   .copyright-bar {
            font-size: 0.8rem;
            color: var(--muted-text);
            margin-top: 3rem;
        }
        
    .footer-section     .copyright-bar a {
            color: var(--muted-text);
            text-decoration: none;
            transition: color 0.3s;
            margin: 0 0.5rem;
        }
        
     .footer-section    .copyright-bar a:hover {
            color: var(--primary-orange);
            text-decoration: underline;
        }
        
       
        
        /* Equal height columns */
    .footer-section     .footer-column {
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .footer-section {
                padding-top: 3rem;
            }
            
            .footer-brand {
                text-align: center;
            }
            
         .footer-section    .social-icons {
                justify-content: center;
            }
            
          .footer-section   .quick-links {
                text-align: center;
                margin-bottom: 0rem;
            }
            
         .footer-section    .quick-links ul li a::before {
                display: none;
            }
            
          .footer-section   .founder-section, .podcast-card {
                flex-direction: column;
                text-align: center;
            }
            
          .footer-section   .founder-img, .podcast-cover {
                margin: 0 auto 1rem auto;
            }
            
          .footer-section   .back-to-top {
                right: 1rem;
                top: -1rem;
                width: 2.5rem;
                height: 2.5rem;
            }
        }
        
        @media (max-width: 768px) {
          .footer-section   .footer-heading::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            /* Horizontal quick links on mobile */
          .footer-section   .quick-links ul {
                flex-direction: row;
                justify-content: center;
                gap: 10px 20px;
            }
            
          .footer-section   .quick-links ul li {
                margin-bottom: 0;
            }
            
          .footer-section   .quick-links ul li a {
                padding-left: 0;
            }
            
          .footer-section   .quick-links ul li a:hover {
                padding-left: 0;
            }
            
           
        }
        
        @media (max-width: 576px) {
           .footer-section  .quick-links ul {
                gap: 10px;
            }
        }
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--primary-orange);
  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: 10px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
  .section-title {
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 4px;
            background: var(--primary-orange);
            bottom: -10px;
            left: 0;
            border-radius: 2px;
        }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  /*padding-top: 160px;*/
    background-image: 
                linear-gradient(135deg, 
                    color-mix(in srgb, var(--accent-color), transparent 95%) 50%, 
                    color-mix(in srgb, var(--accent-color), transparent 98%) 25%, 
                    transparent 50%);
            background-attachment: fixed;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 10%, color-mix(in srgb, var(--accent-color), transparent 92%), transparent 40%);
  pointer-events: none;
}

.hero .hero-content {
  position: relative;
  z-index: 1;
}

.hero .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero .hero-content h1 .accent-text {
  color: var(--primary-green);
}

@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;
  }
}

.hero .company-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50px;
  color: var(--accent-color);
  font-weight: 500;
}

.hero .company-badge i {
  font-size: 1.25rem;
}

.hero .btn-primary {
  background-color: var(--primary-orange);
  border-color: var(--primary-green);
  color: var(--contrast-color);
  padding: 0.75rem 2.5rem;
  border-radius: 8px;
  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: 40px;
  height: 40px;
  border-radius: 20%;
  border: 2px solid var(--surface-color);
  margin-left: -8px;
  padding: 1px;
}

.hero .customers-badge .avatar:first-child {
  margin-left: 0;
}

.hero .customers-badge .avatar.more {
  background-color: var(--primary-orange);
  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: absolute;
    margin: 1rem auto;
    /*max-width: 250px;*/
  }
}

.hero .stats-row {
  position: relative;
  z-index: 1;
  margin-top: 5rem;
  background-color: var(--surface-color);
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding-bottom: 2rem;
}

.hero .stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
}

.hero .stat-item .stat-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50px;
  transition: 0.3s;
}

.hero .stat-item .stat-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.hero .stat-item:hover .stat-icon {
  background-color: var(--accent-color);
}

.hero .stat-item:hover .stat-icon i {
  color: var(--contrast-color);
}

.hero .stat-item .stat-content {
  flex-grow: 1;
}

.hero .stat-item .stat-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.hero .stat-item .stat-content p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

@media (max-width: 575px) {
  .hero .stat-item {
    padding: 1.5rem;
  }
}

@keyframes float-badge {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# 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: absolute;
    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 Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: 6px;
  width: auto;
}

.features .nav-item {
  margin: 0;
  padding: 0 5px 0 0;
}

.features .nav-item:last-child {
  padding-right: 0;
}

.features .nav-link {
  background-color: none;
  color: var(--heading-color);
  padding: 10px 30px;
  transition: 0.3s;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  margin: 0;
}

@media (max-width: 468px) {
  .features .nav-link {
    padding: 8px 20px;
  }
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.features .nav-link:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.features .nav-link:hover h4 {
  color: var(--accent-color);
}

.features .nav-link.active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.features .nav-link.active h4 {
  color: var(--contrast-color);
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.features .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-top: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Features Cards Section
--------------------------------------------------------------*/
.features-cards {
  --default-color: #555;
  --heading-color: #333;
}

.features-cards .feature-box {
  height: 100%;
  padding: 40px 30px;
  border-radius: 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.orange {
  background-color: #fff3e2;
}

.features-cards .feature-box.orange i {
  color: #edb86e;
}

.features-cards .feature-box.blue {
  background-color: #deedfd;
}

.features-cards .feature-box.blue i {
  color: #20a5f8;
}

.features-cards .feature-box.green {
  background-color: #d5f1e4;
}

.features-cards .feature-box.green i {
  color: #48c88a;
}

.features-cards .feature-box.red {
  background-color: #fdeded;
}

.features-cards .feature-box.red i {
  color: #f28484;
}

/*--------------------------------------------------------------
# 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 .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;
  }
}

/*--------------------------------------------------------------
# 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 {
  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;
}

/*--------------------------------------------------------------
# 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 .pricing-card {
  height: 100%;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.pricing .pricing-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing .pricing-card.popular {
  background: var(--accent-color);
  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;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  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);
}

.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: 26px;
  font-weight: bolder;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.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);

}

/*--------------------------------------------------------------
# Call To Action 2 Section
--------------------------------------------------------------*/
.call-to-action-2 {
  padding: 80px 0;
}

.call-to-action-2 .container {
  position: relative;
  z-index: 3;
}

.call-to-action-2 h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action-2 p {
  color: var(--default-color);
}

.call-to-action-2 .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid color-mix(in srgb, var(--contrast-color), transparent 30%);
  color: var(--contrast-color);
}

.call-to-action-2 .cta-btn:hover {
  border-color: var(--contrast-color);
}

/*--------------------------------------------------------------
# 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%);
}
.contact  .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--background-color);
  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;
}

.contact .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}
/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.services-section {
  position: relative;
  padding: 5rem 0;
  background-image: url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  color: var(--light-text);
  overflow: hidden;
}
.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
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

 /*--------------------------------------------------------------
# Video Section 
--------------------------------------------------------------*/
.video-gallery-section {
  position: relative;
  padding: 1rem 0;
 /* background-color: #2f7a2d; 
  background-image: radial-gradient(circle at 50% 50%, #3c8c3f, #2f7a2d 70%, #205a1f 100%);
  background-size: cover;
  background-attachment: fixed;
  background-position: center; */
 background-image: 
                linear-gradient(135deg, 
                    color-mix(in srgb, var(--primary-green), transparent 95%) 50%, 
                    color-mix(in srgb, var(--primary-green), transparent 98%) 25%, 
                    transparent 50%);
            background-attachment: fixed;
  color: var(--light-text);
  overflow: hidden;
 /* box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.2);*/
}

/* Optional subtle glow effect */
.video-gallery-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05), transparent 70%);
  pointer-events: none;
  z-index: 1;
}


.video-gallery-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
   /*background: rgba(0, 0, 0, 0.7);
 z-index: 1;*/
}

 /* New rounded skew elements */
 .skew-element-top {
  position: absolute;
  top: 20px;
  right: -100px;
  width: 300px;
  height: 150px;
  background: linear-gradient(45deg, rgba(58, 122, 78, 0.4), rgba(212, 179, 106, 0.3));
  border-radius: 50%;
  transform: rotate(15deg);
  z-index: 2;
  animation: float 8s ease-in-out infinite alternate;
  filter: blur(15px);
}

.skew-element-bottom {
  position: absolute;
  bottom: 20px;
  left: -100px;
  width: 300px;
  height: 150px;
  background: linear-gradient(-45deg, rgba(58, 122, 78, 0.4), rgba(212, 179, 106, 0.3));
  border-radius: 50%;
  transform: rotate(-15deg);
  z-index: 2;
  animation: float 10s ease-in-out infinite alternate-reverse;
  filter: blur(15px);
}

.video-card {
  margin-bottom: 1px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 5px;
  overflow: hidden;
  max-height: 300px;
  color: #000000;
}

.video-card:hover {
  transform: translateY(-10px);
    border-bottom: 1px solid var(--dark-green);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.video-thumbnail {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.video-thumbnail img {
  position: absolute;
  width: 100%;
  height: 100%;
  border: solid 5px var(--white);
  object-fit: cover;
  transition: transform 0.5s ease;
}

.video-card:hover .video-thumbnail img {
  transform: scale(1.05);
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: var(--dark-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.play-icon i {
  color: var(--contrast-color);
  font-size: 24px;
  margin-left: 5px;
}

.video-card:hover .play-icon,
.video-thumbnail:focus .play-icon {
  opacity: 10000;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.1); }
  100% { transform: translate(-50%, -50%) scale(1); }
}

.video-info {
  padding: 20px;
}

.video-title {
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--primary-green);
}

.video-desc {
  font-size: 0.9rem;
  color: var(--default-color);
}

.cta-youtube-button {
  margin-top: 3rem;
  background: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  padding: 12px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.cta-youtube-button:hover {
  background: var(--success);
  transform: translateY(-3px);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Mobile specific styles */
@media (max-width: 768px) {
  .video-card {
      display: flex;
      flex-direction: row;
      align-items: center;
  }
  
  .video-thumbnail {
      width: 40%;
      padding-bottom: 40%;
      flex-shrink: 0;
  }
  
  .video-info {
      width: 60%;
      padding: 15px;
  }
  
  .play-icon {
      width: 40px;
      height: 40px;
  }
  
  .play-icon i {
      font-size: 18px;
  }
  
  .skew-element-top,
  .skew-element-bottom {
      display: none; /* Hide on mobile for better visibility */
  }
}
 /*--------------------------------------------------------------
# services Section 
--------------------------------------------------------------*/

.service-card {
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 300px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.service-card:hover::before {
  background: rgba(0, 0, 0, 0.6);
}

.service-content {
  position: relative;
  z-index: 2;
  color: white;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.service-card:hover .service-content {
  transform: translateY(0);
}

.service-title {
  color: white;
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

.service-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  opacity: 0;
  transition: all 0.3s ease;
  max-height: 0;
  overflow: hidden;
}

.service-card:hover .service-desc {
  opacity: 1;
  max-height: 100px;
}

/*learn what*/
   .categories-section {
            position: relative;
            /*padding: 6rem 2rem 8rem;*/
   background-image: 
                linear-gradient(135deg, 
                    color-mix(in srgb, var(--accent-color), transparent 95%) 50%, 
                    color-mix(in srgb, var(--accent-color), transparent 98%) 25%, 
                    transparent 50%);
            background-attachment: fixed;            overflow: hidden;
        }
        
        /* Royal green diagonal skew background */
        .diagonal-skew {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: linear-gradient(135deg, var(--royal-green) 0%, rgba(253, 253, 253, 0.1) 100%);
            transform: skewY(-27deg);
            transform-origin: top right;
            z-index: 0;
            opacity: 0.1;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            z-index: 1;
        }
        
        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--royal-green);
            position: relative;
            display: inline-block;
        }
        
    
        .section-header p {
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
            color: var(--dark-text);
            line-height: 1.6;
        }
        
        .categories-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin: 0 auto 0.1rem;
            max-width: 1200px;
            position: relative;
            z-index: 1;
        }
        
        .category-card {
            width: 160px;
            height: 180px;
            perspective: 1000px;
            cursor: pointer;
        }
        
        .category-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform 0.6s;
            transform-style: preserve-3d;
        }
        
        .category-card:hover .category-card-inner {
            transform: rotateY(180deg);
        }
        
        .category-card-front, 
        .category-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .category-card-front {
            background-color: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 1rem;
            border: 1px solid var(--light-green);
        }
        
        .category-icon {
            width: 80px;
            height: 80px;
            margin-bottom: 1rem;
            object-fit: contain;
        }
        
        .category-name {
            font-weight: 600;
            text-align: center;
            color: var(--dark-text);
        }
        
        .category-card-back {
            background-color: var(--primary-green);
            color: white;
            transform: rotateY(180deg);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
            text-align: center;
            border: 1px solid var(--primary-green);
        }
        
        /* Clean Email Section */
        .cta-container {
            position: relative;
            max-width: 700px;
            margin: 0.5rem auto 0;
            padding: 0 1rem;
            z-index: 2;
            text-align: center;
        }
        
        .cta-content h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--primary-green);
        }
        
        .cta-content p {
            color: var(--dark-text);
            line-height: 1.6;
            margin-bottom: 2rem;
        }
        
        .email-form {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
        }
        
        .input-wrapper {
            flex: 1;
            min-width: 200px;
            position: relative;
        }
        
        .input-field {
            width: 100%;
            padding: 0.8rem 1rem 0.8rem 2.5rem;
            border: 1px solid #e2e8f0;
            border-radius: 6px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background-color: white;
        }
        
        .input-field:focus {
            outline: none;
            border-color: var(--primary-green);
            box-shadow: 0 0 0 2px rgba(10, 92, 54, 0.1);
        }
        
        .input-icon {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: #a0aec0;
        }
        
        .submit-btn {
            background-color: var(--primary-orange);
            color: white;
            border: none;
            padding: 0 2rem;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            height: 44px;
        }
        
        .submit-btn:hover {
            background-color: var(--dark-green);
        }
        
        @media (max-width: 768px) {
            .categories-container {
               /* gap: 1rem;*/
            }
            
            .category-card {
                /*width: 140px;
                height: 160px;*/
            }
            
            .section-header h2 {
                /*font-size: 2rem;*/
            }
            
            .email-form {
                flex-direction: column;
            }
            
            .input-wrapper {
                width: 100%;
            }
        }

          .donation-section {
        background-image: 
                linear-gradient(135deg, 
                    color-mix(in srgb, var(--accent-color), transparent 95%) 50%, 
                    color-mix(in srgb, var(--accent-color), transparent 98%) 25%, 
                    transparent 50%);
            background-attachment: fixed;
            border-radius: 2px;
            overflow: hidden;
           /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);*/
            transition: all 0.3s ease;
        }
        
        .donation-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        .donation-image {
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .donation-image:hover {
            transform: scale(1.05);
        }
        
        .cause-item {
            border-left: 3px solid #4e73df;
            transition: all 0.3s ease;
        }
        
        .cause-item:hover {
            background-color: rgba(78, 115, 223, 0.1);
            transform: translateX(5px);
        }
        
        .payment-icon {
            font-size: 2rem;
            margin: 0 10px;
            color: var(--dark-green);
            transition: all 0.3s ease;
        }
        
        .payment-icon:hover {
            transform: scale(1.2);
            color: var(--primary-orange);
        }
        
        .donate-btn {
            background: var(--primary-green);
            border: none;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }
        
        .donate-btn:hover {
            background:var(--primary-orange);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(34, 74, 190, 0.4);
        }
        
         /* Background with overlay */
        .subscribe-section {
            background: linear-gradient(rgba(7, 41, 24, 0.8), rgba(7, 41, 24, 0.8)), 
                        url('../img/naturoplifestyle_hero_image.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            border-radius: 0px;
            margin: 0rem auto;
            padding: 4rem 0;
            color: var(--white);
        }

               .subscribe-subheading {
            font-size: 1.1rem;
            color: var(--muted-text);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 2.5rem;
        }

        .subscribe-input {
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            padding: 14px 20px;
            transition: all 0.3s ease;
            height: auto;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--white);
        }

        .subscribe-input::placeholder {
            color: var(--muted-text);
        }

        .subscribe-input:focus {
            border-color: var(--primary-orange);
            box-shadow: 0 0 0 0.25rem rgba(253, 81, 27, 0.25);
            background-color: rgba(255, 255, 255, 0.15);
            color: var(--white);
        }

       .subscribe-section .btn-subscribe {
            background: var(--primary-orange);
            color: var(--white);
            border: none;
            border-radius: 8px;
            padding: 1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

       .subscribe-section .btn-subscribe:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(253, 81, 27, 0.3);
            background: #e64712;
            color: var(--white);
        }

        .subscribe-note {
            font-size: 0.85rem;
            color: var(--muted-text);
            margin-top: 2rem;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .subscribe-form .row {
                flex-direction: column;
            }
            
            .subscribe-form .col-md-5,
            .subscribe-form .col-md-2 {
                width: 100%;
                max-width: 100%;
            }
            
            .subscribe-form .col-md-2 {
                margin-top: 15px;
            }
            
            .subscribe-heading {
                font-size: 2rem;
            }
            
            .subscribe-subheading {
                font-size: 1rem;
            }
        }

        @media (max-width: 576px) {
            .subscribe-section {
                padding: 2.5rem 1.5rem;
                margin: 0rem auto;
            }
            
            .subscribe-heading {
                font-size: 1.8rem;
            }
            
            .subscribe-input {
                padding: 12px 15px;
            }
        }
        
        .footer_btn-subscribe {
            background-color: var(--contrast-color);
            color: var(--dark-green);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 12px 30px;
            border: none;
            border-radius: 8px;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 0.5rem;
        }
        
        .footer_btn-subscribe:hover {
            background-color: #218838;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .privacy-note {
            font-size: 0.8rem;
            opacity: 0.8;
            margin-top: 1rem;
            display: block;
        }
        
        .products-display {
            display: flex;
            justify-content: center;
            margin-top: 3rem;
            position: relative;
            z-index: 2;
        }
        
        .product-item {
            background: white;
            border-radius: 10px;
            padding: 0;
            margin: 0 10px;
            width: 120px;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .product-item:hover {
            transform: translateY(-10px);
        }
        
        .product-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        @media (max-width: 768px) {
            .main-heading {
                font-size: 2rem;
            }
            
            .product-item {
                width: 80px;
                height: 80px;
                margin: 0 5px;
            }
            
            .subscription-section {
                padding: 2rem 1rem;
            }
        }


           .video-section2 {
            max-width: 1400px;
            /*margin: 5px;*/
            padding: 0rem 0;
              background-image: 
                linear-gradient(135deg, 
                    color-mix(in srgb, var(--accent-color), transparent 95%) 50%, 
                    color-mix(in srgb, var(--accent-color), transparent 98%) 25%, 
                    transparent 50%);
            background-attachment: fixed;
        }

       

        .videos-container2 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.0rem;
            margin-top:1.0rem;
            margin-bottom:1.0rem;
        }

       .video-card2 {
            position: relative;
            overflow: hidden;
            transition: var(--transition);
            border-radius: var(--border-radius);
            /* 
            background: var(--card-bg);
            box-shadow: var(--shadow);*/
            aspect-ratio: 0.9;
            display: flex;
            flex-direction: column;
              }
        .video-card2::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                135deg, 
                color-mix(in srgb, var(--accent-color), transparent 95%) 50%, 
                color-mix(in srgb, var(--accent-color), transparent 98%) 25%, 
                transparent 50%
            );
            opacity: 0;
            transition: var(--transition);
            z-index: 1;
            pointer-events: none;
        }

        .video-card2:hover::before {
            opacity: 0.6;
            transform: rotate(5deg);
             padding-bottom: 3px;
border: 1px solid var(--accent-color);
        }

        .video-thumbnail2 {
            position: relative;
            overflow: hidden;
           /* border-radius: var(--border-radius) var(--border-radius) 0 0;*/
            height: 65%;
            flex-shrink: 0;
        }

        .video-thumbnail2 img {
            width: 100%;
            height: 100%;
            border: solid 5px var(--primary-orange);
           object-fit: cover;
            transition: var(--transition);
        }

        .video-card2:hover .video-thumbnail img {
            transform: scale(1.08);
        }

        .play-icon2 {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 42px;
            height: 42px;
            background-color: rgba(255, 255, 255, 0.92);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--transition);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            backdrop-filter: blur(2px);
        }

        .play-icon2::after {
            content: '';
            width: 0;
            height: 0;
            border-top: 10px solid transparent;
            border-left: 16px solid var(--accent-color);
            border-bottom: 10px solid transparent;
            margin-left: 3px;
            transition: var(--transition);
        }

        .video-thumbnail2:hover .play-icon2 {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1.1);
        }

        .video-info2 {
            position: relative;
            z-index: 2;
           /* background: var(--card-bg);
                       padding: 1.2rem;
           */
            flex-grow: 0.2;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .video-title2 {
            font-weight: 600;
            margin-bottom: 0.5rem;
            font-size: 1.05rem;
            transition: var(--transition);
            color: var(--primary-green);
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .video-card2:hover .video-title {
            color: var(--accent-color);
        }

        .video-meta2 {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
            color: #636e72;
        }

        .video-duration2 {
            
            /*background: var(--primary-green);
            color: var(--primary-orange);*/
            padding: 0.2rem 0.5rem;
            border-radius: 3px;
            font-size: 1.0rem;
            font-weight: 600;
        }

        /* Mobile Layout */
        @media (max-width: 1024px) {
            .videos-container2 {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            /*body {
                padding: 1.5rem;
            }*/
            
            .videos-container2 {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }

            .video-card2 {
                flex-direction: row;
                aspect-ratio: unset;
                height: 120px;
            }

            .video-thumbnail2 {
                width: 40%;
                height: 100%;
              /* border-radius: var(--border-radius) 0 0 var(--border-radius);*/
            }

            .video-info2 {
                width: 60%;
                padding: 1rem;
                justify-content: center;
            }

            .play-icon2 {
                width: 36px;
                height: 36px;
                opacity: 1;
            }

            .play-icon2::after {
                border-top: 8px solid transparent;
                border-left: 12px solid var(--primary-green);
                border-bottom: 8px solid transparent;
            }
        }

        /* Hover effects for desktop only */
        @media (hover: hover) and (min-width: 769px) {
            .video-card2:hover {
                transform: translateY(-8px);
                box-shadow: var(--shadow-hover);
                 padding-bottom: 3px;
            border-bottom: 1px solid var(--primary-green);
            }
        }

        /* Animation for the cards */
        @keyframes cardEntrance {
            from {
                opacity: 0;
                transform: translateY(30px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .video-card2 {
            animation: cardEntrance 0.6s ease-out forwards;
            opacity: 0;
            animation-delay: calc(var(--order) * 0.1s);
        }

             /* Commitments Section */
        .commitments-section {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            padding: 2rem 0;
        }
        
        /* Flip Card Container */
        .flip-card {
            perspective: 1000px;
            height: 220px;
        }
        
        .flip-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform 0.6s;
            transform-style: preserve-3d;
        }
        
        .flip-card:hover .flip-card-inner {
            transform: rotateY(180deg);
        }
        
        /* Card Front & Back */
        .flip-card-front, 
        .flip-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            border-radius: 0px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            background: var(--light-gray);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-left: 4px solid var(--primary-orange);
        }
        
        /* Front Side Styling */
        .flip-card-front .commitment-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
            color: var(--primary-green);
            background-color: rgba(10,92,54,0.1);
        }
        
        .flip-card-front .commitment-text {
            font-size: 1.1rem;
            text-align: center;
            line-height: 1.5;
            font-weight: 500;
            color: var(--dark-text);
        }
        
        .highlight {
            color: var(--primary-green);
            font-weight: 600;
        }
        
        /* Back Side Styling */
        .flip-card-back {
          background-color: var(--background-color);
            transform: rotateY(180deg);
            border-left: 4px solid var(--primary-green);
        }
        
        .flip-card-back h3 {
            color: var(--primary-green);
            margin-bottom: 1rem;
            font-size: 1.2rem;
            font-weight: 600;
        }
        
        .flip-card-back p {
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
            color: var(--default-color);
            text-align: center;
            line-height: 1.5;
        }
        
        .cta-button {
            padding: 0.7rem 1.5rem;
            background-color: var(--primary-orange);
            color: white;
            border: none;
            border-radius: 4px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            font-size: 0.9rem;
        }
        
        .cta-button:hover {
            background-color: #08482b;
            transform: translateY(-2px);
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .commitments-section {
                grid-template-columns: 1fr;
                padding: 1rem;
            }
            
            .flip-card {
                height: 200px;
            }
            
            .flip-card-front, 
            .flip-card-back {
                padding: 1.5rem;
            }
        }
        
        @media (max-width: 480px) {
           
            
            .flip-card {
                height: 180px;
            }
            
            .flip-card-front .commitment-icon {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
                margin-bottom: 1rem;
            }
            
            .flip-card-front .commitment-text {
                font-size: 1rem;
            }
        }

    /*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.content-title{
  margin-bottom: 60px;
  position: relative;
}

.content-title .section-title-container {
  padding-bottom: 10px;
  border-bottom: 2px solid var(--default-color);
}

.content-title h2 {
  font-size: 40px;
  font-weight: 0;
}
content-title p {
  margin-bottom: 0;
}

.content-title p a {
  color: var(--default-color);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
  border-bottom: 1.5px solid var(--default-color);
  font-family: var(--nav-font);
  font-weight: 500;
  padding-bottom: 2px;
}    
/*--------------------------------------------------------------
# Slider Section
--------------------------------------------------------------*/
.slider {
  background-color: transparent;
}

.slider .swiper-pagination .swiper-pagination-bullet {
  background-color: color-mix(in srgb, var(--default-color) 90%, white 15%);
}

.slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.slider .swiper-wrapper {
  height: auto !important;
}

.slider .swiper-slide {
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: flex-end;
  background-repeat: no-repeat;
  background-size: cover;
}

.slider .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--background-color), transparent 50%);
}

@media (max-width: 575px) {
  .slider .swiper-slide {
    min-height: 300px;
  }
}

.slider .swiper-button-prev:after,
.slider .swiper-button-next:after {
  font-size: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.slider .content {
  padding: 60px 80px;
  max-width: 700px;
  position: relative;
}

.slider .content a,
.slider .content h2,
.slider .content p {
  color: var(--default-color);
}

/*--------------------------------------------------------------
# Trending Category Section
--------------------------------------------------------------*/
.trending-category .post-entry {
  margin-bottom: 30px;
}

.trending-category .post-entry img {
  margin-bottom: 30px;
}

.trending-category .post-entry h2 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.trending-category .post-entry h2 a {
  color: var(--heading-color);
}

.trending-category .post-entry h2 a:hover {
  text-decoration: underline;
}

.trending-category .post-entry.lg h2 {
  font-size: 40px;
  line-height: 1;
}

.trending-category .post-meta {
  font-size: 11px;
  letter-spacing: 0.07rem;
  text-transform: uppercase;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 10px;
}

.trending-category .custom-border {
  border-color: color-mix(in srgb, var(--default-color), transparent 90%) !important;
}

@media (max-width: 768px) {
  .trending-category .custom-border {
    border: none !important;
  }
}

.trending-category .author .photo {
  margin-right: 10px;
}

.trending-category .author .photo img {
  width: 40px;
  border-radius: 50%;
  margin-bottom: 0;
}

.trending-category .author .name h3 {
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-family: var(--default-font);
}

.trending-category .trending {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.trending-category .trending>h3 {
  color: var(--default-color);
  padding: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.trending-category .trending .trending-post {
  padding: 0;
  margin: 0;
}

.trending-category .trending .trending-post li {
  padding: 0;
  margin: 0;
  list-style: none;
  display: block;
}

.trending-category .trending .trending-post li a {
  display: block;
  padding: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.trending-category .trending .trending-post li a .number {
  position: absolute;
  z-index: 1;
  font-size: 5rem;
  left: -10px;
  top: -20px;
  font-weight: 700;
  font-family: var(--heading-font);
  color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.trending-category .trending .trending-post li a h3 {
  font-size: 18px;
  color: var(--default-color);
  transition: 0.3s;
}

.trending-category .trending .trending-post li a .author {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-weight: 500;
}

.trending-category .trending .trending-post li a:hover h3 {
  color: var(--default-color);
  text-decoration: underline;
}

.trending-category .trending .trending-post li:last-child a {
  border-bottom: none;
}

/*--------------------------------------------------------------
# Culture Category Section
--------------------------------------------------------------*/
.culture-category .post-entry {
  margin-bottom: 30px;
}

.culture-category .post-entry h3 a {
  color: var(--heading-color);
  font-weight: 600;
}

.culture-category .post-entry h3 a:hover {
  text-decoration: underline;
}

.culture-category .post-entry .thumbnail {
  flex: 0 0 65%;
}

@media (max-width: 960px) {
  .culture-category .post-entry .thumbnail {
    flex: 0 0 100%;
    margin-bottom: 20px;
  }
}

.culture-category .post-entry.half .thumbnail {
  flex: 0 0 50%;
}

@media (max-width: 768px) {
  .culture-category .post-entry.half .thumbnail {
    flex: 0 0 100%;
    margin-bottom: 20px;
  }
}

.culture-category .post-entry.small-img .thumbnail {
  flex: 0 0 30%;
}

@media (max-width: 768px) {
  .culture-category .post-entry.small-img .thumbnail {
    flex: 0 0 100%;
    margin-bottom: 20px;
  }
}

.culture-category .border-bottom {
  border-color: color-mix(in srgb, var(--default-color), transparent 90%) !important;
}

.culture-category .post-meta {
  font-size: 11px;
  letter-spacing: 0.07rem;
  text-transform: uppercase;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 10px;
}

.culture-category .author .photo {
  margin-right: 10px;
}

.culture-category .author .photo img {
  width: 40px;
  border-radius: 50%;
  margin-bottom: 0;
}

.culture-category .author .name h3 {
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-family: var(--default-font);
}

.culture-category .post-list {
  margin-bottom: 30px;
}

.culture-category .post-list img {
  margin-bottom: 30px;
}

.culture-category .post-list h2 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.culture-category .post-list h2 a {
  color: var(--heading-color);
}

.culture-category .post-list h2 a:hover {
  text-decoration: underline;
}

.culture-category .post-list.lg h2 {
  font-size: 40px;
  line-height: 1;
}

/*--------------------------------------------------------------
# Business Category Section
--------------------------------------------------------------*/
.business-category .post-entry {
  margin-bottom: 30px;
}

.business-category .post-entry h3 a {
  color: var(--heading-color);
  font-weight: 600;
}

.business-category .post-entry h3 a:hover {
  text-decoration: underline;
}

.business-category .post-entry .thumbnail {
  flex: 0 0 65%;
}

@media (max-width: 960px) {
  .business-category .post-entry .thumbnail {
    flex: 0 0 100%;
    margin-bottom: 20px;
  }
}

.business-category .post-entry.half .thumbnail {
  flex: 0 0 50%;
}

@media (max-width: 768px) {
  .business-category .post-entry.half .thumbnail {
    flex: 0 0 100%;
    margin-bottom: 20px;
  }
}

.business-category .post-entry.small-img .thumbnail {
  flex: 0 0 30%;
}

@media (max-width: 768px) {
  .business-category .post-entry.small-img .thumbnail {
    flex: 0 0 100%;
    margin-bottom: 20px;
  }
}

.business-category .border-bottom {
  border-color: color-mix(in srgb, var(--default-color), transparent 90%) !important;
}

.business-category .post-meta {
  font-size: 11px;
  letter-spacing: 0.07rem;
  text-transform: uppercase;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 10px;
}

.business-category .author .photo {
  margin-right: 10px;
}

.business-category .author .photo img {
  width: 40px;
  border-radius: 50%;
  margin-bottom: 0;
}

.business-category .author .name h3 {
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-family: var(--default-font);
}

.business-category .post-list {
  margin-bottom: 30px;
}

.business-category .post-list img {
  margin-bottom: 30px;
}

.business-category .post-list h2 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.business-category .post-list h2 a {
  color: var(--heading-color);
}

.business-category .post-list h2 a:hover {
  text-decoration: underline;
}

.business-category .post-list.lg h2 {
  font-size: 40px;
  line-height: 1;
}

/*--------------------------------------------------------------
# Lifestyle Category Section
--------------------------------------------------------------*/
.lifestyle-category .post-meta {
  font-size: 11px;
  letter-spacing: 0.07rem;
  text-transform: uppercase;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 10px;
}

.lifestyle-category .author .photo {
  margin-right: 10px;
}

.lifestyle-category .author .photo img {
  width: 40px;
  border-radius: 50%;
  margin-bottom: 0;
}

.lifestyle-category .author .name h3 {
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-family: var(--default-font);
}

.lifestyle-category .custom-border,
.lifestyle-category .border-bottom {
  border-color: color-mix(in srgb, var(--default-color), transparent 90%) !important;
}

.lifestyle-category .post-list {
  margin-bottom: 30px;
}

.lifestyle-category .post-list img {
  margin-bottom: 30px;
}

.lifestyle-category .post-list h2 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.lifestyle-category .post-list h2 a {
  color: var(--heading-color);
}

.lifestyle-category .post-list h2 a:hover {
  text-decoration: underline;
}

.lifestyle-category .post-list.lg h2 {
  font-size: 40px;
  line-height: 1;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: var(--white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-hover);
}

.product-image-container {
    position: relative;
    width: 100%;
    height: 200px;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.product-actions-overlay {
    position: absolute;
    top: 0;
    /*left: 0;*/
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-actions-overlay {
    opacity: 1;
}

.add-to-cart-container {
    display: flex;
    margin-right:30px;
    align-items: center;
    background-color: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.quantity-selector {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 0.5rem;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

.quantity-btn {
    width: 10px;
    height: 10px;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: bold;
    color: var(--default-color);
    transition: var(--transition);
}

.quantity-btn:hover {
    color: var(--primary-green);
}

.quantity-input {
    width: 25px;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0;
}

.add-to-cart-btn {
    background-color: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.add-to-cart-btn:hover {
    background-color: var(--primary-orange);
}

.add-to-cart-btn svg {
    width: 18px;
    height: 18px;
}

.product-info {
    padding: 0.5rem;
}

.product-title {
    color: var(--default-color);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0rem;
}

.subscribe-text {
    color: var(--primary-green);
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.subscribe-text svg {
    width: 14px;
    height: 14px;
}

.product-price {
    text-align: right;
}

.current-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-green);
}

.original-price {
    font-size: 0.9rem;
    color: var(--dark-gray);
    text-decoration: line-through;
    display: block;
}

.product-actions-side {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    z-index: 2;
}

.action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: var(--transition);
}

.action-btn:hover {
    background-color: var(--primary-orange);
    color: var(--white);
    transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
 
    
    .products-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
     
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-info {
        padding: 1.25rem;
    }
    
    .add-to-cart-container {
        transform: scale(0.9);
    }
}

/*booking form included here*/
  .booking-container {
            max-width: 1000px;
            margin: 40px auto;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            border-radius: 15px;
            overflow: hidden;
        }
        
              .booking-container .booking-header {
            background: linear-gradient(135deg, var(--dark-bg), var(--primary-green));
            color: var(--white);
            padding: 30px;
            text-align: center;
            position: relative;
        }
        
             .booking-container  .booking-header h2 {
            font-weight: 700;
            margin-bottom: 10px;
        }
        
             .booking-container  .booking-header p {
            color: var(--muted-text);
            margin-bottom: 0;
        }
        
             .booking-container  .booking-header::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 20px solid transparent;
            border-right: 20px solid transparent;
            border-top: 20px solid var(--primary-green);
        }
        
             .booking-container  .booking-body {
            background-color: var(--white);
            padding: 40px;
        }
        
             .booking-container  .form-label {
            font-weight: 600;
            color: var(--default-color);
            margin-bottom: 8px;
        }
        
             .booking-container  .form-control, .form-select {
            border: 2px solid #e9ecef;
            border-radius: 8px;
            padding: 12px 15px;
            transition: all 0.3s;
        }
        
              .booking-container .form-control:focus, .form-select:focus {
            border-color: var(--primary-green);
            box-shadow: 0 0 0 0.25rem rgba(10, 92, 54, 0.25);
        }
        
             .booking-container  .btn-primary {
            background-color: var(--primary-orange);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
              .booking-container .btn-primary:hover {
            background-color: #e0481a;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(253, 81, 27, 0.3);
        }
        
             .booking-container  .booking_service-card {
            border: 2px solid #e9ecef;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 20px;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        
              .booking-container .booking_service-card:hover {
            border-color: var(--primary-green);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
              .booking-container .booking_service-card .selected {
            border-color: var(--primary-orange);
            background-color: rgba(253, 81, 27, 0.05);
        }
        
              .booking-container .service-card h5 {
            color: var(--primary-green);
            font-weight: 600;
            margin-bottom: 10px;
        }
        
               .booking-container .booking_service-card p {
            color: #6c757d;
            font-size: 0.9rem;
            margin-bottom: 5px;
        }
        
              .booking-container .booking_service-card .price {
            font-weight: 700;
            color: var(--primary-orange);
            font-size: 1.2rem;
        }
        
              .booking-container .service-icon {
            font-size: 2rem;
            color: var(--primary-green);
            margin-bottom: 15px;
            display:none;
        }
        
             .booking-container  .time-slot {
            display: inline-block;
            padding: 8px 15px;
            margin: 5px;
            background-color: #f1f1f1;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 0.9rem;
        }
        
             .booking-container  .time-slot:hover {
            background-color: #e1e1e1;
        }
        
              .booking-container .time-slot.selected {
            background-color: var(--primary-green);
            color: white;
        }
        
             .booking-container  .time-slots-container {
            margin-top: 20px;
            display: none;
        }
        
             .booking-container  .confirmation-message {
            display: none;
            text-align: center;
            padding: 30px;
            background-color: rgba(10, 92, 54, 0.1);
            border-radius: 10px;
            margin-top: 30px;
        }
        
            .booking-container   .confirmation-message i {
            font-size: 4rem;
            color: var(--primary-green);
            margin-bottom: 20px;
        }
        
             .booking-container  .confirmation-message h3 {
            color: var(--primary-green);
            margin-bottom: 15px;
        }
        
             .booking-container  .progress-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-bottom: 40px;
            counter-reset: step;
        }
        
            .booking-container   .progress-steps::before {
            content: '';
            position: absolute;
            top: 15px;
            left: 0;
            right: 0;
            height: 2px;
            background-color: #e9ecef;
            z-index: 1;
        }
        
             .booking-container  .step {
            position: relative;
            z-index: 2;
            text-align: center;
            width: 100%;
        }
        
             .booking-container  .step::before {
            counter-increment: step;
            content: counter(step);
            display: flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            background-color: #e9ecef;
            border-radius: 50%;
            margin: 0 auto 10px;
            color: #6c757d;
            font-weight: 600;
        }
        
             .booking-container  .step.active::before {
            background-color: var(--primary-green);
            color: white;
        }
        
            .booking-container   .step.completed::before {
            background-color: var(--primary-orange);
            color: white;
            content: '✓';
        }
        
             .booking-container  .step-label {
            font-size: 0.9rem;
            color: #6c757d;
            font-weight: 500;
        }
        
             .booking-container  .step.active .step-label {
            color: var(--primary-green);
            font-weight: 600;
        }
        
              .booking-container .step.completed .step-label {
            color: var(--primary-orange);
        }
        
        @media (max-width: 768px) {
                .booking-container   .booking-body {
                padding: 25px;
            }
            
                .booking-container   .progress-steps {
                flex-wrap: wrap;
            }
            
                .booking-container   .step {
                width: 50%;
                margin-bottom: 20px;
            }
        }



        /* question and answers*/
            .nl-qa-hero {
            background: linear-gradient(rgba(7, 41, 24, 0.8), rgba(7, 41, 24, 0.8)), 
                        url('https://images.unsplash.com/photo-1506126613408-eca07ce68773?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: var(--nl-white);
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .nl-qa-hero::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: 0;
            right: 0;
            height: 100px;
            background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%23f8f9fa"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" fill="%23f8f9fa"/></svg>');
            background-size: cover;
            z-index: 1;
        }
        
        .nl-qa-container {
            margin-top: 3rem;
            margin-bottom: 5rem;
        }
        
        .nl-qa-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        
        .nl-qa-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .nl-qa-header {
            background-color: var(--nl-white);
            padding: 1.5rem;
            cursor: pointer;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .nl-qa-header.collapsed {
            border-bottom: none;
        }
        
        .nl-qa-header h5 {
            font-weight: 600;
            color: var(--nl-primary-green);
            margin: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .nl-qa-header .nl-qa-icon {
            color: var(--nl-primary-orange);
            transition: transform 0.3s ease;
        }
        
        .nl-qa-header.collapsed .nl-qa-icon {
            transform: rotate(0deg);
        }
        
        .nl-qa-header:not(.collapsed) .nl-qa-icon {
            transform: rotate(180deg);
        }
        
        .nl-qa-body {
            padding: 1.5rem;
            background-color: #f9f9f9;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .nl-qa-body p {
            color: #555;
            line-height: 1.7;
        }
        
        .nl-qa-search-container {
            max-width: 600px;
            margin: 0 auto 3rem;
            position: relative;
        }
        
        .nl-qa-search-input {
            border-radius: 50px;
            padding: 15px 25px;
            border: 2px solid var(--nl-primary-green);
            box-shadow: none;
        }
        
        .nl-qa-search-input:focus {
            box-shadow: 0 0 0 0.25rem rgba(10, 92, 54, 0.25);
            border-color: var(--nl-primary-green);
        }
        
        .nl-qa-search-btn {
            position: absolute;
            right: 5px;
            top: 5px;
            bottom: 5px;
            background-color: var(--nl-primary-orange);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 0 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .nl-qa-search-btn:hover {
            background-color: #e0481a;
        }
        
        .nl-qa-category-filter {
            margin-bottom: 2rem;
        }
        
        .nl-qa-category-btn {
            background-color: white;
            color: var(--nl-primary-green);
            border: 1px solid var(--nl-primary-green);
            border-radius: 50px;
            padding: 8px 20px;
            margin: 5px;
            transition: all 0.3s ease;
        }
        
        .nl-qa-category-btn:hover, 
        .nl-qa-category-btn.nl-qa-active {
            background-color: var(--nl-primary-green);
            color: white;
        }
        
        .nl-qa-contact-cta {
            background-color: var(--nl-primary-green);
            color: white;
            padding: 4rem 0;
            margin-top: 4rem;
            text-align: center;
            border-radius: 10px;
            position: relative;
            overflow: hidden;
        }
        
        .nl-qa-contact-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.unsplash.com/photo-1498837167922-ddd27525d352?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover;
            opacity: 0.1;
            z-index: 0;
        }
        
        .nl-qa-contact-cta .container {
            position: relative;
            z-index: 1;
        }
        
        .nl-qa-contact-cta h3 {
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .nl-qa-contact-cta p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }
        
        .nl-qa-cta-btn {
            background-color: var(--nl-primary-orange);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 12px 35px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        
        .nl-qa-cta-btn:hover {
            background-color: #e0481a;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        @media (max-width: 768px) {
            .nl-qa-hero {
                padding: 3rem 0;
            }
            
            .nl-qa-hero h1 {
                font-size: 2rem;
            }
            
            .nl-qa-header, .nl-qa-body {
                padding: 1rem;
            }
        }
        
        /*not available page*/
           .acs-container {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background-color: var(--light-bg);
            color: var(--default-color);
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .acs-main-content {
            max-width: 100%;
            margin: 0 auto;
            padding: 2rem;
            flex: 1;
            display: flex;
            align-items: center;
        }

        .acs-card {
           
            overflow: hidden;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 500px;
        }

        .acs-preview-section {
              background: linear-gradient(rgba(7, 41, 24, 0.8), rgba(7, 41, 24, 0.8)), 
                        url('https://images.unsplash.com/photo-1579684385127-1ef15d508118?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            border-radius: 0px;
            margin: 0rem auto;
            padding: 4rem 0;
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 2rem;
        }

        .acs-preview-content {
            text-align: center;
            z-index: 2;
        }

        .acs-badge {
            background-color: var(--primary-orange);
            color: var(--white);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            display: inline-block;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 6px rgba(253, 81, 27, 0.2);
        }

        .acs-status-icon {
            font-size: 4.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary-orange);
            position: relative;
            display: inline-block;
        }

        .acs-status-icon .acs-hour-hand,
        .acs-status-icon .acs-minute-hand {
            position: absolute;
            background: var(--primary-orange);
            border-radius: 4px;
            transform-origin: bottom center;
            left: 50%;
            top: 50%;
        }

        .acs-status-icon .acs-hour-hand {
            width: 3px;
            height: 20px;
            margin-left: -1.5px;
            margin-top: -20px;
            animation: acs-rotateHour 12s linear infinite;
        }

        .acs-status-icon .acs-minute-hand {
            width: 2px;
            height: 30px;
            margin-left: -1px;
            margin-top: -30px;
            animation: acs-rotateMinute 6s linear infinite;
        }

        @keyframes acs-rotateHour {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes acs-rotateMinute {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .acs-article-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .acs-content-section {
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .acs-main-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--default-color);
            margin-bottom: 1.5rem;
        }

        .acs-subtitle {
            font-size: 1.1rem;
            color: var(--default-color);
            opacity: 0.8;
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .acs-reason-box {
            background-color: rgba(10, 92, 54, 0.05);
            border-left: 4px solid var(--primary-green);
            padding: 1.25rem;
            border-radius: 0 8px 8px 0;
            margin-bottom: 2rem;
        }

        .acs-reason-title {
            font-weight: 600;
            color: var(--default-color);
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .acs-reason-title i {
            color: var(--primary-green);
        }

        .acs-reason-list {
            padding-left: 1.5rem;
        }

        .acs-reason-list li {
            margin-bottom: 0.5rem;
        }

        .acs-subscribe-section {
            margin-top: 2rem;
        }

        .acs-subscribe-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--default-color);
            margin-bottom: 1rem;
        }

        .acs-subscribe-form {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .acs-form-control {
            height: 50px;
            border-radius: 8px;
            padding: 0 1.25rem;
            border: 1px solid #e2e8f0;
            font-size: 1rem;
        }

        .acs-form-control:focus {
            border-color: var(--primary-green);
            box-shadow: 0 0 0 3px rgba(10, 92, 54, 0.1);
        }

        .acs-subscribe-btn {
            background-color: var(--primary-green);
            color: var(--white);
            border: none;
            border-radius: 8px;
            padding: 0 1.75rem;
            font-weight: 600;
            transition: all 0.2s ease;
            height: 50px;
            white-space: nowrap;
        }

        .acs-subscribe-btn:hover {
            background-color: #08482b;
            transform: translateY(-1px);
        }

        .acs-privacy-note {
            font-size: 0.85rem;
            color: var(--default-color);
            opacity: 0.7;
        }

        .acs-benefits {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-top: 2rem;
        }

        .acs-benefit-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            color: var(--default-color);
        }

        .acs-benefit-icon {
            color: var(--primary-green);
            font-size: 1rem;
        }

      

        /* Responsive adjustments */
        @media (max-width: 992px) {
            .acs-card {
                grid-template-columns: 1fr;
            }
            
            .acs-preview-section {
                padding: 3rem 2rem;
            }
            
            .acs-content-section {
                padding: 2rem;
            }
            
            .acs-benefits {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .acs-subscribe-form {
                grid-template-columns: 1fr;
            }
            
            .acs-subscribe-btn {
                width: 100%;
            }
            
            .acs-main-content {
                padding: 1rem;
            }
        }

          /* Upcoming Webinar Banner (Sticky) */
        .wh-banner {
          background: linear-gradient(135deg, rgba(7, 41, 24, 0.9), rgb(10 92 54 / 58%)), url(../img/medical_networks.jpg) center / cover no-repeat;
            color: white;
            padding: 1.5rem 0;
            overflow: hidden;
            z-index: 1000;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
        }

        .wh-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgb(7 41 24 / 0%), rgb(10 92 54 / 0%));
            z-index: -1;
        }

        .wh-banner-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .wh-banner-text {
            flex: 1;
            min-width: 300px;
            position: relative;
        }

        .wh-banner-title {
            font-size: 1.9rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--background-color);
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .wh-banner-title i {
            color: var(--primary-orange);
            font-size: 1.6rem;
            animation: wh-bell-ring 2s infinite;
        }

        @keyframes wh-bell-ring {
            0% { transform: rotate(0deg); }
            5% { transform: rotate(15deg); }
            10% { transform: rotate(-15deg); }
            15% { transform: rotate(15deg); }
            20% { transform: rotate(-15deg); }
            25% { transform: rotate(0deg); }
            100% { transform: rotate(0deg); }
        }

        .wh-banner-desc {
            opacity: 0.9;
            font-size: 1rem;
            margin-bottom: 0.75rem;
            max-width: 600px;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }

        .wh-banner-countdown {
            display: flex;
            gap: 0.75rem;
            margin: 1rem 0;
            align-items: center;
            flex-wrap: wrap;
        }

        .wh-countdown-item {
            background: var(--primary-orange);
            backdrop-filter: blur(5px);
            padding: 0.6rem 1rem;
            border-radius: 8px;
            text-align: center;
            min-width: 60px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: var(--transition);
        }

        .wh-countdown-item:hover {
            transform: translateY(-3px);
            background: rgba(255, 255, 255, 0.25);
        }

        .wh-countdown-value {
            font-weight: 700;
            font-size: 1.3rem;
            color: white;
        }

        .wh-countdown-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            opacity: 0.9;
            letter-spacing: 0.5px;
        }

        /* ========== ENHANCED BANNER FORM SECTION ========== */
        .wh-banner-form-container {
            flex: 1;
            min-width: 300px;
            max-width: 500px;
        }
        /* Platform and Social Icons Row */
        .wh-banner-icons-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
            padding: 0.5rem;
           /* background: rgba(255, 255, 255, 0);*/
            backdrop-filter: blur(5px);
            border-radius: 8px;
        }

        .wh-platform-icons, .wh-social-icons {
            display: flex;
            gap: 0.75rem;
        }

        .wh-platform-icon, .wh-social-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 1px solid var(--primary-orange);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1rem;
            transition: var(--transition);
            cursor: pointer;
            position: relative;
        }

        .wh-platform-icon {
            background: rgb(255, 255, 255);
        }

        .wh-platform-icon:hover {
            transform: translateY(-3px);
            background: rgba(255, 255, 255, 0.3);
        }

        .wh-social-icon {
            background: rgba(255, 255, 255, 0.925);
        }

        .wh-social-icon:hover {
            transform: translateY(-3px);
            background: rgba(255, 255, 255, 0.2);
        }

        /* Platform specific colors */
        .wh-icon-zoom { color: #2D8CFF; }
        .wh-icon-youtube { color: #FF0000; }
        .wh-icon-meet { color: #00897B; }
        .wh-icon-teams { color: #6264A7; }

        /* Social specific colors */
        .wh-icon-facebook { color: #1877F2; }
        .wh-icon-twitter { color: #1DA1F2; }
        .wh-icon-linkedin { color: #0077B5; }
        .wh-icon-share { color: var(--primary-orange); }

        /* Tooltip for icons */
        .wh-icon-tooltip {
            position: absolute;
            bottom: -35px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 0.25rem 0.5rem;
            border-radius: 4px;
            font-size: 0.7rem;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 10;
        }

        .wh-icon-tooltip::before {
            content: '';
            position: absolute;
            top: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 5px solid transparent;
            border-right: 5px solid transparent;
            border-bottom: 5px solid rgba(0, 0, 0, 0.8);
        }

        .wh-platform-icon:hover .wh-icon-tooltip,
        .wh-social-icon:hover .wh-icon-tooltip {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(-5px);
        }

        /* Notification Form */
        .wh-banner-form {
            display: flex;
            gap: 0rem;
        }

        .wh-banner-input {
            flex: 1;
            padding: 0.85rem 1.5rem;
            border-top-left-radius: 5px;
            border-bottom-left-radius:5px;
            border: none;
            font-size: 0.95rem;
            min-width: 200px;
            background: rgba(255, 255, 255, 0.9);
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .wh-banner-input:focus {
            background: white;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            outline: none;
        }

        .wh-banner-btn {
            background: var(--primary-orange);
            color: white;
            border: none;
            border-top-right-radius: 5px;
            border-bottom-right-radius:5px;
            padding: 0.85rem 1.75rem;
            font-weight: 600;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 0.75rem;
            white-space: nowrap;
            box-shadow: 0 4px 15px rgba(253, 81, 27, 0.3);
            position: relative;
            overflow: hidden;
        }

        .wh-banner-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }

        .wh-banner-btn:hover {
            background: #e04a17;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(253, 81, 27, 0.4);
        }

        .wh-banner-btn:hover::before {
            left: 100%;
        }

        .wh-banner-speaker {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-left: 1rem;
            padding-left: 1rem;
            position: relative;
        }

        .wh-banner-speaker::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            height: 30px;
            width: 1px;
            background: rgba(255, 255, 255, 0.3);
        }

        .wh-banner-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--primary-orange);
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        }

        .wh-banner-speaker-info {
            line-height: 1.3;
        }

        .wh-banner-speaker-name {
            font-weight: 600;
            font-size: 0.95rem;
        }

        .wh-banner-speaker-title {
            font-size: 0.8rem;
            opacity: 0.9;
        }

        /* Section Titles */
        .wh-section-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 2rem;
            color: var(--dark);
            position: relative;
            display: inline-block;
        }

        .wh-section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
        }

        /* ========== IMPROVED WEBINAR CARDS ========== */
        .wh-webinar-card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: var(--transition);
            margin-bottom: 2rem;
            background: white;
            height: 100%;
            position: relative;
        }

        .wh-webinar-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

        .wh-card-img-container {
            position: relative;
            overflow: hidden;
            height: 200px;
        }

        .wh-card-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .wh-webinar-card:hover .wh-card-img {
            transform: scale(1.05);
        }

        /* Play Button Overlay */
        .wh-play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary);
            font-size: 1.5rem;
            opacity: 0;
            transition: var(--transition);
            z-index: 2;
        }

        .wh-webinar-card:hover .wh-play-btn {
            opacity: 1;
        }

        /* Card Action Icons */
        .wh-card-actions {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 15px;
            background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
            z-index: 2;
        }

        .wh-action-icons {
            display: flex;
            gap: 15px;
        }

        .wh-action-icon {
            color: white;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .wh-action-icon:hover {
            color: var(--secondary);
            transform: translateY(-2px);
        }

        /* Platform Badge */
        .wh-platform-badge {
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 0.35rem 0.8rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .wh-platform-badge i {
            color: white;
        }

        .wh-zoom { background: #2D8CFF; }
        .wh-youtube { background: #FF0000; }
        .wh-meet { background: #00897B; }
        .wh-teams { background: #00897B; }

        /* Card Content */
        .wh-card-body {
            padding: 1.5rem;
        }

        .wh-card-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-dark);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            min-height: 3.5rem;
        }

        /* Speaker and Date Row */
        .wh-card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 1rem;
        }

        .wh-speaker {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .wh-speaker-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--primary);
        }

        .wh-speaker-name {
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--text-dark);
        }

        .wh-card-date {
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        /* Watch Button */
        .wh-card-btn {
            display: block;
            width: 100%;
            padding: 0.75rem;
            border-radius: 6px;
            font-weight: 600;
            transition: var(--transition);
            text-align: center;
            margin-top: 1.5rem;
            border: none;
        }

        .wh-btn-recorded {
            background: var(--primary);
            color: white;
        }

        .wh-btn-recorded:hover {
            background: #08482a;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(10, 92, 54, 0.3);
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .wh-hero-title {
                font-size: 2.2rem;
            }
            
            .wh-banner-content {
                justify-content: center;
                text-align: center;
            }
            
            .wh-banner-form-container {
                width: 100%;
                max-width: 100%;
            }

            .wh-banner-countdown {
                justify-content: space-evenly;
            }

            .wh-banner-speaker {
                justify-content: center;
                margin-left: 0;
                padding-left: 0;
                margin-top: 1rem;
                width: 100%;
            }

            .wh-banner-speaker::before {
                display: none;
            }

            .wh-banner-icons-row {
                justify-content: center;
                flex-wrap: wrap;
                gap: 0.5rem;
                padding: 0.75rem;
            }
        }

        @media (max-width: 768px) {
            .wh-hero {
                padding: 4rem 0 2rem;
            }
            
            .wh-hero-title {
                font-size: 1.8rem;
            }
            
            .wh-banner-title {
                font-size: 1.9rem;
            }
            
            .wh-section-title {
                font-size: 1.6rem;
            }
            
            .wh-banner-form {
                flex-direction: row;
            }
            
            .wh-banner-btn {
                width: 100%;
                justify-content: center;
            }

            .wh-banner {
                padding: 1.5rem 0;
            }

            .wh-card-img-container {
                height: 180px;
            }
        }

        @media (max-width: 576px) {
            .wh-card-body {
                padding: 1.25rem;
            }
            
            .wh-card-title {
                font-size: 1.1rem;
                min-height: 3rem;
            }
            
            .wh-speaker-avatar {
                width: 32px;
                height: 32px;
            }
            
            .wh-speaker-name {
                font-size: 0.85rem;
            }
            
            .wh-card-date {
                font-size: 0.8rem;
            }

            .wh-banner-icons-row {
                padding: 0.5rem;
            }

            .wh-platform-icon, .wh-social-icon {
                width: 32px;
                height: 32px;
                font-size: 0.9rem;
            }
        }

        /*unavailable pages css*/
         .un-container {
            width: 100%;
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
        }
        
        .un-card {
            background: var(--white);
            border-radius: 0;
            padding: 2.5rem;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .un-icon {
            font-size: 4rem;
            color: var(--primary-green);
            margin-bottom: 1.5rem;
            animation: pulse 2s infinite;
        }
        
         .un-container h1 {
            color: var(--primary-green);
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .un-container p {
            color: #6c757d;
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }
        
        .un-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 2rem 0;
        }
        
        .un-link {
            display: inline-flex;
            align-items: center;
            color: var(--primary-green);
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .un-link:hover {
            background-color: rgba(10, 92, 54, 0.1);
            transform: translateY(-2px);
        }
        
        .un-link i {
            margin-right: 8px;
        }
        
        .un-social {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .un-social a {
            color: var(--primary-green);
            background-color: rgba(10, 92, 54, 0.1);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .un-social a:hover {
            background-color: var(--primary-green);
            color: white;
            transform: translateY(-3px);
        }
        
        .un-btn {
            background-color: var(--primary-orange);
            color: white;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(253, 81, 27, 0.3);
        }
        
        .un-btn:hover {
            background-color: #e0481a;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(253, 81, 27, 0.4);
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        
        @media (min-width: 768px) {
            .un-card {
                border-radius: 16px;
                min-height: auto;
                padding: 2.5rem;
            }
            
            .un-container {
                width: 90%;
                margin: 2rem auto;
            }
        }

        @media (max-width: 576px) {
            .un-card {
                padding: 1.5rem;
            }
            
            .un-links {
                flex-direction: row;
                align-items: center;
            }
        }