@import url('https://fonts.googleapis.com/css2?family-spartan:wght@100;200;300;400;500;600;700;800;900&display=swap');
/*@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&display=swap');*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Spartan',sans-serif;
}

h1{
    font-size: 50px;
    line-height: 64px;
    color: #222;
}

h2{
    font-size: 46px;
    line-height: 54px;
    color: #222;
}

h4{
    font-size: 20px;
    color: #222;
}

h6{
    font-weight: 700;
    font-size: 12px;
}

p{
    font-size: 16px;
    color: #465b52;
    margin: 15px 0 20px 0;
}

.section-p1{
    padding: 40px 80px;
}

.section-m1{
    margin: 40px 0;
}

button.normal{
    font-size: 14px;
    font-weight: 600;
    padding: 15px 30px;
    color: #000;
    background-color: #fff;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.2s ;
}

button.white{
    font-size: 14px;
    font-weight: 600;
    padding: 11px 18px;
    color: #fff;
    background-color: transparent;
    cursor: pointer;
    border: 1px solid #fff;
    outline: none;
    transition: 0.2s;
}

body{
    width: 100%;
}

#header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 80px;
    background: #E3E6F3;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    z-index: 999;
    position: sticky;
    top: 0;
    left: 0;

}

#navbar{
    display: flex;
    align-items: center;
    justify-content: center;
}

#navbar li{

    list-style: none;
    padding: 0 20px;
    position: relative;
}

#navbar li a{
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    transition: 0.3s ease;
}

#navbar li a:hover,
#navbar li a.active{
    color: #088178;
}

#navbar li a.active::after,
#navbar li a:hover::after{
    content: "";
    width: 30%;
    height: 2px;
    background: #088178;
    position: absolute;
    bottom: -4px;
    left: 20px;
}

#hero{
    background-image: url(hero4.png);
    height: 90vh;
    width: 100%;
    background-size: cover;
    background-position: top 25% right 0;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

#hero h4{
    padding-bottom: 15px;
}

#hero h1{
    color: #088178;
}

#hero button{
    background-image: url(button.png);
    background-color: transparent;
    color: #088178;
    border: 0;
    padding: 14px 80px 14px /*65px*/;
    background-repeat: no-repeat;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
}

#product1{
    text-align: center;
}

#product1 .pro-container{
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    flex-wrap: wrap;
}

#product1 .pro{
    width: 23%;
    min-width: 250px;
    padding: 10px 12px;
    border: 1px solid #cce7d0;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
    margin: 15px 0;
    transition: 0.2s ease;
    position: relative;
}

#product1 .pro:hover{
    box-shadow:20px 20px 30px rgba(0, 0, 0, 0.06);
}

#product1 .pro img{
    width: 100%;
    border-radius: 20px;
}

#product1 .pro .des{
    text-align: start;
    padding: 10px 0;
}

#product1 .pro .des span{
    color: #606063;
    font-size: 12px;
}

#product1 .pro .des h5{
    padding-top: 7px;
    color: #1a1a1a;
    font-size: 14px;
}

#product1 .pro .des i{
    font-size: 12px;
    color: rgb(243, 181, 25);
}

#product1 .pro .des h4{
    padding-top: 7px;
    font-size: 15px;
    font-weight: 700;
    color: #088178;
}

#product1 .pro .cart{
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50px;
    background-color: #e8f6ea;
    /* font-weight: 500; */
    color: #088178;
    border: 1px solid #cce7d0;
    position: absolute;
    bottom: 14px;
    right: 10px;
}

#banner{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url(b1.jpg);
    width: 100%;
    height: 40vh;
    background-size: cover;
    background-position: center;
}

#banner h4{
    color: #fff;
    font-size: 16px;
}

#banner h2{
    color: #fff;
    font-size: 30px;
    padding: 10px 0;
}

#banner h2 span{
    color: #ef3636;
}

#banner button:hover{
    background-color: #088178;
    color: #fff;
}

#sm-banner{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#sm-banner .banner-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-image: url(b2.jpg);
    min-width: 580px;
    height: 50vh;
    background-size: cover;
    background-position: center;
    padding: 30px;
}

#sm-banner .banner-box2{
    background-image: url(b3.jpg);
}

#sm-banner h4{
    color: #fff;
    font-size: 20px;
    font-weight: 300;
}

