/* color palette  */
:root {
    --color-one: #000;
    --color-two: #fff;
    --color-three: #fff;
    --font-one: "Cinzel Decorative", serif;
    --font-two: "Cinzel", serif;
}


/* common  */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.container {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 30px;
}
html {
    scroll-behavior: smooth;
}
h1, h4, h5, h6 {
    font-family: var(--font-one);
}
p, li, h2, h3 {
    font-family: var(--font-two);
}
span.two {
    font-family: var(--font-one) !important;
}
li {
    list-style: none;
}


/* hero-section  */
.hero-section {
    background-image: linear-gradient(360deg, rgba(19, 20, 20, 0.3) 55%, rgba(146, 145, 145, 0.5) 100%),
    url(../img/Biz-Pic.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100vh;
    position: relative;
}
.hero-content {
    padding: 50px;
}
.hero-left {
    position: relative;
    color: var(--color-two);
    text-transform: uppercase;
    font-size: 35px;
}
.hero-left h1 {
    font-size: 50px;
    text-transform: uppercase;
    color: var(--color-one);
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
}
.hero-left h1 span {
    color: var(--color-two);
}
.sub-title {
    padding-top: 220px;
    padding-bottom: 15px;
}
.details-wrap {
    width: max-content;
}
.details-wrap ul li {
    list-style: none;
    text-align: center;
}
.sub-title, .sub-title2 {
    font-weight: 400;
}
.sub-title2 {
    padding-left: 80px;
    padding-top: 15px;
}


.hero-video {
    position: absolute;
    right: 0;
    bottom: -3px;
}
.hero-video video {
    max-width: 500px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.play-icon, .pause-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.5);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}
.play-icon i, .pause-icon i {
    font-size: 25px;
    color: var(--color-two);
}
.hero-video .pause-icon {
    display: none;
}

.form-link {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 15px;
}
.form-link i {
    color: var(--color-two);
    font-size: 40px;
}



/* website loading animation  */

#loading-screen {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #fff; /* Change this to match your design */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#loading-logo {
    animation: pulse 2s infinite;
}
.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.logo {
    width: 200px;
}
#content {
    display: none;
    animation: fadeIn 1s ease-in forwards;
    z-index: 2000;
    position: relative;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.blink {
    animation: blink 3s infinite;
}


.show {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0; 
    }
    to {
        opacity: 1; 
    }
}


.blur {
    position: relative;
    width: 100vw;
    height: 100vh;
    cursor: reload;

    div {
        width: 100%;
        height: 100%;
        background: transparent;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .logo { 
        position: absolute;
        z-index: 100;
        top: 50%; 
        left: 50%; 
        transform: translate(-50%, -50%);
        max-width: 250px;
        opacity: 1; 
        transition: opacity 1s ease-out; 
    }

    .logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}


/* contact  */
.contact-section {
    background: var(--color-one);
    padding: 80px 0;
}
.contact-section h2 {
    text-align: center;
    color: var(--color-two);
    font-size: 35px;
    padding-bottom: 25px;
}
#contactForm {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
#contactForm .form-group {
    width: 100%;
}
.form-inner-flex {
    display: flex;
    gap: 15px;
}
#contactForm .form-group input, #contactForm .form-group textarea {
    width: 100%;
    background: var(--color-two);
    padding: 8px;
    font-size: 16px;
    font-family: var(--font-two);
    border: none;
    outline: none;
    border-radius: 3px;
    color: var(--color-one);
    text-transform: capitalize !important;
}
#submit {
    font-family: var(--font-two);
    font-size: 16px;
    width: max-content;
    margin: 0 auto;
    padding: 8px 18px;
    background: var(--color-two);
    color: var(--color-one);
    border: none;
    outline: none;
    border-radius: 3px;
    font-weight: 500;
    cursor: pointer;
}
#submit:hover {
    opacity: .8;
}


@media screen and (max-width:1380px) and (min-width:1001px) {

    .hero-left h1 {
        font-size: 40px;
    }
    .sub-title {
        font-size: 35px;
        padding-top: 180px;
    }
    .sub-title2 {
        font-size: 32px;
        padding-left: 20px;
    }
    .details-wrap ul li {
        font-size: 28px;
    }
    .hero-content {
        padding: 20px 40px;
    }
}


@media screen and (max-width:1000px) {

    .hero-left h1 {
        font-size: 40px;
    }
    .sub-title {
        font-size: 35px;
        padding-top: 180px;
    }
    .sub-title2 {
        font-size: 32px;
    }
    .details-wrap ul li {
        font-size: 28px;
    }
    .hero-section {
        height: 950px;
    }
}


/* height  */
@media screen and (max-height:569px) and (min-height:500px) {

    .hero-left h1 {
        font-size: 30px;
    }
    h3.sub-title2 {
        font-size: 22px;
    }
    h2.sub-title {
        font-size: 25px;
        padding-top: 150px;
    }
    .details-wrap ul li {
        font-size: 18px;
    }
}
@media screen and (max-height:609px) and (min-height:570px) {

    .hero-left h1 {
        font-size: 32px;
    }
    h3.sub-title2 {
        font-size: 25px;
    }
    h2.sub-title {
        font-size: 28px;
        padding-top: 180px;
    }
    .details-wrap ul li {
        font-size: 22px;
    }
}


@media screen and (max-height:719px) and (min-height:610px) {

    .hero-left h1 {
        font-size: 35px;
    }
    h3.sub-title2 {
        font-size: 28px;
    }
    h2.sub-title {
        font-size: 30px;
        padding-top: 180px;
    }
    .details-wrap ul li {
        font-size: 25px;
    }
}


@media screen and (max-height:830px) and (min-height:720px) {

    .hero-left h1 {
        font-size: 40px;
    }
    h3.sub-title2 {
        font-size: 32px;
    }
    h2.sub-title {
        font-size: 35px;
    }
    .details-wrap ul li {
        font-size: 30px;
    }
}
/* ----- height -----  */


@media screen and (max-width:800px) {

    .logo {
        width: 250px;
    }

    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        height: 950px;
    }
    .hero-content {
        padding: 20px;
        display: flex;
        flex-direction: column;
    }
    .hero-left h1 {
        font-size: 35px;
    }
    h2.sub-title {
        font-size: 30px;
        padding-top: 185px;
    }
    h3.sub-title2 {
        font-size: 28px;
        padding-left: 0;
    }
    .details-wrap ul li {
        font-size: 22px;
    }

    .contact-section {
        padding: 40px 0;
    }
    .form-inner-flex {
        flex-direction: column;
    }
}


@media screen and (max-width:425px) {

    h3.sub-title2 {
        font-size: 25px;
    }
    h2.sub-title {
        font-size: 28px;
    }
    .details-wrap ul li {
        font-size: 20px;
    }
}
@media screen and (max-width:375px) {

    .hero-left h1 {
        font-size: 30px;
    }
    h3.sub-title2 {
        font-size: 22px;
    }
    h2.sub-title {
        font-style: 25px;
    }
    .details-wrap ul li {
        font-size: 18px;
    }
}

div#msgSubmit {
    color: #fff;
    text-align: center;
}

.text-danger {
    color: red;
}

