    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Poppins', sans-serif;
    }



    /* Navbar styling */
    header {
        background-color: white;
        padding: 1rem 2rem;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.08);
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .logo {
        width: 60px;
    }

    footer img {
        margin-bottom: 20px;

    }

    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        font-family: 'Outfit', sans-serif;
    }

    /* Logo Container */
    .logo-container {
        font-size: 1.8rem;
        font-weight: 700;
        color: #121C52;
    }

    .hamburger-menu {
        display: none;
    }

    /* Menu Container */
    .menu-container ul {
        display: flex;
        list-style: none;
        gap: 2.7rem;

    }

    .menu-container ul li a {
        text-decoration: none;
        color: #121C52;
        font-weight: 500;
        font-size: 16px;
        transition: color 0.3s ease;
        text-transform: capitalize;
    }

    .menu-container ul li a:hover,
    .menu-container ul li a:active {
        color: #007bff;
        font-weight: 600;
    }

    .contact-btn {
        display: flex;
        align-items: center;
        justify-content: end;
    }

    /* Contact Button */
    .contact-btn a {
        text-decoration: none;
        color: #121C52;
        font-weight: 500;
        font-size: 16px;
        transition: color 0.3s ease;
    }

    .contact-btn i {
        color: #121C52;
        font-size: 20px;
        margin-right: 5px;

    }

    .contact-btn a:hover {
        text-decoration: underline;
    }

    section {
        padding: 4rem 0;
    }

    /* Footer Section */
    footer {
        background-color: #121C52;
        padding: 2rem;
        font-family: 'Poppins', sans-serif;
        color: white;
    }

    .footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-section {
        flex: 1 1 220px;
        display: flex;
        flex-direction: column;
    }

    .footer-section h3 {
        font-family: 'Outfit', sans-serif;
        font-weight: 600;
        font-size: 18px;
        margin-bottom: 20px;
        color: white;
        text-decoration: underline;
    }

    .footer-section p,
    .footer-section li,
    .footer-section a {
        font-size: 0.95rem;
        color: white;
        text-decoration: none;
        margin-bottom: 10px;
    }

    .footer-section li {
        list-style: none;
    }

    .footer-section a:hover {
        color: #007bff;
        transition: 0.3s;
    }

    .logo-icon {
        font-size: 50px;
        color: white;
        margin-bottom: 10px;
    }

    .flex-div {
        display: flex;
        align-items: center !important;
        gap: 11px;
        margin-top: 15px;
        color: white;
        font-size: 0.9rem;
        width: max-content;
    }

    .flex-div i {
        color: #007bff;
    }

    .footer-contact-btn {
        margin-top: 20px;
        padding: 10px 20px;
        border: none;
        background-color: #007bff;
        color: white;
        font-size: 1rem;
        font-family: 'Poppins', sans-serif;
        cursor: pointer;
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .footer-contact-btn:hover {
        background-color: #0056b3;
        transition: 0.3s;
    }

    section.common {
        width: 100%;
        min-height: 52vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .common h1 {
        font-family: 'Outfit', sans-serif;
        font-size: 2.5rem;
        font-weight: 700;
        color: #121C52;
        margin-bottom: 1rem;
    }


    .container {
        padding-right: 15px;
        padding-left: 15px;
        margin-right: auto;
        margin-left: auto;
        max-width: 100%;
        width: 100%;
    }

    .subscribe-input::placeholder {
        font-family: 'Work Sans';
    }

    /* Responsive Widths */
    @media (min-width: 576px) {
        .container {
            max-width: 540px;
        }
    }

    @media (min-width: 768px) {
        .container {
            max-width: 720px;
        }
    }

    @media (min-width: 992px) {
        .container {
            max-width: 960px;
        }
    }

    @media (min-width: 1200px) {
        .container {
            max-width: 1140px;
        }
    }

    @media (min-width: 1400px) {
        .container {
            max-width: 1320px;
        }
    }




    @media (max-width: 767px) {
        section {
            padding: 0;
        }

        header {
            padding: 1rem 1.2rem;
        }

        .logo {
            width: 50px;
        }

        .menu-container {
            display: none;
            width: 100%;
        }

        .menu-container.active {
            display: block;
            position: absolute;
            top: 80px;
            left: 0;
            background-color: #f9f9f9;
            padding: 1rem;
            width: 100%;
            z-index: 9999;
        }

        .menu-container ul {
            flex-direction: column;
            gap: 1rem;
            padding: 1rem 0;
        }

        .hamburger-menu {
            display: block;
            font-size: 1.5rem;
            color: #121C52;
            cursor: pointer;
        }

        .contact-btn {
            display: none;
        }

        footer .social-media {
            align-items: start;
        }

        footer .social-media .social-icons {
            max-width: 100% !important;
            flex-wrap: nowrap;
            justify-content: start;
            gap: 20px;
        }
    }