﻿@import url('https://fonts.googleapis.com/css2?family=Miniver&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
.about-us{
    background-color:red;
    width:100%;

}
.abtimg1 {
    width: 350px;
    height: 350px;
}
.myi{
    width:100%;
    display:flex;
   
    
}
.myi img{
   
}
/* Navbar Styles */
nav {
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* Brand Styles */
.mybrand a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.mybrand img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #FFD700;
}

.myname {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: 0.5px;
}

/* Menu Styles */
.mymenu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    align-items: center;
}

.mymenu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

    .mymenu a:hover {
        color: #FFD700;
    }

    .mymenu a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: #FFD700;
        transition: width 0.3s ease;
    }

    .mymenu a:hover::after {
        width: 100%;
    }

/* Button Styles */
.mybtn {
    background: linear-gradient(45deg, #FFD700, #FFC000);
    color: #000000;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    display: inline-block;
    text-align: center;
}

    .mybtn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
        color: #000000;
    }

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

    .menu-toggle span {
        width: 25px;
        height: 3px;
        background: #2c3e50;
        transition: all 0.3s ease;
        border-radius: 2px;
    }

/* Mobile Styles */
@media (max-width: 991px) {
    .menu-toggle {
        display: flex;
    }

    .mymenu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        padding: 20px;
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

        .mymenu.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }

        .mymenu ul {
            flex-direction: column;
            gap: 15px;
            text-align: center;
        }

        .mymenu a {
            padding: 12px 0;
            display: block;
            font-size: 1.1rem;
        }

    .mybtn {
        display: none;
    }

    /* Mobile menu button animation */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}
@media (max-width: 768px) {
    nav {
        padding: 12px 5%;
    }

    .myname {
        font-size: 1.3rem;
    }

    .mybrand img {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .myname {
        font-size: 1.1rem;
    }

    .mybrand img {
        width: 35px;
        height: 35px;
    }
}
