html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

#navbar {
    padding: 1em 10px;
}

#navbar { /*Header */
    background-color: #ffffff;
    color: rgb(5, 0, 0);
    padding: 0px 0px 0px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 60px;
    margin-left: 0px;
    position: fixed;
    top: 0;
    z-index: 1000;
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.1); /* हेडरला थोडी सावली देऊन ते वेगळे दाखवते (ऐच्छिक) */
}

/* Navigation links */
#navigationbar a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0 15px;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

    #navigationbar a:hover {
        color: #FF6A00;
    }

    #navigationbar a.active,
    #navigationbar a:active {
        color: #FF6A00;
    }

    /* Creative underline effect for nav links */
    #navigationbar a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: #FF6A00;
        transition: width 0.3s ease;
    }

    #navigationbar a:hover::after,
    #navigationbar a.active::after {
        width: 100%;
    }

#logo {
    background-color: #FF6A00;
    color: white;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 25px 0 25px 0;
    font-size: 20px;
    font-weight: bold;
    /*box-shadow: inset 5px 5px 15px rgba(0, 0, 0, 0.2), inset -5px -5px 15px rgba(255, 255, 255, 0.2), 5px 5px 10px rgba(0, 0, 0, 0.15);*/
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

/* Full-page center layout */
#landingpage {
    height: calc(100% - 80px); /* मेनूची उंची हेडरच्या खालीपासून व्ह्यूपोर्टच्या शेवटपर्यंत */
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0px;
    /*margin-bottom: 50px;
    /*padding: 30px 0px 30px 0px;*/
}

/* Vertical layout: logo above, name below */
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

/* Logo image sizing */
.logo-icon {
    width: 80%; /* adjust width to match image */
    height: 400px; /* keeps aspect ratio */
    object-fit: contain;
    margin-top: 0px;
    margin-bottom: 0px;
}

#landingpage h1 {
    font-size: 80px;
    font-weight: normal;
    color: #000;
    font-family: "Lexend", sans-serif;
    font-weight: 750;
}

/* Homepage styles */
#homepage {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin: 0 auto;
    max-width: 1400px;
    overflow: hidden;
}

