@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
html {
    scroll-behavior: smooth;
}
 /* Fullscreen loader container */
 #loader {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
    background: rgb(2, 35, 79);
     display: flex;
     justify-content: center;
     align-items: center;
     z-index: 9999;
 }

 /* Spinner animation */
 .spinner {
     border: 8px solid #f3f3f3;
     border-top: 8px solid rgba(2, 35, 79, 0.528);
     border-radius: 50%;
     width: 60px;
     height: 60px;
     animation: spin 2s linear infinite;
 }

 /* Spin keyframes */
 @keyframes spin {
     0% {
         transform: rotate(0deg);
     }

     100% {
         transform: rotate(360deg);
     }
 }

 /* Hide loader after page loads */
 body.loaded #loader {
     display: none;
 }
li {
    list-style: none;
}

a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
}

a:hover {
    color: #3586ff;
}



/* ===== Header ===== */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 8%;

    background: #142749;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .2);
    z-index: 1000;
}

/* ===== Logo ===== */

.logo a {
    text-decoration: none;
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* ===== Menu ===== */

.menu,
.mid {
    display: flex;
    gap: 35px;
    list-style: none;

}

.mid {
    justify-content: center;
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-family: Arial, Helvetica, sans-serif;
}

.menu a {
    color: white;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: .3s;
    position: relative;
}

/* Underline Animation */

.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #3586ff;
    transition: .3s;
}

.menu a:hover::after {
    width: 100%;
}

/* ===== Button ===== */

.btn {
    text-decoration: none;
    color: white;
    background: #3586ff;

    padding: 10px 25px;
    border-radius: 30px;

    transition: .3s;
}

.btn:hover {
    background: white;
    color: #3586ff;
}

/* ===== Hamburger ===== */

.menu-btn {
    display: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

/* Mobile */
@media (max-width:900px) {

    .menu-btn {
        display: block;
        z-index: 1001;
    }

    .mid {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        top: 5%;
    }

    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;

        background: #142749;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        gap: 35px;

        transition: .4s ease;
        z-index: 1000;
    }

    .menu.active {
        right: 0;
    }

    .menu a {
        font-size: 22px;
    }

    .desktop-btn {
        display: none;
    }

    .mobile-btn {
        display: block;
    }

}
/*====== home ======*/
.home {
    padding: 10px 10px;
}

.home {
    width: 100%;
    min-height: 120vh;
    display: flex;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("home.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    flex-direction: column;
}

.content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 200px;
}

.content h2 {
    color: white;
    font-size: 5em;
    font-weight: 500;
    text-align: center;
}

.con {
     text-align: center;
}

.content h4 {
    color: white;
    background-color: #8e8d8d84;
    font-size: 2em;
    font-weight: 300;
    border-radius: 20px;
    padding: 10px 20px;
}

/*destination*/
.projcard-container {
    margin: 50px 0;
    
}

.projcard-container,
.projcard-container * {
    box-sizing: border-box;
}

.projcard-container {
    margin-left: auto;
    margin-right: auto;
    width: 95%;
}

