      /* Footer */
      .footer {
        background: #333;
        color: white;
        padding: 60px 0 20px;
    }

    .footer-content {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .company-logo {
        width: 40px;
        height: auto;
        margin-bottom: 20px;
    }

    .footer-links {
        list-style: none;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-links a:hover {
        color: white;
    }

    .footer-bottom {
        border-top: 1px solid #555;
        padding-top: 20px;
    }

    .footer-bottom-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .social-links {
        display: flex;
        gap: 15px;
    }

    .social-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: #555;
        border-radius: 50%;
        color: white;
        text-decoration: none;
        transition: background-color 0.3s ease;
    }

    .social-link:hover {
        background:#17b9ff;
    }

    .company-description {
        color: #ccc;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .company-info {
        margin-top: 20px;
    }

    .info-item {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 15px;
    }

    .info-icon {
        color:#17b9ff;
        margin-top: 3px;
    }

    .info-text {
        color: #ccc;
        line-height: 1.6;
    }

    /* .sebi-registration {
        color: #ffd700;
        font-weight: 600;
    } */

    .footer-section h3 {
        color: white;
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 20px;
    }
       /* Responsive Design */
       @media (max-width: 768px) {
        .hamburger {
            display: flex;
        }

        .nav-menu {
            position: fixed;
            top: 70px;
            left: -100%;
            width: 100%;
            height: calc(100vh - 70px);
            background: white;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            padding-top: 50px;
            transition: left 0.3s ease;
        }

        .nav-menu.active {
            left: 0;
        }

        .hero-content {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .hero-title {
            font-size: 2rem;
        }

        .footer-content {
            grid-template-columns: 1fr;
            text-align: center;
        }
    }