#sm-banner h2{
    color: #fff;
    font-size: 28px;
    font-weight: 800;
}

#sm-banner span{
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding-bottom: 15px;
}

#sm-banner .banner-box:hover button{
    background-color: #088178;
    color: #fff;
    border: 1px solid #088178;
}

#banner3 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 80px;
}

#banner3 .banner-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-image: url(b4.jpg);
    min-width: 30%;
    height: 30vh;
    background-size: cover;
    background-position: center;
    padding: 20px;
    margin-bottom: 20px;
}

#banner3 .banner-box2{
    background-image: url(b5.jpg);
}

#banner3 .banner-box3{
    background-image: url(b6.jpg);
}

#banner3 h2{
    color: #fff;
    font-weight: 900;
    font-size: 22px;
}

#banner3 h3{
    color: #ec544e;
    font-weight: 800;
    font-size: 15px;
}

#newsletter{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    background-image: url(b7.png);
    background-repeat: no-repeat;
    background-position: 20% 30%;
    background-color: #041e42;
}

#newsletter h4{
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

#newsletter p{
    font-size: 14px;
    font-weight: 600;
    color: #818ea0;
}

#newsletter p span{
    color: #ffbd27;
}

#newsletter .form{
    display: flex;
    width: 40%;
}

#newsletter input{
    height: 3.125rem;
    padding: 0 1.25em;
    font-size: 14px;
    width: 100%;
    border: 1px solid transparent;
    border-radius: 4px;
    outline: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

#newsletter button{
    background-color: #088178;
    color: #fff;
    white-space: nowrap;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

footer{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

footer .col{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

footer .logo{
    margin-bottom: 30px;
}

footer h4{
    font-size: 14px;
    padding-bottom: 20px;
}

footer p{
    font-size: 13px;
    margin: 0 0 8px 0;
}

footer a{
    font-size: 13px;
    text-decoration: none;
    margin-bottom: 10px;
    color: #222;
}

footer .follow{
    margin-top: 20px;
}

footer .follow i{
    color: #465b52;
    padding-right: 4px;
    cursor: pointer;
}

footer .install{
    margin: 10px 0 15px 0;
}

footer .follow i:hover,
footer a:hover{
    color: #088178;

}

#hero2{
    background-image: url(hero2.jpg);
    width: 100%;
    height: 44vh;
    background-size: cover;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 14px;
}

#hero2 h2,
#hero2 p{
    color: #fff;
}

#pagination{
    text-align: center;   
}

#pagination a{
    text-decoration: none;
    background-color: #088178;
    padding: 15px 20px;
    border-radius: 4px;
    color: #fff;
    font-weight: 600;
}

#pagination a i{
    font-size: 16px;
    font-weight: 600;
}

#prodetails{
    display: flex;
    margin-top: 20px;
}

#prodetails .single-pro-image{
    width: 30%;
    margin-right: 50px;
}

.small-img-group{
    display: flex;
    justify-content: space-between;
}

.sm-img-col{
    flex-basis: 24%;
    cursor: pointer;
}

#prodetails .single-pro-details{
    width: 50%;
    padding-top: 30px;
}

#prodetails .single-pro-details h4{
    padding: 40px 0 20px 0;
}
#prodetails .single-pro-details h2{
    font-size: 26px
}
#prodetails .single-pro-details select{
    display: block;
    padding: 5px 10px;
    margin-bottom: 10px;

}

#prodetails .single-pro-details input{
    width: 50px;
    height: 47px;
    padding-left: 10px;
    font-size: 16px;
    margin-right: 10px;
}

#prodetails .single-pro-details select:focus{
    outline: none;
}

#prodetails .single-pro-details input:focus{
    outline: none;
}


#prodetails .single-pro-details button{
    background-color: #088178;
    color: #fff;
}

#prodetails .single-pro-details span{
    line-height: 25px;
}

#hero2.blog-hero{
    background-image: url(b7.jpg);
}

#blog{
    padding: 150px 150px 0 150px;
}

#blog .blog-box{
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding-bottom: 90px;
}

#blog .blog-img{
    width: 50%;
    margin-right: 40px;
}

#blog img{
    width: 100%;
    height: 300px;
    object-fit: cover;
}

#blog .blog-details{
    width: 50%;
}