.solution-section {
    padding: 50px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.solution-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.solution-right {
    flex: 1.5;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-btn {
    display: block;
    padding: 10px 20px;
    background-color: transparent;
    color: #333;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 500;
    text-align: center;
    font-size: 18px;
    border: 2px solid #333;
}

    .service-btn:hover {
        background-color: rgba(255, 102, 0, 0.05);
        border-color: #FF6600;
        color: #FF6600;
    }

    .service-btn.active {
        background-color: #FF6600;
        color: white;
        border-color: #FF6600;
    }

.dot-pattern-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dot-pattern {
    max-width: 100%;
    max-height: 100%;
}

.service-content {
    display: none;
    padding: 20px;
    animation: fadeIn 0.5s ease;
}

    .service-content h2 {
        color: #333;
        margin-bottom: 20px;
        font-size: 28px;
    }

    .service-content p {
        line-height: 1.7;
        color: #555;
        margin-bottom: 30px;
    }

.service-image {
    width: 100%;
    border-radius: 8px;
    margin-top: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Contact Section */
.contact-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
    gap: 5rem;
    background-color: white;
    position: relative;
    overflow: hidden;
}


/* Form Container */
.form-container {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

    .form-container h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 2rem;
        color: #333;
    }

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;

}

    /* Form Labels */
    .contact-form label {
        font-size: 1.1rem;
        font-weight: 500;
        color: #555;
        margin-bottom: 0.5rem;
        display: block;
    }

    /* Form Inputs */
    .contact-form input,
    .contact-form textarea {
        width: 100%;
        border: none;
        border-bottom: 2px solid #ddd;
        padding: 0.8rem 0;
        font-size: 1rem;
        outline: none;
        transition: border-color 0.3s ease;
        background-color: transparent;
    }

        .contact-form input:focus,
        .contact-form textarea:focus {
            border-bottom-color: #FF6A00;
        }

    .contact-form textarea {
        min-height: 120px;
        resize: vertical;
    }

    /* Submit Button */
    .contact-form button {
        margin-top: 2rem;
        padding: 0.8rem 2.5rem;
        border: 2px solid #333;
        border-radius: 30px;
        background-color: transparent;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        z-index: 1;
        align-self: flex-start;
    }


        .contact-form button:hover {
            color: white;
            border-color: transparent;
            transform: translateY(-3px);
        }

            .contact-form button:hover::before {
                left: 0;
            }

/* Image Container */
.image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

    /*.image-container img {
        width: 100%;
        max-width: 500px;
        border-radius: 10px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }*/

       /* .image-container img:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }*/

/* Media Queries */
@media (max-width: 992px) {
nav#main-nav {
        /* जेव्हा मेनू उघडतो, तेव्हा तो हेडरच्या खाली सुरू होण्यासाठी top प्रॉपर्टी ऍडजस्ट करा */
        top: 80px; /* हेडरच्या उंचीनुसार ऍडजस्ट करा. वरील main च्या padding-top इतकेच असावे */
        height: calc(100% - 80px); /* मेनूची उंची हेडरच्या खालीपासून व्ह्यूपोर्टच्या शेवटपर्यंत */
        /* हे नियम तुमच्या लिंक्सना हॅमबर्गर खाली आणण्यासाठी महत्त्वाचे आहेत */
        display: flex; /* किंवा block */
        flex-direction: column; /* हे लिंक्सना एका खाली एक करेल */
        align-items: flex-start; /* लिंक्सना डावीकडे संरेखित करेल */
        padding: 10px 0; /* आवश्यकतेनुसार पॅडिंग */
    }

    .navbar-collapse { /* किंवा nav#main-nav, तुम्ही तुमच्या HTML मध्ये कोणता ID किंवा क्लास वापरला आहे त्यानुसार */
        display: flex; /* जर नसेल तर जोडा */
        flex-direction: column; /* लिंक्स एका खाली एक दिसण्यासाठी */
        align-items: center; /* लिंक्स मध्यभागी दिसण्यासाठी (ऐच्छिक) */
        /* किंवा align-items: flex-start; जर तुम्हाला डावीकडे हवे असतील */

        /* हेडरला fixed केल्यामुळे, हा मेनू हेडरच्या खाली सुरू व्हावा लागतो */
        position: fixed; /* किंवा absolute, तुमच्या डिझाइननुसार */
        top: 80px; /* तुमच्या fixed हेडरच्या उंचीनुसार ऍडजस्ट करा */
        left: 0;
        width: 100%;
        /*background-color: #fff; /* मेनूचा बॅकग्राउंड कलर */
        /*height: calc(100% - 80px); /* हेडरच्या खालीपासून व्ह्यूपोर्टच्या तळापर्यंत */
        overflow-y: auto; /* जर लिंक्स जास्त असतील तर स्क्रोलिंग */
    }
.navbar-nav { /* लिंक्सचा कंटेनर (ul) */
        width: 100%; /* पूर्ण रुंदी व्यापण्यासाठी */
        display: flex;
        flex-direction: column; /* लिंक्स एका खाली एक दिसण्यासाठी */
        align-items: left; /* लिंक्स मध्यभागी दिसण्यासाठी (ऐच्छिक) */
        /* किंवा align-items: flex-start; जर तुम्हाला डावीकडे हवे असतील */
    }
    .navbar-nav .nav-item {
        width: 100%; /* प्रत्येक लिंक पूर्ण रुंदी व्यापण्यासाठी */
        text-align: left; /* मजकूर मध्यभागी (ऐच्छिक) */
        /* किंवा text-align: left; */
        margin-left: 20px; /* प्रत्येक लिंकच्या डावीकडे 20px मार्जिन */
    }

    .navbar-nav .nav-link {
        padding: 10px 0; /* प्रत्येक लिंकला वरून आणि खालून पॅडिंग */
        width: 100%;
        display: block; /* पूर्ण रुंदी क्लिकेबल करण्यासाठी */
    }
    .contact-section {
        flex-direction: column;
        padding: 4rem 2rem;
    }
}

