        :root {
            --primary-black: #1A1A1A;
            --secondary-black: #0D0D0D;
            --primary-orange: #FF6F00;
            --secondary-orange: #CC5500;
            --text-light: #F0F0F0;
            --text-dark: #A3A3A3;
            --border-color: #333333;
            --card-background: #272727;
            --section-padding: 80px 0;
            --primary-blue: #007bff;
            --accent-orange: #FF6F00;
            --section-green-bg: #223D3C;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background-color: var(--primary-black);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
            overflow-y: auto;
            /* padding-top: 120px; */
        }


        /* Header */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(26, 26, 26, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 0rem 0; /* Reduced padding for the header container itself */
            transition: all 0.3s ease;
        }

        .header.scrolled {
            background: rgba(13, 13, 13, 0.98);
            box-shadow: 0 2px 20px rgba(255, 111, 0, 0.1);
            padding: 0rem 0; /* Even less padding when scrolled */
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
            min-height: 50px; /* Set a minimum height to ensure consistent sizing */
        }

        .logo {
            font-size: 1.8rem; /* Reduced from 2rem */
            font-weight: bold;
            color: var(--primary-orange);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 5px 0; /* Slight padding to align with links if needed */
        }

        .logo::before {
            content: "📋";
            font-size: 1.3rem; /* Reduced from 1.5rem */
            animation: pulse 2s infinite;
        }

        .nav-links {
            display: flex;
            gap: 1.5rem; /* Reduced gap between links */
            list-style: none;
            position: relative;
        }

        .nav-links li {
            position: relative;
        }

        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            padding: 8px 0; /* Reduced from 10px 0 */
            display: block;
        }

        /* Existing .nav-links a::after hover effect */
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-orange);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Dropdown specific styles */
        .dropdown-arrow {
            margin-left: 6px; /* Slightly reduced */
            font-size: 0.7em; /* Slightly reduced */
            transition: transform 0.3s ease;
        }

        .has-dropdown:hover .dropdown-arrow {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            list-style: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--card-background);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
            min-width: 180px; /* Reduced min-width */
            opacity: 0;
            visibility: hidden;
            transform: translateY(5px); /* Reduced initial Y offset */
            transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
            z-index: 1010;
        }

        .dropdown-menu li {
            border-bottom: 1px solid var(--border-color);
        }

        .dropdown-menu li:last-child {
            border-bottom: none;
        }

        .dropdown-menu a {
            padding: 10px 15px; /* Reduced padding */
            color: var(--text-light);
            text-decoration: none;
            display: block;
            white-space: nowrap;
            transition: background-color 0.2s ease, color 0.2s ease;
        }

        .dropdown-menu a:hover {
            background-color: var(--primary-black);
            color: var(--primary-orange);
        }

        /* Show dropdown on hover */
        .has-dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .register-button {
            background-color: var(--accent-orange);
            color: var(--text-light) !important;
            padding: 8px 15px; /* Reduced padding */
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s ease;
            margin-left: 15px; /* Reduced margin */
            font-size: 0.95rem; /* Slightly smaller font */
        }

        .register-button:hover {
            background-color: var(--secondary-orange);
        }

        .nav-container nav {
            display: flex;
            align-items: center;
        }

        /* 🔹 Hamburger Button */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  width: 30px;
  height: 25px;
  gap: 5px;
  background: none;
  border: none;
  z-index: 1100; /* Stays above menu */
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--text-light);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* 🔹 Animate hamburger into "X" */
.nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* 🔹 Mobile Navigation */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-container nav {
    position: fixed;
    top: 0;
    left: 100%; /* Start offscreen */
    width: 100%;
    height: 100vh;
    background: var(--secondary-black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 80px; /* Leave space for header */
    transition: left 0.4s ease;
    z-index: 1000;
  }

  .nav-container nav.active {
    left: 0; /* Slide in */
  }

  .nav-links {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    width: 100%;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    font-size: 1.2rem;
    padding: 12px 0;
    display: block;
    width: 100%;
  }

  /* Disable underline hover effect on mobile */
  .nav-links a::after {
    display: none;
  }

  /* 🔹 Dropdowns on Mobile */
  .has-dropdown {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    background: var(--primary-black);
    border: none;
    border-radius: 0;
    box-shadow: none;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .has-dropdown.active .dropdown-menu {
    max-height: 500px; /* Expand dropdown */
  }

  .dropdown-menu a {
    padding: 10px;
    text-align: center;
    font-size: 1rem;
  }

  /* Dropdown arrow */
  .dropdown-arrow {
    margin-left: 6px;
    transition: transform 0.3s ease;
  }
  .has-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
  }

  /* Register button in mobile */
  .register-button {
    margin-top: 25px;
    font-size: 1.1rem;
    padding: 10px 20px;
  }
}


       
        /* Hero Section */
        .hero-home {
            min-height: 100vh;
            height: auto;
            background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 50%, var(--section-green-bg) 100%);
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .floating-element {
            position: absolute;
            background: var(--primary-orange);
            opacity: 0.1;
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .floating-element:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            width: 120px;
            height: 120px;
            top: 60%;
            right: 15%;
            animation-delay: 2s;
        }

        .floating-element:nth-child(3) {
            width: 60px;
            height: 60px;
            bottom: 20%;
            left: 70%;
            animation-delay: 4s;
        }

        .hero-content-home {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            z-index: 2;
        }

        .hero-text-home h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, var(--text-light), var(--primary-orange));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: slideInLeft 1s ease-out;
        }

        .hero-text-home p {
            font-size: 1.2rem;
            color: var(--text-dark);
            margin-bottom: 2rem;
            animation: slideInLeft 1s ease-out 0.3s both;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            animation: slideInLeft 1s ease-out 0.6s both;
        }

        .btn-primary,
        .btn-secondary {
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: linear-gradient(45deg, var(--primary-orange), var(--secondary-orange));
            color: white;
        }

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

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

        .btn-secondary {
            background: transparent;
            color: var(--primary-orange);
            border: 2px solid var(--primary-orange);
        }

        .btn-secondary:hover {
            background: var(--primary-orange);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(255, 111, 0, 0.3);
        }

        .hero-visual {
            position: relative;
            animation: slideInRight 1s ease-out;
        }

        .dashboard-mockup {
            background: var(--card-background);
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid var(--border-color);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
        }

        .dashboard-mockup::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-orange), var(--primary-blue));
        }

        .dashboard-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .dashboard-title {
            font-size: 1.2rem;
            color: var(--text-light);
        }

        .status-indicator {
            background: #00ff88;
            color: var(--primary-black);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.9rem;
            animation: pulse 2s infinite;
        }

        .tender-cards {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .tender-card {
            background: var(--primary-black);
            padding: 1rem;
            border-radius: 10px;
            border-left: 4px solid var(--primary-orange);
            animation: slideInUp 0.6s ease-out;
        }

        .tender-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .tender-card:nth-child(3) {
            animation-delay: 0.4s;
        }

        .tender-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .tender-value {
            color: var(--primary-orange);
            font-weight: bold;
        }

        /* New Search Bar Styles */
        .search-container-home {
            margin-top: 3rem;
            animation: slideInLeft 1s ease-out 0.9s both;
            background: var(--card-background);
            border-radius: 10px;
            padding: 1.5rem;
            border: 1px solid var(--border-color);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }

        .toggle-buttons {
            display: flex;
            margin-bottom: 1.5rem;
            border-radius: 8px;
            overflow: hidden;
            background-color: var(--primary-black);
            border: 1px solid var(--border-color);
        }

        .toggle-btn {
            flex: 1;
            padding: 0.8rem 1.2rem;
            border: none;
            background-color: transparent;
            color: var(--text-dark);
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
            outline: none;
        }

        .toggle-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--primary-black);
            /* Default background */
            z-index: -1;
            transition: background-color 0.3s ease;
        }

        .toggle-btn.active {
            color: var(--primary-black);
            font-weight: bold;
        }

        .toggle-btn.active::before {
            background-color: var(--primary-orange);
            box-shadow: 0 2px 10px rgba(255, 111, 0, 0.3);
        }

        .toggle-btn:not(.active):hover {
            color: var(--primary-orange);
        }


        .search-input-wrapper-home {
            display: flex;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            background-color: var(--primary-black);
        }

        .search-input {
            flex-grow: 1;
            padding: 1rem 1.2rem;
            border: none;
            background-color: transparent;
            color: var(--text-light);
            font-size: 1rem;
            outline: none;
        }

        .search-input::placeholder {
            color: var(--text-dark);
            opacity: 0.7;
        }

        .search-button {
            background: linear-gradient(45deg, var(--primary-orange), var(--secondary-orange));
            border: none;
            padding: 1rem 1.5rem;
            color: white;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .search-button:hover {
            background: linear-gradient(45deg, var(--secondary-orange), var(--primary-orange));
        }

        /* Responsive adjustments for search bar */
        @media (max-width: 768px) {
            .search-container-home {
                margin-top: 2rem;
                padding: 1rem;
            }

            .toggle-buttons {
                flex-direction: column;
                margin-bottom: 1rem;
            }

            .toggle-btn {
                width: 100%;
                border-radius: 0;
            }

            .toggle-btn:first-child {
                border-top-left-radius: 8px;
                border-top-right-radius: 8px;
            }

            .toggle-btn:last-child {
                border-bottom-left-radius: 8px;
                border-bottom-right-radius: 8px;
            }
        }

        /* Services Section */

        .services-home {
            background-color: var(--secondary-black);
            padding: var(--section-padding);
            color: var(--text-light);
        }

        .container-home {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .section-header-home {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title-home {
            font-size: 2.8em;
            color: var(--primary-orange);
            margin-bottom: 15px;
            font-weight: 700;
        }

        .section-subtitle-home {
            font-size: 1.2em;
            color: var(--text-dark);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .services-grid-home {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card-home {
            background-color: var(--card-background);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .service-card-home:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
        }

        .service-image {
            width: 60px;
            height: 60px;
            margin-bottom: 25px;
            background-color: var(--primary-orange);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 2em;
            color: var(--primary-black);
            /* Color for the text within the placeholder */
            font-weight: bold;
            /* For actual icons, you'd replace the background and text styles */
        }

        .service-title-home {
            font-size: 1.6em;
            color: var(--primary-orange);
            margin-bottom: 15px;
            font-weight: 600;
        }

        .service-description-home {
            font-size: 1em;
            color: var(--text-dark);
            line-height: 1.7;
        }

        .service-icon {
            font-size: 3em;
            /* Adjust size as needed */
            color: var(--text-light);
            /* Example color, adjust to your brand */
            margin-bottom: 15px;
        }

        /* Responsive adjustments */
        @media (max-width: 992px) {
            .section-title-home {
                font-size: 2.2em;
            }

            .section-subtitle-home {
                font-size: 1.1em;
            }

            .service-title-home {
                font-size: 1.4em;
            }

            .service-description-home {
                font-size: 0.95em;
            }
        }

        @media (max-width: 768px) {
            .section-header-home {
                margin-bottom: 40px;
            }

            .section-title-home {
                font-size: 2em;
            }

            .section-subtitle-home {
                font-size: 1em;
            }

            .services-grid-home {
                grid-template-columns: 1fr;
            }

            .service-card-home {
                padding: 25px;
            }

            .service-image {
                margin-bottom: 20px;
            }
        }

        @media (max-width: 480px) {
            .services-home {
                padding: 60px 0;
            }

            .section-title-home {
                font-size: 1.8em;
            }

            .section-subtitle-home {
                font-size: 0.9em;
            }

            .service-card-home {
                padding: 20px;
            }

            .service-title-home {
                font-size: 1.3em;
            }
        }

        /* Process Section */
        .process-home {
            padding: var(--section-padding);
            background: var(--section-green-bg);
        }

        .process-steps-home {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .process-step-home {
            text-align: center;
            position: relative;
        }

        .step-number-home {
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, var(--primary-orange), var(--secondary-orange));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 1.5rem;
            position: relative;
            z-index: 2;
        }

        .step-number-home::before {
            content: '';
            position: absolute;
            width: 100px;
            height: 100px;
            border: 2px solid var(--primary-orange);
            border-radius: 50%;
            opacity: 0.3;
            animation: pulse 2s infinite;
        }

        .step-title-home {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: var(--text-light);
        }

        .step-description-home {
            color: var(--text-dark);
        }

        /* Stats Section */
        .stats-home {
            padding: var(--section-padding);
            background: var(--primary-black);
        }

        .stats-grid-home {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: center;
        }

        .stat-item-home {
            padding: 2rem;
        }

        .stat-number-home {
            font-size: 3rem;
            font-weight: bold;
            color: var(--primary-orange);
            margin-bottom: 0.5rem;
            display: block;
        }

        .stat-label-home {
            color: var(--text-dark);
            font-size: 1.1rem;
        }

        /* Contact Section */
        .contact-home {
            padding: var(--section-padding);
            background: var(--secondary-black);
        }

        .contact-content-home {
            display: flex;
            /* Changed to flex */
            flex-direction: column;
            /* Stack children vertically */
            align-items: center;
            /* Center items horizontally */
            gap: 2rem;
        }

        .contact-form-home {
            background: var(--card-background);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid var(--border-color);
            max-width: 600px;
            /* Add a max-width to the form so it doesn't stretch too wide */
            width: 100%;
            /* Ensure it takes full width up to max-width */
        }

        .form-group-home {
            margin-bottom: 1.5rem;
        }

        .form-group-home label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--text-light);
        }

        .form-group-home input,
        .form-group-home textarea {
            width: 100%;
            padding: 1rem;
            background: var(--primary-black);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            color: var(--text-light);
            font-size: 1rem;
        }

        .form-group-home input:focus,
        .form-group-home textarea:focus {
            outline: none;
            border-color: var(--primary-orange);
            box-shadow: 0 0 10px rgba(255, 111, 0, 0.1);
        }


        /* Remove or adjust responsive design for contact-content if needed,
   but with flex column and align-items: center, it should adapt well */
        @media (max-width: 768px) {

            .contact-form-home {
                padding: 1.5rem;
                /* Adjust padding for smaller screens */
            }
        }

        /* Animations */
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
                opacity: 1;
            }

            50% {
                transform: scale(1.1);
                opacity: 0.7;
            }
        }

        @keyframes float {

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

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

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-content-home {
                grid-template-columns: 1fr;
                text-align: center;
            }

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

            /* .nav-links {
                display: none;
            } */

            .contact-content-home {
                grid-template-columns: 1fr;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
            }
        }

        /* Scroll animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Live counter animation */
        .counting {
            animation: countUp 2s ease-out;
        }

        @keyframes countUp {
            from {
                opacity: 0;
                transform: scale(0.5);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }






































        .container-other {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

                  /* Hero Section */
        .hero-section-other {
            background: linear-gradient(135deg, var(--primary-black), var(--section-green-bg));
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .hero-section-other::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 70%, rgba(255, 111, 0, 0.1) 0%, transparent 50%);
        }

        .hero-content-other {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }

        .hero-badge-other {
            display: inline-block;
            background: rgba(255, 111, 0, 0.1);
            border: 1px solid var(--primary-orange);
            padding: 8px 20px;
            border-radius: 20px;
            color: var(--primary-orange);
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 30px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }
        }

        .hero-title-other {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 25px;
            background: linear-gradient(45deg, var(--text-light), var(--primary-orange));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.2;
        }

        .hero-subtitle-other {
            font-size: 1.25rem;
            color: var(--text-dark);
            margin-bottom: 40px;
            line-height: 1.7;
        }

        .hero-buttons-other {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 15px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 16px;
        }

        .btn-primary {
            background: linear-gradient(45deg, var(--primary-orange), var(--secondary-orange));
            color: white;
            box-shadow: 0 10px 30px rgba(255, 111, 0, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 111, 0, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-light);
            border: 2px solid var(--border-color);
        }

        .btn-secondary:hover {
            border-color: var(--primary-orange);
            color: var(--primary-orange);
            transform: translateY(-3px);
        }

        /* Services Grid */
        .services-section-other {
            padding: var(--section-padding);
            background: var(--primary-black);
        }

        .section-header-other {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title-other {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--text-light);
        }

        .section-subtitle-other {
            font-size: 1.2rem;
            color: var(--text-dark);
            max-width: 700px;
            margin: 0 auto;
        }

        .services-grid-other {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .service-card-other {
            background: var(--card-background);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .service-card-other::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(45deg, var(--primary-orange), var(--secondary-orange));
        }

        .service-card-other:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
            border-color: var(--primary-orange);
        }

        .service-icon-other {
            width: 70px;
            height: 70px;
            background: linear-gradient(45deg, var(--primary-orange), var(--secondary-orange));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            margin-bottom: 25px;
        }

        .service-title-other {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--text-light);
        }

        .service-description-other {
            color: var(--text-dark);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .service-features-other {
            list-style: none;
        }

        .service-features-other li {
            color: var(--text-dark);
            margin-bottom: 8px;
            padding-left: 20px;
            position: relative;
        }

        .service-features-other li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-orange);
            font-weight: bold;
        }

        /* Benefits Section */
        .benefits-section-other {
            padding: var(--section-padding);
            background: var(--section-green-bg);
            position: relative;
        }

        .benefits-section-other::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent, rgba(255, 111, 0, 0.05));
        }

        .benefits-grid-other {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 2;
        }

        .benefit-card-other {
            background: rgba(39, 39, 39, 0.8);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 30px;
            border: 1px solid var(--border-color);
            text-align: center;
            transition: all 0.3s ease;
        }

        .benefit-card-other:hover {
            transform: translateY(-8px);
            border-color: var(--primary-orange);
            box-shadow: 0 15px 35px rgba(255, 111, 0, 0.2);
        }

        .benefit-number-other {
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, var(--primary-orange), var(--secondary-orange));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: bold;
            color: white;
            margin: 0 auto 20px;
        }

        .benefit-title-other {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--text-light);
        }

        .benefit-description-other {
            color: var(--text-dark);
            line-height: 1.6;
        }

        /* Process Section */
        .process-section-other {
            padding: var(--section-padding);
            background: var(--primary-black);
        }

        .process-timeline-other {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .process-step-other {
            position: relative;
            text-align: center;
        }

        .process-step-other::after {
            content: '';
            position: absolute;
            top: 35px;
            right: -20px;
            width: 40px;
            height: 2px;
            background: var(--primary-orange);
            z-index: 1;
        }

        .process-step-other:last-child::after {
            display: none;
        }

        .process-number-other {
            width: 70px;
            height: 70px;
            background: linear-gradient(45deg, var(--primary-orange), var(--secondary-orange));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            color: white;
            margin: 0 auto 20px;
            position: relative;
            z-index: 2;
        }

        .process-title-other {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--text-light);
        }

        .process-description-other {
            color: var(--text-dark);
            font-size: 0.95rem;
        }

        /* CTA Section */
        .cta-section-other {
            padding: var(--section-padding);
            background: linear-gradient(135deg, var(--secondary-black), var(--primary-black));
            text-align: center;
            position: relative;
        }

        .cta-section-other::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at center, rgba(255, 111, 0, 0.1) 0%, transparent 70%);
        }

        .cta-content-other {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-title-other {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 25px;
            background: linear-gradient(45deg, var(--text-light), var(--primary-orange));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .cta-subtitle-other {
            font-size: 1.2rem;
            color: var(--text-dark);
            margin-bottom: 40px;
        }

        .cta-buttons-other {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Footer */
       .main-footer-other {
    background-color: var(--secondary-black); /* Keeping it dark */
    color: var(--text-light);
    padding: 70px 0 30px; /* Increased top padding, adjusted bottom */
    font-family: 'Poppins', sans-serif;
    border-top: 1px solid var(--border-color); /* More consistent border */
}

.footer-content-other {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* Responsive grid with min width */
    gap: 30px; /* Increased gap for better spacing */
    margin-bottom: 50px; /* Increased margin below content */
}

.footer-section-other {
    padding: 0 15px; /* Added some internal padding */
}

.footer-section-other h3 {
    color: var(--primary-orange); /* Using primary orange for titles */
    font-size: 22px; /* Slightly larger title */
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px; /* More space for underline */
    font-weight: 700; /* Bolder titles */
}

.footer-section-other h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px; /* Slightly longer underline */
    height: 4px; /* Thicker underline */
    background-color: var(--primary-orange); /* Orange underline */
    border-radius: 2px;
}

.footer-section-other p,
.footer-section-other a {
    color: var(--text-dark); /* Darker text for readability */
    font-size: 15px;
    line-height: 1.8;
    text-decoration: none;
    display: block;
    margin-bottom: 12px; /* More spacing between links/lines */
    transition: color 0.3s ease, transform 0.2s ease; /* Added transform for hover */
}

.footer-section-other a:hover {
    color: var(--primary-orange); /* Hover color */
    transform: translateX(5px); /* Slight slide effect on hover */
}

/* Specific styling for contact info for better distinction */
.footer-section-other.contact p {
    display: flex; /* Allow icon next to text if you add one */
    align-items: center;
    gap: 10px; /* Space between icon and text */
}

.footer-bottom-other {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color); /* Consistent border */
    margin-top: 20px; /* Added margin to push it down from contact cards */
}

.footer-bottom-other p {
    color: var(--text-dark); /* Consistent color */
    font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 992px) { /* Adjust breakpoint for larger tablets */
    .footer-content-other {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .footer-content-other {
        grid-template-columns: 1fr; /* Stack columns on smaller screens */
        text-align: center; /* Center align all text */
        gap: 40px; /* More gap when stacked */
    }

    .footer-section-other h3::after {
        left: 50%;
        transform: translateX(-50%); /* Center underline */
    }

    .footer-section-other p,
    .footer-section-other a {
        display: inline-block; /* Allow text to wrap naturally if needed, but still block-like */
        margin-left: auto;
        margin-right: auto;
    }

    .footer-section-other.contact p {
        justify-content: center; /* Center contact icons/text */
    }
}

@media (max-width: 480px) {
    .main-footer-other {
        padding: 50px 0 20px;
    }

    .footer-section-other h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .footer-section-other p,
    .footer-section-other a {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .footer-bottom-other p {
        font-size: 13px;
    }
}

        /* Contact Info Cards */
        .contact-cards-other {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .contact-card-other {
            background: var(--card-background);
            border-radius: 15px;
            padding: 25px;
            border: 1px solid var(--border-color);
            text-align: center;
            transition: all 0.3s ease;
        }

        .contact-card-other:hover {
            border-color: var(--primary-orange);
            transform: translateY(-5px);
        }

        .contact-icon-other {
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, var(--primary-orange), var(--secondary-orange));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: white;
            margin: 0 auto 15px;
        }

        .contact-title-other {
            font-weight: 600;
            color: var(--text-light);
            margin-bottom: 10px;
        }

        .contact-info-other {
            color: var(--text-dark);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu-other {
                display: none;
            }

            .hero-title-other {
                font-size: 2.5rem;
            }

            .section-title-other {
                font-size: 2rem;
            }

            .cta-title-other {
                font-size: 2rem;
            }

            .hero-buttons-other,
            .cta-buttons-other {
                flex-direction: column;
                align-items: center;
            }

            .services-grid-other {
                grid-template-columns: 1fr;
            }

            .process-step-other::after {
                display: none;
            }
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            animation: fadeIn 1s ease forwards;
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        .slide-up {
            transform: translateY(30px);
            opacity: 0;
            animation: slideUp 0.8s ease forwards;
        }

        @keyframes slideUp {
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }









        /* Popup Overlay */
.popup-overlay {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1000; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.6); /* Black w/ opacity */
  justify-content: center;
  align-items: center;
}

/* Popup Content */
.popup-content {
  background-color: #fefefe;
  margin: auto;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  width: 90%;
  max-width: 450px;
  text-align: center;
  animation: fadeIn 0.3s ease-out;
}

/* Close Button */
.close-btn {
  color: #aaa;
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
  color: #333;
  text-decoration: none;
}

/* Form Styling */
.popup-content h3 {
  color: var(--accent-orange);
  margin-bottom: 25px;
  font-size: 1.8em;
}

.form-group {
  margin-bottom: 18px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #555;
}

.form-group input[type="text"],
.form-group input[type="tel"] {
  width: calc(100% - 20px);
  padding: 12px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
}

.form-group input[type="text"]:focus,
.form-group input[type="tel"]:focus {
  border-color: var(--primary-black);
  outline: none;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

.checkbox-group {
  display: flex;
  align-items: center;
  margin-top: 25px;
  margin-bottom: 25px;
}

.checkbox-group input[type="checkbox"] {
  margin-right: 10px;
  width: 20px;
  height: 20px;
  accent-color: var(--primary-orange); /* Colors the checkbox itself */
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: normal;
  color: #333;
  cursor: pointer;
}

.popup-content button[type="submit"] {
  background-color: var(--accent-orange);
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.popup-content button[type="submit"]:hover {
  background-color:var(--accent-orange);
  transform: translateY(-2px);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}


/* Inquiry Form */


/* Modal Styles */
 .modal {
    display: none; 
    position: fixed;
    z-index: 10000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.4); 
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 30px;
    border: 1px solid #888;
    width: 80%; 
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    position: relative;
    box-sizing: border-box; 
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
}

.close-button:hover,
.close-button:focus {
    color: black;
    text-decoration: none;
}

h2 {
    text-align: center;
    margin-bottom: 25px;
    color:var(--accent-orange);
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Include padding in width */
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
}

.checkbox-group label {
    margin-bottom: 0; /* Override default label margin */
    font-weight: normal;
}

.btn-submit {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: var(--accent-orange);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #218838;
}