body {
    font-family: Arial, Helvetica, sans-serif;
}

.hero {
    position: relative;
    height: 85vh;
    background: url('./images/hero-background.jpg') no-repeat center center/cover; 
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: left;
    width: 80%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    margin-top: 45%;
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.2rem;
    line-height: 1.6;
}

.hero-image {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 440px;
    height: 500px;
    border-radius: 50% 50% 0 0; 
}

.logo {
    position: absolute;
    top: 5rem;
    left: 15rem;
}

.logo img {
    width: 400px; 
}

@media (max-width: 768px) {
    .hero {
        height: auto; 
        padding: 2rem 1rem;
    }

    .hero-content {
        flex-direction: column; 
        align-items: center;
        text-align: center;
    }

    .hero-text {
        margin-bottom: 0;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-image img {
        max-width: 300px; 
        height: auto; 
    }

    .logo {
        visibility: hidden;
    }

    .logo img {
        width: 200px; 
    }
}

/* Custom Clothing Section */
.custom-clothing {
    padding: 60px 15px ;
    background-color: #fff;
}

.custom-clothing .section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 2rem;
}

.custom-clothing .section-description {
    font-size: 1.05rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
    margin-left: 5rem;
    margin-right: 5rem;
}

.custom-clothing .btn-green, .why-choose-us .btn-green {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(45deg, #00b09b, #96c93d);
    border: none;
    border-radius: 25px;
    text-decoration: none;
    margin-top: 2rem;
}

.custom-clothing .btn-green:hover, .why-choose-us .btn-green:hover {
    background: linear-gradient(45deg, #96c93d, #00b09b);
    text-decoration: none;
    color: #fff;
}

.custom-clothing .clothing-image-row {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.custom-clothing .clothing-image-row img {
    width: 300px;
    height: auto;
    border-radius: 10px;
}

.clothing-image-row img {
    opacity: 0;
    transform: translateY(100px); 
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-bottom.visible {
    opacity: 1;
    transform: translateY(0); 
}


/* Why Choose Us Section */
.why-choose-us {
    background-color: #f9f9f9;
}

.why-choose-us .section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
}

.why-choose-us .section-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
}

.why-choose-us .card {
    border: none;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.why-choose-us .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.why-choose-us .card-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.why-choose-us .card-text {
    font-size: 0.9rem;
    color: #666;
}

.why-choose-us .icon {
    font-size: 2.5rem;
    color: #28a745
}


.services-hero{
    background: url('./images/services-hero.jpg') no-repeat center center/cover;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero{
    background: url('./images/about-hero.jpg') no-repeat center center/cover;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero{
    background: url('./images/contact-hero.jpg') no-repeat center center/cover;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991.98px) {
    .about-hero, .contact-hero, .services-hero {
        height: 30vh;
    }

}

/* OUR SERVICES PAGE */
.custom-apparel-section {
    background-color: #f9f9f9;
    padding: 3rem 0;
}

.custom-apparel-section h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
}

.custom-apparel-section hr {
    width: 90%;
    border: 1.5px solid #2b2b2b;
    margin: 1rem 0;
}

.custom-apparel-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #363636;
    margin-bottom: 1.5rem;
}

.custom-apparel-section .contact-us-btn {
    background: linear-gradient(45deg, #00b09b, #96c93d);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 1.1rem;
    text-decoration: none;
    font-weight: bold;
}

.custom-apparel-section .contact-us-btn:hover {
    background: linear-gradient(45deg, #96c93d, #00b09b);
    color: white;
    text-decoration: none;
}

.custom-apparel-section img {
    max-width: 80%;
    height: auto;
    border-radius: 8px; 
}

.what-we-offer-section {
    background-color: #083540;
    color: white;
    padding: 1.5rem 0;
}

.what-we-offer-section .row {
    display: flex;
    flex-wrap: wrap;
}

.what-we-offer-section .offer-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #d9e8ea;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 3rem !important;
}

.what-we-offer-section .what-we-offer-headline{
    font-size: 1.2rem;
    margin-bottom: 2rem !important;  
    text-align: center;
}

.what-we-offer-section .offer-card img {
    max-width: 50px;
    margin-bottom: 1rem;
}

.what-we-offer-section .offer-card h4 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #083540;
    margin-bottom: 1rem;
}

.what-we-offer-section .offer-card p {
    font-size: 1rem;
    color: #083540;
    margin-bottom: 1.5rem;
}

.what-we-offer-section .offer-card ul {
    list-style-type: disc;
    padding-left: 1rem;
    text-align: left;
    color: #083540;
    font-size: 1rem;
}

.what-we-offer-section .offer-card ul li {
    margin-bottom: 0.5rem;
}

.what-we-offer-section .col-md-4 {
    display: flex;
    flex: 1 1 auto;
}

.size-chart-section {
    background-color: #f9f9f9;
}

.size-chart-section h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1.5rem;
}

.size-chart-section p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
}

.size-chart-wrapper {
    max-width: 80%;
    margin: 0 auto;
}

.size-chart-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-bottom: 2rem;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.buttons .btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 25px;
    text-decoration: none;
    text-align: center;
    color: white;
}

