*{
    margin: 0px;
    padding: 0px;
    font-family:'Times New Roman', Times, serif, monospace;
    
}
header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(173, 180, 208, 0.7),rgba(113, 161, 212, 0.7)),url('background.avif');
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}
nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-links{
    flex: 1;
    text-align: left;
}
.nav-links ul li{
    list-style: non;
    display: inline-block;
    padding: 30px 35px;
    position: relative;
}
.nav-links ul li a{
    text-decoration: none;
    font-size: 20px;
    color:#fff;
    padding: 5px 20px;
    border: 1px solid transparent;
    transition: 0.8 ease;
}
.nav-links ul li a:hover{
    background-color: #fff;
    color: rgb(172, 190, 236);
}
.nav-links ul li.active a{
    background-color: #fff;
    color: chocolate;
}
.text-box{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.text-box h1{
    font-size: 62px;
}
.text-box p{
    margin: 10px 0 40px;
    font-size: 20px;
    font-style: italic;
    color: #fff;
    flex-basis: 48%;
    padding: 30px 2px;
}
nav .fa{
    display: none;
}
@media(max-width: 700px){
    .text-box h1{
        padding-left: 10px;
        padding-right: 50px;
        font-size: 54px;
    }
    .nav-links ul li{
        display: block;
    }
        .row{
        flex-direction: column;
    }
    .nav-links{
        position: absolute;
        background:rgba(99, 122, 212, 0.7);
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 0.5s;
    }
    nav .fa{
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 30px;
    }
}

/*---- gen info ----*/
.genInfo{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
h1{
    font-size: 58px;
    font-weight: 600;
}
p{
    color:cadetblue;
    font-size: 20px;
    font-weight: 300;
    line-height: 22px;
    padding: 5px;
    text-align: left;
    padding-left: 60px;
}
p1{
    color:cadetblue;
    font-size: 20px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
    text-align: center;
}
p2{
    font-size: 24px;
    font-weight: 300;
    line-height: 22px;
    padding-top: 30px;
    text-align: center;
}
.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between; 
    padding-left: 15px;
    padding-right: 50px;
}
.gen-col{
    flex-basis: 31%;
    margin-bottom: 5%;
    padding: 10px 12px;
}

h3{
    text-align: left;
    font-weight: 600;
    margin: 10px 0;
    font-size: 36px;
    padding-left: 60px;
}
@media(max-width: 700px) {
    .row{
        flex-direction: column;
    }
    h3{
        padding-left: 20px;
        padding-right: 10px;
    }
    p{
        padding-left: 20px;
    }
}

/*------------- details page -----------*/
.details{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.details h1{
    font-size: 58px;
}
.details p{
    margin: 10px 0 40px;
    font-size: 24px;
    color: #fff;
}

.details-further{
    width: 80%;
    margin: auto;
    padding-top: 80px;
}

.details-further2{
    width: 80%;
    margin: auto;
    padding-top: 20px;
}

.details-further3{
    width: 80%;
    margin: auto;
    padding-bottom: 60px;
    padding-top: 20px;
}

.details-col{
    flex-basis: 48%;
    padding: 30px 2px;
}
.details-col img{
    width: 100%;
}
.details-col2{
    flex-basis: 30%;
    padding: 20px 2px;
}
.details-col2 img{
    width: 100%;
}
.details-col3{
    flex-basis: 60%;
    padding: 20px 2px;
}

.details-col h1{
    padding-top: 0;
}
.details-col p{
    padding: 15px 0 25px;
    text-align: left;
}
.details-col2 h1{
    padding-top: 0;
}
.details-col2 p{
    padding: 15px 0 25px;
    text-align: left;
}
.details-col3 h1{
    padding: 15px 0 25px;
    text-align: left;
}

.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 1px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover{
    border: 1px solid #9bcdf4;
    background: #9bcdf4;
    transition: 0.5s;
}
.blue-btn{
    border: 1px solid #9bcdf4;
    background: transparent;
    color: #9bcdf4;
}
.blue-btn:hover{
    color: #fff;
}

/*------------- sources page -----------*/
.sources{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.sources h1{
    font-size: 58px;
}
.sources p{
    margin: 10px 0 40px;
    font-size: 14px;
    color: #fff;
}

.sources-further{
    width: 80%;
    margin: auto;
    padding-top: 20px;
    padding-bottom: 50px;
}

.sources-col{
    flex-basis: 48%;
    padding: 30px 2px;
}
.sources-col2{
    flex-basis: 40%;
    padding: 30px 0px;
}

.sources-col h1{
    padding-top: 0;
}
.sources-col p{
    padding: 15px 0 25px;
    text-align: left;
}
.sources-col2 h1{
    padding-top: 0;
}
.sources-col2 p{
    padding: 15px 0 20px;
    text-align: left;
}

.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 20px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover{
    border: 1px solid #9bcdf4;
    background: #9bcdf4;
    transition: 0.5s;
}
.blue-btn{
    border: 1px solid #9bcdf4;
    background: transparent;
    color: #9bcdf4;
}
.blue-btn:hover{
    color: #fff;
}
.btn{
    border: 1px solid #9bcdf4;
    background: transparent;
    color: #9bcdf4;
}
.btn:hover{
    color: #fff;
}

/* home-remedies section */
.hr{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.hr h1{
    font-size: 58px;
}
.hr p{
    margin: 10px 0 40px;
    font-size: 14px;
    color: #fff;
}

.hr-further{
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}

.hr-col{
    flex-basis: 25%;
    padding: 18px 2px;
    img{
        width: 100%;
    }
}
.hr-col2{
    flex-basis: 40%;
    padding: 30px 0px;
}

.hr-col h1{
    padding-top: 0;
}
.hr-col p{
    padding: 15px 0 25px;
    text-align: left;
}
.hr-col2 h1{
    padding-top: 0;
}
.hr-col2 p{
    padding: 15px 0 20px;
    text-align: left;
}
.btn-row{
    display: flex;
    justify-content: flex-start;
    margin-top: 2px;
    gap: 12px; /* keep 12px between buttons */
    align-items: center;
}
.btn-row .hero-btn{
    flex: 0 0 auto; /* keep intrinsic button width, don't grow */
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 20px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover{
    border: 1px solid #9bcdf4;
    background: #9bcdf4;
    transition: 0.5s;
}
.blue-btn{
    border: 1px solid #9bcdf4;
    background: transparent;
    color: #9bcdf4;
}
.blue-btn:hover{
    color: #fff;
}
.btn{
    border: 1px solid #9bcdf4;
    background: transparent;
    color: #9bcdf4;
}
.btn:hover{
    color: #fff;
}
@media(max-width: 700px) {
    .btn-row{
        flex-direction: column;
        align-items: flex-start; /* align to the start in column layout */
    }
}

/* Make buttons larger only on the details page sections */
.details-further .hero-btn,
.details-further2 .hero-btn {
    font-size: 18px; /* increase as needed (px or rem) */
}

/* Responsive video wrapper for embedded iframes */
.video-wrap{
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 100%;
}
.video-wrap iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}