.projcard {
    position: relative;
    width: 100%;
    height: 300px;
    margin-bottom: 40px;
    border-radius: 10px;
    background-color: #fff;
    border: 2px solid #ddd;
    font-size: 18px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 21px -12px rgba(0, 0, 0, .66);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.projcard:hover {
    box-shadow: 0 34px 32px -33px rgba(0, 0, 0, .18);
    transform: translate(0px, -10px);
}

.projcard::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(-70deg, #424242, transparent 50%);
    opacity: 0.07;
}

.projcard:nth-child(2n)::before {
    background-image: linear-gradient(-250deg, #424242, transparent 50%);
}

.projcard-innerbox {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.projcard-img {
    position: absolute;
    height: 300px;
    width: 400px;
    top: 0;
    left: 0;
    transition: transform 0.2s ease;
}

.projcard:nth-child(2n) .projcard-img {
    left: initial;
    right: 0;
}

.projcard:hover .projcard-img {
    transform: scale(1.05) rotate(2deg);
}

.projcard:hover .projcard-bar {
    width: 70px;
}

.projcard-textbox {
    position: absolute;
    top: 7%;
    bottom: 7%;
    left: 430px;
    width: calc(100% - 470px);
    font-size: 17px;
}

.projcard:nth-child(2n) .projcard-textbox {
    left: initial;
    right: 430px;
}

.projcard-textbox::before,
.projcard-textbox::after {
    content: "";
    position: absolute;
    display: block;
    background: #ff0000bb;
    background: #fff;
    top: -20%;
    left: -55px;
    height: 140%;
    width: 60px;
    transform: rotate(8deg);
}

.projcard:nth-child(2n) .projcard-textbox::before {
    display: none;
}

.projcard-textbox::after {
    display: none;
    left: initial;
    right: -55px;
}

.projcard:nth-child(2n) .projcard-textbox::after {
    display: block;
}

.projcard-textbox * {
    position: relative;
}

.projcard-title {
    font-family: 'Voces', 'Open Sans', arial, sans-serif;
    font-size: 24px;
    margin: 10px 0px;
}

.projcard-subtitle {
    font-family: 'Voces', 'Open Sans', arial, sans-serif;
    color: #888;
}

.projcard-bar {
    left: -2px;
    width: 50px;
    height: 5px;
    margin: 10px 0;
    border-radius: 5px;
    background-color: #424242;
    transition: width 0.2s ease;
}

.projcard-blue .projcard-bar {
    background-color: #0088FF;
}

.projcard-blue::before {
    background-image: linear-gradient(-70deg, #0088FF, transparent 50%);
}

.projcard-blue:nth-child(2n)::before {
    background-image: linear-gradient(-250deg, #0088FF, transparent 50%);
}

.projcard-red .projcard-bar {
    background-color: #D62F1F;
}

.projcard-red::before {
    background-image: linear-gradient(-70deg, #D62F1F, transparent 50%);
}

.projcard-red:nth-child(2n)::before {
    background-image: linear-gradient(-250deg, #D62F1F, transparent 50%);
}

.projcard-green .projcard-bar {
    background-color: #40BD00;
}

.projcard-green::before {
    background-image: linear-gradient(-70deg, #40BD00, transparent 50%);
}

.projcard-green:nth-child(2n)::before {
    background-image: linear-gradient(-250deg, #40BD00, transparent 50%);
}

.projcard-yellow .projcard-bar {
    background-color: #F5AF41;
}

.projcard-yellow::before {
    background-image: linear-gradient(-70deg, #F5AF41, transparent 50%);
}

.projcard-yellow:nth-child(2n)::before {
    background-image: linear-gradient(-250deg, #F5AF41, transparent 50%);
}

.projcard-customcolor .projcard-bar {
    background-color: var(--projcard-color);
}

.projcard-customcolor::before {
    background-image: linear-gradient(-70deg, var(--projcard-color), transparent 50%);
}

.projcard-customcolor:nth-child(2n)::before {
    background-image: linear-gradient(-250deg, var(--projcard-color), transparent 50%);
}

.projcard-description {
    z-index: 10;
    font-size: 15px;
    color: #424242;
    height: 125px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.projcard-tagbox {
    position: absolute;
    bottom: 3%;
    font-size: 14px;
    cursor: default;
    user-select: none;
    pointer-events: none;
}

.projcard-tag {
    display: inline-block;
    background: #E0E0E0;
    color: #777;
    border-radius: 3px 0 0 3px;
    line-height: 26px;
    padding: 0 10px 0 23px;
    position: relative;
    margin-right: 20px;
    cursor: default;
    user-select: none;
    transition: color 0.2s;
}

.projcard-tag::before {
    content: '';
    position: absolute;
    background: #fff;
    border-radius: 10px;
    box-shadow: inset 0 1px rgba(0, 0, 0, 0.25);
    height: 6px;
    left: 10px;
    width: 6px;
    top: 10px;
}

.projcard-tag::after {
    content: '';
    position: absolute;
    border-bottom: 13px solid transparent;
    border-left: 10px solid #E0E0E0;
    border-top: 13px solid transparent;
    right: -10px;
    top: 0;
}
/* ===== FOOTER ===== */
footer {
    background: rgba(2, 35, 79, 0.9);
    color: #fff;
    text-align: center;
    padding: 40px 20px;
    margin-top: 50px;
}

.zoom {
    margin-bottom: 20px;
}

.social_icon {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social_icon li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s;
    font-size: 1.5rem;
}

.social_icon li a:hover {
    background: #3586ff;
    transform: translateY(-5px);
}

.menu {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 20px 0;
}

footer p {
    color: #aaa;
    margin-top: 20px;
}

/* ===== BACK TO TOP ===== */

.back-to-top {

    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #3586ff;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s;
    z-index: 1000;
    text-decoration: none;

}
/* ===== RESPONSIVENESS ===== */

@media screen and (max-width: 1200px) {
    .projcard-container {
        width: 90%;
    }
}

@media screen and (max-width: 992px) {
  

    .projcard {
        height: auto;
        min-height: 400px;
    }

    .projcard-img {
        position: relative;
        width: 100%;
        height: 250px;
    }

    .projcard-textbox {
        position: relative;
        left: 0 !important;
        right: 0 !important;
        width: 100%;
        padding: 20px;
        top: 0;
    }

    .projcard-textbox::before,
    .projcard-textbox::after {
        display: none !important;
    }
}

@media screen and (max-width: 768px) {

    .toggle_btn {
        display: block;
    }

    .content h2 {
        font-size: 3rem;
    }

    .content h4 {
        font-size: 1.2rem;
        padding: 5px 15px;
    }

    .home {
        padding: 10px 20px;
        
    }

    .projcard-description {
        height: auto;
    }

    .projcard-tagbox {
        position: relative;
        margin-top: 20px;
        bottom: 0;
    }
}

@media screen and (max-width: 480px) {
    .content h2 {
        font-size: 2.2rem;
    }

    .social_icon li a {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}
/* ===============================
   LARGE SCREEN 
=============================== */
@media (min-width: 2000px) {

    /* MAIN SECTIONS */
    #container,
    main,
    .wrapper,
    .hero-section {
        width: 95%;
        max-width: 4000px;
        margin: 60px auto;
    }

    header {
        width: 100%;
        max-width: 4000px;
        height: 100px;
    }

    header .logo a {
        font-size: 3rem;
    }

    header .menu a {
        font-size: 2rem;
        margin: 0 10px;
    }

    header button.log1 {
        height: 70px;
        width: 150px;
        padding: 15px 20px;
    }

    header button.log1 a {
        font-size: 2rem;
    }
    /*home*/
   .home {
        min-height: 100vh;
        padding-top: 200px;
    }
   
    /*destination*/
    .projcard {
        height: 400px;
    }
   .projcard-img {
        height: 400px;
    }
    .projcard-title {
        font-size: 2.5rem;
    }
    .projcard-subtitle {
        font-size: 1.8rem;
    }
    .projcard-description {
    font-size: 1.4rem;
    }
    .projcard-tag {
    font-size: 1.2rem;
    }

    /* FOOTER */
    footer a {
        font-size: 2rem;
        margin: 0 20px;
    }

    footer .social_icon li a {
        width: 70px;
        height: 70px;
        font-size: 3rem;
    }

    footer p {
        font-size: 1rem;
    }

    .back-to-top {
        width: 70px;
        height: 70px;
        font-size: 3rem;
    }

}

@media (min-width: 4000px) {

    /* MAIN SECTIONS */

    #container,
    main,
    .wrapper,
    .hero-section {
        width: 95%;
        max-width: 6000px;
        margin: 60px auto;
    }

    header {
        width: 100%;
        max-width: 6000px;
        height: 150px;
    }

    header .logo a {
        font-size: 6rem;
    }

    header .menu a {
        font-size: 4rem;
        margin: 0 50px;
    }

    header button.log1 {
        height: 100px;
        width: 270px;
        padding: 10px 15px;
    }

    header button.log1 a {
        font-size: 4rem;
    }
/*home*/
.home {
    min-height: 100vh;
    padding-top: 500px;
}
 .home h2 {
     font-size: 8rem;
 }

 .home h4 {
     font-size: 4rem;
     padding: 10px 20px;
 }

/*destination*/
.projcard {
    height: 700px;
}

.projcard-img {
    height: 700px;
    width: 400px;
}

.projcard-title {
    font-size: 5rem;
    height: 100px;
}

.projcard-subtitle {
    font-size: 4rem;
}

.projcard-description {
    font-size: 2rem;
    height: 500px;
}

.projcard-tag {
    font-size: 3rem;
}
    /* FOOTER */
    footer a {
        font-size: 4rem;
        margin: 0 30px;
    }

    footer .social_icon li a {
        width: 150px;
        height: 150px;
        font-size: 6rem;
    }

    footer p {
        font-size: 3rem;
    }

    .back-to-top {
        width: 150px;
        height: 150px;
        font-size: 6rem;
    }

}