.btn-download, .btn-contact {
    background: linear-gradient(45deg, #28a745, #7fc645);
}

.buttons .btn:hover {
    color: white;
    background: linear-gradient(45deg, #96c93d, #00b09b);
}

.nk-styles-section {
    background-image: url('./images/why-choose-usBG1.png');
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
    color: #000;
    position: relative;
}

.nk-title {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #222;
}

.nk-subheadline {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #555;
}

.nk-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: #333;
    margin-left: 7rem;
    margin-right: 7rem;
}

.nk-card {
    background-color: rgba(0, 0, 0, 0.8); 
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.nk-card .card-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.nk-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
}

.nk-card .icon {
    font-size: 2.5rem;
    color: #28a745;
    margin-bottom: 10px;
}

.card-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.card-text {
    font-size: 0.9rem;
    color: #ddd;
}

/* Updated Photo Gallery Section */
.photo-gallery-section {
    padding: 1rem 0;
    background-color: #fdfdfd;
}

.photo-gallery-section h2 {
    font-size: 2.1rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 1rem;
}

.photo-gallery-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    grid-gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item:hover img {
    transform: scale(1.03);
    filter: brightness(0.95);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr); 
    }
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr; 
    }
}


/* ABOUT US PAGE */
.our-story{
    background: #ffffff;
    padding: 3rem 0;
}

.our-story-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #223034;
}

.our-story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #444;
}

.our-story img {
    max-width: 100%;
}

.vision-mission {
    background: url('./images/visionBG.png') no-repeat center center;
    background-size: cover;
}

.vision-mission .row {
    display: flex;
    align-items: stretch; 
    justify-content: center;
}

.vision-mission .card {
    flex: 1;
    background-color: rgba(0, 77, 94);
    border-radius: 8px;
    color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    flex-direction: column;
    align-items: center;
    min-height: 300px;
    height: 100%;
}

.vision-mission .icon {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem !important;
}

.vision-mission .title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 1.5rem !important;
}

.vision-mission .text {
    font-size: 1rem;
    line-height: 1.8;
    color: #f0f0f0;
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
}

/* CONTACT US PAGE */
.contact-det .card {
    border-radius: 10px;
}

.contact-det .border-bottom {
    border-color: #ddd; 
}

.contact-det input, 
.contact-det textarea {
    border: 1px solid #ddd;
    padding: 10px;
}

.contact-det h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.3rem;
}

