* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.banner-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.banner-slider {
    width: 100%;
    height: 500px;
}

.banner-slide {
    position: relative;
    height: 640px;
    background-size: cover;
    background-position: center;
}

.slick-dots li button:before {
    color: red;
    font-size: 20px;
    border-radius: 0px;
}

.slick-dots li.slick-active button:before {
    color: red;
}

.header {
    background-color: #ffff;
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.container-nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    margin: auto;
}

.nav-menu {
    display: flex;
    list-style-type: none;
}

.nav-item {
    margin-left: 1.5rem;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #007bff;
}

.nav-link.active {
    color: #007bff;
    border-bottom: 2px solid #007bff;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.4s;
}

.container-fassai {
    max-width: 100%;
    margin: 0 auto;
    padding: 2rem 0px;
}

.fssai-section {
    display: flex;
    gap: 2rem;
    background-color: #fff;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
}

.image-container {
    flex: 1;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.content-container {
    flex: 1;
    padding: 2rem;
}

.section-title {
    color: #1a1a1a;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    color: #666;
    font-weight: 500;
    margin-bottom: 1rem;
}

.description {
    color: #666;
    margin-bottom: 1.5rem;
}

.additional-info {
    color: #777;
    font-size: 0.95rem;
    border-top: 1px solid #eee;
    padding-top: 1rem;
    margin-top: 1rem;
}

.container-44 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 3rem;
    position: relative;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #ff3333;
    border-radius: 2px;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.requirement-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.requirement-item:hover {
    transform: translateY(-5px);
}

.icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background-color: #ff3333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.requirement-text {
    font-size: 1rem;
    color: #666;
}

.requirement-text span {
    color: #999;
    font-size: 0.9rem;
    display: block;
    margin-top: 0.25rem;
}

.process-section {
    padding: 5rem 1rem;
    position: relative;
    overflow: hidden;
    background-color: #f8f9fa;
}

.background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(#e0e0e0 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    pointer-events: none;
}

