*
{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

html
{
    font-size: 10px;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    scroll-behavior: smooth;
}

a{
    text-decoration: none;
    color: inherit;
}

a:hover{
    color: rgb(73, 97, 255);
}


/*********************************** header ************************************************** */

header{
    display: flex;
    height: 10vh; 
    background: white;
    box-shadow: 0px 0px 5px 5px rgb(177, 177, 177);
    position: sticky;
    top:0px;

}

/********************************** logobox *********************************/

header .logo_box{
    display: flex;
    justify-content:flex-end;
    align-items: center;
    width: 30vw;

}

header .logo_box .brand_logo{
    max-height: 8vh;
    filter: drop-shadow(0px 0px 10px rgb(0, 0, 0));

}

header .logo_box .brand_name h1{
    font-size: 2.5rem;

}

header .logo_box .brand_name p{
    font-size: 1.5rem;
    color: rgb(65, 65, 65);
}



/********************************** navbox *********************************/

header .nav_box{
    width: 70vw;
    display: flex;
    justify-content: flex-end;
}

header .nav_box ul{
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap:5rem;
}

header .nav_box .nav_list li{
    list-style: none;
    font-size: 1.5rem;
    font-weight: 600;
    color: rgb(65, 65, 65);

}



/******************************* main section ***********************************/

/***section two start******************************************/

main .section_one{
    display: flex;
    align-items: center;
    justify-content:space-around;
    flex-direction: column;
    padding: 5rem;
    text-align: center;
    height: 70vh;
    box-shadow: inset 0px 0px 10px 1px rgb(177, 177, 177);
    
}

main .section_one h1{
    font-size: 7rem;
    background: linear-gradient(to right, #5672ff, #ff6bf5, #fd9a49, #ff5555, #ff41d6, #a641ff);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: bgtext 5s linear infinite;

}
@keyframes bgtext{
    to{background-position: 200%;}
}


main .section_one p{
    font-size: 2.5rem;
    width: 60vw;
    color: #666;
}

main .section_one button{
    background-color: rgb(57, 102, 228);
    color: white;
    padding: 1.5rem 3.5rem;
    font-size: 2rem;
    border-radius: 1rem;
    border: none;
    cursor: pointer; 
}

/***section one end********************************************/


/***section two start******************************************/

.section_two{
    padding: 6.5rem 3rem;
}
.section_two_heading{
    text-align: center;
    margin-bottom: 6.5rem;
}

.section_two_heading h1,.section_two_heading p{
    padding: 0.5rem;
}

.section_two_heading h1{
    font-size: 3.5rem;
}

.section_two_heading p{
    font-size: 2rem;
    color: rgb(65, 65, 65);
}

.section_two .svg_container{
    height: 5rem;
    width: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: #c1cbfe;
    border: none;
    color: rgb(37, 99, 235) ;
}

.section_two .product_highlight{
    border: none;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    row-gap: 2rem;
}

.section_two .product_highlights_container{
    display: flex;
    justify-content: space-around;
}

.section_two .product_highlights_container p{
    color: rgb(65, 65, 65);
    font-size: 1.5rem;
}

/***section two end****************************************/


/***section three start***********************************/

.section_three{
    padding: 6.5rem 3rem;
    background-color: #e1e5fb85;
}

.section_three_heading{
    margin-bottom: 6.5rem;
    text-align: center;
}

.section_three_heading h1,.section_three_heading p{
    padding: 0.75rem;
}

.section_three_heading p{
    font-size: 2rem;
    color: rgb(65, 65, 65);
}
.section_three_heading h1{
    font-size: 3.5rem;
}


.section_three .product_grid{
    
    display: grid;
    gap: 6rem 0rem;
    grid-template-columns: 1fr 1fr;
}


.section_three .product_grid .pg_child{
    justify-self: center;
    align-self: center;
    padding: 2rem 6rem;
    
}/*----------------------------------------------------------------------------check this line later---------------------------*/
    

.pg_child img{
    max-width: 400px;
    display: block;
    object-fit: cover;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.4);
    border-radius: 3rem;
}

#product_tag p{
    color: rgb(29 ,78 ,216);
    background-color: rgba(29, 79, 216, 0.2);
    display: inline-block;
    border-radius: 3rem;
    padding: 0.5rem 1rem ;
    margin-bottom: 1.5rem;
}

