/**
* Template Name: iPortfolio
* Template URL: https://bootstrapmade.com/iportfolio-bootstrap-portfolio-websites-template/
* Updated: Jun 29 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: "Raleway",  sans-serif;
  --nav-font: "Poppins",  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: #272829; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #050d18; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #149ddd; /* 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. */
}

/* 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: #a8a9b4;  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #040b14; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #040b14; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #a8a9b4; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ffffff; /* 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: #f4fafd;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #040b14;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #151f2b;
  --contrast-color: #ffffff;
}

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  padding: 0 15px;
  width: 300px;
  transition: all ease-in-out 0.3s;
  overflow-y: auto;
  z-index: 997;
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .profile-img img {
  margin: 15px auto;
  display: block;
  width: 120px;
  border: 8px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.header .logo {
  line-height: 1;
  margin-bottom: 15px;
}

.header .logo img {
  max-height: 52px;
  margin-top: 10px;
}

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

.header .social-links {
  margin: 0 0 20px 0;
}

.header .social-links a {
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  /* color: var(--default-color); */
  margin: 0 2px;
  border-radius: 50%;
  text-align: center;
  width: 40px;
  height: 40px;
  transition: 0.3s;
}

.header .social-links a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
}

@media (min-width: 1200px) {

  .header~main,
  .header~#footer {
    margin-left: 300px;
  }
}

@media (max-width: 1199px) {
  .header {
    left: -100%;
  }
}

.header.header-show {
  left: 0;
}

.header .header-toggle {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 9999;
  transition: background-color 0.3s;
}

.header .header-toggle:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

/*--------------------------------------------------------------
# Navigation Menu - Light Theme
--------------------------------------------------------------*/
.header {
    background-color: #f8f9fa; /* Light background */
}

.navmenu {
    padding: 0;
    z-index: 9997;
}

.navmenu ul {
    list-style: none;
    /* padding: 0 0 20px 0; */
    margin: 0;
}

.navmenu a,
.navmenu a:focus {
    color: #000; /* Black text */
    padding: 15px 10px;
    font-family: var(--nav-font);
    font-size: 13px;
    font-weight: 400;
    display: flex;
    align-items: center;
    white-space: nowrap;
    transition: 0.3s;
    width: 100%;
    border-radius: 8px;
}

.navmenu a .navicon,
.navmenu a:focus .navicon {
    font-size: 20px;
    margin-right: 10px;
}

.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus {
    background-color: #e2e6ea; /* Light hover/active highlight */
    color: #000; /* Keep text black */
}

.navmenu a:hover .navicon,
.navmenu .active .navicon,
.navmenu .active:focus .navicon {
    color: #007bff; /* Optional accent for icon */
}

.navmenu .dropdown {
    display: block;
}

.navmenu .dropdown a,
.navmenu .dropdown a:focus {
    color: #000; /* Black text for dropdown */
}

.navmenu .dropdown a:hover,
.navmenu .dropdown .active,
.navmenu .dropdown .active:focus {
    /* color: #007bff; Accent for dropdown hover/active */
    /* background-color: #e9ecef; Light highlight/ */
}

.navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 5px 10px;
    margin: 5px 10px;
    background-color: #f1f3f5; /* Slightly darker light bg for sub-menu */
    border: 1px solid #dee2e6;
    border-radius: 5px;
    box-shadow: none;
    transition: all 0.3s ease-in-out;
}

.navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: #e9ecef; /* Active/open sub-menu highlight */
}
    /* ✅ Highlight Style for Active Menu */
    .navmenu a.active {
        /* background-color: #0d6efd; */
        /* color: #fff !important; */
        border-radius: 6px;
        font-weight: 600;
    }

    .navmenu a.active i {
        /* color: #fff !important; */
    }

    /* Optional hover effect */
    .navmenu a:hover {
        background-color: #90bcff;
        /* color: #fff !important; */
    }

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

.navmenu li {
    position: relative;
}

.navmenu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    /* color: #ccc; */
    text-decoration: none;
    transition: all 0.3s ease;
}

.navmenu a:hover {
    background-color: rgba(13, 110, 253, 0.1);
    /* color: #fff; */
    border-radius: 8px;
}

.navmenu a.active {
    background-color:#90bcff;
    /* color: #fff !important; */
    border-radius: 8px;
}

/* Dropdown */
.dropdown .dropdown-menu {
    display: none;
    flex-direction: column;
    position: relative;
    background: #1c1c1c;
    padding-left: 15px;
    margin-top: 5px;
    border-left: 2px solid #0d6efd;
    border-radius: 4px;
}

.dropdown:hover .dropdown-menu {
    display: flex;
}

.dropdown .dropdown-menu a {
    font-size: 13px;
    padding: 8px 10px;
    /* color: #ccc; */
}

.dropdown .dropdown-menu a:hover {
    color: #fff;
}

