@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap');

body {
    font-family: 'Montserrat', Arial, sans-serif;
    margin: 0;
    background: linear-gradient(135deg, #f8fafd 0%, #e3eafc 100%);
    color: #222;
    transition: background 0.4s;
}
.hero {
    background: linear-gradient(90deg, #0a2342 60%, #2ca6a4 100%);
    color: #fff;
    padding: 80px 20px 60px 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(10,35,66,0.12);
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    animation: fadeInDown 1s;
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    margin-bottom: 0.2em;
    letter-spacing: 2px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.hero p {
    font-size: 1.3em;
    opacity: 0.92;
}
nav {
    background: #0a2342;
    padding: 0 20px;
    box-shadow: 0 2px 8px rgba(10,35,66,0.08);
    position: sticky;
    top: 0;
    z-index: 10;
    animation: fadeIn 1.2s;
}
nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}
nav li {
    margin: 0 18px;
}
nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 16px 0;
    display: block;
    transition: color 0.2s, border-bottom 0.2s;
    border-bottom: 2px solid transparent;
}
nav a:hover {
    color: #2ca6a4;
    border-bottom: 2px solid #2ca6a4;
}
section {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px 40px 20px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(10,35,66,0.07);
    position: relative;
    animation: fadeInUp 1s;
}
section:not(:first-of-type) {
    margin-top: 40px;
}
h2 {
    color: #0a2342;
    margin-bottom: 18px;
    font-family: 'Playfair Display', serif;
    font-size: 2.2em;
    letter-spacing: 1px;
    position: relative;
}
h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2ca6a4, #0a2342);
    margin: 12px 0 0 0;
    border-radius: 2px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 18px;
}
.gallery-grid img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(10,35,66,0.10);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    animation: fadeIn 1.2s;
}
.gallery-grid img:hover {
    transform: scale(1.04) rotate(-1deg);
    box-shadow: 0 8px 32px rgba(44,166,164,0.18);
}
.testimonials blockquote {
    background: #eaf6fb;
    border-left: 4px solid #2ca6a4;
    margin: 0 0 18px 0;
    padding: 18px 24px;
    border-radius: 10px;
    font-style: italic;
    box-shadow: 0 2px 8px rgba(44,166,164,0.08);
    animation: fadeInUp 1.2s;
}
.testimonials footer {
    font-weight: bold;
    color: #0a2342;
    margin-top: 8px;
}
.clients {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
}
.client {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 120px;
    background: #f8fafd;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(10,35,66,0.06);
    padding: 12px 0 8px 0;
    transition: box-shadow 0.3s, transform 0.3s;
    animation: fadeIn 1.2s;
}
.client img {
    max-width: 80px;
    max-height: 60px;
    margin-bottom: 8px;
    filter: grayscale(0.2);
    transition: filter 0.3s;
}
.client:hover {
    box-shadow: 0 8px 32px rgba(44,166,164,0.13);
    transform: translateY(-4px) scale(1.04);
}
.client:hover img {
    filter: grayscale(0);
}
.team {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin-top: 18px;
}
.team-member {
    background: #f8fafd;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(10,35,66,0.08);
    padding: 24px 18px 18px 18px;
    text-align: center;
    width: 220px;
    transition: box-shadow 0.3s, transform 0.3s;
    animation: fadeInUp 1.2s;
}
.team-member img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
    border: 3px solid #2ca6a4;
    box-shadow: 0 2px 8px rgba(44,166,164,0.10);
}
.team-member:hover {
    box-shadow: 0 8px 32px rgba(44,166,164,0.13);
    transform: translateY(-4px) scale(1.04);
}
form {
    background: #f8fafd;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(10,35,66,0.08);
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
    animation: fadeInUp 1.2s;
}
form input, form textarea {
    padding: 12px;
    border: 1px solid #cfd8dc;
    border-radius: 6px;
    font-size: 1em;
    transition: border 0.2s;
}
form input:focus, form textarea:focus {
    border: 1.5px solid #2ca6a4;
    outline: none;
}
form button {
    background: linear-gradient(90deg, #0a2342 60%, #2ca6a4 100%);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    font-weight: 600;
    letter-spacing: 1px;
}
form button:hover {
    background: linear-gradient(90deg, #2ca6a4 60%, #0a2342 100%);
    transform: scale(1.04);
}
footer {
    background: #0a2342;
    color: #fff;
    text-align: center;
    padding: 22px 0;
    margin-top: 60px;
    font-size: 1.1em;
    letter-spacing: 1px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    box-shadow: 0 -2px 8px rgba(10,35,66,0.08);
    animation: fadeIn 1.2s;
}
@media (max-width: 900px) {
    .gallery-grid, .team {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    .clients {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-40px); }
    to { opacity: 1; transform: translateY(0); }
}
.gallery-thumb { cursor: pointer; transition: box-shadow 0.2s, transform 0.2s; }
.gallery-thumb:hover { box-shadow: 0 8px 32px rgba(44,166,164,0.18); transform: scale(1.04) rotate(-1deg); }
.lightbox-modal { display: flex; align-items: center; justify-content: center; position: fixed; z-index: 1000; left: 0; top: 0; width: 100vw; height: 100vh; background: rgba(10,35,66,0.85); animation: fadeIn 0.4s; }
.lightbox-img { max-width: 80vw; max-height: 70vh; border-radius: 12px; box-shadow: 0 8px 32px rgba(44,166,164,0.18); }
.lightbox-caption { color: #fff; margin-top: 18px; font-size: 1.2em; text-align: center; }
.lightbox-close { position: absolute; top: 40px; right: 60px; color: #fff; font-size: 2.5em; cursor: pointer; z-index: 1100; transition: color 0.2s; }
.lightbox-close:hover { color: #2ca6a4; }
.updates-list { display: flex; flex-direction: column; gap: 24px; margin-top: 18px; }
.update-card { background: #f8fafd; border-radius: 12px; box-shadow: 0 2px 8px rgba(10,35,66,0.08); padding: 22px 18px; }
.update-date { color: #2ca6a4; font-weight: 600; font-size: 1em; margin-bottom: 6px; }
.update-title { font-family: 'Playfair Display', serif; font-size: 1.3em; color: #0a2342; margin-bottom: 8px; }
.update-content { color: #222; font-size: 1.08em; }
.cookie-banner { position: fixed; bottom: 0; left: 0; width: 100vw; background: #0a2342; color: #fff; display: flex; justify-content: center; align-items: center; gap: 18px; padding: 18px 0; z-index: 2000; font-size: 1.08em; box-shadow: 0 -2px 8px rgba(10,35,66,0.08); animation: fadeInUp 0.7s; }
.cookie-banner button { background: #2ca6a4; color: #fff; border: none; border-radius: 6px; padding: 8px 22px; font-size: 1em; font-weight: 600; cursor: pointer; transition: background 0.2s; }
.cookie-banner button:hover { background: #0a2342; color: #2ca6a4; border: 1.5px solid #2ca6a4; }

/* Garments/Fashion Industry Enhancements */
.garments-hero {
    position: relative;
    background: url('assets/fabric-texture.jpg'), linear-gradient(120deg, #e3eafc 0%, #cfd8dc 100%);
    background-size: cover;
    background-blend-mode: multiply;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(44,166,164,0.18);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 0 30px 0;
}
.garment-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 18px;
    filter: drop-shadow(0 2px 8px rgba(44,166,164,0.13));
}
.cta-btn {
    display: inline-block;
    margin-top: 24px;
    background: linear-gradient(90deg, #2563eb 0%, #2ca6a4 100%);
    color: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.1em;
    padding: 14px 38px;
    border-radius: 28px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(44,166,164,0.10);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    letter-spacing: 0.5px;
}
.cta-btn:hover {
    background: linear-gradient(90deg, #2ca6a4 0%, #2563eb 100%);
    box-shadow: 0 4px 16px rgba(44,166,164,0.18);
    transform: translateY(-2px) scale(1.04);
}
.about-flex {
    display: flex;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
}
.about-img {
    width: 180px;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(44,166,164,0.10);
    object-fit: cover;
}
.about-highlights {
    list-style: none;
    padding: 0;
    margin: 18px 0 0 0;
    display: flex;
    gap: 28px;
}
.about-highlights li {
    font-size: 1.08em;
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}
.services-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 18px;
    justify-content: center;
}
.services-list li {
    background: #f8fafd;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(44,166,164,0.08);
    padding: 22px 32px;
    font-size: 1.1em;
    color: #0a2342;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
    font-weight: 500;
    transition: box-shadow 0.2s, transform 0.2s;
}
.services-list li:hover {
    box-shadow: 0 8px 32px rgba(44,166,164,0.13);
    transform: translateY(-2px) scale(1.03);
}
/* Garment/Fashion Icon Styles */
.icon-thread::before {
    content: '\1F9F5'; /* spool of thread emoji */
    font-size: 1.3em;
    margin-right: 4px;
}
.icon-fabric::before {
    content: '\1F9F6'; /* safety vest emoji as fabric */
    font-size: 1.3em;
    margin-right: 4px;
}
.icon-needle::before {
    content: '\1F528'; /* hammer emoji as needle substitute */
    font-size: 1.3em;
    margin-right: 4px;
}
.icon-design::before {
    content: '\1F58C'; /* pen emoji */
    font-size: 1.3em;
    margin-right: 4px;
}
.icon-development::before {
    content: '\1F527'; /* wrench emoji */
    font-size: 1.3em;
    margin-right: 4px;
}
.icon-quality::before {
    content: '\1F4A1'; /* lightbulb emoji as quality */
    font-size: 1.3em;
    margin-right: 4px;
}
.icon-shipping::before {
    content: '\1F69A'; /* delivery truck emoji */
    font-size: 1.3em;
    margin-right: 4px;
}
@media (max-width: 900px) {
    .about-flex { flex-direction: column; gap: 18px; }
    .about-img { width: 100%; max-width: 320px; }
    .services-list { flex-direction: column; gap: 18px; }
}

/* Main Navbar */
.main-navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(10,35,66,0.07);
    z-index: 100;
    padding: 0;
}
.navbar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    height: 72px;
}
.navbar-logo {
    height: 48px;
    width: auto;
    margin-right: 32px;
}
.navbar-links {
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.navbar-links a {
    color: #0a2342;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.08em;
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-bottom 0.2s;
}
.navbar-links a:hover, .navbar-links a:focus {
    color: #2563eb;
    border-bottom: 2px solid #2563eb;
}

/* Hero Section */
.hero-section {
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    box-shadow: 0 8px 32px rgba(10,35,66,0.10);
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
    filter: brightness(0.7) blur(1px);
    transition: filter 0.3s;
}
.hero-section:hover .hero-bg {
    filter: brightness(0.8) blur(0.5px);
}
.hero-inner {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    padding: 60px 0 40px 0;
}
.hero-inner h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2em;
    margin-bottom: 0.2em;
    letter-spacing: 2px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.hero-tagline {
    font-size: 1.3em;
    opacity: 0.92;
    margin-bottom: 28px;
}
.hero-cta {
    margin-top: 18px;
    font-size: 1.15em;
    padding: 16px 44px;
    border-radius: 32px;
    box-shadow: 0 2px 8px rgba(44,166,164,0.13);
    border: none;
    outline: none;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.hero-cta:active {
    transform: scale(0.98);
}

/* Card-based Section Layouts */
.section {
    padding: 0;
    background: none;
    box-shadow: none;
    margin: 0;
}
.card-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0 0 0;
    margin: 0;
}
.section-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(10,35,66,0.07);
    padding: 40px 36px;
    max-width: 800px;
    width: 100%;
    margin: 0 0 60px 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.section-card h2 {
    text-align: center;
    width: 100%;
}
.about-highlights, .services-list {
    justify-content: center;
}
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 18px;
    justify-items: center;
    width: 100%;
}
@media (min-width: 600px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.gallery-thumb {
    width: 100%;
    max-width: 320px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(10,35,66,0.10);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    margin: 0 auto;
    display: block;
}
.testimonials {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.clients {
    width: 100%;
    max-width: 700px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin: 0 auto;
}
.client {
    width: 120px;
    margin: 0 auto;
}
.team {
    width: 100%;
    max-width: 700px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
    margin: 0 auto;
}
.section-card form {
    margin: 0 auto;
    width: 100%;
    max-width: 400px;
}
.hero-section {
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}
.hero-inner {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    padding: 60px 0 40px 0;
}
.hero-inner h1, .hero-tagline, .hero-cta {
    width: 100%;
    text-align: center;
}
@media (max-width: 900px) {
    .section-card {
        padding: 24px 8px;
        margin: 0 0 40px 0;
    }
}
@media (max-width: 600px) {
    .section-card {
        padding: 12px 2px;
        margin: 0 0 32px 0;
    }
    .hero-inner {
        padding: 32px 0 24px 0;
    }
}

/* Footer */
.main-footer {
    background: linear-gradient(90deg, #0a2342 60%, #2563eb 100%);
    color: #fff;
    padding: 0;
    margin-top: 0;
    box-shadow: 0 -2px 16px rgba(10,35,66,0.10);
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 32px 24px 32px;
    flex-wrap: wrap;
    gap: 32px;
}
.footer-logo {
    height: 48px;
    width: auto;
    margin-bottom: 12px;
}
.footer-contact p {
    margin: 0 0 6px 0;
    font-size: 1em;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: #2ca6a4;
}
.footer-social {
    display: flex;
    gap: 16px;
    align-items: center;
}
.footer-social img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
    transition: filter 0.2s;
}
.footer-social img:hover {
    filter: brightness(0.7) invert(0.7) sepia(1) hue-rotate(160deg) saturate(4);
}
.footer-bottom {
    background: #182c47;
    text-align: center;
    padding: 14px 0;
    font-size: 1em;
    color: #b0bec5;
    border-top: 1px solid #2ca6a4;
}

/* Responsive */
@media (max-width: 900px) {
    .navbar-content, .footer-content {
        flex-direction: column;
        align-items: center;
        padding: 0 12px;
        gap: 18px;
    }
    .section-card {
        padding: 24px 8px;
        margin: 0 4px 40px 4px;
    }
}
@media (max-width: 600px) {
    .navbar-content {
        height: auto;
        flex-direction: column;
        gap: 12px;
    }
    .main-navbar {
        height: auto;
    }
    .section-card {
        padding: 12px 2px;
        margin: 0 0 32px 0;
    }
    .footer-content {
        padding: 24px 8px 12px 8px;
    }
    .hero-inner {
        padding: 32px 0 24px 0;
    }
}

/* Section Dividers */
.card-section:not(:first-child)::before {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #2ca6a4, #2563eb);
    margin: 0 auto 36px auto;
    border-radius: 2px;
    opacity: 0.12;
}

/* Interactive Cards & Images */
.gallery-thumb, .client, .team-member {
    transition: box-shadow 0.25s, transform 0.25s, filter 0.25s;
}
.gallery-thumb:hover, .client:hover, .team-member:hover {
    box-shadow: 0 8px 32px rgba(44,166,164,0.18);
    transform: translateY(-4px) scale(1.04);
    filter: brightness(1.04);
    z-index: 2;
}

/* Button & Link Interactivity */
.section-card button, .section-card a, .hero-cta {
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.section-card button:hover, .section-card a:hover, .hero-cta:hover {
    background: linear-gradient(90deg, #2ca6a4 0%, #2563eb 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(44,166,164,0.18);
    transform: translateY(-2px) scale(1.04);
}

/* Font Consistency */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}
p, li, a, button, input, textarea, label {
    font-family: 'Montserrat', Arial, sans-serif;
} 