@media (min-width: 768px) {
    .image-container img {
        width: 60%;
        max-width: 600px;
        margin-bottom:30px;
    }
    
}

/* Animations and transitions */
button, .service-btn, a {
    transition: all 0.3s ease;
}

    button:hover, .service-btn:hover, a:hover {
        transform: scale(1.05);
    }

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #FF6A00;
    border-radius: 5px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #e36000;
    }

/* Loading animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

    .loading.hidden {
        opacity: 0;
        visibility: hidden;
    }

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #FF6A00;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #navbar {  /*Header*/
        padding: 0.8em 15px;
    }
nav#main-nav {
        top: 65px; /* हेडरच्या उंचीनुसार ऍडजस्ट करा (768px खाली हेडरची उंची बदलू शकते) */
        height: calc(100% - 65px);
        padding-top: 70px; /* हा नियम मेनूच्या आत वरून पॅडिंग देतो */
        width: 280px;
    }

    #navigationbar {
        margin-left: 0;
        padding-left: 325px;
        padding-right: 20px;
    }

        #navigationbar a {
            margin: 0px 30px;
            font-size: 0.9rem;
            width: 60%;
            /*padding: 0px 0px 0px 60px;*/
        }

    #logo {
        font-size: 18px;
        padding: 8px 14px;
    }

    .solution-section {
        padding: 60px 20px;
    }

    .solution-left h2, .form-container h2 {
        font-size: 2rem;
    }

    .service-btn {
        font-size: 1rem;
        padding: 10px 24px;
    }

    .contact-section {
        gap: 3rem;
    }
}
.privacy-policy-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: "Lexend", sans-serif;
}

    .privacy-policy-container h1 {
        color: #FF6A00;
        font-size: 32px;
        margin-bottom: 30px;
        text-align: center;
    }

.policy-section {
    margin-bottom: 30px;
}

    .policy-section h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .policy-section p {
        line-height: 1.6;
        color: #444;
    }

/* About text styling */
.about-text {
    font-size: 18px;
    font-weight: 400;
    margin: 0 auto;
    max-width: 1100px;
    margin-top: 50px;
    padding: 0 20px;
    text-align:center;
}

/* Responsive design for text */
@media (min-width: 768px) {
    .about-text {
        font-size: 18px;
    }
}

/* Image container for the S-graphic */
.image-container-about {
    margin: 40px auto;
    text-align: center;
    position: relative;
    max-width: 1000px;
}

    .image-container-about img {
        max-width: 50%;
        height: auto;
    }


/*Footer*/
.footer {
    background-color: #ffffff;
    color: #000;
    padding: 0px 10px 0px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ddd;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    background-color: #FF6A00;
    transform: translateY(-3px);
}

    .social-icon img {
        width: 20px;
        height: 20px;
    }

.nav-links {
    display: flex;
    gap: 15px;
}

    .nav-links a {
        color: #000;
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s ease;
        justify-items:center;
    }

        .nav-links a:hover {
            color: #FF6F00;
        }

.footer-right {
    text-align: right;
}

.footer-tagline {
    font-weight: bold;
    margin-bottom: 8px;
}

.copyright {
    color: #555;
    font-size: 14px;
}

.orange-text {
    color: #FF6F00;
}

/* Media queries for responsive design */
@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        line-height: 40px
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        padding: 0px 40px 0px 0px;
        
    }
    .social-icon {
        padding: 0px 50px 0px 0px;
    }

    .footer-right {
        text-align: center;
        padding: 0px 50px 0px 0px;
    }
}


#work-section {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.work-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.work-card {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 220px;
    flex: 1 1 200px;
    transition: transform 0.3s ease;
}

    .work-card:hover {
        transform: translateY(-5px);
    }

    .work-card img {
        max-width: 100%;
        height: 120px;
        object-fit: contain;
        border-radius: 12px;
        margin-bottom: 15px;
    }

.work-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: #000;
    margin-top: 10px;
}

