@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

:root{
    --green: rgb(0, 128, 0);
    --orange: rgb(200, 132, 7);
    --black: #1e1e1f;
    --white: rgb(255, 255, 255);
    --light-color: #666;
    --box-shadow: .5rem .5rem 0 rgba(22, 160, 133, .2);
    --border: .2rem solid rgba(0,0,0,1);
    --text-shadow: .4rem .4rem 0 rgba(0, 0, 0, .2);
    --outline: .1rem solid rgba(0,0,0,1);
} 

::-webkit-scrollbar{
    display: none;
}

*{
    margin: 0;
    padding: 0;
    font-family: "Poppins", san-serif;  
    outline: none;
    border: none;
    box-sizing: border-box;
    transition: all .2s linear;
}
 
a{
    text-decoration: none;
}

html{
    font-size: 62.5%;
    overflow: scroll;
    scroll-padding: 7rem;
    scroll-behavior: smooth; 
}

section{
    padding: 2rem 9%;
}

h1{
    text-align: center;
    padding-bottom: 2rem;
    text-shadow: var(--text-shadow);
    text-transform: uppercase;
    color: var(--black);
    font-size: 5rem;
    letter-spacing: .4rem;
}

/* section:nth-child(even){
    background: #f5f5f5;
} */

/* body{
    background: #eee;
} */

.header{
    /* position: fixed; */
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 9%;
    background: #fff;
    box-shadow: var(--box-shadow);
}

.header, .sticky{
    position: sticky;
    top:0; 
    left: 0; 
    right: 0; 
    z-index: 3;
}

.sticky{
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .1);
}

.header .logo{
    font-size: 2.5rem;
    font-weight: bolder;
}

.header .logo i{
    color: rgb(116, 149, 6);
}

.header a{
    color: rgb(35, 156, 8);
}

.header span{
    color: rgb(40, 8, 156);
}

.header .navbar a{
    font-size: 1.7rem;
    margin: 0 1rem;
    color: black;
    justify-content: space-around;
}

.header .navbar a:hover{
    color: var(--green);
}

#menu-btn{
    font-size: 2.5rem;
    border-radius: .5rem;
    background: none;
    color: var(--green);
    padding: 1rem 1.5rem;
    cursor: pointer;
    display: none;
}

.home{
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 10rem;
    align-items: center;
    /* height: 50vh; */
    background: url(../assets/hero.jpg) no-repeat;
}

.home .home-content{
    flex: 1 1 45rem;
    align-items: center;
    justify-content: center;
    padding-left: 15em;
    width: 50%;
    padding-bottom: 6rem;
}

.home .home-content h3{
    font-size: 5.9rem;
    color: var(--black);
    line-height: 1.3;
    text-shadow: var(--text-shadow);
}

.home .home-content .desc{
    font-size: 4.0rem;
    color: var(--white);
    text-shadow: var(--text-shadow);
    line-height: 1.8;
    padding: 1rem 0;
}

.home .home-content p{
    font-size: 2.5rem;
    color: var(--white);
    text-shadow: var(--text-shadow);
    line-height: 1.8;
    padding: 1rem 0;
}

.btn{
    display: inline-block;
    margin-top: 1rem;
    padding: .8rem 2.8rem;
    border-top-left-radius: 0;
    border: 1px solid rgb(5, 5, 5);
    border-radius: 5rem;
    /* box-shadow: var(--box-shadow); */
    color: var(--black);
    cursor: pointer;
    font-size: 1.7rem;
    background: none;
    overflow: hidden;
    z-index: 0;
}

.btn:hover{
    background: var(--green);
    border: 1px solid rgb(10, 10, 10);
    color: rgb(241, 232, 232);
    transition: .2s ease-in-out;
}

.icons-container{
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    padding-top: 5rem;
    padding-bottom: 5rem;
}


.icons-container .icons{
    border: var(--border);
    box-shadow: var(--box-shadow);
    border-radius: .5rem;
    text-align: center;
    padding: 2.5rem;
    cursor: pointer;
}

.icons-container .icons:hover{
    box-shadow: 10px 10px 20px grey;
}

/* .icons-container .icons:hover{
    padding: 0.1px;
} */

.icons-container .icons i{
    font-size: 4.5rem;
    color: var(--orange);
    padding-bottom: .7rem;
}

.icons-container .icons h3{
    font-size: 3.2rem;
    color: var(--black);
    padding: .5rem 0;
    text-shadow: var(--text-shadow);
}

.icons-container .icons p{
    font-size: 1.7rem;
    color: var(--light-color);
}

.review{
    background: #eee;
}

.review .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(27rem, 1fr));
    gap: 2rem;
}

