body, html {
    scrollbar-width: none;
    scroll-behavior: smooth;
    overflow-x: hidden;
    margin: 0;
}

/* navbar styling */
header{
    margin: 0;
}

/* logo image */
#navimg {
    display: flex;
    align-items: center;
}

#navimg img {
    width: 70px;
    height: 90px;
    cursor: pointer;
}
img::selection{
    background-color: #515151;
}

/* navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #dadada50 , #505050);
    backdrop-filter: blur(5px);
    padding: 10px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: calc(100vw - 40px);
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    z-index: 1101;
    /* margin-left: -0.6vw; */
    position: fixed;
    transition: 0.8s all;
    margin-top: -1%;
}

.nav-links-container {
    display: flex;
    align-items: center;
    /* margin-right: 10%; */
}

/* search bar styling */
header nav .input input{
    border: none;
    border-radius: 5px;
    padding: 5px;
    background-color: #f1f1f1;
    backdrop-filter: blur(10px);
    width: 250px;
    font-family: 'Courier New', Courier, monospace;
    color:#000000;
    font-weight: bold;
    height: 20px;
}
.input::selection{
    background-color: #515151;
}
.input input::selection{
    background-color: #515151;
}
header nav .input input:hover{
    background: #ffffff50;
    border: none;
    color: #000000;
}
header nav .input input:focus{
    outline: none;
    border: none;
}
header nav .input input::placeholder{
    color: rgb(0, 0, 0);
    font-weight: bold;
}
header nav .input input:hover::placeholder{
    color: #000000;
}

/* clear button styling */
header nav .input .clear-btn{
    background-color: transparent;
    border:none;
    font-size: 15px;
    color: #000000;
    cursor: pointer;
    position: relative;
    transform: translateX(-230%);
}
.clear-btn::selection{
    background-color: #515151;
}

/* search button styling */
.search-btn{
    position: relative;
    background-color: transparent;
    border:none;
    font-size: 15px;
    color: #000000;
    cursor: pointer;
    transform: translateX(-200%);
}
.search-btn::selection{
    background-color: #515151;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-links li {
    position: relative;
}

/* box appearing by hovering on collections */
li .dropdown {
    position: absolute;
    /* border: 1px solid black; */
    border-radius: 10px;
    display: none;
    background-color: #f3f3f3;
    z-index: 50;
    width: 250px;
}

.dropdown a{
    background: none;
}
li .dropdown a:hover{
    color: #717171;
}

.nav-links a {
    color: #000000;
    font-weight: bold;
    text-decoration: none;
    padding: 14px 25px;
    display: block;
    transition: color 0.3s ease;
}
.nav-links a::selection{
    background-color: #515151;
}

.nav-links > li > a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 5px;
    right: 50%;
    background: #000000;
    transition: width 0.3s ease, right 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
    right: 0;
}

.nav-links a:hover {
    color: #000000;
}

/* Hamburger Menu Styles */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: auto;
}

.bar {
    height: 3px;
    width: 25px;
    background-color: #143156;
    margin: 4px 0;
    transition: 0.4s;
}

.nav-active {
    display: flex;
}

/* navbar styling ends */

