@import url('navbar-responsive.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}



.hero {
    position: relative;
    width: 100%;
    height: 100vh;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}



.hero-video {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 1;
}



.hero-overlay {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.55);

    z-index: 2;
}



.hero-content {
    position: relative;

    z-index: 3;

    text-align: center;

    color: white;
}

.hero-content h1 {
    font-size: 65px;
    font-weight: 700;

    margin-bottom: 15px;
}

.hero-content p {
    font-size: 25px;
}

.hero-content p span {
    font-weight: 700;
    text-decoration: underline;
}



.hero-logo {
    position: absolute;

    right: 40px;
    bottom: 25px;

    width: 130px;
    height: auto;

    z-index: 4;
}



@media (max-width: 768px) {

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .hero-logo {
        width: 90px;

        right: 20px;
        bottom: 20px;
    }
}
/* ===============================
   HEADER BELOW VIDEO
================================ */

.site-header {
    width: 100%;
    background: #e7ebed;
    position: relative;
    z-index: 100;
}

.navbar-container {
    width: 88%;
    max-width: 1500px;
    min-height: 330px;
    margin: auto;

    display: flex;
    align-items: flex-start;
}



.header-logo {
    width: 195px;
    margin-top: 35px;
    flex-shrink: 0;
}

.header-logo img {
    width: 100%;
    display: block;
}


/* NAVIGATION */

.main-nav {
    display: flex;
    align-items: center;

    gap: 21px;

    margin-left: 70px;
    margin-top: 125px;

    white-space: nowrap;
}

.main-nav > a {
    color: #111;
    text-decoration: none;

    font-size: 21px;
    font-weight: 700;
}

.main-nav > a:hover,
.main-nav > a.active {
    color: #b32020;
}


/* SERVICES */

.services-dropdown {
    position: relative;
}

.services-dropdown button {
    border: none;
    background: transparent;

    font-size: 21px;
    font-weight: 700;

    cursor: pointer;
}

.services-menu {
    position: absolute;
    z-index: 9999;

    top: 35px;
    left: 0;

    width: 240px;

    background: white;

    box-shadow: 0 10px 30px rgba(0,0,0,.18);

    border-radius: 8px;

    overflow: hidden;

    opacity: 0;
    visibility: hidden;

    transform: translateY(-8px);

    transition: .2s;
}

.services-menu.show {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.services-menu a {
    display: block;

    padding: 15px 18px;

    color: #111;
    text-decoration: none;

    font-size: 16px;
}

.services-menu a:hover {
    background: #b32020;
    color: white;
}
#servicesButton {
    display: flex;
    align-items: center;
    gap: 8px;
}

#servicesButton i {
    font-size: 12px;
}



.page-banner {
    width: calc(100% - 96px);
    height: 375px;

    margin: 0 48px 40px;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border-radius: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    overflow: hidden;
}

/* Dark overlay */
.page-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.20);
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.banner-content h1 {
    margin: 0 0 35px;
    font-size: 54px;
    font-weight: 700;
    color: white;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;

    font-size: 24px;
    font-weight: 600;
}

.breadcrumb a {
    color: white;
    text-decoration: underline;
}

.breadcrumb span {
    color: white;
}
@media (max-width: 768px) {

    .page-banner {
        width: calc(100% - 30px);
        height: 280px;
        margin: 0 15px 25px;
        border-radius: 18px;
        background-position: center;
    }

    .banner-content h1 {
        font-size: 34px;
        margin-bottom: 20px;
    }

    .breadcrumb {
        font-size: 17px;
    }
}
/* ==============================
   DIGITIZING SERVICES BANNER
   ============================== */

