        :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 */
        }

        /* Desktop Navigation Styles */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    background-color: var(--secondary-black);
    height: 70px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.logo {
    font-size: 28px;
    font-weight: bold;
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}
.logo:hover {
    color: var(--primary-orange);
}
nav {
    display: flex;
    align-items: center;
    gap: 30px;
}
.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 5px;
    margin: 0;
    padding: 0;
}
.nav-links li {
    position: relative;
}
.nav-links > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 18px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 5px;
}
.nav-links > li > a:hover {
    color: var(--primary-orange);
    background-color: rgba(255, 111, 0, 0.1);
}
.dropmenu-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}
.has-dropmenu:hover .dropmenu-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu Styles */
/* Fixed Dropdown Menu Styles */
.dropmenu-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--card-background);
    min-width: 240px;
    list-style: none;
    padding: 8px 0;
    margin-top: 0;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    z-index: 1001;
    pointer-events: none;
}
.has-dropmenu:hover .dropmenu-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Ensure smooth transition when moving from parent to dropdown */
.has-dropmenu {
    position: relative;
}
.has-dropmenu::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
}
.dropmenu-menu li {
    list-style: none;
}
.dropmenu-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}
.dropmenu-menu li a:hover {
    color: var(--text-light);
    background-color: rgba(255, 111, 0, 0.15);
    border-left-color: var(--primary-orange);
    padding-left: 25px;
}

/* Register Button */
.register-button {
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: var(--text-light);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.3);
    border: 2px solid transparent;
}
.register-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 111, 0, 0.4);
    border-color: var(--primary-orange);
    background: var(--secondary-black);
    color: var(--primary-orange);
}

/* Active state for navigation links */
.nav-links li a.active {
    color: var(--primary-orange);
    background-color: rgba(255, 111, 0, 0.1);
}

/* Smooth transitions for all links */
a {
    transition: all 0.3s ease;
}
/* Additional hover effect for dropdown parent */
.has-dropmenu > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-orange);
    transition: width 0.3s ease;
}
.has-dropmenu:hover > a::after {
    width: 80%;
}

/* Ensure dropdown appears above other content */
.has-dropmenu {
    z-index: 100;
}
.has-dropmenu:hover {
    z-index: 1002;
}
     
/* Mobile Navigation Styles */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}
.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}
.nav-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Media Queries */
@media screen and (max-width: 1024px) {
    .nav-container {
        padding: 0 20px;
    }
    .nav-links li a {
        font-size: 14px;
    }
    .dropmenu-menu {
        min-width: 200px;
    }
}

@media screen and (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--secondary-black);
        transition: right 0.3s ease;
        overflow-y: auto;
        padding-top: 80px;
        z-index: 1000;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.5);
    }
    nav.active {
        right: 0;
    }
    .nav-links {
        flex-direction: column;
        padding: 0;
        margin: 0;
    }
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    .nav-links > li > a {
        display: block;
        padding: 15px 20px;
        color: var(--text-light);
    }
    .dropmenu-arrow {
        float: right;
        transition: transform 0.3s ease;
    }
    .has-dropmenu.active .dropmenu-arrow {
        transform: rotate(180deg);
    }
    .dropmenu-menu {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: var(--card-background);
        padding: 0;
        margin: 0;
    }
    .has-dropmenu.active .dropmenu-menu {
        display: block;
    }
    .dropmenu-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .dropmenu-menu li a {
        padding: 12px 20px 12px 40px;
        color: var(--text-dark);
        display: block;
    }
    .dropmenu-menu li a:hover {
        background-color: rgba(255, 111, 0, 0.1);
        color: var(--primary-orange);
    }
    .register-button {
        margin: 20px;
        display: block;
        text-align: center;
        padding: 12px 24px !important;
        background-color: var(--primary-orange);
        color: var(--text-light) !important;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }
    .register-button:hover {
        background-color: var(--secondary-orange);
    }
    /* Overlay for mobile menu */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: 999;
    }
    .nav-overlay.active {
        display: block;
    }
}