#blog .blog-details a{
    text-decoration: none;
    font-size: 11px;
    color: black;
    font-weight: 700;
    position: relative;
    transition: 0.3s;
}

#blog .blog-details a::after{
    content: "";
    width: 50px;
    height: 1px;
    background-color: #000;
    position: absolute;
    top: 4px;
    right: -60px;
}

#blog .blog-details a:hover{
    color: #088178;
}

#blog .blog-details a:hover::after{
    background-color: #088178;
}

#blog .blog-box h1{
    position: absolute;
    top: -40px;
    left: 0;
    font-size: 70px;
    font-weight: 700;
    color: #c9cbce;
    z-index: -9;
}

/* #hero3{
    background-image: url(b9.jpg);
    width: 100%;
    height: 44vh;
    background-size: cover;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 14px;
} */

#hero3 {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

#hero3 h2, #hero3 p {
    color: white;
    margin: 10px 0;
    animation: fadeIn 1s ease-in-out;
}

/* Cart Section */
#cc {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: 0.3s;
}

#cart-items {
    margin: 20px 0;
    padding: 20px;
    border-radius: 10px;
    background: #f1f1f1;
    transition: all 0.3s ease-in-out;
}

#cart-items div {
    padding: 10px;
    background: #fff;
    margin: 10px 0;
    border-radius: 5px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

#cart-items div:hover {
    transform: scale(1.05);
}

#total {
    font-size: 24px;
    font-weight: bold;
    color: #088178;
    margin-top: 20px;
}

button.normal {
    background: #088178;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    margin: 10px;
}

button.normal:hover {
    background: #06635f;
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

#cc, #cart-items div {
    animation: slideUp 0.5s ease-in-out;
}

/*Shipping*/
#shipping {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

.container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 400px;
    text-align: center;
}

.container h2 {
    color: #088178;
    margin-bottom: 10px;
}

.container p {
    color: #666;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: 0.3s;
}

input:focus {
    border-color: #088178;
    outline: none;
    box-shadow: 0 0 5px rgba(8, 129, 120, 0.5);
}

button {
    background: #088178;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

button:hover {
    background: #066b62;
}

/* Payment Form */
#payment {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

.container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 400px;
    text-align: center;
}

.container h2 {
    color: #088178;
    margin-bottom: 10px;
}

.container p {
    color: #666;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: 0.3s;
    font-size: 16px;
    text-align: center;
}

input:focus {
    border-color: #088178;
    outline: none;
    box-shadow: 0 0 5px rgba(8, 129, 120, 0.5);
}

button {
    background: #088178;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

button:hover {
    background: #066b62;
}

/* CONTACT PAGE STYLES */
#contact-container {
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers content inside */
    justify-content: center;
}

/* Centering the contact details */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
    align-items: center; /* Centers items */
}

.contact-details .info {
    width: 100%;
    max-width: 500px; /* Limits width */
    background: #fff;
    padding: 15px;
    border-left: 5px solid #088178;
    border-radius: 5px;
}

.contact-details h3 {
    margin: 0;
    font-size: 18px;
    color: #222;
}

.contact-details p {
    margin: 5px 0;
    font-size: 16px;
}

/* Contact Form - Centered */
#contact-form {
    margin-top: 20px;
    width: 100%;
    max-width: 500px;
    text-align: center;
}

#contact-form label {
    display: block;
    font-weight: bold;
    margin: 10px 0 5px;
    text-align: left;
}

#contact-form input,
#contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

#contact-form button {
    background-color: #088178;
    color: white;
    font-size: 16px;
    border: none;
    padding: 12px;
    width: 100%;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 5px;
}

#contact-form button:hover {
    background-color: #088178;
}

#contact .container {
    width: 80%;
    max-width: 900px;
    margin: 0 auto;
}

#message {
    width: 100%;
    height: 200px;
    resize: none;
}

/* Delivery Information Page Styles */
#delivery {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f8f9fa;
    padding: 40px 20px;
}

#delivery .container {
    max-width: 800px;
    width: 100%;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

#delivery h1 {
    text-align: center;
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
}

/* Info Box Styling */
#delivery .info-box {
    background: #f4f4f4;
    padding: 15px 20px;
    margin: 15px 0;
    border-radius: 8px;
    border-left: 5px solid #3498db;
}