.digitizing-banner {
    width: calc(100% - 48px);
    height: 375px;
    margin: 0 24px 40px;
    border-radius: 24px;

    background-image: url("../img/digitizing-banner.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dark overlay */
.digitizing-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

/* Center text */
.digitizing-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.digitizing-banner-content h1 {
    margin: 0 0 25px;
    font-size: 54px;
    font-weight: 700;
    color: white;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    font-size: 22px;
    font-weight: 600;
    color: white;
}

.breadcrumb a {
    color: white;
    text-decoration: underline;
}

.breadcrumb span {
    color: white;
}

/* =========================================
   EMBROIDERY DIGITIZING SERVICES
========================================= */

.digitizing-services {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 55px 25px;
    box-sizing: border-box;
    background: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
}


/* =========================================
   MAIN HEADING
========================================= */

.services-header {
    width: 100%;
    text-align: center;
    margin-bottom: 65px;
}

.services-header h1 {
    margin: 0 0 28px 0;
    font-size: 48px;
    font-weight: 700;
    color: #000000;
}

.services-header p {
    max-width: 1500px;
    margin: 0 auto;
    color: #777777;
    font-size: 20px;
    line-height: 1.6;
}


/* =========================================
   SERVICE ROW
========================================= */

.service-row {
    width: 100%;
    display: grid;

    grid-template-columns: 2fr 1fr;

    gap: 55px;

    align-items: center;

    padding: 35px 0 50px;

    margin-bottom: 35px;

    border-bottom: 6px solid #d4d4d4;

    box-sizing: border-box;
}


/* Reverse row
   Image LEFT
   Text RIGHT
*/

.service-row.reverse {
    grid-template-columns: 1fr 2fr;
}


/* =========================================
   SERVICE CONTENT
========================================= */

.service-content {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}


/* =========================================
   TITLE + DESCRIPTION
========================================= */

.service-title {
    width: 100%;
}

.service-title h2 {
    margin: 0 0 8px 0;

    color: #000000;

    font-size: 36px;

    font-weight: 700;

    line-height: 1.2;
}

.service-title p {
    margin: 0 0 20px 0;

    color: #777777;

    font-size: 20px;

    line-height: 1.55;
}


/* =========================================
   GALLERY BUTTON
   SAME POSITION IN EVERY SECTION
========================================= */

.gallery-btn {
    width: 100%;

    display: flex;

    justify-content: flex-end;

    align-items: center;

    margin-bottom: 20px;
}

.gallery-btn a {
    width: 135px;
    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    box-sizing: border-box;

    background: #0878d1;

    color: #ffffff;

    text-decoration: none;

    font-size: 18px;

    font-weight: 700;

    border-radius: 4px;

    transition: all 0.3s ease;
}

.gallery-btn a:hover {
    background: #0565b5;

    transform: translateY(-2px);
}


/* =========================================
   THREE SMALL IMAGES
========================================= */

.thumbnail-gallery {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 35px;

    box-sizing: border-box;
}

.thumbnail-gallery img {
    width: 100%;

    height: 250px;

    display: block;

    object-fit: cover;

    background: #f5f5f5;

    transition: transform 0.3s ease;
}

.thumbnail-gallery img:hover {
    transform: scale(1.03);
}


/* =========================================
   MAIN IMAGE
========================================= */

.main-image {
    width: 100%;

    overflow: hidden;
}

.main-image img {
    width: 100%;

    height: 540px;

    display: block;

    object-fit: cover;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .digitizing-services {
        padding: 45px 20px;
    }

    .services-header h1 {
        font-size: 40px;
    }

    .services-header p {
        font-size: 18px;
    }

    .service-row,
    .service-row.reverse {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .service-row.reverse .main-image {
        order: 1;
    }

    .service-row.reverse .service-content {
        order: 2;
    }

    .main-image img {
        height: 450px;
    }

    .thumbnail-gallery img {
        height: 220px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .digitizing-services {
        padding: 35px 15px;
    }

    .services-header {
        margin-bottom: 40px;
    }

    .services-header h1 {
        font-size: 30px;
        line-height: 1.2;
    }

    .services-header p {
        font-size: 16px;
        line-height: 1.5;
    }

    .service-row,
    .service-row.reverse {
        display: flex;

        flex-direction: column;

        gap: 25px;

        padding: 30px 0 35px;
    }

    .service-content {
        width: 100%;
    }

    .service-title h2 {
        font-size: 28px;
    }

    .service-title p {
        font-size: 17px;
    }

    /* Button same width and position */

    .gallery-btn {
        justify-content: flex-start;

        margin-bottom: 20px;
    }

    .gallery-btn a {
        width: 135px;

        height: 52px;
    }

    /* Small images */

    .thumbnail-gallery {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .thumbnail-gallery img {
        width: 100%;

        height: 250px;
    }

    /* Main image */

    .main-image {
        width: 100%;
    }

    .main-image img {
        width: 100%;

        height: 350px;
    }
}

/* =========================================
   MORE SERVICES SECTION
========================================= */

.more-services-section {
    width: 100%;
    min-height: 520px;

    background-image: url("");
    background-size: cover;
    background-position: center;

    background-color: #171c42;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 70px 20px;

    box-sizing: border-box;
}


/* =========================================
   CONTENT
========================================= */

.more-services-content {
    width: 100%;
    max-width: 1000px;

    text-align: center;

    color: #ffffff;
}


/* =========================================
   SERVICES LABEL
========================================= */

.services-label {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 10px;

    margin-bottom: 18px;

    font-size: 20px;
    font-weight: 700;

    color: #e00000;
}

.services-label span:first-child {
    color: #ffffff;
    font-size: 25px;
}


/* =========================================
   HEADING
========================================= */

.more-services-content h2 {
    margin: 0 0 15px;

    font-size: 38px;

    font-weight: 700;

    color: #ffffff;
}


/* =========================================
   DESCRIPTION
========================================= */

.more-services-content > p {
    margin: 0 0 20px;

    font-size: 20px;

    color: #ffffff;

    line-height: 1.5;
}


/* =========================================
   IMAGE GALLERY
========================================= */

.service-gallery {
    display: flex;

    justify-content: center;
    align-items: stretch;

    gap: 25px;

    width: 100%;

    max-width: 500px;

    margin: 0 auto;
}


/* =========================================
   SERVICE CARD
========================================= */

.patch-card {
    width: 230px;
    height: 360px;

    overflow: hidden;

    background: #222;

    box-sizing: border-box;
}

.patch-card a {
    display: block;

    width: 100%;
    height: 100%;
}

.patch-card img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.4s ease;
}


/* =========================================
   IMAGE HOVER
========================================= */

.patch-card:hover img {
    transform: scale(1.06);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 800px) {

    .more-services-section {
        min-height: auto;

        padding: 60px 20px;
    }

    .more-services-content h2 {
        font-size: 32px;
    }

    .more-services-content > p {
        font-size: 18px;
    }

    .service-gallery {
        max-width: 480px;
    }

    .patch-card {
        width: 210px;
        height: 330px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 550px) {

    .more-services-section {
        padding: 50px 15px;
    }

    .more-services-content h2 {
        font-size: 28px;
    }

    .more-services-content > p {
        font-size: 16px;
    }

    .service-gallery {
        flex-direction: column;

        align-items: center;

        gap: 20px;
    }

    .patch-card {
        width: 260px;
        height: 330px;
    }
}

/* =========================================
   OUR MORE SERVICES
========================================= */

.more-services {
    width: 100%;
    min-height: 803px;

    padding: 60px 0 46px;

    box-sizing: border-box;

    background-color: #e9edee;

    background-image:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.40) 0%,
            transparent 25%,
            rgba(255,255,255,0.22) 45%,
            transparent 70%,
            rgba(255,255,255,0.30) 100%
        );
}


/* =========================================
   MAIN CONTAINER
========================================= */

.services-container {
    width: 1537px;
    max-width: calc(100% - 312px);

    margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.services-heading {
    margin-bottom: 53px;
}

.services-label {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 30px;

    font-size: 20px;
    font-weight: 700;

    color: #e00000;
}

.services-label i {
    color: #bcbcbc;

    font-size: 25px;
}

.services-heading h2 {
    margin: 0;

    font-size: 38px;
    line-height: 1.2;

    font-weight: 700;

    color: #050505;
}


/* =========================================
   CARDS ROW
========================================= */

.service-cards {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 19px;
}


/* =========================================
   CARD
========================================= */

.service-card {
    position: relative;

    width: 100%;
    height: 540px;
    min-height: 540px;

    padding: 25px 45px 30px;

    box-sizing: border-box;

    background-color: #111a4d;

    border-radius: 22px;

    overflow: hidden;

    text-align: center;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* =========================================
   GREY QUOTE SHAPE
========================================= */

.quote {
    position: absolute;

    top: 0;
    right: 0;

    width: 100px;
    height: 100px;

    background: #666666;

    border-bottom-left-radius: 100px;

    display: flex;

    align-items: center;
    justify-content: center;

    z-index: 1;
}

.quote span {
    color: #ffffff;

    font-family: Georgia, serif;

    font-size: 52px;

    font-weight: 300;

    line-height: 1;

    transform: translate(4px, -5px);
}


/* =========================================
   ROUND PROFILE IMAGE
========================================= */

.service-avatar {
    position: relative;

    z-index: 2;

    width: 88px;
    height: 88px;

    margin: 0 auto 30px;

    border-radius: 50%;

    overflow: hidden;

    background: #ffffff;
}

.service-avatar img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center top;
}


/* =========================================
   NAME
========================================= */

.service-card h3 {
    margin: 0 0 10px;

    color: #e00000;

    font-size: 23px;

    line-height: 1.2;

    font-weight: 700;
}


/* =========================================
   DESIGNATION
========================================= */

.designation {
    margin: 0;

    color: #ffffff;

    font-size: 19px;

    line-height: 1.4;

    font-weight: 400;
}


/* =========================================
   STARS
========================================= */

.stars {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-top: 28px;
    margin-bottom: 30px;
}

.stars i {
    color: #e00000;

    font-size: 18px;
}


/* =========================================
   DESCRIPTION
========================================= */

.service-text {
    width: 100%;
    max-width: 430px;

    margin: 0 auto;

    color: #ffffff;

    font-size: 18px;

    line-height: 1.83;

    font-weight: 500;
}


/* =========================================
   HOVER
========================================= */

.service-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.22);
}


/* =========================================
   LARGE SCREEN
========================================= */

@media (min-width: 1600px) {

    .services-container {
        width: 1537px;
        max-width: none;
    }

    .service-cards {
        grid-template-columns:
            repeat(3, 500px);
    }

    .service-card {
        width: 500px;
    }
}


/* =========================================
   LAPTOP
========================================= */

@media (max-width: 1599px) {

    .services-container {
        width: calc(100% - 100px);

        max-width: none;
    }

    .service-card {
        height: 540px;
        min-height: 540px;
    }
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .more-services {
        min-height: auto;
    }

    .services-container {
        width: calc(100% - 60px);
    }

    .service-cards {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .service-card {
        width: 100%;
        max-width: 500px;

        height: 540px;
        min-height: 540px;

        margin: 0 auto;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .more-services {
        min-height: auto;

        padding: 45px 0 50px;
    }

    .services-container {
        width: calc(100% - 30px);
    }

    .services-heading {
        margin-bottom: 35px;
    }

    .services-label {
        font-size: 18px;
    }

    .services-heading h2 {
        font-size: 30px;
    }

    .service-card {
        height: auto;
        min-height: 540px;

        padding: 25px 25px 35px;
    }

    .service-card h3 {
        font-size: 21px;
    }

    .designation {
        font-size: 17px;
    }

    .service-text {
        font-size: 16px;

        line-height: 1.7;
    }

    .quote {
        width: 80px;
        height: 80px;
    }

    .quote span {
        font-size: 42px;
    }

}

/* ================================
   FOOTER
================================ */

.site-footer {
    background: #293258;
    color: #ffffff;
    width: 100%;
    margin-top: 0;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 55px 30px 40px;

    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 55px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    width: 180px;
    max-width: 100%;
    height: auto;
    margin-bottom: 25px;
}

.footer-column h3 {
    font-size: 21px;
    margin: 5px 0 25px;
    font-weight: 700;
}

.footer-column h3 i {
    color: #b85b3e;
    margin-right: 10px;
}

.footer-column > a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 16px;
    transition: 0.2s;
}

.footer-column > a:hover {
    color: #ff4b3e;
    padding-left: 5px;
}

.newsletter p {
    font-size: 17px;
    margin-bottom: 25px;
}

.newsletter form {
    width: 100%;
}

.newsletter input {
    width: 100%;
    height: 50px;
    border: none;
    outline: none;
    border-radius: 30px;
    padding: 0 20px;
    font-size: 16px;
    box-sizing: border-box;
    margin-bottom: 12px;
}

.newsletter button {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 30px;
    background: #e00000;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter button:hover {
    background: #b50000;
}

/* Social Icons */

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #ffffff;
    color: #111111;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    font-size: 18px;

    transition: 0.3s;
}

.social-icons a:hover {
    background: #e00000;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Bottom */

.footer-bottom {
    background: #000000;
    color: #ffffff;
    text-align: center;
    padding: 18px 15px;
    font-size: 17px;
    font-weight: 500;
}


/* ================================
   MOBILE
================================ */

@media (max-width: 768px) {

    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 40px 25px;
    }

    .footer-brand {
        align-items: center;
        text-align: center;
    }

    .footer-logo {
        width: 230px;
    }

    .footer-column {
        text-align: left;
    }

    .footer-column h3 {
        font-size: 20px;
    }

    .footer-column > a {
        font-size: 16px;
    }

    .newsletter input,
    .newsletter button {
        width: 100%;
    }

    .footer-bottom {
        font-size: 14px;
    }
}

.main-nav a.active {
    color: #e00000 !important;
}