@media screen and (max-width: 480px) {
    .logo {
        font-size: 20px;
    }
    nav {
        width: 100%;
        right: -100%;
    }
    .nav-links > li > a {
        padding: 12px 15px;
        font-size: 14px;
    }
    .dropmenu-menu li a {
        padding: 10px 15px 10px 30px;
        font-size: 13px;
    }
}

       
        /* 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);
            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);
            font-weight: bold;
        }

        .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;
            color: var(--text-light);
            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;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }

        .contact-form-home {
            background: var(--card-background);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid var(--border-color);
            max-width: 600px;
            width: 100%;
        }

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


        @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);
            }
        }

        /* Hero Section Media Queries */

@media screen and (max-width: 1200px) {
    .hero-text-home h1 {
        font-size: 3rem;
    }

    .hero-text-home p {
        font-size: 1.1rem;
    }

    .hero-content-home {
        gap: 3rem;
    }
}

@media screen and (max-width: 968px) {
    .hero-content-home {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 4rem 2rem;
    }

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

    .hero-text-home p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .cta-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .floating-element:nth-child(1) {
        width: 60px;
        height: 60px;
        top: 15%;
        left: 5%;
    }

    .floating-element:nth-child(2) {
        width: 90px;
        height: 90px;
        top: 70%;
        right: 10%;
    }

    .floating-element:nth-child(3) {
        width: 50px;
        height: 50px;
        bottom: 15%;
        left: 60%;
    }
}

@media screen and (max-width: 768px) {
    .hero-home {
        min-height: auto;
        padding: 6rem 0 4rem;
    }

    .hero-content-home {
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

    .hero-text-home h1 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .hero-text-home p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }

    .cta-buttons a,
    .cta-buttons button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .floating-element:nth-child(1) {
        width: 50px;
        height: 50px;
        top: 10%;
        left: 5%;
    }

    .floating-element:nth-child(2) {
        width: 70px;
        height: 70px;
        top: 75%;
        right: 5%;
    }

    .floating-element:nth-child(3) {
        width: 40px;
        height: 40px;
        bottom: 10%;
        left: 50%;
    }
}

@media screen and (max-width: 480px) {
    .hero-home {
        padding: 5rem 0 3rem;
    }

    .hero-content-home {
        padding: 1.5rem 1rem;
    }

    .hero-text-home h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .hero-text-home p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
        line-height: 1.6;
    }

    .cta-buttons {
        gap: 0.6rem;
    }

    .cta-buttons a,
    .cta-buttons button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .floating-element {
        opacity: 0.05;
    }

    .floating-element:nth-child(1) {
        width: 40px;
        height: 40px;
    }

    .floating-element:nth-child(2) {
        width: 60px;
        height: 60px;
    }

    .floating-element:nth-child(3) {
        width: 35px;
        height: 35px;
    }
}

@media screen and (max-width: 360px) {
    .hero-text-home h1 {
        font-size: 1.5rem;
    }

    .hero-text-home p {
        font-size: 0.85rem;
    }

    .hero-content-home {
        padding: 1rem 0.8rem;
    }
}