#delivery .info-box h2 {
    font-size: 22px;
    color: #2980b9;
    margin-bottom: 10px;
}

#delivery .info-box ul {
    padding-left: 20px;
}

#delivery .info-box p {
    font-size: 16px;
    line-height: 1.6;
}

/* Contact Section */
#delivery .contact {
    background: #dff0d8;
    border-left-color: #27ae60;
}

#delivery .contact h2 {
    color: #27ae60;
}

#delivery .contact a {
    color: #27ae60;
    text-decoration: none;
    font-weight: bold;
}

#delivery .contact a:hover {
    text-decoration: underline;
}

/* Privacy Policy Page Styles */
#privacy {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f8f9fa;
    padding: 40px 20px;
}

#privacy .container {
    max-width: 800px;
    width: 100%;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

#privacy h1 {
    text-align: center;
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
}

/* Info Box Styling */
#privacy .info-box {
    background: #f4f4f4;
    padding: 15px 20px;
    margin: 15px 0;
    border-radius: 8px;
    border-left: 5px solid #3498db;
}

#privacy .info-box h2 {
    font-size: 22px;
    color: #2980b9;
    margin-bottom: 10px;
}

#privacy .info-box p {
    font-size: 16px;
    line-height: 1.6;
}


/* Terms and Conditions Page Styles */
#terms {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f8f9fa;
    padding: 40px 20px;
}

#terms .container {
    max-width: 800px;
    width: 100%;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

#terms h1 {
    text-align: center;
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
}

/* Info Box Styling */
#terms .info-box {
    background: #f4f4f4;
    padding: 15px 20px;
    margin: 15px 0;
    border-radius: 8px;
    border-left: 5px solid #3498db;
}

#terms .info-box h2 {
    font-size: 22px;
    color: #2980b9;
    margin-bottom: 10px;
}

#terms .info-box p {
    font-size: 16px;
    line-height: 1.6;
}

/* Help Page Styling */
#help {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f8f9fa;
    padding: 40px 20px;
}

#help .container {
    max-width: 800px;
    width: 100%;
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

#help h1 {
    text-align: center;
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
}

/* FAQ Section */
.faq-section h2,
.contact-section h2,
.feedback-section h2 {
    font-size: 24px;
    color: #2980b9;
    margin-bottom: 15px;
}

.faq-list {
    list-style: none;
    padding: 0;
}

.faq-list li {
    background: #f4f4f4;
    padding: 15px;
    margin: 10px 0;
    border-radius: 8px;
    border-left: 5px solid #3498db;
    font-size: 16px;
    line-height: 1.6;
}

/* Contact Section */
.contact-section p {
    font-size: 16px;
    margin: 5px 0;
}

.contact-section a {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}

.contact-section a:hover {
    text-decoration: underline;
}

/* Feedback Section */
.feedback-btn {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease-in-out;
}

.feedback-btn:hover {
    background: #2980b9;
}

/* User Account Page */
#account {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f8f9fa;
    padding: 40px 20px;
}

#account .container {
    max-width: 700px;
    width: 100%;
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

#account h1 {
    text-align: center;
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.user-details {
    background: #f4f4f4;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 5px solid #3498db;
}

.user-details h2 {
    font-size: 22px;
    color: #2980b9;
    margin-bottom: 10px;
}

.user-details label {
    display: block;
    font-weight: bold;
    margin-top: 10px;
}

.user-details input, .user-details select, .user-details textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    background: #e9ecef;
}

.user-details input:disabled, 
.user-details select:disabled,
.user-details textarea:disabled {
    background: #e9ecef;
    color: #6c757d;
    cursor: not-allowed;
}

.user-details textarea {
    height: 60px;
    resize: none;
}

.user-details button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
}

#editBtn {
    background: #f39c12;
    color: white;
}

#editBtn:hover {
    background: #e67e22;
}

#saveBtn {
    background: #2ecc71;
    color: white;
    display: none;
}

#saveBtn:hover {
    background: #27ae60;
}

/* Buttons */
.buttons {
    text-align: center;
    margin-top: 20px;
}

.btn {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin: 5px;
    transition: 0.3s ease-in-out;
}

.btn:hover {
    background: #2980b9;
}

.cart-btn {
    background: #2ecc71;
}

.cart-btn:hover {
    background: #27ae60;
}
