* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

/* HEADER */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 10px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

header img {
    width: 110px;
    height: auto;
}

header ul {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    list-style-type: none;
}

header ul li {
    text-transform: uppercase;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 1.2px;
    position: relative;
}

header ul li::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background-color: rgb(241, 147, 6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

header ul li:hover:after {
    transform: scaleX(1);
}

header .icons i {
    margin-left: 8px;
    font-size: 16px;
    cursor: pointer;
}

/* Section-1 */

.img-container {
    width: 100%;
    height: 85vh;
    overflow: hidden;
    position: relative;
    margin-top: 102px;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 40px;
}

.container div {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 30px;
    font-weight: 200;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
}

/* section-2 */

.select-stone {
    width: 100%;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 70px;
}

.select-stone h3 {
    font-size: 48px;
    font-weight: 200;
}

.stones {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 50px;
}

.stone-imgs {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.stone-imgs img {
    width: 120px;
    height: 120px;
}

.stone-imgs p {
    text-transform: uppercase;
}

/* section-3 */

.section-3 {
    width: 100%;
    height: 75vh;
    background-color: #dadada;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
}

.section-3 .sec-3-div-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.section-3 .sec-3-div-2 h3 {
    font-size: 36px;
    text-align: center;
    font-weight: 400;
}

.section-3 .sec-3-div-1 a {
    text-decoration: none;
    border: 2px solid #666;
    padding: 5px 30px;
    font-size: 20px;
    text-transform: uppercase;
    color: black;
}

.section-3 .sec-3-div-1 a:hover {
    background-color: rgb(236, 231, 231);
}

/* section-4 */

.section-4 {
    width: 100%;
    height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    padding: 20px;
}

.section-4 h3 {
    font-size: 44px;
    font-weight: 200;
}

.section-4 .sec-4-img {
    display: flex;
    justify-content: space-between;
    gap: 15px;

}

.section-4 .sec-4-img img {
    width: 100%;
    max-width: 19%;
    transition: transform 0.4s ease;
    cursor: pointer;
}

.section-4 .sec-4-img img:hover {
    transform: scale(1.09);
}

/* section-5 */

.section-5 {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background-color: rgb(236, 231, 231);
}

.section-5 h3 {
    font-size: 38px;
    letter-spacing: 2px;
    font-weight: 400;
}

.section-5 p {
    font-size: 18px;
}

.section-5 .sec-5-imgs {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-5 .sec-5-imgs div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    overflow: hidden;
    border-radius: 30px;
}

.section-5 .sec-5-imgs div img {
    width: 95%;
    height: 400px;
    object-fit: cover;
    margin-left: 20px;
    border-radius: 30px;
    transition: transform 0.4s ease;
}

.section-5 .sec-5-imgs div img:hover {
    transform: scale(1.05);
}

.section-5 .sec-5-imgs div p {
    text-transform: uppercase;
}

/* section-6 */

.section-6 {
    width: 100%;
    height: 75vh;
    overflow: hidden;
    position: relative;
}

.section-6 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* section-7 */

.section-7 {
    width: 100%;
    height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.section-7 h3 {
    font-size: 42px;
    letter-spacing: 2px;
    font-weight: 400;
}

.section-7 .rings {
    display: flex;
    justify-content: space-evenly;
}

.section-7 .rings img {
    width: 320px;
}

/* section-9 */

.section-9 {
    width: 100%;
    height: 80vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 170px 20px;
    background-color: #f3f1f1;
}

.section-9 .card {
    width: 100%;
    max-width: 300px;
    height: 330px;
    border: 1px solid rgb(222, 224, 224);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.4s ease;
    border-radius: 20px;
    gap: 20px;
    cursor: pointer;
    padding: 0 10px;
}

.section-9 .card:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

.section-9 .card img {
    width: 90px;
    background-color: #f8f0b4;
    border-radius: 50%;
    border: 1px solid rgb(245, 134, 7);
    padding: 10px;
    object-fit: cover;
}

.section-9 .card h4 {
    font-size: 22px;
    font-weight: 400;
}

.section-9 .card p {
    text-align: center;
    font-size: 14px;
    color: #555;
}

.section-10 {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background-color: #f3f1f1;
}

.section-10 div {
    width: 300px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.section-10 div h4 {
    font-size: 22px;
    font-weight: 500;
}

.section-10 div ul li {
    list-style: none;
    margin-bottom: 15px;
}

.sec-10 {
    text-align: center;
}

.sec-10 img {
    margin-left: 30px;
    width: 200px;
}

.section-10 div a {
    text-decoration: none;
    color: black;
    background: #eee;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.section-10 div a i {
    width: 22px;
    height: 22px;
    min-width: 22px;
}

footer{
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    border-top: 2px solid #333;
    font-size: 15px;
    background-color: #f3f1f1;
}

footer div a{
    text-decoration: none;
    color: black;
    margin-right: 20px;
}