* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}

@font-face {
    font-family: playfair;
    src: url(Playfair-VariableFont_opsz\,wdth\,wght.ttf);
}

@font-face {
    font-family: title;
    src: url(TitilliumWeb-Black.ttf);
}

body {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    box-sizing: border-box;
    background-color: #fff;
    color: #000000;
    min-height: 100vh;
    font-family: 'Montserrat', sans-serif;
}


header {
    width: 100vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #fff;
    position: fixed;
    top: 0;
    z-index: 10;
    transition: transform 0.3s ease-in-out;
}

.logo {
    font-size: 28px;
    color: #102a43;
    font-weight: bold;
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #102a43;
    font-weight: 500;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    background: #e5ebf4;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    color: #102a43;
    cursor: pointer;
    gap: 10px;
    text-decoration: none;
}

.order-btn i{
    font-size: 20px;
    text-decoration: none;
}

a{
    text-decoration: none;
}

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #102a43;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fcfcfc;
    z-index: 1000;
}

.mobile-menu a {
    margin: 20px 0;
    text-decoration: none;
    color: #102a43;
    font-size: 16px;
    font-weight: 600;
}

.close-btn {
    position: absolute;
    top: 5px;
    right: 25px;
    font-size: 3rem;
    color: #102a43;
    cursor: pointer;
}

