: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;
    }

    :root { 
      --background-color: #ffffff;
      --default-color: #212529;
      --heading-color: #2d465e;
      --accent-color: #1aaf54; /* Changed to green #1aaf54 */
      --surface-color: #ffffff;
      --contrast-color: #ffffff;
    }

    :root {
      --nav-color: #212529;
      --nav-hover-color: #1aaf54; /* Changed to green #1aaf54 */
      --nav-mobile-background-color: #ffffff;
      --nav-dropdown-background-color: #ffffff;
      --nav-dropdown-color: #212529;
      --nav-dropdown-hover-color: #1aaf54; /* Changed to green #1aaf54 */
    }

    .light-background {
      --background-color: #f9f7f3;
      --surface-color: #ffffff;
    }

    .dark-background {
      --background-color: #1aaf54; /* Changed to green #1aaf54 */
      --default-color: #ffffff;
      --heading-color: #ffffff;
      --surface-color: #1fc15f; /* Changed to green shade */
      --contrast-color: #ffffff;
    }

    :root {
      scroll-behavior: smooth;
    }

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

    a {
      color: var(--accent-color);
      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);
    }

    /*--------------------------------------------------------------
    # WhatsApp Chat Widget - Enhanced
    --------------------------------------------------------------*/
    .whatsapp-widget {
      position: fixed;
      bottom: 25px;
      right: 25px;
      z-index: 9999;
    }

    .whatsapp-button {
      margin-right: -19px;
      margin-bottom: 39px;
      width: 70px;
      height: 70px;
      background: linear-gradient(135deg, #22bb33, #1a9c28); /* Green gradient */
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 25px rgba(34, 187, 51, 0.4); /* Green shadow */
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
      border: 3px solid white;
    }

    .whatsapp-button::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transform: translateX(-100%);
      transition: transform 0.6s ease;
    }

    .whatsapp-button:hover::before {
      transform: translateX(100%);
    }

    .whatsapp-button:hover {
      transform: scale(1.1) rotate(5deg);
      box-shadow: 0 12px 35px rgba(34, 187, 51, 0.6); /* Green shadow */
    }

    .whatsapp-button i {
      font-size: 36px;
      color: white;
      transition: transform 0.3s ease;
    }

    .whatsapp-button:hover i {
      transform: scale(1.1);
    }

    .whatsapp-button .notification-badge {
      position: absolute;
      top: -5px;
      right: -5px;
      background: #FF4081;
      color: white;
      font-size: 12px;
      font-weight: bold;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid white;
      animation: ping 2s infinite;
    }

    .whatsapp-chat {
      position: absolute;
      bottom: 85px;
      right: 0;
      width: 350px;
      background: white;
      border-radius: 20px;
      box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
      padding: 0;
      display: none;
      opacity: 0;
      transform: translateY(20px) scale(0.9);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      overflow: hidden;
    }

    .whatsapp-chat.active {
      margin-bottom: 37px !important;
      display: block;
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    .whatsapp-header {
      background: linear-gradient(135deg, #22bb33, #1a9c28); /* Green gradient */
      color: white;
      padding: 20px;
      margin: 0;
      display: flex;
      align-items: center;
      gap: 12px;
      position: relative;
    }

    .whatsapp-header::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    }

    .whatsapp-header i {
      font-size: 28px;
      filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    }

    .whatsapp-header .header-content {
      flex: 1;
    }

    .whatsapp-header h4 {
      color: white;
      margin: 0;
      font-size: 16px;
      font-weight: 600;
    }

    .whatsapp-header .status {
      font-size: 12px;
      opacity: 0.9;
      margin-top: 2px;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .whatsapp-header .status-dot {
      width: 8px;
      height: 8px;
      background: #4ADE80;
      border-radius: 50%;
      animation: pulse-status 2s infinite;
    }

    .whatsapp-messages {
      max-height: 300px;
      overflow-y: auto;
      padding: 20px;
      background: #f0f0f0;
      scrollbar-width: thin;
      scrollbar-color: #22bb33 transparent; /* Green */
    }

    .whatsapp-messages::-webkit-scrollbar {
      width: 6px;
    }

    .whatsapp-messages::-webkit-scrollbar-track {
      background: transparent;
    }

    .whatsapp-messages::-webkit-scrollbar-thumb {
      background: #22bb33; /* Green */
      border-radius: 10px;
    }

    .message {
      padding: 12px 16px;
      border-radius: 18px;
      margin-bottom: 12px;
      max-width: 85%;
      word-wrap: break-word;
      position: relative;
      animation: messageSlide 0.3s ease-out;
      line-height: 1.4;
    }

    .message.received {
      background: white;
      border-bottom-left-radius: 5px;
      align-self: flex-start;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      border: 1px solid #e5e5e5;
    }

    .message.sent {
      background: linear-gradient(135deg, #e8f5e9, #c8e6c9); /* Light green gradient */
      border-bottom-right-radius: 5px;
      align-self: flex-end;
      margin-left: auto;
      box-shadow: 0 2px 8px rgba(34, 187, 51, 0.2); /* Green shadow */
      border: 1px solid #a5d6a7; /* Light green border */
    }

    .message .time {
      font-size: 10px;
      opacity: 0.6;
      text-align: right;
      margin-top: 4px;
      display: block;
    }

    .whatsapp-input {
      display: flex;
      gap: 10px;
      padding: 15px;
      background: white;
      border-top: 1px solid #e5e5e5;
      align-items: center;
    }

    .whatsapp-input input {
      flex: 1;
      padding: 12px 16px;
      border: 2px solid #e5e5e5;
      border-radius: 25px;
      outline: none;
      font-size: 14px;
      transition: all 0.3s ease;
      background: #f8f9fa;
    }

    .whatsapp-input input:focus {
      border-color: #22bb33; /* Green */
      background: white;
      box-shadow: 0 0 0 3px rgba(34, 187, 51, 0.1); /* Green shadow */
    }

    .whatsapp-input button {
      background: linear-gradient(135deg, #22bb33, #1a9c28); /* Green gradient */
      color: white;
      border: none;
      border-radius: 50%;
      width: 45px;
      height: 45px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(34, 187, 51, 0.3); /* Green shadow */
    }

    .whatsapp-input button:hover {
      transform: scale(1.05);
      box-shadow: 0 6px 20px rgba(34, 187, 51, 0.4); /* Green shadow */
    }

    .whatsapp-input button:active {
      transform: scale(0.95);
    }

    .whatsapp-input button i {
      font-size: 18px;
    }

    /* Animations */
    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(26, 175, 84, 0.7); /* Green #1aaf54 */
      }
      70% {
        box-shadow: 0 0 0 15px rgba(26, 175, 84, 0); /* Green #1aaf54 */
      }
      100% {
        box-shadow: 0 0 0 0 rgba(26, 175, 84, 0); /* Green #1aaf54 */
      }
    }

    @keyframes ping {
      0%, 100% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.1);
      }
    }

    @keyframes pulse-status {
      0%, 100% {
        opacity: 1;
      }
      50% {
        opacity: 0.5;
      }
    }

    @keyframes messageSlide {
      from {
        opacity: 0;
        transform: translateY(10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes float {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-5px);
      }
    }

    /* Floating animation for button */
    .whatsapp-button.floating {
      animation: float 3s ease-in-out infinite;
    }

    /* Typing indicator */
    .typing-indicator {
      display: flex;
      align-items: center;
      gap: 5px;
      padding: 12px 16px;
      background: white;
      border-radius: 18px;
      border-bottom-left-radius: 5px;
      max-width: 70px;
      margin-bottom: 12px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .typing-dot {
      width: 8px;
      height: 8px;
      background: #999;
      border-radius: 50%;
      animation: typing 1.4s infinite ease-in-out;
    }

    .typing-dot:nth-child(1) { animation-delay: -0.32s; }
    .typing-dot:nth-child(2) { animation-delay: -0.16s; }

    @keyframes typing {
      0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
      }
      40% {
        transform: scale(1);
        opacity: 1;
      }
    }

    /* Mobile Responsive */
    @media (max-width: 576px) {
      .whatsapp-widget {
        bottom: 20px;
        right: 20px;
      }
      
      .whatsapp-button {
        width: 60px;
        height: 60px;
      }
      
      .whatsapp-button i {
        font-size: 32px;
      }
      
      .whatsapp-chat {
        width: 320px;
        right: -10px;
      }
    }

    /* Dark mode support */
    @media (prefers-color-scheme: dark) {
      .whatsapp-chat {
        background: #1e1e1e;
        border-color: #333;
      }
      
      .whatsapp-messages {
        background: #2d2d2d;
      }
      
      .message.received {
        background: #333;
        border-color: #444;
        color: white;
      }
      
      .whatsapp-input {
        background: #1e1e1e;
        border-top-color: #333;
      }
      
      .whatsapp-input input {
        background: #2d2d2d;
        border-color: #444;
        color: white;
      }
      
      .whatsapp-input input:focus {
        background: #333;
      }
    }

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

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

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

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

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

    /*--------------------------------------------------------------
    # Global Header
    --------------------------------------------------------------*/
    .header {
      --background-color: rgba(255, 255, 255, 0);
      color: var(--default-color);
      background-color: var(--background-color);
     
      transition: all 0.5s;
      z-index: 997;
      width: 100%;
    }

    .header .header-container {
      background: var(--surface-color);
      /* Remove border-radius for full width */
      border-radius: 0;
      /* Full width with proper padding */
      width: 100%;
      max-width: 100%;
      margin: 0;
      padding: 10px 5%;
      box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
      /* Center content properly */
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .scrolled .header .header-container {
      background: color-mix(in srgb, var(--surface-color), transparent 5%);
    }

    .header .logo {
      line-height: 1;
      padding-left: 0;
      display: flex;
      align-items: center;
    }

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

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

    .header .btn-getstarted,
    .header .btn-getstarted:focus {
      color: var(--contrast-color);
      background: var(--accent-color);
      font-size: 14px;
      font-weight: 600;
      padding: 12px 28px;
      margin: 0 0 0 30px;
      border-radius: 8px;
      border: 2px solid var(--accent-color);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      white-space: nowrap;
      position: relative;
      overflow: hidden;
      z-index: 1;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      box-shadow: 0 4px 15px rgba(26, 175, 84, 0.3); /* Updated to green #1aaf54 */
    }

    .header .btn-getstarted::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: left 0.7s ease;
      z-index: -1;
    }

    .header .btn-getstarted:hover,
    .header .btn-getstarted:focus:hover {
      color: var(--contrast-color);
      background: color-mix(in srgb, var(--accent-color), black 15%);
      border-color: color-mix(in srgb, var(--accent-color), black 15%);
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(26, 175, 84, 0.4); /* Updated to green #1aaf54 */
    }
    

    .header .btn-getstarted:hover::before {
      left: 100%;
    }

    .header .btn-getstarted:active {
      transform: translateY(0);
      box-shadow: 0 4px 15px rgba(26, 175, 84, 0.3); /* Updated to green #1aaf54 */
    }

    /* Mobile view adjustments */
    @media (max-width: 1200px) {
      .header .btn-getstarted {
        order: 2;
        margin: 0 15px 0 0;
        padding: 10px 20px;
        font-size: 13px;
        border-radius: 6px;
      }
    }

    /* Small mobile devices */
    @media (max-width: 576px) {
      .header .btn-getstarted {
        padding: 8px 16px;
        font-size: 12px;
        margin: 0 10px 0 0;
      }
    }

    /* Navigation Menu Styles */
    @media (min-width: 1200px) {
      .navmenu {
        padding: 0;
        margin: 0;
        flex-grow: 1;
        display: flex;
        justify-content: center;
      }
      
      .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
        justify-content: center;
      }
      
      .navmenu li {
        position: relative;
      }
      
      .navmenu a,
      .navmenu a:focus {
        color: var(--nav-color);
        padding: 18px 15px;
        font-size: 16px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
      }
      
      .navmenu a i,
      .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
      }
      
      .navmenu li:last-child a {
        padding-right: 0;
      }
      
      .navmenu li:hover>a,
      .navmenu .active,
      .navmenu .active:focus {
        color: var(--nav-hover-color);
      }
    }

    @media (max-width: 1199px) {
      .header .header-container {
        padding: 10px 15px;
      }
      
      .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
      }
      
      .navmenu {
        padding: 0;
        z-index: 9997;
      }
      
      .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
      }
    }

    /* Ensure proper layout for header elements */
    @media (max-width: 1200px) {
      .header {
        padding-top: 10px;
      }
      
      .header .header-container {
        margin-left: 0;
        margin-right: 0;
        padding: 10px 15px;
        flex-wrap: nowrap;
      }
      
      .header .logo {
        order: 1;
        flex-shrink: 0;
      }
      
      .header .btn-getstarted {
        order: 2;
        margin: 0 10px 0 0;
        padding: 6px 15px;
        /* Remove border-radius for mobile */
        border-radius: 0;
        flex-shrink: 0;
      }
      
      .header .navmenu {
        order: 3;
        flex-grow: 1;
        text-align: right;
      }
      
      .mobile-nav-toggle {
        order: 4;
      }
    }

    /*--------------------------------------------------------------
    # Navigation Menu
    --------------------------------------------------------------*/
    @media (min-width: 1200px) {
      .navmenu {
        padding: 0;
      }
      .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
      }
      .navmenu li {
        position: relative;
      }
      .navmenu a,
      .navmenu a:focus {
        color: var(--nav-color);
        padding: 18px 15px;
        font-size: 16px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
      }
      .navmenu a i,
      .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
      }
      .navmenu li:last-child a {
        padding-right: 0;
      }
      .navmenu li:hover>a,
      .navmenu .active,
      .navmenu .active:focus {
        color: var(--nav-hover-color);
      }
      .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
      }
      .navmenu .dropdown ul li {
        min-width: 200px;
      }
      .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
      }
      .navmenu .dropdown ul a i {
        font-size: 12px;
      }
      .navmenu .dropdown ul a:hover,
      .navmenu .dropdown ul .active:hover,
      .navmenu .dropdown ul li:hover>a {
        color: var(--nav-dropdown-hover-color);
      }
      .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
      }
      .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
      }
      .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
      }
    }

    @media (max-width: 1199px) {
      .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
      }
      .navmenu {
        padding: 0;
        z-index: 9997;
      }
      .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
      }
      .navmenu a,
      .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
      }
      .navmenu a i,
      .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
      }
      .navmenu a i:hover,
      .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
      }
      .navmenu a:hover,
      .navmenu .active,
      .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
      }
      .navmenu .active i,
      .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
      }
      .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        transition: all 0.5s ease-in-out;
      }
      .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
      }
      .navmenu .dropdown>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
      }
      .mobile-nav-active {
        overflow: hidden;
      }
      .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
      }
      .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
      }
      .mobile-nav-active .navmenu>ul {
        display: block;
      }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .footer .footer-links ul a:hover {
      color: var(--accent-color);
    }

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

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

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

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

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

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

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

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

    /*--------------------------------------------------------------
    # Global Page Titles & Breadcrumbs
    --------------------------------------------------------------*/
    .page-title {
      color: var(--default-color);
      background-color: var(--background-color);
      padding: 170px 0 80px 0;
      text-align: center;
      position: relative;
    }

    .page-title h1 {
      font-size: 42px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .page-title .breadcrumbs ol {
      display: flex;
      flex-wrap: wrap;
      list-style: none;
      justify-content: center;
      padding: 0;
      margin: 0;
      font-size: 16px;
      font-weight: 400;
    }

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

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

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

    @media (max-width: 1199px) {
      section,
      .section {
        scroll-margin-top: 66px;
      }
    }

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

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

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

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

    /*--------------------------------------------------------------
    # Hero Section
    --------------------------------------------------------------*/
    .hero {
      position: relative;
      padding-top: 160px;
      background: 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%);
    }

    .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(--accent-color);
    }

    @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(--accent-color);
      border-color: var(--accent-color);
      color: var(--contrast-color);
      padding: 0.75rem 2.5rem;
      border-radius: 50px;
      font-weight: 500;
      transition: all 0.3s ease;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    .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: static;
        width: 100%;
        margin: 0 auto;
        border: 0;
      }
    }

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

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

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

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

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

    @keyframes experience-float {
      0% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
      100% { transform: translateY(0); }
    }

    /*--------------------------------------------------------------
    # Features 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 .feature-box {
      padding: 40px 30px;
      text-align: center;
      border-radius: 10px;
      background-color: var(--surface-color);
      height: 100%;
      transition: 0.3s;
      box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.08);
      border-top: 4px solid transparent;
    }

    .features-cards .feature-box.orange {
      border-top-color: #1aaf54; /* Updated to green #1aaf54 */
    }

    .features-cards .feature-box.blue {
      border-top-color: #22bb33; /* Changed to green */
    }

    .features-cards .feature-box.green {
      border-top-color: #198754;
    }

    .features-cards .feature-box.red {
      border-top-color: #dc3545;
    }

    .features-cards .feature-box i {
      font-size: 40px;
      margin-bottom: 20px;
      display: block;
    }

    .features-cards .feature-box.orange i {
      color: #1aaf54; /* Updated to green #1aaf54 */
    }

    .features-cards .feature-box.blue i {
      color: #22bb33; /* Changed to green */
    }

    .features-cards .feature-box.green i {
      color: #198754;
    }

    .features-cards .feature-box.red i {
      color: #dc3545;
    }

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

    .features-cards .feature-box p {
      margin-bottom: 0;
    }

    .features-cards .feature-box:hover {
      transform: translateY(-10px);
      box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.1);
    }

    /*--------------------------------------------------------------
    # Call To Action Section
    --------------------------------------------------------------*/
    .call-to-action {
      position: relative;
      overflow: hidden;
      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%);
    }

    .call-to-action::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at 10% 90%, color-mix(in srgb, var(--accent-color), transparent 92%), transparent 40%);
      pointer-events: none;
    }

    .call-to-action .content {
      position: relative;
      z-index: 1;
    }

    .call-to-action h2 {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
    }

    @media (max-width: 768px) {
      .call-to-action h2 {
        font-size: 2rem;
      }
    }

    .call-to-action p {
      font-size: 1.25rem;
      margin-bottom: 2rem;
    }

    @media (max-width: 768px) {
      .call-to-action p {
        font-size: 1rem;
      }
    }

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

    .call-to-action .btn-cta:hover {
      background-color: color-mix(in srgb, var(--accent-color), black 20%);
      color: var(--contrast-color);
    }

    .call-to-action .shape {
      position: absolute;
      opacity: 0.1;
      color: var(--accent-color);
      z-index: 0;
    }

    .call-to-action .shape-1 {
      top: 10%;
      left: 5%;
      width: 200px;
      height: 200px;
    }

    .call-to-action .shape-2 {
      bottom: 10%;
      right: 5%;
      width: 150px;
      height: 150px;
    }

    .call-to-action .shape-3 {
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 250px;
      height: 250px;
    }

    .call-to-action .dots {
      position: absolute;
      opacity: 0.05;
      color: var(--accent-color);
      z-index: 0;
    }

    .call-to-action .dots-1 {
      top: 20%;
      right: 10%;
      width: 100px;
      height: 100px;
    }

    .call-to-action .dots-2 {
      bottom: 20%;
      left: 10%;
      width: 80px;
      height: 80px;
    }

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

    .testimonials .testimonial-item .testimonial-img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 15px;
    }

    .testimonials .testimonial-item h3 {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 5px;
    }

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

    .testimonials .testimonial-item .stars {
      margin-bottom: 15px;
    }

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

    .testimonials .testimonial-item p {
      font-style: italic;
      margin-bottom: 0;
      position: relative;
    }

    .testimonials .testimonial-item .quote-icon-left,
    .testimonials .testimonial-item .quote-icon-right {
      color: color-mix(in srgb, var(--accent-color), transparent 70%);
      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);
    }

    /* ========================
       Our Solutions (Services)
    ======================== */

    #services {
      background: linear-gradient(135deg, #f9f7f3 0%, #f0ede6 100%);
      position: relative;
      padding: 80px 0;
      overflow: hidden;
    }

    #services .section-title h2 {
      position: relative;
      display: inline-block;
      font-weight: 700;
      color: #1aaf54; /* Updated to green #1aaf54 */
    }

    #services .section-title h2::after {
      content: "";
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 90px;
      height: 3px;
      background: linear-gradient(90deg, #1aaf54, #22bb33); /* Green to green gradient */
      border-radius: 3px;
      animation: lineMove 3s infinite alternate;
    }

    @keyframes lineMove {
      0% { width: 60px; }
      100% { width: 120px; }
    }

    .service-card {
      background: #fff;
      border-radius: 15px;
      padding: 25px;
      box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 40px rgba(26, 175, 84, 0.15); /* Green shadow #1aaf54 */
    }

    .service-card .icon {
      font-size: 42px;
      color: #1aaf54; /* Updated to green #1aaf54 */
      transition: 0.3s;
      margin-right: 20px;
    }

    .service-card:hover .icon {
      transform: scale(1.2);
      color: #1fc15f; /* Lighter green */
    }

    .service-card .badge {
      background: #1aaf54; /* Updated to green #1aaf54 */
      color: #fff;
      font-weight: 600;
      padding: 5px 12px;
      border-radius: 5px;
      font-size: 14px;
      display: inline-block;
      margin-bottom: 10px;
    }

    .service-card h3 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 10px;
      color: #111;
    }

    .service-card p {
      color: #555;
      font-size: 15px;
      line-height: 1.7;
    }

    .service-card .read-more {
      color: #1aaf54; /* Updated to green #1aaf54 */
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      transition: 0.3s;
    }

    .service-card .read-more i {
      margin-left: 5px;
      transition: transform 0.3s ease;
    }

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

    /* Floating shapes animation */
    .floating-shape {
      position: absolute;
      border-radius: 50%;
      background: rgba(26, 175, 84, 0.1); /* Updated to green #1aaf54 with transparency */
      animation: float 6s ease-in-out infinite;
      z-index: 0;
    }

    .shape1 { width: 120px; height: 120px; top: 8%; left: 5%; }
    .shape2 { width: 160px; height: 160px; bottom: 10%; right: 10%; }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-15px); }
    }

    /*--------------------------------------------------------------
    # Call To Action 2 Section
    --------------------------------------------------------------*/
    .call-to-action-2 {
      text-align: center;
    }

    .call-to-action-2 h3 {
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .call-to-action-2 p {
      font-size: 18px;
      margin-bottom: 30px;
    }

    .call-to-action-2 .cta-btn {
      background-color: var(--contrast-color);
      color: var(--accent-color);
      padding: 12px 30px;
      border-radius: 50px;
      font-weight: 500;
      transition: 0.3s;
    }

    .call-to-action-2 .cta-btn:hover {
      background-color: color-mix(in srgb, var(--contrast-color), black 10%);
      color: var(--accent-color);
    }

    /*--------------------------------------------------------------
    # Contact Section
    --------------------------------------------------------------*/
    .contact .info-box {
      background-color: var(--surface-color);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
      height: 100%;
    }

    .contact .info-box h3 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .contact .info-box p {
      margin-bottom: 30px;
      color: color-mix(in srgb, var(--default-color), transparent 20%);
    }

    .contact .info-item {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      margin-bottom: 30px;
    }

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

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

    .contact .info-item:hover .icon-box {
      background-color: var(--accent-color);
    }

    .contact .info-item .icon-box i {
      font-size: 20px;
      color: var(--accent-color);
      transition: 0.3s;
    }

    .contact .info-item:hover .icon-box i {
      color: var(--contrast-color);
    }

    .contact .info-item .content h4 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 5px;
    }

    .contact .info-item .content p {
      margin: 0;
      font-size: 14px;
      color: color-mix(in srgb, var(--default-color), transparent 20%);
    }

    .contact .contact-form {
      background-color: var(--surface-color);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
    }

    .contact .contact-form h3 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .contact .contact-form p {
      margin-bottom: 30px;
      color: color-mix(in srgb, var(--default-color), transparent 20%);
    }

    .contact .contact-form .form-control {
      height: 50px;
      padding: 10px 15px;
      border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
      border-radius: 5px;
      font-size: 14px;
      transition: 0.3s;
    }

    .contact .contact-form .form-control:focus {
      border-color: var(--accent-color);
      box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 80%);
    }

    .contact .contact-form textarea.form-control {
      height: auto;
      resize: vertical;
    }

    .contact .contact-form .btn {
      background-color: var(--accent-color);
      color: var(--contrast-color);
      padding: 12px 30px;
      border-radius: 5px;
      font-weight: 500;
      transition: 0.3s;
    }

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