.parallax {
    background-image: url(../jpg/contact-us.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100vw;
    height: 200px;
    z-index: 10;
    justify-content: center;
    align-items: center;
    /* margin-left: -0.8%; */
    /* margin-top: 9%; */
    padding-top: 15%;
}
.parallax > .heading {
    text-align: center;
    font-size: 40px;
    /* font-family: Montserrat; */
    align-items: center;
    position: relative;
    /* height: 100%; */
    /* margin-top: 50%; */
    font-weight: 550;
    color: #ffffff;
    /* background-color: #f1f1f1; */
    /* display: inline; */
    /* margin-left: 43%; */
    position: sticky;
    /* padding: 30px; */
}

.container {
    display: flex;
    flex-direction: row;
    padding-left: 5%;
    padding-top: 5%;
    gap: 20px;
}
.container .heading {
    font-size: 30px;
    font-weight: 500;
    margin-left: 5%;
    margin-top: 2%;
    width: 300px;
}
.container .container-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.container .container-column form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
form input {
    border-radius: 5px;
    border: none;
    background-color: #f3f3f3;
    height: 30px;
    padding-left: 10px; 
}
form input:focus {
    outline: none;
}
form input::placeholder {
    font-size: 15px;
    font-family: Montserrat;
}
form label {
    font-family: Montserrat;
    font-size: 15px;
}
form textarea {
    resize: vertical;
    border-radius: 10px;
    /* text-align: center; */
    border: none;
    background-color: #f3f3f3;
    align-items: center;
    height: 100px;
    padding-left: 10px;
}
textarea:focus {
    outline: none;
}
form .button {
    border: none;
    border-radius: 5px;
    height: 50px;
    background-color: #eaeaea;
    color: #535353;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s all;
    text-align: center;
    align-items: center;
    padding: 0;
    overflow: hidden;
}
/* form button:hover {
    /* background-color: #535353; *
    color: #e2e2e2;
} */
button > .bg-color {
    background-color: #535353;
    width: 100%;
    position: relative;
    height: 0;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 100%;
    border-bottom-left-radius: 100%;
    transition: 0.5s all;
    text-align: center;
    align-items: center;
    margin: 0;
    /* padding-top: 5px; */
    color: #eaeaea;
    z-index: 1;
    /* visibility: hidden; */
}
form button:hover .bg-color {
    height: 100%;
    animation-name: height;
    animation-duration: 0.5s;
    animation-iteration-count: 1;
    border-radius: 5px;
    animation-delay: 5s;
    padding-top: 3%;
    color: #e2e2e2;
    align-items: center;
    visibility: visible;
    overflow: hidden;
}
form button p{
    /* position: fixed; */
    transform: translateY(-25%);
    z-index: 2;
}
@keyframes height {
    from{
        height: 0;
        opacity: 0.4;
        z-index: 1;
    }
    to{
        height: 100%;
        opacity: 1;
        z-index: 2;
    }
}
form button:hover p{
    /* transform: translateY(-25%); */
    z-index: 1;
    /* position: fixed; */
    animation: fade 0.5s;
    animation-delay: 1s;
    /* visibility: hidden; */
}
@keyframes fade {
    from{opacity: 0};
    to{opacity: 1;}
}
.container .container-column .head {
    font-size: 30px;
    margin-left: 5%;
    /* margin-top: 3%; */
    font-family: Tinos;
    font-weight: lighter;
    width: 200px;
    letter-spacing: 3px;
}
.text {
    font-size: 15px;
    font-weight: lighter;
    font-style: italic;
    margin-top: 10px;
}
.address {
    display: flex;
    flex-direction: column;
}
.address p {
    font-size: 15px;
    margin-left: 5%;
    font-family: Montserrat;
    font-weight: 450;
}
small {
    user-select: none;
}
/* footer styling */
footer {
    width: 100vw;
    /* height: 90vh; */
    background-color: #e2e2e2;
    display: flex;
    margin-top: 20px;
    flex-direction: column;
    border-top: 1px solid #000;;
}

.rows {
    display: flex;
    flex-direction: row;
    margin-left: 5%;
    margin-top: 5%;
    gap: 5%;
}

.columns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* width: 100%; */
}
.columns img {
    width: 150px;
    height: 50px;
}
.columns .head {
    font-size: 20px;
    font-weight: 600;
    font-family: Montserrat;
    width: 100%;
}
.columns .text {
    gap: 2px;
}
.columns .text p {
    font-size: 15px;
    color: #424242;
    font-style: normal;
}
.columns .text p a {
    text-decoration: none;
    color: #424242;
}
.columns .text p a:hover {
    text-decoration: underline;
}
footer hr {
    width: 95%;
    border: none;
    padding: 0.6px;
    background-color: #000000;
}
footer .bottom-row {
    display: flex;
    flex-direction: row;
    gap: 10%;
    align-items: center;
    padding: 20px 0px 20px 0px;
}
footer .bottom-row .bottom-column {
    display: flex;
    flex-direction: column;
    margin-left: 2.5%;
    gap: 5px;
}
footer .bottom-column .head {
    font-size: 25px;
    font-weight: 650;
    width: 100%;
    font-family: Playfair Display;
}
footer .bottom-column .text {
    font-size: 12px;
    font-weight: 420;
    font-family: Montserrat;
}
footer .bottom-row form {
    display: flex;
    flex-direction: row;
    gap: 10px;
}
footer .bottom-row form input,
footer .bottom-row form .btn {
    border-radius: 25px;
    border: none;
    /* height: 30px; */
}
footer .bottom-row form input {
    text-align: center;
    width: 250px;
    height: 30px;
}
footer .bottom-row form input:focus{
    outline: none;
    border: none;
}
footer .bottom-row form .btn {
    padding: 5px 10px;
    font-size: 10px;
    cursor: pointer;
    transition: 0.5s all;
    background-color: #4f4f4f;
    color: #e2e2e2;
}
/* footer .bottom-row form button:hover {
    background-image: linear-gradient(135deg, #4f4f4f, #b9b9b9);
    color: #ffffff;
} */
.row-bottom {
    display: flex;
    flex-direction: row;
    gap: 75%;
}
.row-bottom .copyright {
    font-size: 10px;
    position: relative;
    margin-top: 10%;
    margin-left: 1%;
    font-family: Montserrat;
    font-weight: 500;
}
.row-bottom .icons{
    display: flex;
    flex-direction: row;
    margin-top: 9%;
    gap: 10px;
    /* margin-left: 80%; */
}
.row-bottom .icons a{
    color: #000000;
    font-size: 30px;
}
.icons a:hover {
    transform: translateY(-10%);
}


