* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    /* overflow-x: hidden; */
}

@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: center;
    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 NAVBAR */

header {
    width: 100vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #fff;
    position: fixed;
    z-index: 10;
    top: 0;
}

.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;
}

.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;
}

.order-btn i{
    font-size: 20px;
    text-decoration: none;
}

a{
    text-decoration: none;
}

.whatsapp-btn {
    width: 50px;
    height: 50px;
    background-color: #fff;
    border: none;
}

.whatsapp-btn i{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #102a43;
    font-size: 40px;
}

@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: 100vw;
    position: relative;
    height: 500px;
    background-image: url(Background.png);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    min-height: 89vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.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;
    color: #e9eef5;
    margin-bottom: 40px;
    z-index: 1;
    max-width: 800px;
    letter-spacing: 1.5px;
    transform: translateY(50px);
    opacity: 1;
    line-height: 1.5;
    font-family: 'Montserrat', sans-serif;
}


/* Responsive styles */

/* Mobile devices (max-width: 600px) */
@media (max-width: 600px) {
    .header {
        padding: 10px 20px;
    }

    .navbar {
        flex-direction: column;
        height: auto;
        padding: 10px 20PX;
    }

    .nav-links {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero {
        height: 90vh;
        padding: 20px;
        min-height: 0;
    }

    .hero-content {
        overflow: hidden;
    }
}

/* Tablets (min-width: 601px) and (max-width: 900px) */
@media (min-width: 601px) and (max-width: 900px) {
    .header {
        padding: 10px 20px;
    }

    .navbar {
        padding: 0 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero {
        height: 400px;
    }
}


/* about section styles */
.about-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    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: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.about-content hr {
    border: dashed 1px #00447c;
    margin-bottom: 10px;
    width: 50px;
}

.about-content p {
    color: #555555;
    font-size: 1rem;
    line-height: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}


.about-section1 {
    position: relative;
    padding: 3rem 1rem;
    background: url('./Group\ 120\ \(1\).png') center /cover no-repeat;
    background-size: cover;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
}

.text-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    margin-bottom: 4rem;
}

.text-content .subheading {
    text-transform: uppercase;
    font-size: 1rem;
    color: #555555;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.underline {
    width: 100%;
    height: 20px;
    color: #003459;
    margin-bottom: 1rem;
}

.text-content h2 {
    font-size: 2.5rem;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    color: #1e3a5f;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.description {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    font-size: 1rem;
    color: #555555;
    max-width: 820px;
    margin: 0 auto;
    line-height: 1.6;
}

.cards-grid {
    display: grid;
    width: auto;
    height: 80vh;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    justify-content: center;
    position: relative;
}

.card {
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: space-evenly;
    position: relative;
    background: #fff;
    border-top: 3px solid #1D3655;
    border-left: 3px solid #1D3655;
    /* border-radius: 8px; */
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    width: 100%;
    height: 250px;
}

.card h3 {
    color: #1D3655;
    font-size: 2.5rem;
    font-family: playfair;
    font-weight: 700;
    letter-spacing: 1px;
    /* margin-bottom: 0.5rem; */
}

.card p {
    color: #1D3655;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.5;
    /* padding: 10px 0; */
}

.badge {
    position: absolute;
    top: -1.25rem;
    left: 2rem;
    background: #1D3655;
    color: white;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Offsets */
.card-2 {
    transform: translateY(3rem);
}

.card-3 {
    transform: translateY(1rem);
}

.card-4 {
    transform: translateY(5rem);
}

/* Responsive: stack on small screens */
@media (max-width: 768px) {
    .cards-grid {
        width: auto;
        height: auto;
        grid-template-columns: 1fr;
    }

    .card {
        transform: none !important;
        height: auto;
        padding: 1rem;
    }

    .card h3 {
        color: #1D3655;
        font-size: 2rem;
        font-family: playfair;
        font-weight: 700;
        letter-spacing: 1px;
    }

    .card p {
        font-size: 0.9rem;
    }

    .badge {
        display: none;
        top: 1rem;
        left: 1rem;
        width: 2rem;
        height: 2rem;
        font-size: 0.9rem;
    }

    .text-content h2 {
        font-size: 1.5rem;
    }

    .text-content .description {
        font-size: 0.95rem;
    }
}

/* PROJECT SECTION */
.project-realize-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;
}

.project-realize-content {
    max-width: 700px;
    color: #fff;
}

.project-realize-title {
    font-size: 3rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    margin-bottom: 1.2rem;
    line-height: 1.1;
}

.project-realize-desc {
    font-size: 1.2rem;
    color: #b0b8c9;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* button */
.get-button-wrapper {
    position: relative;
    display: inline-block;
    /* transform: translateY(50px); */
    opacity: 1;
}

.get-button {
    font-family: 'Montserrat', sans-serif;
    background: white;
    color: #020D3F;
    font-size: 1rem;
    font-weight: 500;
    padding: 20px 60px;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.get-button:hover {
    background: linear-gradient(135deg, #23364d 0%, #2c4663 100%);
    color: #fff;
}

/* Corner lines */
.get-button-wrapper::before,
.get-button-wrapper::after {
    /* display: none; */
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.get-button-wrapper::before {
    /* display: none; */
    top: -10px;
    left: -10px;
    border-top: 1px solid white;
    border-left: 1px solid white;
    width: 0;
    height: 0;
    opacity: 0;
}

.get-button-wrapper::after {
    /* display: none; */
    bottom: -10px;
    right: -10px;
    border-bottom: 1px solid white;
    border-right: 1px solid white;
    width: 0;
    height: 0;
    opacity: 0;
}

.get-button-wrapper:hover::before {
    /* display: none; */
    width: 100%;
    height: 100%;
    opacity: 1;
}

.get-button-wrapper:hover::after {
    /* display: none; */
    width: 100%;
    height: 100%;
    opacity: 1;
}


@media (max-width: 900px) {

    .project-realize-title {
        font-size: 2.2rem;
    }

    .project-realize-content {
        max-width: 95vw;
    }
}

@media (max-width: 600px) {
    .project-realize-section {
        box-sizing: border-box;
        margin: 0;
        width: 100%;
        padding: 40px 20px;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        text-align: start;
        min-height: 40vh;
    }

    .project-realize-content {
        padding: 0;
        text-align: start;
    }

    .project-realize-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .project-realize-desc {
        font-size: 1rem;
    }

    .get-started-btn {
        width: 100%;
        padding: 1rem 0;
        font-size: 1rem;
    }

    .project-realize-section .button-wrapper {
        width: 100%;
        position: relative;
        display: inline-block;
        /* overflow-x: hidden; */
    }

    .fancy-button {
        padding: 15px 40px;
        font-size: 0.9rem;
        overflow-x: hidden;
    }

    .fancy-button:hover {
        background-color: #fff;
        color: #0d1b3d;
    }

    .get-button-wrapper {
        overflow: hidden;
    }

    .get-button {
        padding: 20px 40px;
    }

    /* Corner lines */
    .button-wrapper::before,
    .button-wrapper::after {
        display: none;
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 0;
        transition: all 0.4s ease;
        pointer-events: none;
    }

    .button-wrapper::before {
        display: none;
        top: -10px;
        left: -10px;
        border-top: 1px solid white;
        border-left: 1px solid white;
        width: 0;
        height: 0;
        opacity: 0;
    }

    .button-wrapper::after {
        display: none;
        bottom: -10px;
        right: -10px;
        border-bottom: 1px solid white;
        border-right: 1px solid white;
        width: 0;
        height: 0;
        opacity: 0;
    }

    .button-wrapper:hover::before {
        display: none;
        width: 100%;
        height: 100%;
        opacity: 1;
    }

    .button-wrapper:hover::after {
        display: none;
        width: 100%;
        height: 100%;
        opacity: 1;
    }

    .about-section {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 100px;
        padding: 30px 10px;
        max-width: 1200px;
        margin: auto;
    }

}

.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;
    height: auto;
    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;
    }

    * {
        overflow-x: hidden;
    }
}

/* Keyframes for fade-in and slide-up */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(0px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

/* Animation keyframes */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animate the hero section */
.hero-content {
    opacity: 0;
    animation: fadeSlideUp 1.2s ease-out 0.2s forwards;
}

/* Optional: Animate the heading and paragraph separately for a staggered effect */
.hero-content h1 {
    opacity: 0;
    animation: fadeSlideUp 1s ease-out 0.4s forwards;
}

.hero-content p {
    opacity: 0;
    animation: fadeSlideUp 1s ease-out 0.7s forwards;
}