/* ----------------- Navbar Styling ----------------- */
body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.navbar {
    transition: all 0.3s ease-in-out;
    padding: 20px 0;
    max-height:100px ;
    background-color:#ece3e3 !important;
}

/* Shrink Navbar on Scroll */
.navbar.shrink {
    padding: 15px 0;
    max-height: 80px;
    background-color: #ece3e3 !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Logo Styling */
.logopng {
    max-height: 79px !important;
}
.logopng.shrink {
    
    max-height: 40px !important;
    padding: 5px !important;
}
.contactbox{
    display: flex !important;
    flex-wrap: wrap !important;
    margin-top: 100px !important;
}
/* ----------------- Hero Section ----------------- */
.hero-section {
   
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 80px;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* ----------------- Product Carousel (Cards) ----------------- */
.product-card {
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.product-card img {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.product-card:hover {
    transform: scale(1.05);
}

/* ----------------- About Section ----------------- */
.about-section {
    padding: 50px 0;
}

.about-title {
    font-size: 2.5rem;
    padding: 10px;
    border-radius: 10px;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(167, 166, 166, 0.5);
    margin-bottom: 20px;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(167, 166, 166, 0.5);
}

/* ----------------- Meet Our Team Section ----------------- */
.team-heading {
    text-align: center;
    font-size: 2.5rem;
    padding: 10px;
    display: inline-block;
    border-radius: 10px;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(167, 166, 166, 0.5);
    margin-bottom: 20px;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

/* ----------------- Contact Form ----------------- */
.contact-form input,
.contact-form textarea {
    margin-bottom: 15px;
    width: 100%;
}

/* Contact Info Icons */
.contact-info i {
    margin-right: 10px;
}

/* ----------------- Footer ----------------- */
footer h5 {
    margin-bottom: 20px;
}

footer p {
    margin-bottom: 10px;
}

/* ----------------- Social Icons ----------------- */
.social-icons a {
    font-size: 1.5rem;
    margin: 0 10px;
    color: #007bff;
}

/* ----------------- Responsive Media Queries ----------------- */
/* Tablets (max-width: 768px) */
@media (max-width: 768px) {
    .hero-section {
        height: 50vh;
    }

    .hero-section h1 {
        font-size: 2rem;
        padding: 15px;
    }

    .team-heading,
    .about-title {
        font-size: 2rem;
    }

    .contact-form button {
        width: 100%;
    }

    /* Center align contact details */
    .contact-info {
        text-align: center;
    }

    .social-icons a {
        font-size: 1.3rem;
    }

    .topmargin {
        margin-top: 80px !important;
    }
}

/* Mobile Phones (max-width: 480px) */
@media (max-width: 480px) {
    .hero-section {
        height: 40vh;
        padding-top: 60px;
    }

    .hero-section h1 {
        font-size: 1.8rem;
        padding: 10px;
    }

    .team-member img {
        width: 120px;
        height: 120px;
    }

    .about-title,
    .team-heading {
        font-size: 1.8rem;
        text-align: center;
    }

    .contact-info h4 {
        font-size: 1.2rem;
    }

    .contact-info p {
        font-size: 0.9rem;
    }

    .social-icons a {
        font-size: 1.2rem;
    }

    .topmargin {
        margin-top: 130px !important;
        
    }
}
.topmargin {
    margin-top: 150px;
}
/* -------------- Products Header -------------- */
.products-header {
    text-align: center;
    padding-top: 120px;
    color: rgb(99, 97, 97);
    font-size: 2rem;
    height: 220px;
    font-weight: bold;
    position: relative;
    background: #f8f9fa;
}

.shop-heading {
    position: absolute;
    bottom: px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    width: 85%;
    padding: 15px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

/* -------------- Product Card Styling -------------- */
.product-card {
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.product-card img {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

/* Product Title (Move Up on Hover) */
.product-title {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
    transition: transform 0.3s ease-in-out;
}

.product-card:hover .product-title {
    transform: translateY(-25px);
}

/* Icons (Initially Hidden) */
.card-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    position: absolute;
    bottom: -50px;
    width: 100%;
    transition: bottom 0.3s ease-in-out;
}

.card-icons a {
    background: #007bff;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 0;
    transition: background 0.3s ease-in-out;
}

.card-icons a:hover {
    background: #0e437d;
}

/* Show icons from bottom on hover */
.product-card:hover .card-icons {
    bottom: 10px;
}

/* Filter Section */
.filter {
    display: flex;
    justify-content: end;
}

.filter input {
    width: 250px;
}

/* Responsive */
@media (max-width: 992px) {
    .shop-heading {
        width: 90%;
    }

    .product-card img {
        height: 170px;
    }

    .filter {
        justify-content: center;
        margin-bottom: 15px;
    }

    .filter input {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .products-header {
        height: 200px;
        font-size: 1.8rem;
    }

    .shop-heading {
        width: 95%;
        font-size: 16px;
    }

    .product-card img {
        height: 150px;
    }

    .card-icons {
        gap: 5px;
    }

    .product-title {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .products-header {
        height: 180px;
        font-size: 1.5rem;
    }

    .shop-heading {
        width: 95%;
        font-size: 14px;
    }

    .product-card {
        padding: 10px;
    }

    .product-card img {
        height: 140px;
    }

    .card-icons a {
        padding: 8px 12px;
    }
}
/* Hero Section services page */
.myhero-section {
    background: url('https://via.placeholder.com/1920x300') center/cover no-repeat;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-align: center;
}

.breadcrumb {
    background: none;
    display: flex;
    justify-content: center;
}

.breadcrumb a {
    text-decoration: none;
    color: #007bff;
}

/* Service Content */
.service-content {
    padding: 50px 0;
}
.service-img{
    display: flex !important
    ;
    display: flex !important
    ;
        justify-content: space-around;
        flex-direction: column;
        flex-wrap: nowrap;
        align-content: stretch;
        align-items: stretch;
    
}
.service-img img {
    max-width: 100%;
   
    
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
   
}

.order-btn {
    background: linear-gradient(to right, #ffa500, #ff7f00);
    border: none;
    padding: 12px 20px;
    font-size: 18px;
    color: white;
    border-radius: 5px;
    transition: 0.3s;
}

.order-btn:hover {
    background: linear-gradient(to right, #ff7f00, #ffa500);
}

.navbar {
    transition: all 0.3s ease-in-out;
    padding: 15px 0;
    background-color: #ddd !important;
}

.navbar.shrink {
    padding: 10px 0;
    background-color: #bbb !important;
}

.logopng {
    max-height: 60px;
}