@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overscroll-behavior: smooth;
    overflow-x: hidden;
    /* Prevents horizontal scroll */
}
h1,h2,h3,h4,h4{
    font-family: "Merriweather", serif;
}
p{
    font-family: "Poppins", sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #D3D3D3;
}
body {

    user-select: none;
    /* Prevents text selection */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;

    font-family: "Montserrat", serif;
}

/* Hero section styles */
.hero {
    background-image: url('asserts/hassan-wasim-4wutln9_8OM-unsplash (1).webp');
    background-position: center;
    background-size: cover;
    position: relative;
    width: auto;
    height: auto;

    overflow: hidden;
}

.hero-text h1 span {
    color: #006600;
}

/* Hero section styles */
.hero-Sub-Section {

    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.3);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the image covers the section without distortion */
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;

}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    font-family: Merriweather;
    font-size: 2.5vw;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.hero-text h1 {
    margin-top: 5%;
}

.hero-text p {
    font-family: Georgia;
    margin-top: 1%;
}

/* Navbar styles */
nav {



    padding: 0px 10%;
    background-color: rgba(0, 0, 0, 0.322);

    backdrop-filter: blur(15px);
    position: fixed;

    z-index: 1000;
    flex-wrap: wrap;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding-top: 15px;
    padding-bottom: 15px;
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

nav ul li {
    padding: 2vw;
    position: relative;
}

nav ul li a {
    text-decoration: none;
    font-weight: bold;
    color: #dca854;
    font-size: 1.2rem;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #006600;
}

/* Dropdown menu */
.dropdown-menu {
    display: none;
    border-radius: 5px;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: rgba(0, 0, 0, 0.418);

}

nav ul li:hover .dropdown-menu {
    display: block;
    transition-duration: 0.3s;
}

.dropdown-menu ul {
    display: block;
    margin: 10px;
}

.dropdown-menu ul li {
    padding: 10px 30px;

}

/* Button styles */
button {
    font-size: 18px;
    font-weight: bold;
    color: #006600;
    border-radius: 5px;
    border: none;
    background-color: #ffffff;
    padding: 8px 12px;
    transition: 0.5s;
    width: auto;
    font-family: Poppins;
    height: auto;

}

.hero-text button {
    margin-top: 2%;
}

button:hover {
    color: #ffffff;
    background-color: #006600;
    transform: scale(1.2);
}

/* Logo styles */
.logo {


    display: block;

    transition-duration: 0.3s;
    overflow: hidden;

}

.logo:hover {
    transform: scale(1.2);
}

/* Logo styles */




/* ----------------------hero video------------------- */

.video-wrapper {

    position: relative;
    width: 99.1vw;
    height: 100vh;

}

video {

    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the video covers the section without distortion */
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;

}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 99.1vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    /* Black overlay */
    pointer-events: none;
    /* So it doesn't block user interaction */
}

/* ----------------------end of hero video------------------- */





/* -------------start of intro------------------- */
h1 {
    font-family: Merriweather;
    font-size: 2.5vw;
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    margin-top: 5%;
    margin-bottom: 3%;


}

.intro {
    font-family: Poppins;
    font-size: 16px;
    color: #000000;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: center;
    padding: 0px 20%;

}
.intro p {
color: #000000;


}

/* -------------end of intro------------------- */


/*---------- .heritage-importance section----------------- */
.heritage-importance h2 {
    text-align: center;
}

.heritage-importance strong {
    font-family: Merriweather;
    font-size: 1.3vw;
    font-weight: bold;
    text-align: left;
    text-decoration: none;
}

.heritage-importance {
    font-family: Poppins;
    font-size: 16px;
    color: #000000;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: justify;
    padding: 0px 20%;
}

/*----------end .heritage-importance section----------------- */

/*------------- start of .heritage-examples------------------ */
.heritage-examples h2 {
    text-align: center;
    margin-bottom: 3%;

}

.heritage-examples {
    margin: 0px 20%;
}

.pillar-card h3 {
    text-align: center;
    padding-bottom: 5%;
}