.container-45 {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-header-0 {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle-0 {
    color: #ff3333;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.section-title-0 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title-0::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #ff3333;
    border-radius: 2px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.process-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.process-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.process-number {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 40px;
    height: 40px;
    background-color: #ff3333;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.process-title {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.process-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.license-section {
    padding: 5rem 1rem;
    position: relative;
    overflow: hidden;
}

.background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(#e0e0e0 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    pointer-events: none;
}

.container-46 {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-header-1 {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle-1 {
    color: #ff3333;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.section-title-1 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title-1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #ff3333;
    border-radius: 2px;
}

.license-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.license-item {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.license-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.license-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.license-icon svg {
    width: 100%;
    height: 100%;
    fill: #ff3333;
}

.license-title {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.license-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
}

:root {
    --color-primary: #1a202c;
    --color-secondary: #718096;
    --color-accent: #e53e3e;
    --color-background: #f7fafc;
}



.features-section-1 {
    padding: 3rem 1rem;
    max-width: 87rem;
    margin: 0 auto;
}

.features-title-1 {
    font-size: 1.875rem;
    font-weight: bold;

    margin-bottom: 2rem;
}

.features-list-1 {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.feature-item-1 {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.feature-bullet {
    width: 1rem;
    height: 1rem;
    background-color: var(--color-accent);
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.feature-text {
    color: var(--color-secondary);
    font-size: 1rem;
}

.container-50 {
    max-width: 100%;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.faq-title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
    color: #2d3748;
}

.faq-list {
    list-style-type: none;
    padding: 0;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 2rem 1rem 0;
    position: relative;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #e53e3e;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #e53e3e;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding-bottom: 1rem;
}

.faq-answer p {
    margin: 0;
    color: #4a5568;
}

.container-3 {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    margin-top: 139px;
    box-sizing: border-box;
}

.container-3 h1 {
    font-size: 3rem;
    color: white;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.container-3 h2 {
    font-size: 1.5rem;
    color: white;
    text-align: center;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    gap: 15px;
}

.container-3 input {
    padding: 10px 20px;
    width: 300px;
    font-size: 1rem;
    height: 41px;
    border: none;
    border-radius: 5px;
    outline: none;
}

.form-section {
    background-color: #ff3333;
}

.container-3 button {
    display: block;
    padding: px 30px;
    margin-top: 20px;
    font-size: 1rem;
    color: white;
    background-color: #000000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100px !important;
}

.footer {
    background-color: var(--color-background);
    color: var(--color-text);
    padding: 2rem 1rem;
    margin-top: auto;
    border-top: 1px solid var(--color-border);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-link a {
    color: #ff3333;
}

.footer-link {
    color: #ff3333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--color-text-light);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-icon {
    width: 24px;
    height: 24px;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    opacity: 0.7;
}

.footer-text {
    text-align: center;
    color: var(--color-text-light);
    font-size: 0.875rem;
}

.container-form {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.section-form {
    background-color: #f7fafc;
    padding: 3rem 0;
}

.flex-container {
    display: flex;
    gap: 2rem;
}

.faq,
.contact-form {
    flex: 1;
}

.container-form h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.accordion {
    border: 1px solid #e2e8f0;
    border-radius: 0.25rem;
}

.accordion-item {
    border-bottom: 1px solid #e2e8f0;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    background-color: #fff;
    padding: 1rem;
    cursor: pointer;
    font-weight: 600;
}

.accordion-content {
    padding: 1rem;
    display: none;
}

.accordion-content.active {
    display: block;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form label {
    font-weight: 600;
}

.contact-form input,
textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.25rem;
}

.contact-form button {
    background-color: #ff3333;
    color: #fff;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    font-weight: 600;
}

.contact-form button:hover {
    opacity: 0.9;
}
.fixed-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.fixed-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.fixed-button:hover {
    transform: scale(1.1);
}

.whatsapp-btn {
    background-color: #25D366;
}

.call-btn {
    background-color: #007bff;
}


@media (min-width: 640px) {
    .features-section-1 {
        padding: 4rem 2rem;
    }

    .features-title-1 {
        font-size: 2.25rem;
    }

    .feature-text {
        font-size: 1.125rem;
    }

    .container-50 {
        padding: 4rem 2rem;
    }

    .faq-title {
        font-size: 2.5rem;
    }

    .faq-question {
        font-size: 1.2rem;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .footer-links {
        margin-bottom: 0;
    }

    .social-icons {
        margin-bottom: 0;
    }

    .footer-text {
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .features-section-1 {
        padding: 5rem 2rem;
    }

    .features-title-1 {
        font-size: 3rem;
    }

    .faq-title {
        font-size: 3rem;
    }
}

@media (max-width: 1052px) {

    .form-group {
        flex-direction: column;
    }

    .form-group {
        width: 50%;
        margin: auto;
    }

    .container-3 input {
        width: 100%;
    }

    .container-3 button {
        width: 100%;
    }

}

@media (max-width: 992px) {
    .license-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}


@media (max-width: 768px) {

    .banner-slider,
    .banner-slide {
        height: 220px;
    }

    .container-3 {
        margin-top: 10px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: #f4f4f4;
        padding: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-item {
        margin: 0.5rem 0;
    }

    .fssai-section {
        flex-direction: column;
        margin-top: 10px;
    }

    .image-container {
        min-height: 300px;
    }

    .content-container {
        padding: 1.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .container-44 {
        padding: 2rem 1rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .requirements-grid {
        gap: 1rem;
    }

    .process-section {
        padding: 3rem 1rem;
    }

    .section-title-0 {
        font-size: 2rem;
    }

    .process-grid {
        gap: 1.5rem;
    }

    .process-item {
        padding: 1.5rem;
    }

    .license-section {
        padding: 3rem 1rem;
    }

    .section-title-1 {
        font-size: 2rem;
    }

    .license-item {
        padding: 2rem;
    }

    .form-group {
        flex-direction: column;
        width: 90%;
    }

    .container-3 input {
        width: 100%;
    }


    .container-3 button {
        width: auto;
        padding: 5px 30px;
        margin: 20px auto 0;
        width: 100%;
    }

    .flex-container {
        flex-direction: row;
    }

    .faq,
    .contact-form {
        width: 100%;
    }

    .flex-container {
        flex-direction: column;
    }
    .fixed-buttons {
        right: 10px;
        bottom: 10px;
    }

    .fixed-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .container-fassai {
        padding: 0.2rem;
    }

    .image-container {
        min-height: 250px;
    }

    .content-container {
        padding: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .fssai-section {
        border-radius: 10px;
        margin-top: 10px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .requirement-item {
        padding: 0.75rem;
    }

    .requirement-text {
        font-size: 0.9rem;
    }

    .section-title-0 {
        font-size: 1.75rem;
    }

    .process-title {
        font-size: 1.25rem;
    }

    .process-description {
        font-size: 0.9rem;
    }

    .section-title-1 {
        font-size: 1.75rem;
    }

    .license-title {
        font-size: 1.25rem;
    }

    .license-description {
        font-size: 0.9rem;
    }
}