/*Contact*/
.business-form-section {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding: 0px 0px 0px 50px;
            gap: 60px;
            background-color: rgb(255, 255, 255);
            max-width: 1200px;
            margin: 0 auto;
            min-height: 80vh;
            flex-wrap: wrap;
            border-radius: 10px;
        }

        .form-wrapper {
            flex: 1;
            max-width: 500px;
            position: relative;
            z-index: 1;
        }

        .form-wrapper h3 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 2rem;
            color: #333;
            text-align: left;
        }

        .business-form {
            display: flex !important;
            flex-direction: column !important;
            /*width: 500px;
            /* gap: 25px; */
        }

        .form-group {
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .business-form label {
            font-size: 1rem;
            font-weight: 500;
            color: #333;
            margin-bottom: 8px;
            display: block;
            margin-top:8px;
        }

        .business-form input,
        .business-form select,
        .business-form textarea {
            width: 90%;
            border: none;
            border-bottom: 1.5px solid #FF6A00;
            /* padding: 12px 0; */
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s ease;
            background-color: rgb(250, 250, 250);
            font-family: inherit;
            border-radius: 5px;
            box-sizing: border-box;
            font-size: 1rem;
            color: #333; /* टेक्स्टचा कलर */
        }

        .business-form input:focus,
        .business-form select:focus,
        .business-form textarea:focus {
            border-bottom-color: #FF6A00;
            outline: none; /* डिफॉल्ट आउटलाइन काढण्यासाठी */
            box-shadow: 0 0 0 0.1rem rgba(0, 123, 255, 0.25); /* हलकी सावली (ऐच्छिक) */
            background-color: transparent; /* फोकस केल्यावरही बॅकग्राउंड पारदर्शक राहील */
        }
        .form-control { /* Bootstrap इनपुट क्लास */
            background-color: transparent !important; /* !important वापरून Bootstrap चे नियम ओव्हरराईड करा */
        }
        .business-form select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
            background-position: right 8px center;
            background-repeat: no-repeat;
            background-size: 16px;
            padding-right: 30px;
        }

        .business-form textarea {
            min-height: 100px;
            resize: vertical;
            font-family: inherit;
        }