@media (max-width: 768px) {

    header {
        width: 100vw;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        background: #fff;
        position: relative;
        z-index: 10;
    }

    .nav-links,
    .order-btn {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .mobile-menu.show {
        display: flex;
    }

    .logo {
        width: 100%;
        height: 100%;
    }

    .logo img {
        height: 30px;
    }
}

.button-wrapper {
    position: relative;
    display: inline-block;
}

.fancy-button {
    background: white;
    color: #020D3F;
    font-size: 1rem;
    font-weight: bold;
    padding: 20px 60px;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.fancy-button:hover {
    background: linear-gradient(135deg, #23364d 0%, #2c4663 100%);
    color: #fff;
}

/* Corner lines */
.button-wrapper::before,
.button-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.button-wrapper::before {
    top: -10px;
    left: -10px;
    border-top: 1px solid white;
    border-left: 1px solid white;
    width: 0;
    height: 0;
    opacity: 0;
}

.button-wrapper::after {
    bottom: -10px;
    right: -10px;
    border-bottom: 1px solid white;
    border-right: 1px solid white;
    width: 0;
    height: 0;
    opacity: 0;
}

.button-wrapper:hover::before {
    width: 100%;
    height: 100%;
    opacity: 1;
}

.button-wrapper:hover::after {
    width: 100%;
    height: 100%;
    opacity: 1;
}



/* Hero section styles */
.hero {
    width: 100%;
    position: relative;
    min-height: 89vh;
    background-image: url(Background.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    top: 0px;
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5vw;
    font-family: playfair;
    color: #fff;
    letter-spacing: 2px;
    font-weight: 500;
    margin-bottom: 30px;
}

.hero-content p {
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    /* font-weight: 300; */
    color: #ffffff;
    line-height: 1.5;
    letter-spacing: 1.5px;
}


.experience-header {
    text-align: center;
    margin-bottom: 50px;
}

.experience-header h1 {
    font-size: 2.8rem;
    color: #1c355e;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.experience-header p {
    font-size: 1rem;
    color: #3a5b82;
    max-width: 700px;
    margin: auto;
}

.dotted-line {
    width: 60px;
    border-top: 2px dotted #1c355e;
    margin: 10px auto 20px;
}

.dotted-line.small {
    margin-left: 0;
}

/* about section styles */
.about-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 200px;
    padding: 80px 10px;
    max-width: 1200px;
    /* margin: auto; */
}

.about-image {
    flex: 1 1 480px;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 4px;
    display: block;
}

.about-content {
    flex: 1 1 500px;
}

.about-content h5 {
    font-size: 1rem;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
    color: #8A99A8;
    margin-bottom: 10px;
    font-weight: 400;
}

.about-content h2 {
    color: #1D3655;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.about-content hr {
    border: dashed 1px #00447c;
    margin: 20px 0;
    width: 50px;
}

.about-content p {
    color: #555555;
    font-size: 1rem;
    line-height: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

/* product section */
.product-section {
    min-width: 1200px;
    padding: 4rem 10px;
    background: white;
}

.product-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
    max-width: 1200px;
    margin: 1rem 0rem;
}

.product-image-wrapper {
    position: relative;
    background-color: #1D3655;
    border-radius: 0 60px 0 60px;
    padding: 4rem 1rem 1rem 1rem;
    display: inline-block;
}

.product-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    border-radius: 30px;
}

.product-label {
    position: absolute;
    top: 1rem;
    left: -1rem;
    background-color: #4F789A;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.9rem;
    white-space: nowrap;

}

.product-content {
    max-width: 650px;
}

.product-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1D3655;
    margin-bottom: 0.5rem;
}


.divider {
    width: 60px;
    border-top: 2px dotted #1c355e;
    margin: 20px 0px;
}

.product-content p {
    font-size: 0.977rem;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 1rem;
}



.hero-section {
    width: 102vw;
    min-height: 30vh;
    background-image: url('Section\ \(1\).png');
    background-size: cover;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: row;
    padding: 60px 0px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    margin: 50px 0;
}

.hero-contents {
    max-width: 700px;
    color: #fff;
}

.hero-contents h1 {
    font-size: 3rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    margin-bottom: 1.2rem;
    line-height: 1.1;
}

.hero-contents p {
    font-size: 1.2rem;
    color: #b0b8c9;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-button-wrapper {
    flex-shrink: 0;
    position: relative;
}


.decorative-button-wrappers {
    position: relative;
    display: inline-block;
    background-color: #ffffff;
    /* padding: 20px 40px; */
    /* box-shadow: 0 0 0 3px white;  */
}

.custom-buttons {
    background-color: transparent;
    color: #0f1b40;
    font-size: .813rem;
    font-weight: 700;
    border: none;
    width: 182.92px;
    height: 57px;
    color: #020D3F;
    background-color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: sans-serif;
    pointer-events: none;
    /* Makes it just visual, you can remove this if clickable */
}

.decorative-lines {
    position: absolute;
    width: 50px;
    height: 50px;
}

.top-lefts::before,
.top-lefts::after,
.bottom-rights::before,
.bottom-rights::after {
    content: '';
    position: absolute;
    background-color: rgb(255, 255, 255);
}

/* Top-left corner lines */
.top-lefts {
    top: -30px;
    left: -30px;
}

.top-lefts::before {
    width: 180px;
    height: 1px;
    top: 24px;
    left: 15px;
}

.top-lefts::after {
    width: 2px;
    height: 65px;
    top: 15px;
    left: 24px;
}

/* Bottom-right corner lines */
.bottom-rights {
    bottom: -30px;
    right: -30px;
}

.bottom-rights::before {
    width: 180px;
    height: 1px;
    bottom: 24px;
    right: 15px;
}

.bottom-rights::after {
    width: 2px;
    height: 65px;
    bottom: 15px;
    right: 24px;
}


/* Footer Styles */
.footer {
    width: 100vw;
    background: #fff;
    border-top: 1px solid #e0e0e0;
    padding: 40px 20px;
    font-family: 'Montserrat', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    flex-wrap: wrap;
}

.footer-left {
    flex: 2;
    min-width: 200px;
    margin-bottom: 24px;
}

.footer-logo {
    width: 160px;
    margin-bottom: 16px;
}

.footer-desc {
    max-width: 500px;
    color: #003459;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-socials a {
    display: inline-block;
    margin-right: 16px;
    color: #003459;
    font-size: 20px;
    transition: color 0.2s;
}

.footer-socials a:hover {
    color: #0077b5;
}

.footer-right {
    display: flex;
    /* align-items: center; */
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.footer-right h3 {
    font-size: 22px;
    color: #003459;
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
}

.footer-contacts {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    gap: 15px;
    list-style: none;
    padding: 0;
    color: #003459;
    font-size: 15px;
}

.footer-contacts li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    letter-spacing: 1px;
    font-size: 15px;
}

.footer-contacts i {
    margin-right: 10px;
    font-size: 20px;
}

.footer-bottom {
    border-top: 1px solid #e0e0e0;
    margin-top: 24px;
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #888;
    flex-wrap: wrap;
}

.footer-bottom a {
    color: #003459;
    text-decoration: none;
    margin: 0 4px;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 16px;
    }

    .footer-left,
    .footer-right {
        min-width: 0;
        width: 100%;
    }

    .footer-right {
        margin-top: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
        gap: 8px;
    }
}