.review .box-container .box{
    border: var(--border);
    box-shadow: var(--box-shadow);
    border-radius: .5rem;
    padding: 2.5rem;
    background: #f9eeea;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.review .box-container .box img{
    height: 10rem;
    width: 10rem;
    border-radius: 50%;
    object-fit: cover;
    /* border: .5rem solid #fff; */
}

.review .box-container .box h3{
    color: black;
    font-size: 2.2rem;
    padding: .5rem 0;
}

.review .box-container .box .job{
    color: var(--black);
    font-size: 1.8rem;
}

.review .box-container .box .stars i{
    color: var(--orange);
    font-size: 1.5rem;
}

.review .box-container .box .text{
    color: var(--light-color);
    line-height: 1.8;
    font-size: 1.6rem;
    padding-top: 4rem;
}

.footer{
    bottom: 0;
    left: 0;
    right: 0;
    background: #111;
    height: auto;
    width: 100%;
    padding-top: 40px;
    color: #fff;
    flex: 1 1 45rem;
}

.footer .footer-content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.footer .footer-content h3{
    font-size: 5.1rem;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 3rem;
    font-weight: bolder;
    color: rgb(35, 156, 8);
}

.footer .footer-content h3 span{
    color: rgb(40, 8, 156)
}

.footer .footer-content p{
    max-width: 85%;
    margin: 10px auto;
    line-height: 1.8;
    font-size: 2.5rem;
    color: rgb(143, 139, 139);
}

.footer .socials{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0 3rem 0;
}
.footer .socials li{
    margin: auto;
}
.footer .socials a{
    text-decoration: none;
    color: #fff;
    /* border: 1.1px solid white; */
    padding: 2.5rem;
    /* border-radius: 50%; */
}
.footer .socials a i{
    font-size: 4.1rem;
    width: 3rem;
    transition: color .4s ease;
}
.footer .socials a:hover i{
    color: aqua;
}

.footer-bottom{
    background: #000;
    width: 100;
    padding: 20px;
    /* padding-bottom: 40px; */
    text-align: center;
    flex-wrap: wrap;
}

.footer-bottom p{
    word-spacing: 2px;
    color: #666;
    text-transform: capitalize;
    font-size: 2.5rem;
 }
.footer-bottom p a{
   color:#68cdf5;
   font-size: 2.5rem;
   text-decoration: none;
 }
.footer-bottom span{
     text-transform: uppercase;
     opacity: .4;
     font-weight: 200;
 }



@media (max-width:991px){
    html{
        font-size: 55%;
    }

    .header{
        padding: 2rem;
    }
    .home .home-content{
        width: 100%;
        padding-left: 8em;
    }
}

@media (max-width:768px){
    #menu-btn{
        display: initial;
    }

    .header .navbar{
        position: absolute;
        top: 115%;
        right: 2rem;
        border-radius: .5rem;
        box-shadow:var(--box-shadow);
        width: 30rem;
        border: var(--border);
        background: #fff;
        transform: scale(0);
        opacity: 0;
        transform-origin: top right;
        transition: none;
    }

    .header .navbar.active{
        transform: scale(1);
        opacity: 1;
        transition: .2s ease-out; 
    }

    .header .navbar a{
        font-size: 2rem;
        display: block;
        margin: 2.5rem;
    }
    .home .home-content{
        width: 100%;
        padding-left: 4em;
    }
    /* .footer .footer-content p{
        max-width: 85%;
    } */
}

@media (max-width:450px){
    html{
        font-size: 50%;
    }
    /* .footer .footer-content p{
        max-width: 90%;
    } */
    .footer .socials a i{
        font-size: 3.2rem;
        padding: .5rem;
        width: .5rem;
        margin: auto;
        text-align: center;
   
    }
}
/* Footer Styles */
.footer-distributed {
    background-color: #2d2a30;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
    box-sizing: border-box;
    width: 100%;
    text-align: left;
    font: bold 16px sans-serif;
    padding: 55px 50px;
    margin-top: 80px;
}

.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right {
    display: inline-block;
    vertical-align: top;
}

/* Footer left */
.footer-distributed .footer-left {
    width: 40%;
}

.footer-distributed h3 {
    color: #ffffff;
    font: normal 36px 'Cookie', cursive;
    margin: 0;
}

.footer-distributed h3 i {
    color: #ff5a00; /* Orange paw icon */
}

.footer-distributed h3 span {
    color: #ff5a00;
}

/* Footer links */
.footer-distributed .footer-links {
    color: #ffffff;
    margin: 20px 0 12px;
    padding: 0;
}