.section_three .product_name{
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.section_three .product_description{
    font-size: 1.8rem;
    color: rgb(71, 85, 105) ;
}

.section_three .key_features{
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.key_features_points{
    display: flex;
    align-items: center;
    gap: 1rem;;
}

.key_features_points svg{
    color: rgb(22, 163, 74);
    width: 20px !important;
}

.key_features_points p{
    display: inline;
    font-size: 1.6rem;
    color: rgb(51, 65, 85);
}

.key_features_container{
    margin-top: 2.5rem;
}

.key_features_points_container{
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.ideal_for_container{
    margin-top: 4rem;
}

.ideal_for_container h2{
    font-size: 2rem;
}

.ideal_for_points{
    display: flex;
    margin-top: 1.5rem;
    justify-content: space-between;
}

.ideal_for_points p{
    font-size: 1.2rem;
    color: rgb(51, 65, 85);
    font-weight: 600;
}

/***section three end*************************************/

/******************************* main section ***********************************/


/******************************* footer section ***********************************/

/******************************* contact us start ***********************************/
.contact_us_container{
    background: linear-gradient(90deg, #2563EB 0%,#9333EA 100%);
    padding: 6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.contact_us_container #cuch1{
    font-size: 3.5rem;
    color: white;
}

.contact_us_container #cucp{
    font-size: 2rem;
    color: rgb(230, 230, 230); 
}

.contact_us{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.contact_us_title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ebeef4;
    letter-spacing: 1px;
}

.contact_us_row {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.contact_icon {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.6rem;
    color: #222;
    background: white;
    border-radius: 2rem;
    padding: 0.7rem 1.2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    transition: box-shadow 0.2s, transform 0.2s;
    text-decoration: none;
}

.contact_icon:hover {
    box-shadow: 0 4px 16px rgba(37,99,235,0.15);
    transform: translateY(-2px) scale(1.03);
}

.contact_logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
}

@media (max-width: 700px) {
    .contact_us_row {
        flex-direction: column;
        gap: 1.2rem;
        width: 100%;
    }
    .contact_icon {
        width: 100%;
        justify-content: flex-start;
    }
}

/******************************* contact us end ***********************************/


/******************************* end section start ***********************************/

.end_section{
    display: flex;
    justify-content:space-evenly;
    align-items: center;
    background-color: rgb(15, 23, 42);
    color: white;
    padding: 6rem 6rem;
}

.end_brand_name_and_logo{
    display: flex;
}

.end_logo img{
    width: 12rem;
}
.end_brand_name h1{
    font-size: 2.5rem;
}

.end_brand_name p{
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
}

.end_brand_details{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 40%;
}

.end_brand_description{
    font-size: 1.5rem;
    color: rgb(203, 213, 225);
    line-height: 3rem;
    word-spacing: 2px;
    letter-spacing: 1px;   
}

.end_product_links h1{
    font-size: 2rem;
    margin: 1rem;
}

.end_product_links p{
    font-size: 1.5rem;
    margin: 1rem;
    color: rgb(203, 213, 225);
}

/******************************* end setction end ***********************************/

/******************************* footer section ***********************************/

/* Ensure product descriptions and details are always left-aligned */
.product_description,
.fog_product_details,
.haze_product_details,
.bubble_product_details,
.key_features_points p,
.ideal_for_points p {
    text-align: left !important;
    align-items: flex-start !important;
}

/* Prevent unwanted centering in product details on mobile */
@media (max-width: 900px) {
    .fog_product_details,
    .haze_product_details,
    .bubble_product_details {
        align-items: flex-start !important;
        text-align: left !important;
    }
    .key_features_points,
    .ideal_for_points {
        align-items: flex-start !important;
        text-align: left !important;
    }
}

/* Responsive adjustments for mobile screens */
@media (max-width: 900px) {
    header {
        flex-direction: column;
        height: auto;
        padding: 1rem 0;
    }
    header .logo_box, header .nav_box {
        width: 100vw;
        justify-content: center;
    }
    header .nav_box ul {
        width: 100%;
        gap: 2rem;
        justify-content: center;
    }
    main .section_one {
        padding: 2rem 1rem;
        height: auto;
    }
    main .section_one h1 {
        font-size: 3rem;
    }
    main .section_one p {
        font-size: 1.5rem;
        width: 100%;
    }
    .section_two {
        padding: 2rem 1rem;
    }
    .section_two .product_highlights_container {
        flex-direction: column;
        align-items: center;
    }
    .section_two .product_highlight {
        width: 100%;
        margin: 1rem 0;
    }
    .section_three {
        padding: 2rem 1rem;
    }
    .section_three .product_grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        width: 100vw;
    }
    .section_three .product_grid .pg_child {
        padding: 1rem 0.5rem;
        width: 100%;
        box-sizing: border-box;
    }
    .key_features_points_container {
        grid-template-columns: 1fr;
    }
    .ideal_for_points {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .contact_us_container {
        padding: 2rem 1rem;
        width: 100vw;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    .end_section {
        flex-direction: column;
        padding: 2rem 1rem;
        gap: 2rem;
        text-align: left;
    }
    .end_brand_details {
        width: 100%;
    }
}

/* Make images responsive */
img {
    max-width: 100%;
    height: auto;
}

.contact_us a svg {
    width: 32px;
    height: 32px;
    margin-right: 0.5rem;
    transition: transform 0.2s;
}
.contact_us a:hover svg {
    transform: scale(1.1);
}