

/* res.----- */
/* ====== Global Styles ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    text-align: center;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.navbar-nav {
    display: flex;
    gap: 15px;
}

.navbar-nav a {
    text-decoration: none;
    color: #000;
    font-size: 1.2rem;
}

.navbar-brand img {
    max-width: 150px;
    height: auto;
}



.navbar {
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center; /* Centering Navbar */
    padding: 10px 20px;
    flex-wrap: wrap; /* Responsive behavior */
}

/* Navbar Brand (Logo) */
.navbar-brand img {
    max-width: 150px;
    height: auto;
}

/* Navbar Links */
.navbar-nav {
    display: flex;
    gap: 15px;
}

/* Navbar Links Styling */
.navbar-nav a {
    text-decoration: none;
    color: #000;
    font-size: 1.2rem;
}

/* ===== Responsive Navbar ===== */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column; /* Mobile pe vertical align hoga */
        text-align: center;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 10px;
    }

    .navbar-brand img {
        max-width: 120px;
    }
}

/* ----------------------------------------------------- */

/* ====== Company Image Section ====== */
.company-img-i1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.company-img-i1 img {
    width: 80%;
    max-width: 700px;
    height: auto;
}

.company-img-i1 h1 {
    font-size: 2rem;
    margin-top: 10px;
}

/* ====== Content Section ====== */
.content-data-df {
    max-width: 80%;
    margin: 20px auto;
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: justify;
}

/* ====== Social Icons Section ====== */
.social-icons {
    margin-top: 30px;
}

.social-icons img {
    height: 60px;
    width: 60px;
    margin: 10px;
    transition: transform 0.3s ease-in-out;
}

.social-icons img:hover {
    transform: scale(1.1);
}

/* ====== Responsive Design ====== */
@media (max-width: 1024px) {
    .navbar-nav {
        flex-direction: column;
        align-items: center;
    }

    .company-img-i1 img {
        width: 90%;
    }

    .content-data-df {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        text-align: center;
    }

    .navbar-brand img {
        max-width: 120px;
    }

    .company-img-i1 h1 {
        font-size: 1.5rem;
    }

    .content-data-df {
        font-size: 1rem;
        text-align: center;
    }

    .social-icons img {
        height: 50px;
        width: 50px;
    }
}

@media (max-width: 480px) {
    .company-img-i1 img {
        width: 100%;
    }

    .company-img-i1 h1 {
        font-size: 1.3rem;
    }

    .content-data-df {
        font-size: 0.9rem;
    }

    .social-icons img {
        height: 40px;
        width: 40px;
    }
}



/* ===== Social Icons Section ===== */
.social-icons {
    padding-top: 40px;
    text-align: center;
}

.social-icons h1 {
    font-size: 3rem;
    font-weight: bold;
}

.social-icons p {
    font-size: 1.5rem;
    font-weight: 400;
}

/* Icons Styling */
.social-icons a {
    display: inline-block;
    margin: 10px;
}

.social-icons img {
    height: 60px;
    width: 60px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border-radius: 50%;
}

/* Hover Effect */
.social-icons img:hover {
    transform: scale(1.1);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* ===== Responsive Social Icons ===== */


@media (max-width: 900px) {
    .social-icons h1 {
        font-size: 2.5rem;
    }

    .social-icons p {
        font-size: 1.2rem;
    }

    .social-icons img {
        height: 50px;
        width: 50px;
    }
}

@media (max-width: 600px) {
    .social-icons h1 {
        font-size: 2rem;
    }

    .social-icons p {
        font-size: 1rem;
    }

    .social-icons img {
        height: 40px;
        width: 40px;
        margin: 8px;
    }
}

/* Extra Small Screens */
@media (max-width: 300px) {
    .social-icons img {
        height: 35px;
        width: 35px;
    }
}