@media (max-width: 600px) {
    .footer {
        padding: 30px 10px;
    }

    .footer-logo {
        width: 120px;
    }

    .footer-desc {
        font-size: 14px;
    }

    .footer-right h3 {
        font-size: 18px;
    }

    .footer-contacts {
        font-size: 13px;
    }

    .footer-bottom {
        font-size: 12px;
        padding: 12px;
    }
}


@media screen and (max-width: 1280px) {
    .hero-bg-text {
        font-size: 11vw;
        letter-spacing: 2rem;
        top: 28%;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

}

@media screen and (max-width: 767px) {

    .hero {
        height: 90vh;
        padding: 20px;
        min-height: 0;
    }

    .hero-content {
        width: 100%;
    }

    .hero-bg-text {
        font-size: 13vw;
        letter-spacing: 1rem;
        top: 25%;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .about-section {
        gap: 50px;
        padding: 2rem 10px;
    }

    /* product section */
    .product-section {
        min-width: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 4rem 10px;
        background: white;
    }

    .product-section .experience-header h1{
        font-size: 2rem;
        color: #1D3655;
    }

    .experience-header p{
        font-size: 1rem;
        color: #555555;
        max-width: 400px;
        margin: auto;
    }

    .product-container {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5rem;
        max-width: 1200px;
        margin: 0rem 0rem;
        padding: 20px 10px;
    }

    .product-image-wrapper {
        position: relative;
        background-color: #1D3655;
        border-radius: 0 60px 0 60px;
        padding: 4rem 1rem 1rem 1rem;
        display: inline-block;
    }

    .product-image {
        width: 100%;
        max-width: 300px;
        height: auto;
        display: block;
        border-radius: 30px;
    }

    .product-label {
        position: absolute;
        top: 1rem;
        left: -1rem;
        background-color: #4F789A;
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 9999px;
        font-size: 0.9rem;
        white-space: nowrap;

    }

    .product-content {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: start;
        flex-direction: column;
        max-width: 400px;
    }

    .product-content h2 {
        font-family: 'Playfair Display', serif;
        font-size: 2rem;
        color: #1D3655;
        margin-bottom: 0.5rem;
        text-align: center;
    }

    .divider {
        width: 60px;
        border-top: 2px dotted #1c355e;
        margin: 20px 0px;
    }

    .product-content p {
        /* max-width: 400px; */
        /* white-space: nowrap; */
        font-size: 1rem;
        line-height: 1.6;
        color: #555555;
        margin-bottom: 1rem;
    }

}

@media screen and (max-width: 414px) {

    .hero-section {
        background: url(Section\ \(1\).png) center/cover no-repeat;
        padding: 20px 10px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        color: white;
        flex-wrap: wrap;
        gap: 40px;
    }

    .hero-contents h1{
        font-size: 2rem;
    }

    .about-section h2{
        font-size: 2rem;
    }

    .hero-contents p{
        font-size: 1rem;
    }

    html,
    body {
        overflow-x: hidden;
    }
}

.button-wrapper {
    position: relative;
    display: inline-block;
}

.fancy-button {
    background: white;
    color: #020D3F;
    font-size: 1rem;
    font-weight: bold;
    padding: 20px 60px;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.fancy-button:hover {
    background: linear-gradient(135deg, #23364d 0%, #2c4663 100%);
    color: #fff;
}

/* Corner lines */
.button-wrapper::before,
.button-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.button-wrapper::before {
    top: -10px;
    left: -10px;
    border-top: 1px solid white;
    border-left: 1px solid white;
    width: 0;
    height: 0;
    opacity: 0;
}

.button-wrapper::after {
    bottom: -10px;
    right: -10px;
    border-bottom: 1px solid white;
    border-right: 1px solid white;
    width: 0;
    height: 0;
    opacity: 0;
}

.button-wrapper:hover::before {
    width: 100%;
    height: 100%;
    opacity: 1;
}

.button-wrapper:hover::after {
    width: 100%;
    height: 100%;
    opacity: 1;
}