@media screen and (max-width: 768px) {
    /* --- Specific Mobile Header & Navigation Styles for Hero Section Context --- */

    /* Ensure the main header bar containing the logo and toggle is fixed and visible */
    .nav-container {
        /* This is your fixed top bar, adjust background and height as needed */
        position: fixed; /* Keep it fixed at the top */
        top: 0;
        left: 0;
        width: 100%;
        height: 70px; /* Adjust to your preferred mobile header height */
        background-color: var(--secondary-black); /* Matching your nav's background */
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        z-index: 1100; /* Higher z-index to be on top of everything, including the sliding nav */
        padding: 0 20px; /* Adjust padding for mobile */
        display: flex; /* Ensure logo and toggle are aligned */
        justify-content: space-between; /* Space logo and toggle apart */
        align-items: center;
    }

    .logo {
        font-size: 24px; /* Adjust logo size for mobile */
        z-index: 1101; /* Keep logo above toggle and nav */
    }

    /* Hamburger menu toggle button */
    .nav-toggle {
        display: flex; /* Show the hamburger icon on mobile */
        z-index: 1102; /* Ensure toggle is clickable on top of everything */
        position: relative; /* May be needed for z-index context */
        margin-left: auto; /* Push toggle to the right */
        padding: 5px; /* Add padding for easier tapping */
    }

    /* Mobile Navigation Menu Itself (slides out) */
    nav {
        position: fixed;
        top: 0; /* Align with the top of the viewport */
        right: -280px; /* Initially hidden off-screen to the right */
        width: 280px; /* Width of the sliding navigation */
        height: 100vh;
        background-color: var(--secondary-black); /* Same as your header/body background */
        transition: right 0.3s ease-out; /* Smooth sliding animation */
        overflow-y: auto; /* Allow scrolling if menu content is tall */
        padding-top: 70px; /* Important: Push menu content down to clear the fixed header */
        z-index: 1050; /* Needs to be above page content but below the main header bar */
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.4);
        display: flex; /* Use flexbox for menu items */
        flex-direction: column; /* Stack menu items vertically */
    }

    nav.active {
        right: 0; /* Slide the menu into view */
    }

    /* Mobile Navigation Links and Dropdowns */
    .nav-links {
        flex-direction: column; /* Ensure links stack */
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid var(--border-color); /* Separator for menu items */
    }

    .nav-links > li > a {
        padding: 15px 20px; /* Larger tap target */
        color: var(--text-light);
        display: flex; /* For aligning text and arrow */
        justify-content: space-between; /* Push arrow to the right */
        align-items: center;
        text-decoration: none;
        font-size: 16px;
    }

    .dropmenu-arrow {
        font-size: 10px;
        transition: transform 0.3s ease;
    }

    /* Dropdown specific styles for mobile */
    .dropmenu-menu {
        position: static; /* No absolute positioning on mobile */
        display: none; /* Hidden by default */
        opacity: 1; /* Always visible when displayed */
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: var(--primary-black); /* Slightly different background for sub-menu */
        padding: 0;
        margin: 0;
        border: none;
        border-top: 1px solid var(--border-color); /* Add a top border for separation */
    }

    .has-dropmenu.active .dropmenu-menu {
        display: block; /* Show dropdown when parent is active (clicked) */
    }

    .dropmenu-menu li a {
        padding: 12px 20px 12px 40px; /* Indent sub-items */
        font-size: 14px;
        color: var(--text-dark);
        border-left: none; /* No left border on mobile dropdowns */
    }

    .dropmenu-menu li a:hover {
        background-color: rgba(255, 111, 0, 0.15);
        color: var(--primary-orange);
        padding-left: 45px; /* Indent more on hover */
    }

    .register-button {
        margin: 20px auto; /* Center button */
        display: block;
        width: calc(100% - 40px); /* Full width minus margin */
        text-align: center;
        padding: 12px 24px;
        font-size: 16px;
        border-radius: 5px; /* Less rounded for mobile menu */
    }

    /* Overlay for mobile menu */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: 1025; /* Below nav, above hero content */
    }

    .nav-overlay.active {
        display: block;
    }

    /* Body scroll lock when nav is open */
    body.nav-open {
        overflow: hidden;
    }

    /* --- Hero Section Adjustments (to accommodate the fixed header) --- */
    .hero-home {
        /* Add sufficient top padding to ensure hero content starts below the fixed header */
        padding-top: 70px; /* This must match the height of .nav-container */
        min-height: auto; /* Allow height to adjust */
        height: auto;
    }
}





































        .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); 
    color: var(--text-light);
    padding: 70px 0 30px; 
    font-family: 'Poppins', sans-serif;
    border-top: 1px solid var(--border-color); 
}

.footer-content-other {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px; 
    margin-bottom: 50px; 
}

.footer-section-other {
    padding: 0 15px; 
}

.footer-section-other h3 {
    color: var(--primary-orange); 
    font-size: 22px; 
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px; 
    font-weight: 700; 
}

.footer-section-other h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px; 
    height: 4px; 
    background-color: var(--primary-orange); 
    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;
}