.footer-distributed .footer-links a {
    display: inline-block;
    line-height: 1.8;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.footer-distributed .footer-links a:hover {
    color: #ff5a00;
    transform: translateY(-2px);
}

.footer-distributed .footer-company-name {
    color: #8f9296;
    font-size: 14px;
    font-weight: normal;
    margin: 0;
}

/* Footer center */
.footer-distributed .footer-center {
    width: 35%;
}

.footer-distributed .footer-center i {
    background-color: #33383b;
    color: #ffffff;
    font-size: 25px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    text-align: center;
    line-height: 42px;
    margin: 10px 15px;
    vertical-align: middle;
}

.footer-distributed .footer-center i.fa-envelope {
    font-size: 17px;
    line-height: 38px;
}

.footer-distributed .footer-center p {
    display: inline-block;
    color: #ffffff;
    vertical-align: middle;
    margin: 0;
}

.footer-distributed .footer-center p span {
    display: block;
    font-weight: normal;
    font-size: 14px;
    line-height: 2;
}

.footer-distributed .footer-center p a {
    color: #ff5a00;
    text-decoration: none;
}

/* Footer right */
.footer-distributed .footer-right {
    width: 20%;
}

.footer-distributed .footer-company-about {
    line-height: 20px;
    color: #92999f;
    font-size: 13px;
    font-weight: normal;
    margin: 0;
}

.footer-distributed .footer-company-about span {
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-distributed .footer-icons {
    margin-top: 25px;
}

.footer-distributed .footer-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    cursor: pointer;
    background-color: #33383b;
    border-radius: 2px;
    font-size: 20px;
    color: #ffffff;
    text-align: center;
    line-height: 35px;
    margin-right: 3px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.footer-distributed .footer-icons a:hover {
    background-color: #ff5a00;
    transform: scale(1.1);
}

/* New Links Section */
.footer-distributed .footer-bottom-links {
    width: 100%;
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #444;
    color: #92999f;
}

.footer-distributed .footer-bottom-links a {
    color: #92999f;
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-distributed .footer-bottom-links a:hover {
    color: #ff5a00;
}

/* Responsive Styles */
@media (max-width: 880px) {
    .footer-distributed {
        font: bold 14px sans-serif;
    }

    .footer-distributed .footer-left,
    .footer-distributed .footer-center,
    .footer-distributed .footer-right {
        display: block;
        width: 100%;
        margin-bottom: 40px;
        text-align: center;
    }

    .footer-distributed .footer-center i {
        margin-left: 0;
    }
}
/* Styling for Inner Content Pages */
.content-page {
    padding-top: 12rem; /* Start content below the fixed header */
    padding-bottom: 5rem;
    background: #f9f9f9; /* Light background for content pages */
}

.content-page .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.content-page h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}

.content-page h2 {
    font-size: 1.8rem;
    color: #444;
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #ff5a00;
    padding-bottom: 0.5rem;
}

.content-page p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1rem;
}

.content-page .btn {
    display: inline-block;
    margin-top: 2rem;
}
/* Responsive Styles */
@media (max-width: 880px) {
    .footer-distributed {
        font: bold 14px sans-serif;
    }

    .footer-distributed .footer-left,
    .footer-distributed .footer-center,
    .footer-distributed .footer-right {
        display: block;  /* Stack the columns on top of each other */
        width: 100%;     /* Make each column take the full width */
        margin-bottom: 40px;
        text-align: center;
    }

    .footer-distributed .footer-center i {
        margin-left: 0;
    }
}
/* --- Responsive Form Section (for subscribe.html) --- */
.form-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6rem 2rem;
    background-color: #f4f4f4;
    min-height: 100vh;
    box-sizing: border-box;
}

.form-container {
    background: #fff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 500px;
    width: 100%;
}

.form-icon {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.form-container h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
    color: #333;
}

.form-container p {
    color: #666;
    margin-bottom: 2rem;
}

.form-container input[type="email"] {
    width: 100%;
    padding: 15px;
    margin-bottom: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    box-sizing: border-box;
}

/* --- Content Container (for policy pages, etc.) --- */
.content-container {
    max-width: 800px;
    margin: 4rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
    line-height: 1.8;
}

.content-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.content-container h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 0.5rem;
}

.content-container a {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}

.content-container a.btn {
    display: inline-block;
    margin-top: 2rem;
    color: #fff; /* Ensure button text is white */
}
/* Responsive Styles */
@media (max-width: 880px) {
    .footer-distributed {
        font: bold 14px sans-serif;
    }

    .footer-distributed .footer-left,
    .footer-distributed .footer-center,
    .footer-distributed .footer-right {
        display: block;  /* Stack the columns on top of each other */
        width: 100%;     /* Make each column take the full width */
        margin-bottom: 40px;
        text-align: center;
    }

    .footer-distributed .footer-center i {
        margin-left: 0;
    }
}