* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #fff;
}

/* Header */



header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1px 50px 1px 50px;
    background: white;
}

.logo {
    font-weight: bold;
    color: white;
    font-size: 1.2rem;
}

.logo img {
    max-width: 90px;
    height: auto;
    display: block;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    text-decoration: none;
    color: black;
    font-weight: 500;
}

nav ul li a:hover {
    color: #a61919;
}

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        /* hide menu initially */
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 20px;
        background: white;
        width: 200px;
        padding: 20px;
        border-radius: 5px;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    }

    nav ul.show {
        display: flex;
        /* show when active */
    }

    .hamburger {
        display: block;
        position: absolute;
        left: 300px;
        /* show hamburger */
    }
}

/* Hero Section */
.hero {
    background-image: url(knit3.jpg);
    background-size: cover;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 120px 20px;
    height: 90vh;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #d3d3d3;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #d3d3d3;
}

/* Buttons */
.buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    padding: 14px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 2px;
}

.btn.red {
    background-color: #a61919;
    color: #d3d3d3;
}

.btn.red:hover {
    background-color: #881313;
}

.btn.outline {
    border: 2px solid white;
    color: #d3d3d3;
}

.btn.outline:hover {
    background-color: white;
    color: black;
}


/* ===== Our Services Section Styles ===== */
.services-section {
    background: #f9fafc;
    padding: 60px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.services-container {
    max-width: 1100px;
    margin: 0 auto;
}

.services-container h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #111;
}

.services-container .subtitle {
    color: #555;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding-bottom: 40px;
}

.service-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.12);
}

.icon {
    background: #8b1d1d;
    width: 45px;
    height: 45px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.service-card img {
    width: 30px;
    height: auto;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: bold;
    color: #111;
}

.service-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .services-container h2 {
        font-size: 2.2rem;
    }

    .services-container .subtitle {
        font-size: 1rem;
    }

    .service-card {
        padding: 25px 15px;
    }

}

/* Small screens (phones) */
@media (max-width: 600px) {
    .services-container h2 {
        font-size: 1.8rem;
    }

    .services-container .subtitle {
        font-size: 0.95rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .icon {
        width: 50px;
        height: 50px;
    }

    .service-card img {
        width: 25px;
    }
}

/*GALLERY*/

.showcase {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.embroidery-heading {
    font-size: 3rem;
    margin-top: 35px;
    color: #111;
}

.embroidery-subtext {
    font-size: 1rem;
    margin-top: 10px;
    color: #555;
}

.embroidery-title {
    color: #8b1d1d;
    margin-bottom: 20px;
}
.carousel-title {
    font-size: 1.8rem;
    margin: 30px 0;
}

.carousel-section {
    margin: 60px 0;
}

.carousel {
    position: relative;
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.carousel img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    font-size: 34px;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
 .arrow:hover {
    background: #000;
 }

.arrow.left {
    left: -10px;
}

.arrow.right {
    right: -10px;
}

.indicators {
    margin-top: 15px;
}

.dot {
    height: 6px;
    width: 30px;
    margin: 0 5px;
    background-color: #bbb;
    display: inline-block;
    transition: background-color 0.3s;
    border-radius: 3px;
}

.dot.active {
    background-color: #333;
}

.cta {
    margin: 50px 0;
}

.cta-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.cta-button {
    background: #333;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
}


/*SERVICES*/



.services-containerr {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
    margin: auto;
}

.service-card {
    background: white;
    border: 1px solid #d6e2e6;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.service-title {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: bold;
}

.service-description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
}

.button-container {
    text-align: center;
    margin-top: 2rem;
}

.service-button {
    background-color: goldenrod;
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.service-button:hover {
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
}

/* ===== Crafted with Passion Section ===== */
.crafted-section {
    background: #f9fafc;
    padding: 60px 20px;
    font-family: Arial, sans-serif;
}

.crafted-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.crafted-text {
    flex: 1 1 500px;
}

.crafted-text h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #111;
}

.crafted-text p {
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.crafted-text .btn {
    display: inline-block;
    background: #8b1d1d;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.crafted-text .btn:hover {
    background: #a62a2a;
}

.crafted-image {
    flex: 1 1 500px;
    text-align: right;
}

.crafted-image img {
    max-width: 100%;
    border-radius: 6px;
}

.site-footer {
    background-color: #000016;
    color: #d3d3d3;
    padding: 3rem 2rem;
    font-family: Arial, sans-serif;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1 1 200px;
    margin: 1rem;
}

.footer-item {
    display: flex;
    align-items: center;
    /* keeps image and text vertically aligned */
    gap: 10px;
    /* space between icon and text */
    margin-bottom: 8px;
    /* space between each line */
}

.footer-item img {
    width: 16px;
    /* adjust size as needed */
    height: auto;
}

.footer-logo {
    width: 150px;
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.footer-heading {
    color: #ffffff;
    margin-bottom: 0.75rem;
    font-weight: bold;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #d3d3d3;
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: #8b1d1d;
}

.footer-section.contact p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
}

.social-icons img {
    width: 30px;
    height: 30px;
}

.footer-image img {
width: 20px;
height: auto;

}

.footer-image {
display: inline;
padding-right: 10px;
padding-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid #515159;
    padding-top: 1rem;
    font-size: 0.9rem;
    color: #555;
}

/* Normal WhatsApp Button */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.whatsapp-btn:hover {
    background: #1ebe5b;
}

.whatsapp-btn i {
    font-size: 1.2rem;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    font-size: 28px;
    padding: 14px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.whatsapp-float:hover {
    background: #1ebe5b;
}