.pillar-card {
    transition: all 0.3s ease-in-out;
}

.pillar-card:hover {
    background-color: #dca854;
    color: #ffffff;
    scale: 1.05;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
    cursor: pointer;

}

.pillar-card h3 p {
    text-align: justify;
}
.pillar-card p{
    font-family: Poppins;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #000000;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.pillar-card {
    background-color: #f5f0e6;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

th,
td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

/*------------- end of .heritage-examples------------------ */

/* heritage-comparison  section*/
.heritage-comparison {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.heritage-comparison h2 {
    text-align: center;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.heritage-comparison th {
    text-align: center;
    margin-top: 5%;
    justify-content: center;

}

.heritage-comparison tr td {
    text-align: center;
}


/* end heritage-comparison  section*/

blockquote {
    font-style: italic;
    color: #555;
    border-left: 4px solid #8b4513;
    padding-left: 10px;
}

.cta {
    background-color: #fff3d9;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
}
.cta p{
    color: #91531a;
}

.cta li {
    list-style: none;
    margin: 10px 0;
    font-size: 1.2em;
    font-family: Poppins;
}

.community a {
    color: #6b4226;
    text-decoration: none;
}













/* ------------------------------------------------------------------------------footer-----------------------------------------------------------------------------*/
/* Footer Base */

footer {
    background-color: #333b41;
    ;
    padding: 40px 5%;
    color: #D3D3D3;
    font-family: Poppins, sans-serif;
}

/* Footer Main Container */
.main-fot-container {
    display: flex;
    justify-content: space-between;
    /* Equal spacing */
    align-items: flex-start;
    /* Align to the top */
    gap: 5vw;
    /* Adjusts spacing between sections */
    padding: 20px 5%;
    /* Adds some padding */
    flex-wrap: nowrap;
    margin-top: 5%;
    /* Prevents wrapping */
}


/* Logo Section */
.first-fot-container {
    width: 30%;
    margin-top: 10px;
}

.first-fot-container .logo {
    width: 25vh;
    height: auto;
}

.footer-text-one {
    text-align: justify;
    font-size: 20px;
    margin-top: 20px;


}

/* Contact Section */
.second-fot-container {
    width: 30%;
    text-align: left;
}

.second-fot-container h5 {
    color: #006600;
    font-size: 30px;
    margin-bottom: 15px;
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: 0.3s;
}

.second-fot-container h5:hover {
    border-bottom: 3px solid #006600;
    color: white;
}

/* Contact Items */
.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.first-fot-container,
.second-fot-container,
.third-fot-container {
    width: 30%;
    /* Ensures equal width */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

}

.second-fot-container {
    text-align: center;
    display: inline;
    justify-content: center;
    margin-top: 4%;

}

.third-fot-container {
    margin-top: 10%;
}

/* Contact Icon Background */
.fot-icon {
    width: 50px;
    height: 50px;
    background-color: transparent;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
}

/* Icon Images */
.fot-icon img {
    width: 35px;
    height: 35px;
    transition: 0.3s ease;
    padding: 0;
}

.contact-item p {
    letter-spacing: 1;
}

.fot-icon:hover img {
    transform: scale(1.3);
}

/* Footer Navigation */
.third-fot-container {
    width: 20%;
    text-align: left;
    pointer-events: fill;
}

.third-fot-container ul {
    padding: 0;
}

.third-fot-container ul li {
    list-style: none;
    margin-bottom: 15px;
}

.third-fot-container ul li a {
    text-decoration: none;
    font-weight: bold;
    color: #dca854;
    transition: 0.3s;
    font-size: 20px;
}

.third-fot-container ul li a:hover {
    color: #006600;
}

.third-fot-container a {
    position: relative;
    z-index: 10;
}

.LinkdIn {
    width: 100%;
    text-align: left;
    padding-top: 10px;
}

/* Footer Decorative Image */
.footer-decor {
    width: 600px;
    height: auto;

    margin-top: 50px;
    margin-right: -180px;
    margin-left: -600px;
    margin-bottom: -59px;
    position: relative;
    overflow: hidden;
}