/* Chevron Icon */
.dropdown-icon {
    margin-left: auto;
    transition: transform 0.3s;
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}
/* Dropdown active parent stays highlighted */
.navmenu a.active.dropdown-active {
    background-color: #90bcff; 
    font-weight: 600;
}

/* Keep sub-menu open for active dropdown */
.dropdown .dropdown-menu {
    display: none;
    flex-direction: column;
    position: relative;
    background: #f1f3f5;
    padding-left: 15px;
    margin-top: 5px;
    border-left: 2px solid #0d6efd;
    border-radius: 4px;
}

.dropdown:hover .dropdown-menu {
    display: flex;
}

/* Active child highlight */
.dropdown .dropdown-menu a.active {
    background-color: #007bff;
    color: #fff;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 40px 0;
  position: relative;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

.footer .credits {
  margin-top: 4px;
  font-size: 13px;
  text-align: center;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

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

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

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

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

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

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

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  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;
  overflow: clip;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  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;
  bottom: 0;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
        /* Hero Section */
        .hero {
            width: 100%;
            min-height: 100vh;
            position: relative;
            padding: 80px 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero img {
            position: absolute;
            inset: 0;
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .hero:before {
            content: "";
            background: rgba(0, 0, 0, 0.7);
            position: absolute;
            inset: 0;
            z-index: 2;
        }

        .hero .container {
            position: relative;
            z-index: 3;
        }

        .hero-title {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: lightblue;
            -webkit-text-stroke: 1px #000;
            text-stroke: 1px #000;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        /* Flip Cards */
        .flip-card {
            background-color: transparent;
            width: 100%;
            height: 200px;
            perspective: 1000px;
        }

        .flip-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform 0.7s;
            transform-style: preserve-3d;
        }

        .flip-card:hover .flip-card-inner {
            transform: rotateY(180deg);
        }

        .flip-card-front,
        .flip-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 12px;
            backface-visibility: hidden;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
            padding: 20px;
        }

        .flip-card-front {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(8px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        }

        .flip-card-back {
            background: rgba(0, 188, 212, 0.3);
            border: 1px solid #00bcd4;
            transform: rotateY(180deg);
            box-shadow: 0 8px 20px rgba(0, 188, 212, 0.4);
        }

        .flip-card h5 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .flip-card p {
            font-size: 0.9rem;
            color: #e0e0e0;
        }

        .btn-outline-light {
            border-color: #fff;
            color: #fff;
            transition: 0.3s;
        }

        .btn-outline-light:hover {
            background: #fff;
            color: #00bcd4;
        }

        @media (max-width: 768px) {
            .hero p {
                width: 90% !important;
            }

            .flip-card {
                height: 180px;
            }

            .flip-card h5 {
                font-size: 1rem;
            }

            .flip-card p {
                font-size: 0.85rem;
            }
        }


/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}


        /* === HRMS Section === */
        #hrms-section {
            background: linear-gradient(135deg, #00c6ff, #0072ff);
            color: #fff;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
            font-family: 'Poppins', sans-serif;
        }

        /* === Heading === */
        #hrms-section h1 {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.3;
            text-transform: uppercase;
            color: #fff;
            text-shadow: 0 0 15px rgba(0, 200, 255, 0.6);
            letter-spacing: 1px;
        }

        /* === Paragraph === */
        #hrms-section p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 25px;
            line-height: 1.6;
        }

        /* === Features List === */
        .features-list {
            list-style: none;
            padding: 0;
            margin-bottom: 40px;
        }

        .features-list li {
            font-size: 1.05rem;
            margin-bottom: 12px;
            position: relative;
            padding-left: 30px;
        }

        /* .features-list li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: #2a046cff;
            font-weight: bold;
            font-size: 1.1rem;
        } */

        /* === Button === */
        .btn-demo {
            background: #fff;
            color: #0072ff;
            border-radius: 50px;
            padding: 12px 35px;
            font-weight: 600;
            text-transform: uppercase;
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
        }

        .btn-demo:hover {
            background: #00ffb3;
            color: #000;
            transform: translateY(-4px);
            box-shadow: 0 6px 20px rgba(0, 255, 179, 0.4);
        }

        /* === Image Section === */
        .hrms-image {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            transition: all 0.5s ease;
        }

        .hrms-image img {
            width: 100%;
            height: auto;
            transition: transform 0.6s ease;
        }

        .hrms-image:hover img {
            transform: scale(1.08);
        }

        /* === Responsive Design === */
        @media (max-width: 991px) {
            #hrms-section {
                padding: 60px 20px;
                text-align: center;
            }

            #hrms-section h1 {
                font-size: 2.4rem;
                margin-bottom: 30px;
            }

            #hrms-section p {
                margin: 0 auto 25px;
            }

            .hrms-image {
                margin-top: 40px;
            }
        }

                /* === Accounting Section Styling === */
        #accounting {
            background: linear-gradient(135deg, #ff9966, #ff5e62);
            color: #fff;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        /* === Centered Heading === */
        #accounting h2 {
            font-size: 3rem;
            font-weight: 800;
            text-transform: uppercase;
            text-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
            margin-bottom: 25px;
        }

        /* === Paragraph === */
        #accounting p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
            max-width: 550px;
        }

        /* === Features List === */
        #accounting ul {
            list-style: none;
            padding: 0;
            margin-bottom: 40px;
        }

        #accounting ul li {
            font-size: 1.05rem;
            margin-bottom: 10px;
            position: relative;
            padding-left: 30px;
        }

        /* #accounting ul li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: #00ffb3;
            font-weight: bold;
        } */

        /* === Button === */
        .btn-demo {
            background: #fff;
            color: #ff5e62;
            border-radius: 30px;
            padding: 10px 25px;
            font-weight: 600;
            text-transform: uppercase;
            transition: all 0.3s ease;
            border: none;
        }

        .btn-demo:hover {
            background: #00ffb3;
            color: #000;
            transform: translateY(-3px);
        }

        /* === Image Section === */
        .accounting-image {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .accounting-image img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }

        .accounting-image:hover img {
            transform: scale(1.05);
        }

        /* === Responsive Design === */
        @media (max-width: 991px) {
            #accounting {
                padding: 60px 20px;
                text-align: center;
            }

            #accounting h2 {
                font-size: 2.4rem;
            }

            #accounting p {
                margin: 0 auto 25px;
            }

            .accounting-image {
                margin-top: 40px;
            }
        }
     /* === Parking Section Styling === */
        #parking {
            background: linear-gradient(135deg, #43cea2, #185a9d);
            color: #fff;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        /* === Centered Heading === */
        #parking h2 {
            font-size: 3rem;
            font-weight: 800;
            text-transform: uppercase;
            text-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
            margin-bottom: 25px;
        }

        /* === Paragraph === */
        #parking p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
            max-width: 550px;
        }

        /* === Features List === */
        #parking ul {
            list-style: none;
            padding: 0;
            margin-bottom: 40px;
        }

        #parking ul li {
            font-size: 1.05rem;
            margin-bottom: 10px;
            position: relative;
            padding-left: 30px;
        }

        /* #parking ul li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: #00ffb3;
            font-weight: bold;
        } */

        /* === Button === */
        .btn-demo {
            background: #fff;
            color: #185a9d;
            border-radius: 30px;
            padding: 10px 25px;
            font-weight: 600;
            text-transform: uppercase;
            transition: all 0.3s ease;
            border: none;
        }

        .btn-demo:hover {
            background: #00ffb3;
            color: #000;
            transform: translateY(-3px);
        }

        /* === Image Section === */
        .parking-image {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .parking-image img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }

        .parking-image:hover img {
            transform: scale(1.05);
        }

        /* === Responsive Design === */
        @media (max-width: 991px) {
            #parking {
                padding: 60px 20px;
                text-align: center;
            }

            #parking h2 {
                font-size: 2.4rem;
            }

            #parking p {
                margin: 0 auto 25px;
            }

            .parking-image {
                margin-bottom: 40px;
            }
        }

         /* === Retail Section Styling === */
        #barcoding {
            background: linear-gradient(135deg, #f7971e, #ffd200);
            color: #fff;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        /* === Centered Heading === */
        #barcoding h2 {
            font-size: 3rem;
            font-weight: 800;
            text-transform: uppercase;
            text-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
            margin-bottom: 25px;
        }

        /* === Paragraph === */
        #barcoding p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 30px;
            max-width: 550px;
        }

        /* === Features List === */
        #barcoding ul {
            list-style: none;
            padding: 0;
            margin-bottom: 40px;
        }

        #barcoding ul li {
            font-size: 1.05rem;
            margin-bottom: 10px;
            position: relative;
            padding-left: 30px;
        }

        /* #barcoding ul li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: #fff;
            font-weight: bold;
        } */

        /* === Button === */
        .btn-demo {
            background: #fff;
            color: #f7971e;
            border-radius: 30px;
            padding: 10px 25px;
            font-weight: 600;
            text-transform: uppercase;
            transition: all 0.3s ease;
            border: none;
        }

        .btn-demo:hover {
            background: #ff5722;
            color: #fff;
            transform: translateY(-3px);
        }

        /* === Image Section === */
        .barcoding-image {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
        }

        .barcoding-image img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }

        .barcoding-image:hover img {
            transform: scale(1.05);
        }

        /* === Responsive Design === */
        @media (max-width: 991px) {
            #barcoding {
                padding: 60px 20px;
                text-align: center;
            }

            #barcoding h2 {
                font-size: 2.4rem;
            }

            #barcoding p {
                margin: 0 auto 25px;
            }

            .barcoding-image {
                margin-bottom: 40px;
            }
        }

          /* === Stock Section Styling === */
        #stock {
            background: linear-gradient(135deg, #4f46e5, #3b82f6);
            color: #fff;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        /* === Centered Heading === */
        #stock h2 {
            font-size: 3rem;
            font-weight: 800;
            text-transform: uppercase;
            text-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
            margin-bottom: 25px;
        }

        /* === Paragraph === */
        #stock p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 30px;
            max-width: 550px;
        }

        /* === Features List === */
        #stock ul {
            list-style: none;
            padding: 0;
            margin-bottom: 40px;
        }

        #stock ul li {
            font-size: 1.05rem;
            margin-bottom: 10px;
            position: relative;
            padding-left: 30px;
        }

        /* #stock ul li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: #00ffb3;
            font-weight: bold;
        } */

        /* === Button === */
        .btn-demo {
            background: #fff;
            color: #3b82f6;
            border-radius: 30px;
            padding: 10px 25px;
            font-weight: 600;
            text-transform: uppercase;
            transition: all 0.3s ease;
            border: none;
        }

        .btn-demo:hover {
            background: #00ffb3;
            color: #000;
            transform: translateY(-3px);
        }

        /* === Image Section === */
        .stock-image {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .stock-image img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }

        .stock-image:hover img {
            transform: scale(1.05);
        }

        /* === Responsive === */
        @media (max-width: 991px) {
            #stock {
                padding: 60px 20px;
                text-align: center;
            }

            #stock h2 {
                font-size: 2.4rem;
            }

            #stock p {
                margin: 0 auto 25px;
            }

            .stock-image {
                margin-bottom: 40px;
            }
        }
          /* === Space Section Styling === */
        #space {
            background: linear-gradient(135deg, #e546cd, #f7125a);
            color: #fff;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        /* === Centered Heading === */
        #space h2 {
            font-size: 3rem;
            font-weight: 800;
            text-transform: uppercase;
            text-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
            margin-bottom: 25px;
        }

        /* === Paragraph === */
        #space p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 30px;
            max-width: 550px;
        }

        /* === Features List === */
        #space ul {
            list-style: none;
            padding: 0;
            margin-bottom: 40px;
        }

        #space ul li {
            font-size: 1.05rem;
            margin-bottom: 10px;
            position: relative;
            padding-left: 30px;
        }

        /* #space ul li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: #00ffb3;
            font-weight: bold;
        } */

        /* === Button === */
        .btn-demo {
            background: #fff;
            color: #3b82f6;
            border-radius: 30px;
            padding: 10px 25px;
            font-weight: 600;
            text-transform: uppercase;
            transition: all 0.3s ease;
            border: none;
        }

        .btn-demo:hover {
            background: #00ffb3;
            color: #000;
            transform: translateY(-3px);
        }

        /* === Image Section === */
        .space-image {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .space-image img {
            width: 100%;
            height: 100%;
            transition: transform 0.5s ease;
        }

        .space-image:hover img {
            transform: scale(1.05);
        }

        /* === Responsive === */
        @media (max-width: 991px) {
            #space {
                padding: 60px 20px;
                text-align: center;
            }

            #space h2 {
                font-size: 2.4rem;
            }

            #space p {
                margin: 0 auto 25px;
            }

            .space-image {
                margin-bottom: 40px;
            }
        }

         /* === Payment Section Styling === */
        #payment {
            background: linear-gradient(135deg, #f59e0b, #ef4444); /* orange → red gradient */
            color: #fff;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        /* === Centered Heading === */
        #payment h2 {
            font-size: 3rem;
            font-weight: 800;
            text-transform: uppercase;
            text-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
            margin-bottom: 25px;
        }

        /* === Paragraph === */
        #payment p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 30px;
            max-width: 550px;
        }

        /* === Features List === */
        #payment ul {
            list-style: none;
            padding: 0;
            margin-bottom: 40px;
        }

        #payment ul li {
            font-size: 1.05rem;
            margin-bottom: 10px;
            position: relative;
            padding-left: 30px;
        }

        /* #payment ul li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: #00ffb3;
            font-weight: bold;
        } */

        /* === Button === */
        .btn-demo {
            background: #fff;
            color: #ef4444;
            border-radius: 30px;
            padding: 10px 25px;
            font-weight: 600;
            text-transform: uppercase;
            transition: all 0.3s ease;
            border: none;
        }

        .btn-demo:hover {
            background: #00ffb3;
            color: #000;
            transform: translateY(-3px);
        }

        /* === Image Section === */
        .payment-image {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .payment-image img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }

        .payment-image:hover img {
            transform: scale(1.05);
        }

        /* === Responsive === */
        @media (max-width: 991px) {
            #payment {
                padding: 60px 20px;
                text-align: center;
            }

            #payment h2 {
                font-size: 2.4rem;
            }

            #payment p {
                margin: 0 auto 25px;
            }

            .payment-image {
                margin-bottom: 40px;
            }
        }
         /* === Ticket Section Styling === */
        #ticket {
            background: linear-gradient(135deg, #10b981, #3b82f6); /* green → blue gradient */
            color: #fff;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        /* === Centered Heading === */
        #ticket h2 {
            font-size: 3rem;
            font-weight: 800;
            text-transform: uppercase;
            text-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
            margin-bottom: 25px;
        }

        /* === Paragraph === */
        #ticket p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 30px;
            max-width: 550px;
        }

        /* === Features List === */
        #ticket ul {
            list-style: none;
            padding: 0;
            margin-bottom: 40px;
        }

        #ticket ul li {
            font-size: 1.05rem;
            margin-bottom: 10px;
            position: relative;
            padding-left: 30px;
        }

        /* #ticket ul li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: #00ffb3;
            font-weight: bold;
        } */

        /* === Button === */
        .btn-demo {
            background: #fff;
            color: #3b82f6;
            border-radius: 30px;
            padding: 10px 25px;
            font-weight: 600;
            text-transform: uppercase;
            transition: all 0.3s ease;
            border: none;
        }

        .btn-demo:hover {
            background: #00ffb3;
            color: #000;
            transform: translateY(-3px);
        }

        /* === Image Section === */
        .ticket-image {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .ticket-image img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }

        .ticket-image:hover img {
            transform: scale(1.05);
        }

        /* === Responsive === */
        @media (max-width: 991px) {
            #ticket {
                padding: 60px 20px;
                text-align: center;
            }

            #ticket h2 {
                font-size: 2.4rem;
            }

            #ticket p {
                margin: 0 auto 25px;
            }

            .ticket-image {
                margin-bottom: 40px;
            }
        }

          /* === Doctor Section Styling === */
        #doctor {
            background: linear-gradient(135deg, #8b5cf6, #ec4899); /* purple → pink gradient */
            color: #fff;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        /* === Centered Heading === */
        #doctor h2 {
            font-size: 3rem;
            font-weight: 800;
            text-transform: uppercase;
            text-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
            margin-bottom: 25px;
        }

        /* === Paragraph === */
        #doctor p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 30px;
            max-width: 550px;
        }

        /* === Features List === */
        #doctor ul {
            list-style: none;
            padding: 0;
            margin-bottom: 40px;
        }

        #doctor ul li {
            font-size: 1.05rem;
            margin-bottom: 10px;
            position: relative;
            padding-left: 30px;
        }

        /* #doctor ul li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: #00ffb3;
            font-weight: bold;
        } */

        /* === Button === */
        .btn-demo {
            background: #fff;
            color: #ec4899;
            border-radius: 30px;
            padding: 10px 25px;
            font-weight: 600;
            text-transform: uppercase;
            transition: all 0.3s ease;
            border: none;
        }

        .btn-demo:hover {
            background: #00ffb3;
            color: #000;
            transform: translateY(-3px);
        }

        /* === Image Section === */
        .doctor-image {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .doctor-image img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }

        .doctor-image:hover img {
            transform: scale(1.05);
        }

        /* === Responsive === */
        @media (max-width: 991px) {
            #doctor {
                padding: 60px 20px;
                text-align: center;
            }

            #doctor h2 {
                font-size: 2.4rem;
            }

            #doctor p {
                margin: 0 auto 25px;
            }

            .doctor-image {
                margin-bottom: 40px;
            }
        }
          /* === Logistics Section Styling === */
        #logistics {
            background: linear-gradient(135deg, #f43f5e, #f59e0b); /* pink → orange gradient */
            color: #fff;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        /* === Centered Heading === */
        #logistics h2 {
            font-size: 3rem;
            font-weight: 800;
            text-transform: uppercase;
            text-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
            margin-bottom: 25px;
        }

        /* === Paragraph === */
        #logistics p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 30px;
            max-width: 550px;
        }

        /* === Features List === */
        #logistics ul {
            list-style: none;
            padding: 0;
            margin-bottom: 40px;
        }

        #logistics ul li {
            font-size: 1.05rem;
            margin-bottom: 10px;
            position: relative;
            padding-left: 30px;
        }

        /* #logistics ul li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: #00ffb3;
            font-weight: bold;
        } */

        /* === Button === */
        .btn-demo {
            background: #fff;
            color: #f43f5e;
            border-radius: 30px;
            padding: 10px 25px;
            font-weight: 600;
            text-transform: uppercase;
            transition: all 0.3s ease;
            border: none;
        }

        .btn-demo:hover {
            background: #00ffb3;
            color: #000;
            transform: translateY(-3px);
        }

        /* === Image Section === */
        .logistics-image {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .logistics-image img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }

        .logistics-image:hover img {
            transform: scale(1.05);
        }

        /* === Responsive === */
        @media (max-width: 991px) {
            #logistics {
                padding: 60px 20px;
                text-align: center;
            }

            #logistics h2 {
                font-size: 2.4rem;
            }

            #logistics p {
                margin: 0 auto 25px;
            }

            .logistics-image {
                margin-bottom: 40px;
            }
        }

        
        /* === E-Commerce Section Styling === */
        #ecommerce {
            background: linear-gradient(135deg, #6366f1, #14b8a6); /* indigo → teal gradient */
            color: #fff;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        /* === Centered Heading === */
        #ecommerce h2 {
            font-size: 3rem;
            font-weight: 800;
            text-transform: uppercase;
            text-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
            margin-bottom: 25px;
        }

        /* === Paragraph === */
        #ecommerce p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 30px;
            max-width: 550px;
        }

        /* === Features List === */
        #ecommerce ul {
            list-style: none;
            padding: 0;
            margin-bottom: 40px;
        }

        #ecommerce ul li {
            font-size: 1.05rem;
            margin-bottom: 10px;
            position: relative;
            padding-left: 30px;
        }

        /* #ecommerce ul li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: #00ffb3;
            font-weight: bold;
        } */

        /* === Button === */
        .btn-demo {
            background: #fff;
            color: #14b8a6;
            border-radius: 30px;
            padding: 10px 25px;
            font-weight: 600;
            text-transform: uppercase;
            transition: all 0.3s ease;
            border: none;
        }

        .btn-demo:hover {
            background: #00ffb3;
            color: #000;
            transform: translateY(-3px);
        }

        /* === Image Section === */
        .ecommerce-image {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .ecommerce-image img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }

        .ecommerce-image:hover img {
            transform: scale(1.05);
        }

        /* === Responsive === */
        @media (max-width: 991px) {
            #ecommerce {
                padding: 60px 20px;
                text-align: center;
            }

            #ecommerce h2 {
                font-size: 2.4rem;
            }

            #ecommerce p {
                margin: 0 auto 25px;
            }

            .ecommerce-image {
                margin-bottom: 40px;
            }
        }

         /* === Event Section Styling === */
        #event {
            background: linear-gradient(135deg, #facc15, #f97316); /* yellow → orange gradient */
            color: #fff;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        /* === Centered Heading === */
        #event h2 {
            font-size: 3rem;
            font-weight: 800;
            text-transform: uppercase;
            text-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
            margin-bottom: 25px;
        }

        /* === Paragraph === */
        #event p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 30px;
            max-width: 550px;
        }

        /* === Features List === */
        #event ul {
            list-style: none;
            padding: 0;
            margin-bottom: 40px;
        }

        #event ul li {
            font-size: 1.05rem;
            margin-bottom: 10px;
            position: relative;
            padding-left: 30px;
        }

        /* #event ul li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: #00ffb3;
            font-weight: bold;
        } */

        /* === Button === */
        .btn-demo {
            background: #fff;
            color: #f97316;
            border-radius: 30px;
            padding: 10px 25px;
            font-weight: 600;
            text-transform: uppercase;
            transition: all 0.3s ease;
            border: none;
        }

        .btn-demo:hover {
            background: #00ffb3;
            color: #000;
            transform: translateY(-3px);
        }

        /* === Image Section === */
        .event-image {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .event-image img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }

        .event-image:hover img {
            transform: scale(1.05);
        }

        /* === Responsive === */
        @media (max-width: 991px) {
            #event {
                padding: 60px 20px;
                text-align: center;
            }

            #event h2 {
                font-size: 2.4rem;
            }

            #event p {
                margin: 0 auto 25px;
            }

            .event-image {
                margin-bottom: 40px;
            }
        }

         /* === Travel Section Styling === */
        #travel {
            background: linear-gradient(135deg, #3b82f6, #06b6d4); /* blue → cyan gradient */
            color: #fff;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        /* === Centered Heading === */
        #travel h2 {
            font-size: 3rem;
            font-weight: 800;
            text-transform: uppercase;
            text-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
            margin-bottom: 25px;
        }

        /* === Paragraph === */
        #travel p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 30px;
            max-width: 550px;
        }

        /* === Features List === */
        #travel ul {
            list-style: none;
            padding: 0;
            margin-bottom: 40px;
        }

        #travel ul li {
            font-size: 1.05rem;
            margin-bottom: 10px;
            position: relative;
            padding-left: 30px;
        }

        /* #travel ul li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: #00ffb3;
            font-weight: bold;
        } */

        /* === Button === */
        .btn-demo {
            background: #fff;
            color: #06b6d4;
            border-radius: 30px;
            padding: 10px 25px;
            font-weight: 600;
            text-transform: uppercase;
            transition: all 0.3s ease;
            border: none;
        }

        .btn-demo:hover {
            background: #00ffb3;
            color: #000;
            transform: translateY(-3px);
        }

        /* === Image Section === */
        .travel-image {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .travel-image img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }

        .travel-image:hover img {
            transform: scale(1.05);
        }

        /* === Responsive === */
        @media (max-width: 991px) {
            #travel {
                padding: 60px 20px;
                text-align: center;
            }

            #travel h2 {
                font-size: 2.4rem;
            }

            #travel p {
                margin: 0 auto 25px;
            }

            .travel-image {
                margin-bottom: 40px;
            }
        }

           /* === Tailoring Section Styling === */
        #tailor {
            background: linear-gradient(135deg, #f472b6, #fbbf24); /* pink → yellow gradient */
            color: #fff;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        /* === Centered Heading === */
        #tailor h2 {
            font-size: 3rem;
            font-weight: 800;
            text-transform: uppercase;
            text-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
            margin-bottom: 25px;
        }

        /* === Paragraph === */
        #tailor p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 30px;
            max-width: 550px;
        }

        /* === Features List === */
        #tailor ul {
            list-style: none;
            padding: 0;
            margin-bottom: 40px;
        }

        #tailor ul li {
            font-size: 1.05rem;
            margin-bottom: 10px;
            position: relative;
            padding-left: 30px;
        }

        /* #tailor ul li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: #00ffb3;
            font-weight: bold;
        } */

        /* === Button === */
        .btn-demo {
            background: #fff;
            color: #f472b6;
            border-radius: 30px;
            padding: 10px 25px;
            font-weight: 600;
            text-transform: uppercase;
            transition: all 0.3s ease;
            border: none;
        }

        .btn-demo:hover {
            background: #00ffb3;
            color: #000;
            transform: translateY(-3px);
        }

        /* === Image Section === */
        .tailor-image {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .tailor-image img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }

        .tailor-image:hover img {
            transform: scale(1.05);
        }

        /* === Responsive === */
        @media (max-width: 991px) {
            #tailor {
                padding: 60px 20px;
                text-align: center;
            }

            #tailor h2 {
                font-size: 2.4rem;
            }

            #tailor p {
                margin: 0 auto 25px;
            }

            .tailor-image {
                margin-bottom: 40px;
            }
        }
          /* === Exam Section Styling === */
        #exam {
            background: linear-gradient(135deg, #8b5cf6, #ec4899); /* purple → pink gradient */
            color: #fff;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        /* === Centered Heading === */
        #exam h2 {
            font-size: 3rem;
            font-weight: 800;
            text-transform: uppercase;
            text-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
            margin-bottom: 25px;
        }

        /* === Paragraph === */
        #exam p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 30px;
            max-width: 550px;
        }

        /* === Features List === */
        #exam ul {
            list-style: none;
            padding: 0;
            margin-bottom: 40px;
        }

        #exam ul li {
            font-size: 1.05rem;
            margin-bottom: 10px;
            position: relative;
            padding-left: 30px;
        }

        /* #exam ul li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: #00ffb3;
            font-weight: bold;
        } */

        /* === Button === */
        .btn-demo {
            background: #fff;
            color: #ec4899;
            border-radius: 30px;
            padding: 10px 25px;
            font-weight: 600;
            text-transform: uppercase;
            transition: all 0.3s ease;
            border: none;
        }

        .btn-demo:hover {
            background: #00ffb3;
            color: #000;
            transform: translateY(-3px);
        }

        /* === Image Section === */
        .exam-image {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .exam-image img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }

        .exam-image:hover img {
            transform: scale(1.05);
        }

        /* === Responsive === */
        @media (max-width: 991px) {
            #exam {
                padding: 60px 20px;
                text-align: center;
            }

            #exam h2 {
                font-size: 2.4rem;
            }

            #exam p {
                margin: 0 auto 25px;
            }

            .exam-image {
                margin-bottom: 40px;
            }
        }

           /* === Marketing Section Styling === */
        #marketing {
            background: linear-gradient(135deg, #10b981, #3b82f6); /* green → blue gradient */
            color: #fff;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        /* === Centered Heading === */
        #marketing h2 {
            font-size: 3rem;
            font-weight: 800;
            text-transform: uppercase;
            text-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
            margin-bottom: 25px;
        }

        /* === Paragraph === */
        #marketing p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 30px;
            max-width: 550px;
        }

        /* === Features List === */
        #marketing ul {
            list-style: none;
            padding: 0;
            margin-bottom: 40px;
        }

        #marketing ul li {
            font-size: 1.05rem;
            margin-bottom: 10px;
            position: relative;
            padding-left: 30px;
        }

        /* #marketing ul li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: #00ffb3;
            font-weight: bold;
        } */

        /* === Button === */
        .btn-demo {
            background: #fff;
            color: #3b82f6;
            border-radius: 30px;
            padding: 10px 25px;
            font-weight: 600;
            text-transform: uppercase;
            transition: all 0.3s ease;
            border: none;
        }

        .btn-demo:hover {
            background: #00ffb3;
            color: #000;
            transform: translateY(-3px);
        }

        /* === Image Section === */
        .marketing-image {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .marketing-image img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }

        .marketing-image:hover img {
            transform: scale(1.05);
        }

        /* === Responsive === */
        @media (max-width: 991px) {
            #marketing {
                padding: 60px 20px;
                text-align: center;
            }

            #marketing h2 {
                font-size: 2.4rem;
            }

            #marketing p {
                margin: 0 auto 25px;
            }

            .marketing-image {
                margin-bottom: 40px;
            }
        }

          /* === Consulting Section Styling === */
        #consulting {
            background: linear-gradient(135deg, #f59e0b, #ef4444); /* amber → red gradient */
            color: #fff;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        /* === Centered Heading === */
        #consulting h2 {
            font-size: 3rem;
            font-weight: 800;
            text-transform: uppercase;
            text-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
            margin-bottom: 25px;
        }

        /* === Paragraph === */
        #consulting p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 30px;
            max-width: 550px;
        }

        /* === Features List === */
        #consulting ul {
            list-style: none;
            padding: 0;
            margin-bottom: 40px;
        }

        #consulting ul li {
            font-size: 1.05rem;
            margin-bottom: 10px;
            position: relative;
            padding-left: 30px;
        }

        /* #consulting ul li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: #00ffb3;
            font-weight: bold;
        } */

        /* === Button === */
        .btn-demo {
            background: #fff;
            color: #ef4444;
            border-radius: 30px;
            padding: 10px 25px;
            font-weight: 600;
            text-transform: uppercase;
            transition: all 0.3s ease;
            border: none;
        }

        .btn-demo:hover {
            background: #00ffb3;
            color: #000;
            transform: translateY(-3px);
        }

        /* === Image Section === */
        .consulting-image {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .consulting-image img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }

        .consulting-image:hover img {
            transform: scale(1.05);
        }

        /* === Responsive === */
        @media (max-width: 991px) {
            #consulting {
                padding: 60px 20px;
                text-align: center;
            }

            #consulting h2 {
                font-size: 2.4rem;
            }

            #consulting p {
                margin: 0 auto 25px;
            }

            .consulting-image {
                margin-bottom: 40px;
            }
        }

         /* === WMS Section Styling === */
        #wms {
            background: linear-gradient(135deg, #3b82f6, #06b6d4); /* blue → cyan gradient */
            color: #fff;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        /* === Centered Heading === */
        #wms h2 {
            font-size: 3rem;
            font-weight: 800;
            text-transform: uppercase;
            text-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
            margin-bottom: 25px;
        }

        /* === Paragraph === */
        #wms p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 30px;
            max-width: 550px;
        }

        /* === Features List === */
        #wms ul {
            list-style: none;
            padding: 0;
            margin-bottom: 40px;
        }

        #wms ul li {
            font-size: 1.05rem;
            margin-bottom: 10px;
            position: relative;
            padding-left: 30px;
        }

        /* #wms ul li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: #00ffb3;
            font-weight: bold;
        } */

        /* === Button === */
        .btn-demo {
            background: #fff;
            color: #06b6d4;
            border-radius: 30px;
            padding: 10px 25px;
            font-weight: 600;
            text-transform: uppercase;
            transition: all 0.3s ease;
            border: none;
        }

        .btn-demo:hover {
            background: #00ffb3;
            color: #000;
            transform: translateY(-3px);
        }

        /* === Image Section === */
        .wms-image {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .wms-image img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }

        .wms-image:hover img {
            transform: scale(1.05);
        }

        /* === Responsive === */
        @media (max-width: 991px) {
            #wms {
                padding: 60px 20px;
                text-align: center;
            }

            #wms h2 {
                font-size: 2.4rem;
            }

            #wms p {
                margin: 0 auto 25px;
            }

            .wms-image {
                margin-bottom: 40px;
            }
        }

        /* === CRM Section Styling === */
        #crm {
            background: linear-gradient(135deg, #8b5cf6, #ec4899); /* purple → pink gradient */
            color: #fff;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        /* === Centered Heading === */
        #crm h2 {
            font-size: 3rem;
            font-weight: 800;
            text-transform: uppercase;
            text-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
            margin-bottom: 25px;
        }

        /* === Paragraph === */
        #crm p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 30px;
            max-width: 550px;
        }

        /* === Features List === */
        #crm ul {
            list-style: none;
            padding: 0;
            margin-bottom: 40px;
        }

        #crm ul li {
            font-size: 1.05rem;
            margin-bottom: 10px;
            position: relative;
            padding-left: 30px;
        }

        /* #crm ul li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: #00ffb3;
            font-weight: bold;
        } */

        /* === Button === */
        .btn-demo {
            background: #fff;
            color: #ec4899;
            border-radius: 30px;
            padding: 10px 25px;
            font-weight: 600;
            text-transform: uppercase;
            transition: all 0.3s ease;
            border: none;
        }

        .btn-demo:hover {
            background: #00ffb3;
            color: #000;
            transform: translateY(-3px);
        }

        /* === Image Section === */
        .crm-image {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .crm-image img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }

        .crm-image:hover img {
            transform: scale(1.05);
        }

        /* === Responsive === */
        @media (max-width: 991px) {
            #crm {
                padding: 60px 20px;
                text-align: center;
            }

            #crm h2 {
                font-size: 2.4rem;
            }

            #crm p {
                margin: 0 auto 25px;
            }

            .crm-image {
                margin-bottom: 40px;
            }
        }

        /*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

@media (max-width: 575px) {
  .contact .info-wrap {
    padding: 20px;
  }
}

.contact .info-item {
  margin-bottom: 40px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

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

.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}