/* Multi-select dropdown styles - IMPROVED */
        .multi-select-dropdown {
            position: relative;
            width: 100%;
        }

        .dropdown-header {
            border-bottom: 2px solid #FF6A00;
            padding: 12px 0;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: border-color 0.3s ease;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
            background-position: right 8px center;
            background-repeat: no-repeat;
            background-size: 16px;
            padding-right: 30px;
            min-height: 20px;
            width: 90%;
            border-radius: 8px;
        }

        .multi-select-dropdown.open .dropdown-header {
            border-bottom-color: #FF6A00;
            background-color: transparent; /* ड्रॉपडाउन हेडरलाही पारदर्शक करण्यासाठी */
            border: 1px solid #ddd;
            border-radius: 5px;
            padding: 10px 15px;
            cursor: pointer;
            margin-bottom: 20px;
        }

        .dropdown-options {
            position: absolute;
            top: calc(100% + 2px);
            left: 0;
            right: 0;
            background: white;
            border: 1px solid #ddd;
            border-radius: 8px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            z-index: 1000;
            max-height: 250px;
            overflow-y: auto;
            display: none;
        }

        .multi-select-dropdown.open .dropdown-options {
            display: block;
            animation: fadeInDown 0.3s ease;
            background-color: #fff; /* जेव्हा ड्रॉपडाउन उघडते, तेव्हा ऑप्शन्ससाठी बॅकग्राउंड व्हाईट असू शकते */
            border: 1px solid #ddd;
            border-top: none;
            border-radius: 0 0 5px 5px;
            position: absolute;
            width: 100%;
            z-index: 10;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .dropdown-options label {
            display: flex;
            align-items: center;
            padding: 14px 16px;
            cursor: pointer;
            transition: background-color 0.2s ease;
            font-weight: 400;
            margin-bottom: 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .dropdown-options label:last-child {
            border-bottom: none;
        }

        .dropdown-options label:hover {
            background-color: #f8f9fa;
        }

        .dropdown-options input[type="checkbox"] {
            margin-right: 12px;
            width: 16px;
            height: 16px;
            border: 2px solid #ddd;
            border-radius: 3px;
            padding: 0;
            appearance: none;
            position: relative;
            cursor: pointer;
        }

        .dropdown-options input[type="checkbox"]:checked {
            background-color: #FF6A00;
            border-color: #FF6A00;
        }

        .dropdown-options input[type="checkbox"]:checked::after {
            content: '✓';
            position: absolute;
            top: -2px;
            left: 1px;
            color: white;
            font-size: 12px;
            font-weight: bold;
        }

        #selectedText {
            color: #333;
            font-size: 1rem;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            max-width: calc(100% - 30px);
        }

        .dropdown-header span:empty::before {
            content: "Select options";
            color: #999;
        }

/* Submit Button */
        .business-form .btn {
            margin-top: 20px;
            padding: 12px 40px;
            border: 2px solid #333;
            border-radius: 30px;
            background-color: transparent;
            color: #333;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
            align-self: flex-start;
            text-decoration: none;
        }

        .business-form .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background-color: #FF6A00;
            transition: all 0.4s ease;
            z-index: -1;
        }

        .business-form .btn:hover {
            color: white;
            border-color: #FF6A00;
            transform: translateY(-2px);
        }

        .business-form .btn:hover::before {
            left: 0;
        }

        /* Image Wrapper */
        .image-wrapper {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .image-wrapper img {
            width: 60%;
            max-width: 300px;
            height: auto;
            display: block;
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        /* Form validation styles */
        .business-form input:focus,
        .business-form select:focus,
        .business-form textarea:focus,
        .dropdown-header:focus-within {
            border-bottom-color: #FF6A00;
        }

        .business-form input:valid,
        .business-form select:valid,
        .business-form textarea:valid {
            border-bottom-color: #27ae60;
        }

        .dropdown-header.valid {
            border-bottom-color: #27ae60;
        }

        /* About textarea styles */
        #about {
            border-bottom-color: #FF6A00;
            border-radius: 4px;
            padding: 12px 0;
            width: 100%;
            font-size: 1rem;
            resize: vertical;
            transition: border-color 0.3s;
            width: 90%;
            border-radius: 8px;
        }

        #about:focus {
            outline: none;
            border-color: #FF6A00;
        }

        #about.filled {
            border-color: #27ae60;
        }

/* Responsive Design */
        @media (max-width: 1024px) {
            .business-form-section {
                padding: 0px 0px 0px 0px;
                gap: 60px;
            }
        }

        @media (max-width: 768px) {
            .business-form-section {
                flex-direction: column;
                padding: 0px 0px 0px 0px;
                gap: 60px;
                text-align: center;
            }

            .form-wrapper {
                max-width: 100%;
            }

            .form-wrapper h3 {
                font-size: 2rem;
                text-align: center;
            }

            .image-wrapper {
                order: -1;
            }

            .image-wrapper img {
                max-width: 100%;
            }

            .business-form .btn {
                align-self: center;
                width: 100%;
                max-width: 200px;
            }
        }

        @media (max-width: 480px) {
            .business-form-section {
                padding: 30px 15px;
            }

            .form-wrapper h3 {
                font-size: 1.8rem;
            }

            .business-form input,
            .business-form select,
            .business-form textarea,
            .dropdown-header {
                padding: 10px 0;
                font-size: 0.95rem;
            }

            .dropdown-options label {
                padding: 12px 14px;
                font-size: 0.9rem;
            }
        }      
        main {
    /* तुमच्या हेडरच्या उंचीनुसार हे पॅडिंग ऍडजस्ट करा.साधारणतः, तुमच्या हेडरची उंची 70px ते 90px दरम्यान असू शकते.डेव्हलपर टूल्समध्ये हेडरची अचूक उंची तपासा आणि ती इथे वापरा.
       उदाहरणार्थ, जर हेडरची उंची 80px असेल, तर 80px पॅडिंग द्या. */
    padding-top: 80px; 
}