        :root {
            --primary: #FC8019;
            --secondary: #FCA65E;
            --accent: #AD4728;
            --text-dark: #333;
            --text-light: #fff;
            --bg-light: #fff;
            --shadow: 0 10px 30px rgba(252, 128, 25, 0.2);
        }
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            background-attachment: fixed;
            overflow-x: hidden;
        }
        .navbar {
            background: rgba(255, 255, 255, 0.95) !important;
            box-shadow: var(--shadow);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary) !important;
            text-decoration: none;
        }
        .nav-link {
            color: var(--primary) !important;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
        }
        .nav-link:hover {
            color: var(--accent) !important;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: var(--primary);
            transition: all 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
            left: 0;
        }
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://source.unsplash.com/random/1920x1080/?grocery,delivery') no-repeat center/cover;
            padding-top: 80px;
        }
        .hero-container {
            max-width: 1200px;
            width: 90%;
            margin-top: 150px;
        }
        .hero-left h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
            color: var(--text-light);
        }
        .hero-left p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            color: var(--text-light);
        }
        .cta-btn {
            display: inline-block;
            padding: 1rem 2rem;
            background: var(--primary);
            color: var(--text-light);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
        }
        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(252, 128, 25, 0.3);
            background: var(--accent);
            color: var(--text-light);
        }
        .hero-right {
            background: rgba(255,255,255,0.1);
            padding: 2rem;
            border-radius: 20px;
            backdrop-filter: blur(10px);
        }
        .hero-form h3 {
            color: var(--text-light);
            margin-bottom: 1rem;
        }
        .hero-form .form-control,
        .hero-form .form-select {
            margin: 0.5rem 0;
            border-radius: 10px;
            border: none;
            background: rgba(255,255,255,0.9);
            color: var(--text-dark);
        }
        .hero-form .form-control:focus,
        .hero-form .form-select:focus {
            background: var(--text-light);
            color: var(--text-dark);
            box-shadow: 0 0 0 0.2rem rgba(252, 128, 25, 0.25);
        }
        .hero-form .btn {
            width: 100%;
            padding: 0.8rem;
            background: var(--primary);
            color: var(--text-light);
            border: none;
            border-radius: 10px;
            cursor: pointer;
            font-weight: 600;
        }
        section {
            padding: 100px 20px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            box-shadow: var(--shadow);
            margin-bottom: 60px;
        }
        section h2 {
            color: var(--primary);
            text-align: center;
            font-size: 2.8rem;
            margin-bottom: 2rem;
        }
        .image-placeholder {
            width: 100%;
            height: 400px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            margin: 2rem 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            font-size: 1.5rem;
            font-weight: 600;
            border-radius: 15px;
            position: relative;
            overflow: hidden;
        }
        .image-placeholder::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
            transform: rotate(45deg);
            animation: shine 3s infinite;
        }
        @keyframes shine {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }
        .content {
            font-size: 1.1rem;
            text-align: justify;
            max-width: 800px;
            margin: 0 auto;
        }
        .table {
            margin: 2rem 0;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .table th {
            background: var(--primary);
            color: white;
        }
        .section-form {
            max-width: 500px;
            margin: 2rem auto;
            padding: 2rem;
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            border-radius: 15px;
            color: var(--text-light);
        }
        .section-form .form-control,
        .section-form .form-select {
            margin: 0.5rem 0;
            border-radius: 10px;
            border: none;
            background: rgba(255,255,255,0.9);
            color: var(--text-dark);
        }
        .section-form .form-control:focus,
        .section-form .form-select:focus {
            background: var(--text-light);
            color: var(--text-dark);
            box-shadow: 0 0 0 0.2rem rgba(252, 128, 25, 0.25);
        }
        .section-form .btn {
            background: var(--text-light);
            color: var(--primary);
            cursor: pointer;
            font-weight: 600;
            border: 1px solid var(--text-light);
        }
        .section-form .btn:hover {
            background: var(--primary);
            color: var(--text-light);
            border-color: var(--primary);
        }
        .sticky-buttons {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .sticky-btn {
            width: 60px;
            height: 60px;
            background: var(--primary);
            color: var(--text-light);
            text-decoration: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow);
            transition: all 0.3s;
            font-size: 1.5rem;
        }
        .sticky-btn:hover {
            transform: translateY(-5px) scale(1.05);
        }
        .call-btn {
            background: var(--accent);
        }
        footer {
            background: var(--text-dark);
            color: var(--text-light);
            text-align: center;
            padding: 2rem;
        }
        /* Modal styling to match logo colors */
        .modal-content {
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            color: var(--text-light);
            border: none;
            border-radius: 20px;
        }
        .modal-header {
            border-bottom: none;
            color: var(--text-light);
        }
        .modal-title {
            color: var(--text-light);
        }
        .modal-body {
            color: var(--text-light);
        }
        .modal-body .form-control,
        .modal-body .form-select {
            background: rgba(255,255,255,0.9);
            color: var(--text-dark);
            border-radius: 10px;
            border: none;
        }
        .modal-body .form-control:focus,
        .modal-body .form-select:focus {
            background: var(--text-light);
            color: var(--text-dark);
            box-shadow: 0 0 0 0.2rem rgba(252, 128, 25, 0.25);
        }
        .modal-body .btn {
            background: var(--text-light);
            color: var(--primary);
            border: 1px solid var(--text-light);
            border-radius: 10px;
        }
        .modal-body .btn:hover {
            background: var(--primary);
            color: var(--text-light);
            border-color: var(--primary);
        }
        @media (max-width: 768px) {
            .hero {
                height: auto;
                min-height: 100vh;
                padding-top: 80px;
                padding-bottom: 50px;
            }
            .hero-container {
                flex-direction: column;
                text-align: center;
            }
            .hero-left h1 {
                font-size: 2.5rem;
            }
            .hero-left p {
                font-size: 1.1rem;
            }
            .hero-right {
                width: 100%;
                padding: 1.5rem;
            }
            section {
                padding: 60px 15px;
                margin-bottom: 40px;
                border-radius: 15px;
            }
            section h2 {
                font-size: 2rem;
            }
            .content {
                font-size: 1rem;
            }
            .image-placeholder {
                height: 250px;
                font-size: 1.2rem;
            }
            .section-form {
                padding: 1.5rem;
                max-width: 100%;
            }
            .sticky-buttons {
                right: 15px;
                bottom: 15px;
                gap: 0.8rem;
            }
            .sticky-btn {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
            footer {
                padding: 1.5rem;
                font-size: 0.9rem;
            }
        }
        @media (max-width: 480px) {
            .hero-left h1 {
                font-size: 2rem;
            }
            .hero-left p {
                font-size: 1rem;
            }
            section h2 {
                font-size: 1.8rem;
            }
        }
                :root {
            --primary: #FC8019;
            --secondary: #FCA65E;
            --accent: #AD4728;
            --text-dark: #333;
            --text-light: #fff;
            --bg-light: #fff;
            --shadow: 0 10px 30px rgba(252, 128, 25, 0.2);
        }
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            background-attachment: fixed;
            overflow-x: hidden;
        }
        .navbar {
            background: rgba(255, 255, 255, 0.95) !important;
            box-shadow: var(--shadow);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary) !important;
            text-decoration: none;
        }
        .nav-link {
            color: var(--primary) !important;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
        }
        .nav-link:hover {
            color: var(--accent) !important;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: var(--primary);
            transition: all 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
            left: 0;
        }
        .hero {
            min-height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://source.unsplash.com/random/1920x1080/?privacy,security') no-repeat center/cover;
            padding-top: 80px;
        }
        .hero-container {
            max-width: 1200px;
            width: 90%;
            text-align: center;
            color: var(--text-light);
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
        }
        section {
            padding: 100px 20px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            box-shadow: var(--shadow);
            margin-bottom: 60px;
        }
        section h2 {
            color: var(--primary);
            text-align: center;
            font-size: 2.8rem;
            margin-bottom: 2rem;
        }
        .content {
            font-size: 1.1rem;
            text-align: justify;
            max-width: 800px;
            margin: 0 auto;
        }
        .content h3 {
            color: var(--primary);
            font-size: 1.5rem;
            margin-top: 2rem;
            margin-bottom: 1rem;
        }
        .content ul {
            padding-left: 1.5rem;
        }
        .content li {
            margin: 0.5rem 0;
        }
        footer {
            background: var(--text-dark);
            color: var(--text-light);
            text-align: center;
            padding: 2rem;
        }
        @media (max-width: 768px) {
            .hero {
                min-height: auto;
                padding-top: 80px;
                padding-bottom: 50px;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            section {
                padding: 60px 15px;
                margin-bottom: 40px;
                border-radius: 15px;
            }
            section h2 {
                font-size: 2rem;
            }
            .content {
                font-size: 1rem;
            }
            footer {
                padding: 1.5rem;
                font-size: 0.9rem;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            section h2 {
                font-size: 1.8rem;
            }
        }
        .container-box{
    max-width:100%;
    padding:15px;
    font-family: Arial, sans-serif;
}

.section-title{
    font-size:18px;
    font-weight:600;
    margin:22px 0 12px;
    border-bottom:1px solid #ddd;
    padding-bottom:6px;
}

.form-grid{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

.form-col{
    width:calc(50% - 7px);
    position:relative;
}

.form-col label{
    font-size:13px;
    margin-bottom:4px;
    display:block;
    font-weight:500;
}

.form-col input,
.form-col select{
    width:100%;
    padding:11px 12px 11px 40px;
    border:1px solid #ccc;
    border-radius:6px;
    font-size:14px;
}

.form-col i{
    position:absolute;
    left:12px;
    top:36px;
    color:#666;
    font-size:15px;
}

.req{
    color:red;
    font-weight:bold;
}

.submit-btn{
    width:100%;
    margin-top:25px;
    padding:14px;
    font-size:16px;
    background:#28a745;
    border:none;
    color:#fff;
    border-radius:6px;
    cursor:pointer;
}

.submit-btn:hover{
    background:#218838;
}
#form1{
    margin-top:150px;
}
.form-message{
    background:#f0f9ff;
    border:1px solid #bee3f8;
    padding:15px;
    border-radius:6px;
    font-size:14px;
    color:#0c5460;
    margin-bottom:20px;
}
.form-col input, .form-col select{
    background-color:white;
}