.nav-links a::selection,
.search-btn::selection,
.clear-btn::selection,
header nav .input input::selection,
#navimg img::selection,
h1::selection,
.text::selection,
.head-about::selection,
.para-about::selection,
.text-parallax::selection,
br::selection,
.head::selection,
.text p::selection,
.text p a::selection,
.copyright::selection,
footer .bottom-row form input::selection,
footer .bottom-row form button::selection {
    background-color: #4f4f4f;
    color: #e2e2e2;
}


/* Mobile Navigation */
@media only screen and (max-width: 767px) {
    header .navbar {
        width: 100vw;
    }

    .nav-links-container {
        display: none;
        margin-right: 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    header > nav .input {
        display: none;
    }

    .text-parallax {
        display: none;
    }
    
    .nav-active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.9);
        padding: 10px;
        z-index: 1000;
    }
    
    .nav-links {
        flex-direction: column;
    }
    
    .nav-links a {
        padding: 10px;
    }

    .mySlides .img {
        width: 130vw;
    }

    .custom-cursor {
        display: none;
    }

    footer .rows {
        display: flex;
        flex-direction: column;
        text-align: start;
    }
    /* footer input {
        display: none;
    } */
    .footer .bottom-row{
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .footer .bottom-row form{
        display: flex;
        flex-direction: column;
    }
    footer .row-bottom {
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    .icons {
        text-align: center;
        margin-top: 10%;
    }
}

/* Parallax adjustments */
@media only screen and (min-width: 768px) and (max-width: 1020px) {
    .parallax,
    .parallax2,
    .parallax3,
    .parallax4 {
        background-attachment: scroll;
        background-size: cover;
        background-position: center;
    }
    
    .parallax > .text-parallax {
        font-size: 32px;
        left: 5%;
        padding: 15px;
    }
    .navbar li a {
        font-size: 12px;
        padding: 10px 20px;
    }
    .custom-cursor {
        display: none;
    }
    .navbar .input input {
        width: 250px;
        right: 7%;
    }
    #navimg {
        left: 1%;
    }
    .input .clear-btn {
        right: 10%;
    }
    .search-btn {
        right: 7%;
    }
    footer .row-bottom{
        gap: 70%;
    }
}

/* Mobile Navigation */
@media only screen and (max-width: 767px) {
    header .navbar {
        width: 95vw;
    }

    .container {
        flex-direction: column;
    }

    .nav-links-container {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    header > nav .input {
        display: none;
    }

    .text-parallax {
        display: none;
    }
    
    .nav-active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.9);
        padding: 10px;
        z-index: 1000;
    }
    
    .nav-links {
        flex-direction: column;
    }
    
    .nav-links a {
        padding: 10px;
    }

    .custom-cursor {
        display: none;
    }

    footer {
        width: 100vw;
    }

    footer .rows {
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    .get-in-touch-form input {
        width: 80%;
    }
    .get-in-touch-form textarea {
        width: 80%;
    }
    .get-in-touch-form button {
        width: 80%;
    }
    footer .columns .head {
        width: 100%;
        text-align: center;
        margin-left: 0;
    }
    .footer .bottom-row{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .footer .bottom-row form{
        display: flex;
        flex-direction: column;
    }
    footer .row-bottom {
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    .icons {
        text-align: center;
        margin-top: 10%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1020px) {
    .navbar li a {
        font-size: 12px;
        padding: 10px 20px;
    }
    .custom-cursor {
        display: none;
    }
    .navbar .input input {
        width: 250px;
        right: 7%;
    }
    #navimg {
        left: 1%;
    }
    .input .clear-btn {
        right: 7%;
    }
    .search-btn {
        /* left: 87%; */
        bottom: 20%;
    }

    footer {
        width: 100vw;
    }
    .rows {
        gap: 2px;
        margin-left: 2%;
    }
    footer .row-bottom{
        gap: 70%;
    }
}