.contact-det .details-p {
    font-size: 1.1rem;
    text-align: center;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-det .form-p {
    font-size: 1.1rem;
}

.contact-det h3{
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.contact-det .contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #223034;
    border: 1px solid #fff;
    border-radius: 25px;
    padding: 10px 20px;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.2rem;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}

.contact-det .contact-item i {
    font-size: 1.8rem;
    margin-right: 15px;
}

.contact-det .social-media {
    text-align: center;
    margin-top: 2.5rem;
}

.contact-det .social-media a {
    margin: 0 15px;
    color: white;
    font-size: 2.2rem;
    text-decoration: none;
    transition: transform 0.2s ease, color 0.2s ease;
}

.contact-det .social-media a:hover {
    transform: scale(1.2);
    color: #76bdb5; 
}

.contact-det button{
    background: linear-gradient(45deg, #28a745, #7fc645); 
    border-radius: 10px;
    font-weight: bold;
    color: white;
    justify-content: center;
    align-items: center;
    width: 30%;
    padding: 10px;
}

.contact-det button:hover{
    background: linear-gradient(45deg, #96c93d, #00b09b);
    color: white;
}

@media (max-width: 768px) {
    .custom-clothing .section-description {
        margin-left: 2rem;
        margin-right: 2rem;
        text-align: justify;
    }
    
    /*OUR SEVICES PAGE*/
    .custom-apparel-section{
        padding: 2rem 1rem;
    }

    .custom-apparel-section h2 {
        font-size: 1.5rem; 
        text-align: left; 
    }

    .custom-apparel-section p {
        font-size: 1rem; 
        text-align: justify; 
    }

    .custom-apparel-section .col-md-6 {
        text-align: center; 
        margin-bottom: 2rem; 
    }

    .custom-apparel-section img{
        max-width: 100%;
        margin-top: 7%;
    }

    .what-we-offer-section {
        padding: 1rem 1rem;
    }

    .what-we-offer-section h2 {
        font-size: 1.5rem;
    }

    .what-we-offer-section .offer-card {
        padding: 2rem 2rem !important; 
    }

    .what-we-offer-section ul {
        padding-left: 1.2rem; 
    }

    .what-we-offer-section img {
        max-width: 40px; 
    }

    .size-chart-section {
        padding: 2rem 1rem;
    }

    .size-chart-section h2 {
        font-size: 1.5rem;
    }

    .size-chart-section p {
        font-size: 1rem;
        text-align: justify;
    }

    .size-chart-section .size-chart-image {
        max-width: 100%;
        height: auto; 
    }

    .size-chart-section .buttons a {
        margin: 0.5rem auto;
        width: 80%; 
    }

    .buttons {
        flex-direction: column;
        gap: 5px;
    }

    .nk-card {
        padding: 15px;
    }

    .nk-styles-section {
        padding: 2rem 1rem;
    }

    .nk-styles-section h2 {
        font-size: 1.5rem;
    }

    .nk-styles-section .nk-subheadline,
    .nk-styles-section .nk-description {
        font-size: 1rem;
        text-align: justify;
    }

    .nk-styles-section .nk-description{
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .nk-styles-section .row {
        flex-direction: column; 
    }

    .nk-styles-section .nk-card {
        margin-bottom: 0.5rem; 
    }

    .nk-styles-section .nk-card i {
        font-size: 2rem; 
    }

    /*ABOUT US PAGE*/
    .our-story-title {
        font-size: 2rem;
        text-align: center;
    }

    .our-story-text {
        font-size: 1rem;
        text-align: justify;
        padding: 10px;
    }

    .vision-mission .row {
        flex-direction: column; 
    }

    .vision-mission .card {
        margin-bottom: 20px;
        min-height: auto;
    }

    .vision-mission .title {
        font-size: 1.25rem;
    }

    .vision-mission .text {
        font-size: 0.90rem;
        padding: 0;
    }

    /*CONTACT US PAGE*/
    .contact-det h2 {
        font-size: 1.8rem;
    }

    .contact-det .details-p {
        font-size: 1rem;
        text-align: justify;
        margin: 1rem;
    }

    .contact-det .contact-item {
        flex-direction: column; 
        padding: 15px;
        width: 80%; 
    }

    .contact-det .contact-item i {
        font-size: 1.5rem;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .contact-det .social-media {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .contact-det .social-media a {
        font-size: 1.8rem; 
        margin: 0 10px; 
    }

    .contact-det .card {
        padding: 20px; 
    }

    .contact-det form .row.mb-3 {
        flex-direction: column; 
    }

    .contact-det form .row.mb-3 .col {
        width: 100%; 
        margin-bottom: 10px; 
    }

    .contact-det input, 
    .contact-det textarea {
        padding: 8px; 
        font-size: 0.9rem; 
    }

    .contact-det textarea {
        height: 120px; 
    }

    .contact-det button {
        width: 100%; 
        padding: 12px; 
        font-size: 1rem; 
    }


}
