*{
    margin: 0;
    padding: 0;
    transition: all 0.2s ease-in-out;
} 

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #cdfaf6;
}

/* Importing fonts using font-face rule */
@font-face {
    font-family: mainNav_Head_Font;
    src: url("./fonts/Condensed Regular.otf");
    }
 @font-face {
    font-family: Lombok_Font;
    src: url("./fonts/Lombok\ Regular.ttf");
    }
 @font-face {
    font-family: Oneday_Font;
    src: url("./fonts/ONEDAY.otf");
    }
 @font-face {
    font-family: avalea_Font;
    src: url("./fonts/AVALEA_.otf");
    }
 
 @font-face {
    font-family: patrickHandregular_Font;
    src: url("./fonts/patrick_hand_by_sirpatrick1st-d30hjvk.otf");
    }
 

/* NO SCREENSHOT */
.no-screenshot {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
    background: transparent;
}

/* HEADER-Navigation */

header {
    width: 100%;
    max-width: 1200px;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-image: linear-gradient(to right, #408d86, #263339);
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    margin: 0;
}


/* NAV ITEMS */


.main-navigation-items > a {
    color: #43a49b;
    text-decoration: overline;
    padding: 10px;
    font-family: Lombok_Font;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

.main-navigation-items > a:hover {
    color: #cdfaf6;
    text-decoration: line-through;
}

.main-navigation-items > a:active {
    color: #43a49b;
    text-decoration: underline;
}

/* Inside the body and this contains everything */
.container {
    max-width: 1200px;
    width: 100%;
    position:relative;
    top: 100px;   
}

.background_img{
    max-width: 1200px;
}

/* LOGO */
.logo_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* position: absolute; */
    justify-content: space-around;
}

.logo {
    width: 800px;
    height: 400px;
}

/* About */
.intro>p>span{
    font-family: patrickHandregular_Font;
    /* font-size: 24px; */
    font-size: 1.25rem;
    color: #062c29;
 }

 /* Footer-fixed at bottom */
.copyright{
    display: flex;
    justify-content: center;
    align-items: center;
    position:fixed;
    bottom:0;
    background-image: linear-gradient(to right,  #408d86 , #263339);
    width: 1200px;
    /* text-align: center; */
 
 }
 .copyright p{
    font-size: 1.5rem;
   font-family: mainNav_Head_Font;
    color:#ccc ;
    padding: 20px 0;
    /* padding: 10px; */
 }



 .getquote {
    background-image: url('./Images/7.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 50px 20px;
    text-align: center;
    color: white;
    height: 100vh;
}

.getquote:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    z-index: -1;
}

.contact-form {
    padding: 50px 0;
}

.Formcontainer {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.form-card {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

.title {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
}

.details {
    color: #408d86;
    padding: 2%;
    margin: 2%;
}

.text_details {
    font-family: Lombok_Font;
    font-size: 18px;
    font-weight: bold;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: #7e7575;
    outline: none;
    font-family: Lombok_Font;
    font-size: 18px;
    font-weight: bold;
}

.form-group label {
    color: #408d86;
}

.btn-send {
    background-color: #408d86;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-send:hover {
    background-color: #263339;
}

.address,
.contact,
.email {
    margin-bottom: 20px;
}


.address span,
.contact span,
.email span {
    font-family: Lombok_Font;
    font-size: 18px;
    font-weight: bold;
}

.details > .row {
    display: flex;
    justify-content: space-evenly;
}

.labelText {
    font-family: Lombok_Font;
    font-size: 18px;
    font-weight: bold;
}






/* CSS for background images */

/* Home background image */
.home_logo {
    background-image: url('./bg_img/5.jpg');
    background-size: cover;
    background-position: center;
    height: 600px; /* Set the original height of the image */
}

/* About background image */
.about_content {
    background-image: url('./bg_img/3.jpg');
    background-size: cover;
    background-position: center;
    height: 800px; /* Set the original height of the image */
}

/* Services background image */
.services_content {
    background-image: url('./bg_img/14.jpg');
    background-size: cover;
    background-position: center;
    height: 700px; /* Set the original height of the image */
}

/* Quote background image */
.quote_content {
    background-image: url('./bg_img/7.jpg');
    background-size: cover;
    background-position: center;
    height: 900px; /* Set the original height of the image */
}


/* CSS for positioning foreground elements relative to their background images */

/* Home section */
.home_logo .logo_container {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* About section */
.about_content .SmallIntro {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(50%, -50%);
    width: 250px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    padding: 5%;
    font-weight: bold;
}


/* Services section */
.services_content .F_Services {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
