        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Lato', sans-serif;
        }

        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }

        /* Header Styles */
        header {
            background-color: transparent;
            position: fixed;
            top: 20px;
            width: calc(100% - 40px);
            left: 20px;
            z-index: 1000;
            border-radius: 20px;
            backdrop-filter: blur(0px);
            transition: all 0.4s ease;
            border: 1px solid transparent;
        }

        header.scrolled {
            background-color: rgba(255, 255, 255, 0.9);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .logo {
            height: 70px;
            width: auto;
            margin-left: 20px;
        }

        /* Hamburger Menu */
        .hamburger {
            display: flex;
            flex-direction: column;
            cursor: pointer;
            padding: 12px;
            border-radius: 50%;
            transition: all 0.3s;
            background-color: #ff9600;
            justify-content: center;
            align-items: center;
            width: 50px;
            height: 50px;
            box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);
            margin-right: 20px;
        }

        .hamburger:hover {
            background-color: #ff7300;
            transform: scale(1.05);
        }

        .hamburger span {
            height: 2.5px;
            width: 20px;
            background: white;
            margin-bottom: 4px;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .hamburger span:last-child {
            margin-bottom: 0;
        }

        .hamburger.active {
            background-color: #ff7300;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -5px);
        }

        /* Dropdown Menu */
        .dropdown-menu-custom {
            display: none;
            position: absolute;
            top: 100%;
            right: 90px;
            background: white;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
            border-radius: 12px;
            padding: 20px 0;
            min-width: 280px;
            z-index: 99;
            animation: fadeIn 0.3s ease;
        }

        .dropdown-menu-custom.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .dropdown-menu-custom ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .dropdown-menu-custom ul li {
            margin: 0;
            position: relative;
        }

        .dropdown-menu-custom ul li a {
            text-decoration: none;
            color: #2c3e50;
            font-weight: 500;
            display: block;
            padding: 15px 25px;
            transition: background-color 0.3s, color 0.3s;
            border-left: 4px solid transparent;
            font-size: 16px;
        }

        .dropdown-menu-custom ul li a:hover {
            background-color: #f8f9fa;
            color: #3498db;
            border-left: 4px solid #ff9600;
            padding-left: 30px;
        }

        .dropdown-menu-custom ul li.has-submenu > a::after {
            content: "›";
            position: absolute;
            right: 20px;
            font-size: 18px;
            transition: transform 0.3s;
        }

        .submenu {
            display: block;
            max-height: 0;
            overflow: hidden;
            background: white;
            border-radius: 0 0 12px 12px;
            padding: 0;
            min-width: 240px;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            transform: translateY(-10px);
            list-style: none;
        }

        .dropdown-menu-custom ul li.has-submenu:hover .submenu {
            max-height: 300px;
            opacity: 1;
            transform: translateY(0);
            padding: 15px 0;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            position: relative;
            overflow: hidden;
        }

        .hero-slider {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .slide.active {
            opacity: 1;
        }

        .slide::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
            z-index: 1;
        }

        .hero-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            width: 100%;
            z-index: 2;
            opacity: 0;
            transition: opacity 0.8s ease;
        }

        .hero-content.active {
            opacity: 1;
        }

        .hero-title {
            font-size: 70px;
            font-weight: 800;
            line-height: 1;
            margin-bottom: 20px;
            letter-spacing: 5px;
            text-transform: uppercase;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            color: #ffffff;
        }

        .hero-subtitle {
            font-size: 24px;
            font-weight: 400;
            margin-bottom: 30px;
            color: #ffffff;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
        }

        .slider-controls {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 10;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s;
        }

        .slider-dot.active {
            background: #ff9600;
            transform: scale(1.2);
        }

        /* Almatrax Top Left */
        .almatrax-top-left {
            position: absolute;
            top: 600px;
            left: 60px;
            display: flex;
            align-items: center;
            gap: 40px;
            z-index: 100;
            pointer-events: none;
        }

        .almatrax-logo-text {
            font-size: 62px;
            font-weight: 900;
            color: white;
            letter-spacing: -3px;
            text-shadow: 0 6px 25px rgba(0,0,0,0.7);
            pointer-events: none;
            user-select: none;
        }

        .circle-toggle-btn {
            pointer-events: all;
            width: 90px;
            height: 50px;
            background: #ff9600;
            border-radius: 50px;
            position: relative;
            cursor: pointer;
            box-shadow: 0 0 40px rgba(255, 150, 0, 0.4);
            transition: all 0.4s ease;
            overflow: hidden;
            text-decoration: none;
            display: inline-block;
        }

        .circle-toggle-btn:hover {
            box-shadow: 0 0 70px rgba(255, 150, 0, 0.9);
            transform: scale(1.05);
        }

        .toggle-circle {
            position: absolute;
            width: 38px;
            height: 38px;
            background: white;
            border-radius: 50%;
            left: 6px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        }

        .arrow {
            font-size: 20px;
            font-weight: bold;
            color: #000;
            position: absolute;
            transition: all 0.45s ease;
        }

        .arrow.default { opacity: 1; }
        .arrow.hover { opacity: 0; transform: translateY(20px); }

        .circle-toggle-btn:hover .toggle-circle {
            transform: translateX(40px) translateY(-50%);
        }
        .circle-toggle-btn:hover .arrow.default {
            opacity: 0;
            transform: translateY(-20px);
        }
        .circle-toggle-btn:hover .arrow.hover {
            opacity: 1;
            transform: translateY(0);
        }

        /* Services Section */
        .services-section, .about-section {
            position: relative;
            overflow: hidden;
            padding: 100px 0;
        }

        .services-bg-shape, .about-bg-shape {
            position: absolute;
            width: 800px;
            height: 800px;
            right: -300px;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.07;
            pointer-events: none;
            z-index: 1;
            animation: rotateSlow 80s linear infinite;
        }

        .about-bg-shape {
            left: -300px;
            right: auto;
        }

        @keyframes rotateSlow {
            from { transform: translateY(-50%) rotate(0deg); }
            to { transform: translateY(-50%) rotate(360deg); }
        }

        /* Staggered Cards */
        .service-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
            z-index: 2;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(255, 150, 0, 0.15);
        }

        .service-icon {
            font-size: 48px;
            color: #ff9600;
            margin-bottom: 25px;
        }

        .service-title {
            font-size: 24px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .service-description {
            color: #666;
            line-height: 1.7;
            margin-bottom: 25px;
        }

        /* About Cards */
        .about-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            height: 100%;
        }

        .about-card:hover {
            transform: translateY(-8px);
        }

        .about-icon {
            font-size: 48px;
            color: #ff9600;
            margin-bottom: 20px;
        }

        .about-title {
            font-size: 22px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .about-description {
            color: #666;
            margin-bottom: 25px;
        }

        .meet-ceo-btn, .projects-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: #2c3e50;
            font-weight: 600;
            transition: all 0.3s;
        }

        .meet-ceo-btn:hover, .projects-btn:hover {
            color: #ff9600;
        }

        /* Logos Section */
        .logos-section {
            padding: 60px 0;
            background: #f8f9fa;
        }

        .logos-container {
            display: flex;
            justify-content: center;
            gap: 80px;
            flex-wrap: wrap;
        }

        .logo-image {
            height: 250px;
            width: auto;
            opacity: 0.7;
            transition: opacity 0.3s;
        }

        .logo-image:hover {
            opacity: 1;
        }

        /* Footer */
        .footer-section {
            background-color: #2c3e50;
            color: white;
            padding: 60px 0 30px;
        }

        .footer-logo .logo {
            height: 80px;
            filter: brightness(0) invert(1);
            margin-left: 0;
        }

        .company-info p, .footer-text {
            color: rgba(255, 255, 255, 0.8);
            font-size: 16px;
        }

        .company-website a {
            color: #ff9600;
            text-decoration: none;
        }

        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s;
            margin-right: 12px;
        }

        .social-link:hover {
            background: #ff9600;
            transform: translateY(-3px);
        }

        .footer-menu-heading {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-menu-heading::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: #ff9600;
        }

        .footer-nav-link {
            color: white;
            text-decoration: none;
            font-size: 18px;
            font-weight: 500;
            transition: all 0.3s;
            display: inline-block;
            margin-bottom: 15px;
        }

        .footer-nav-link:hover {
            color: #ff9600;
            padding-left: 10px;
        }

        /* Section Dividers */
        .section-divider {
            height: 2px;
            margin: 80px 0;
            background: linear-gradient(90deg, rgba(255,150,0,0.8) 0%, rgba(255,150,0,0.4) 25%, rgba(255,150,0,0) 50%, rgba(255,150,0,0.4) 75%, rgba(255,150,0,0.8) 100%);
        }

        @media (max-width: 768px) {
            .hero-title { font-size: 40px; }
            .hero-subtitle { font-size: 20px; }
            .almatrax-top-left { top: 440px; left: 30px; gap: 25px; }
            .almatrax-logo-text { font-size: 46px; }
            .services-section, .about-section { padding: 60px 0; }
            .service-card { padding: 30px 20px; }
            .footer-menu-heading::after { left: 50%; transform: translateX(-50%); }
            .footer-nav-link:hover { padding-left: 0; }
        }

        @media (max-width: 576px) {
            .hero-title { font-size: 32px; }
            .logos-container { gap: 40px; }
            .logo-image { height: 50px; }
        }

        /* ABOUR PAGE */

        /* Rotating 8-sided bg */
        .meet-ceo-bg-shape, .comments-bg-shape {
            position: absolute;
            width: 900px;
            height: 900px;
            right: -350px;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.09;
            pointer-events: none;
            z-index: 1;
            animation: rotateSlow 80s linear infinite;
        }
        .comments-bg-shape {
            width: 700px;
            right: -300px;
            opacity: 0.07;
        }
        @keyframes rotateSlow {
            from { transform: translateY(-50%) rotate(0deg); }
            to { transform: translateY(-50%) rotate(360deg); }
        }

        /* Section dividers */
        .section-divider {
            position: relative;
            height: 2px;
            margin: 80px 0;
            background: linear-gradient(90deg, rgba(255,150,0,0.8) 0%, rgba(255,150,0,0.4) 25%, rgba(255,150,0,0) 50%, rgba(255,150,0,0.4) 75%, rgba(255,150,0,0.8) 100%);
        }

        /* CEO section content (bootstrap friendly) */
        .meet-ceo-section, .comments-section {
            position: relative;
            overflow: hidden;
            padding: 100px 0;
        }

        .ceo-image {
            width: 100%;
            max-width: 600px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .ceo-bio {
            color: #666;
            line-height: 1.8;
        }

        /* Comment cards (fully migrated to bootstrap grid + custom styling) */
        .comment-card-large, .comment-card, .comment-card-bottom {
            background: white;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .comment-card-large:hover, .comment-card:hover, .comment-card-bottom:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        .comment-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #ff9600;
        }
        .comment-card .comment-avatar, .comment-card-bottom .comment-avatar {
            width: 60px;
            height: 60px;
        }
        .commenter-name {
            font-size: 22px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 5px;
        }
        .commenter-title {
            font-size: 16px;
            color: #ff9600;
            font-weight: 600;
        }
        .comment-text {
            font-size: 18px;
            line-height: 1.7;
            color: #555;
        }
        .star {
            color: #ffc107;
            font-size: 18px;
        }

        @media (max-width: 768px) {
            .meet-ceo-bg-shape, .comments-bg-shape { width: 500px; height: 500px; right: -200px; opacity: 0.06; }
        }
        @media (max-width: 576px) {
            .ceo-image { max-width: 100%; }
            .comment-avatar { width: 50px; height: 50px; }
            .commenter-name { font-size: 18px; }
        }

        /* PROJECT PAGE */
                /* Projects Section */
        .our-projects-section {
            padding: 100px 0;
            background-color: #f8f9fa;
            position: relative;
            overflow: hidden;
        }

        .our-projects-bg-shape {
            position: absolute;
            width: 800px;
            height: 800px;
            left: -300px;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.08;
            pointer-events: none;
            z-index: 1;
            animation: rotateSlow 80s linear infinite;
        }

        @keyframes rotateSlow {
            from { transform: translateY(-50%) rotate(0deg); }
            to { transform: translateY(-50%) rotate(360deg); }
        }

        /* Project Item with Top to Bottom Shutter Hover Effect */
        .project-item {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            aspect-ratio: 4/3;
        }

        .project-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .project-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .project-item:hover .project-image {
            transform: scale(1.05);
        }

        .project-overlay {
            position: absolute;
            top: -100%;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transition: all 0.5s ease;
            padding: 20px;
            text-align: center;
        }

        .project-item:hover .project-overlay {
            top: 0;
        }

        .project-circle {
            width: 70px;
            height: 70px;
            background: #ff9600;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: all 0.4s ease;
            transform: translateY(-20px);
            opacity: 0;
        }

        .project-item:hover .project-circle {
            transform: translateY(0);
            opacity: 1;
            transition-delay: 0.2s;
        }

        .project-arrow {
            color: white;
            font-size: 24px;
            font-weight: bold;
        }

        .project-title {
            color: white;
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 10px;
            transform: translateY(-20px);
            opacity: 0;
            transition: all 0.4s ease;
        }

        .project-item:hover .project-title {
            transform: translateY(0);
            opacity: 1;
            transition-delay: 0.3s;
        }

        .project-category {
            color: #ff9600;
            font-size: 16px;
            font-weight: 500;
            transform: translateY(-20px);
            opacity: 0;
            transition: all 0.4s ease;
        }

        .project-item:hover .project-category {
            transform: translateY(0);
            opacity: 1;
            transition-delay: 0.4s;
        }

        @media (max-width: 768px) {
            .project-title { font-size: 18px; }
            .project-circle { width: 60px; height: 60px; }
            .our-projects-section { padding: 60px 0; }
        }

        /* DESKTOP APPLICATION */
                /* Services Section */
        .our-services-section, .pricing-packages-section, .faq-section {
            position: relative;
            overflow: hidden;
            padding: 100px 0;
        }

        .our-services-bg-shape, .pricing-bg-shape, .faq-bg-shape {
            position: absolute;
            width: 800px;
            height: 800px;
            left: -300px;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.08;
            pointer-events: none;
            z-index: 1;
            animation: rotateSlow 80s linear infinite;
        }

        .pricing-bg-shape {
            left: auto;
            right: -300px;
        }

        .faq-bg-shape {
            left: -300px;
        }

        @keyframes rotateSlow {
            from { transform: translateY(-50%) rotate(0deg); }
            to { transform: translateY(-50%) rotate(360deg); }
        }

        /* Service Buttons */
        .service-btn {
            padding: 20px 25px;
            background-color: white;
            border: none;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            font-size: 20px;
            font-weight: 600;
            color: #2c3e50;
            text-align: left;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            text-decoration: none !important;
            display: block;
            width: 100%;
        }

        .service-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            color: #ff9600;
        }

        .service-btn.active {
            background-color: #ff9600;
            color: white;
        }

        .service-btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background-color: #ff9600;
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }
        .service-btn:hover::after,
        .service-btn.active::after {
            transform: scaleY(1);
        }

        /* Learn More Button */
        .learn-more-btn, .pricing-contact-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 15px 60px 15px 30px;
            font-size: 16px;
            font-weight: 800;
            color: #737373;
            background-color: #ffffff;
            border: none;
            border-radius: 60px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            height: 50px;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 15px rgba(0,0,0,0.12);
            text-decoration: none;
            width: 175px;
        }

        .arrow-circle {
            position: absolute;
            top: 50%;
            right: 10px;
            width: 40px;
            height: 40px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transform: translateY(-50%);
            transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 4px 15px rgba(0,0,0,0.12);
        }

        .arrow-icon {
            position: absolute;
            font-size: 20px;
            transition: opacity 0.35s ease;
            color: #737373;
        }

        .arrow-up { opacity: 1; }
        .arrow-right { opacity: 0; }

        .learn-more-btn:hover, .pricing-contact-btn:hover {
            background-color: #ff7300;
            color: white;
            padding-left: 60px;
            padding-right: 30px;
        }

        .learn-more-btn:hover .arrow-circle, .pricing-contact-btn:hover .arrow-circle {
            transform: translateY(-50%) translateX(-120px);
        }

        .learn-more-btn:hover .arrow-up, .pricing-contact-btn:hover .arrow-up { opacity: 0; }
        .learn-more-btn:hover .arrow-right, .pricing-contact-btn:hover .arrow-right { opacity: 1; }

        .services-image {
            width: 100%;
            max-width: 500px;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            margin-bottom: 30px;
        }

        .services-content {
            background: white;
            border-radius: 14px;
            padding: 40px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }

        /* Pricing Cards */
        .pricing-card {
            background-color: white;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            padding: 40px 30px;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .pricing-card.starter { border-top: 5px solid #3498db; }
        .pricing-card.standard { border-top: 5px solid #2ecc71; }
        .pricing-card.premium { border-top: 5px solid #ff9600; }

        .package-name {
            font-size: 24px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
            text-align: center;
        }

        .package-price {
            font-size: 48px;
            font-weight: 900;
            color: #2c3e50;
            margin-bottom: 5px;
            text-align: center;
        }

        .package-period {
            font-size: 16px;
            color: #7f8c8d;
            margin-bottom: 30px;
            text-align: center;
        }

        .package-features {
            list-style: none;
            margin-bottom: 40px;
            flex-grow: 1;
            padding-left: 0;
        }

        .package-features li {
            padding: 12px 0;
            border-bottom: 1px solid #ecf0f1;
            color: #555;
            font-size: 16px;
            position: relative;
            padding-left: 25px;
        }

        .package-features li:last-child { border-bottom: none; }
        .package-features li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #2ecc71;
            font-weight: bold;
        }

        /* FAQ Items */
        .faq-item {
            background: white;
            border-radius: 12px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }

        .faq-question {
            padding: 25px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
        }

        .faq-question:hover { background-color: #f8f9fa; }
        .faq-question h3 {
            font-size: 20px;
            font-weight: 600;
            color: #2c3e50;
            margin: 0;
        }

        .faq-toggle {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: #ff9600;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            font-weight: bold;
            transition: all 0.3s ease;
            flex-shrink: 0;
            margin-left: 20px;
        }

        .faq-item.active .faq-toggle {
            background: #2c3e50;
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s ease;
            color: #666;
            line-height: 1.7;
        }

        .faq-item.active .faq-answer {
            padding: 0 30px 25px;
            max-height: 500px;
        }

        /* Section Divider */
        .section-divider {
            height: 2px;
            margin: 80px 0;
            background: linear-gradient(90deg, rgba(255,150,0,0.8) 0%, rgba(255,150,0,0.4) 25%, rgba(255,150,0,0) 50%, rgba(255,150,0,0.4) 75%, rgba(255,150,0,0.8) 100%);
        }

        @media (max-width: 768px) {
            .our-services-section, .pricing-packages-section, .faq-section { padding: 60px 0; }
            .services-content { padding: 25px; }
            .package-price { font-size: 36px; }
        }

        @media (max-width: 576px) {
            .service-btn { font-size: 18px; padding: 15px 20px; }
        }