/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: Verdana;
}
/* ========================================
   GLOBAL
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #fffdf9;
    color: #24211f;
    line-height: 1.7;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}


/* ========================================
   HEADER
======================================== */

.header {
    background: #fffdf9;
    border-bottom: 1px solid #eee6dc;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    min-height: 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.logo img {
    width: 160px;
    max-height: 55px;
    object-fit: contain;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navigation a {
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.navigation a:hover {
    opacity: 0.6;
}

.nav-button {
    padding: 12px 22px;
    border: 1px solid #24211f;
    font-size: 14px;
    font-weight: 600;
}


/* ========================================
   BUTTONS
======================================== */

.primary-button {
    display: inline-block;

    background: #24211f;
    color: white;

    padding: 14px 28px;

    font-size: 14px;
    font-weight: 600;

    transition: 0.3s;
}

.primary-button:hover {
    transform: translateY(-2px);
}

.secondary-button {
    display: inline-block;

    border: 1px solid #24211f;

    padding: 14px 28px;

    font-size: 14px;
    font-weight: 600;
}

.light-button {
    display: inline-block;

    background: white;
    color: #24211f;

    padding: 14px 30px;

    font-size: 14px;
    font-weight: 600;
}


/* ========================================
   HERO
======================================== */

.hero {
    padding: 90px 0;
    background: #f3ede4;
}

.hero-content {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 70px;
}

.eyebrow {
    display: block;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(42px, 5vw, 70px);

    line-height: 1.08;

    font-weight: 500;

    margin-bottom: 25px;
}

.hero h1 span {
    display: block;
}

.hero p {
    max-width: 600px;

    font-size: 17px;

    color: #625d58;

    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    overflow: hidden;
}

.hero-image img {
    height: 600px;
    object-fit: cover;
    width : 800px;
}


/* ========================================
   SECTION HEADING
======================================== */

.section-heading {
    max-width: 700px;

    margin: 0 auto 55px;

    text-align: center;
}

.section-heading span {
    font-size: 12px;

    letter-spacing: 2px;

    font-weight: 700;
}

.section-heading h2 {
    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.2;

    margin: 12px 0 15px;

    font-weight: 500;
}

.section-heading p {
    color: #6d6863;
}


/* ========================================
   CATEGORIES
======================================== */

.categories {
    padding: 100px 0;
}

.category-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.category-card {
    border: 1px solid #e8e0d7;

    padding: 35px 25px;

    background: white;

    transition: 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-icon {
    font-size: 32px;

    margin-bottom: 25px;
}

.category-card h3 {
    font-size: 20px;

    margin-bottom: 10px;
}

.category-card p {
    font-size: 14px;

    color: #6d6863;
}


/* ========================================
   ABOUT
======================================== */

.about {
    padding: 100px 0;

    background: #f3ede4;
}

.about-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 70px;
}

.about-image img {
    height: 550px;

    object-fit: cover;
}

.about-text h2 {
    font-size: clamp(35px, 4vw, 50px);

    line-height: 1.2;

    margin-bottom: 25px;

    font-weight: 500;
}

.about-text p {
    color: #625d58;

    margin-bottom: 18px;
}

.about-text .primary-button {
    margin-top: 15px;
}


/* ========================================
   PRODUCTS
======================================== */

.products {
    padding: 100px 0;
}

.product-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}

.product-card {
    border: 1px solid #e8e0d7;

    background: white;
}

.product-image {
    overflow: hidden;
}

.product-image img {
    height: 350px;

    object-fit: cover;

    transition: 0.4s;
}

.product-card:hover .product-image img {
    transform: scale(1.04);
}

.product-info {
    padding: 25px;
}

.product-info span {
    font-size: 11px;

    letter-spacing: 1.5px;

    font-weight: 700;
}

.product-info h3 {
    font-size: 21px;

    margin: 8px 0;
}

.product-info p {
    font-size: 14px;

    color: #6d6863;

    margin-bottom: 15px;
}

.product-info a {
    font-size: 14px;

    font-weight: 700;
}


/* ========================================
   WHY US
======================================== */

.why-us {
    padding: 100px 0;

    background: #f8f5f0;
}

.features-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 30px;
}

.feature {
    border-top: 1px solid #cfc5ba;

    padding-top: 25px;
}

.feature-number {
    font-size: 13px;

    letter-spacing: 1px;

    margin-bottom: 25px;
}

.feature h3 {
    font-size: 20px;

    margin-bottom: 10px;
}

.feature p {
    font-size: 14px;

    color: #6d6863;
}


/* ========================================
   CTA
======================================== */

.cta {
    padding: 100px 0;

    background: #24211f;

    color: white;

    text-align: center;
}

.cta-content {
    max-width: 750px;
}

.cta span {
    font-size: 12px;

    letter-spacing: 2px;

    font-weight: 700;
}

.cta h2 {
    font-size: clamp(35px, 5vw, 55px);

    line-height: 1.15;

    margin: 15px 0 20px;
}

.cta p {
    max-width: 600px;

    margin: 0 auto 30px;

    opacity: 0.8;
}


/* ========================================
   FOOTER
======================================== */

.footer {
    background: #181614;

    color: white;

    padding-top: 70px;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        2fr 1fr 1fr 1.5fr;

    gap: 50px;

    padding-bottom: 60px;
}

.footer-brand img {
    width: 170px;

    margin-bottom: 20px;
}

.footer-brand p {
    max-width: 350px;

    color: #bdb7b1;

    font-size: 14px;
}

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.footer-column h3 {
    margin-bottom: 10px;

    font-size: 16px;
}

.footer-column a,
.footer-column p {
    color: #bdb7b1;

    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid #393531;

    padding: 25px 0;

    text-align: center;

    color: #99938d;

    font-size: 13px;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1000px) {

    .navigation {
        gap: 15px;
    }

    .category-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 768px) {

    .navbar {
        min-height: 70px;
    }

    .navigation {
        display: none;
    }

    .nav-button {
        padding: 10px 15px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .hero h1 {
        font-size: 43px;
    }

    .hero-image img {
        height: 400px;
    }

    .categories,
    .about,
    .products,
    .why-us {
        padding: 70px 0;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .about-image img {
        height: 400px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

}


/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 480px) {

    .container {
        width: 92%;
    }

    .logo img {
        width: 130px;
    }

    .nav-button {
        font-size: 12px;
    }

    .hero h1 {
        font-size: 37px;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons a {
        text-align: center;
    }

}

<!-- Blog Css--->
/* =====================================
   RESET
===================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #fffdf9;
    color: #292521;
    line-height: 1.7;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1180px;
    margin: auto;
}


/* =====================================
   HEADER
===================================== */

.site-header {
    background: #fffdf9;
    border-bottom: 1px solid #e9e1d7;

    position: sticky;
    top: 0;

    z-index: 999;
}

.navbar {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.logo img {
    width: 165px;
    max-height: 60px;
    object-fit: contain;
}

.navigation {
    display: flex;
    gap: 30px;
}

.navigation a {
    font-size: 14px;
    font-weight: 600;

    transition: 0.3s;
}

.navigation a:hover,
.navigation a.active {
    opacity: 0.55;
}

.visit-button {
    border: 1px solid #292521;

    padding: 11px 20px;

    font-size: 13px;
    font-weight: 600;

    transition: 0.3s;
}

.visit-button:hover {
    background: #292521;
    color: white;
}


/* =====================================
   BLOG HERO
===================================== */

.blog-hero {
    background: #f2ebe1;

    padding: 95px 0;

    text-align: center;
}

.blog-hero .container {
    max-width: 850px;
}

.eyebrow {
    display: block;

    font-size: 11px;

    letter-spacing: 2px;

    font-weight: 700;

    margin-bottom: 15px;
}

.blog-hero h1 {
    font-size: clamp(38px, 5vw, 64px);

    line-height: 1.12;

    font-weight: 500;

    margin-bottom: 20px;
}

.blog-hero p {
    max-width: 700px;

    margin: auto;

    color: #68615a;

    font-size: 16px;
}


/* =====================================
   BLOG SECTION
===================================== */

.blog-section {
    padding: 90px 0;
}


/* =====================================
   FEATURED BLOG
===================================== */

.featured-blog {
    display: grid;

    grid-template-columns:
        1.1fr 1fr;

    gap: 60px;

    align-items: center;

    padding-bottom: 90px;

    border-bottom: 1px solid #e4dbd0;
}

.featured-image {
    overflow: hidden;
}

.featured-image img {
    height: 480px;

    object-fit: cover;

    transition: 0.4s;
}

.featured-image:hover img {
    transform: scale(1.03);
}

.category {
    font-size: 11px;

    letter-spacing: 1.8px;

    font-weight: 700;
}

.featured-content h2 {
    font-size: clamp(30px, 4vw, 45px);

    line-height: 1.2;

    font-weight: 500;

    margin: 15px 0 20px;
}

.featured-content p {
    color: #69625b;

    margin-bottom: 28px;

    font-size: 16px;
}

.read-button {
    display: inline-block;

    border-bottom: 1px solid #292521;

    padding-bottom: 4px;

    font-size: 14px;

    font-weight: 700;
}


/* =====================================
   BLOG HEADER
===================================== */

.blog-header {
    padding: 80px 0 35px;
}

.blog-header h2 {
    font-size: 38px;

    font-weight: 500;
}


/* =====================================
   BLOG GRID
===================================== */

.blog-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 28px;
}

.blog-card {
    background: white;

    border: 1px solid #e6ded4;

    overflow: hidden;

    transition: 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    overflow: hidden;
}

.blog-image img {
    height: 260px;

    object-fit: cover;

    transition: 0.4s;
}

.blog-card:hover .blog-image img {
    transform: scale(1.04);
}

.blog-content {
    padding: 28px;
}

.blog-content h3 {
    font-size: 21px;

    line-height: 1.35;

    font-weight: 600;

    margin: 12px 0 14px;
}

.blog-content p {
    color: #6c655e;

    font-size: 14px;

    margin-bottom: 20px;
}

.blog-content > a {
    font-size: 13px;

    font-weight: 700;

    border-bottom: 1px solid #292521;

    padding-bottom: 3px;
}


/* =====================================
   CTA
===================================== */

.blog-cta {
    background: #292521;

    color: white;

    padding: 90px 0;

    text-align: center;
}

.blog-cta .container {
    max-width: 750px;
}

.blog-cta span {
    font-size: 11px;

    letter-spacing: 2px;

    font-weight: 700;
}

.blog-cta h2 {
    font-size: clamp(34px, 5vw, 52px);

    line-height: 1.15;

    font-weight: 500;

    margin: 15px 0 20px;
}

.blog-cta p {
    color: #c5bfb8;

    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;

    background: white;

    color: #292521;

    padding: 14px 27px;

    font-size: 13px;

    font-weight: 700;
}


/* =====================================
   FOOTER
===================================== */

.site-footer {
    background: #191715;

    color: white;

    padding-top: 65px;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        2fr 1fr 1.5fr 1.5fr;

    gap: 45px;

    padding-bottom: 55px;
}

.footer-brand img {
    width: 165px;

    margin-bottom: 18px;
}

.footer-brand p {
    color: #aaa39b;

    font-size: 14px;

    max-width: 340px;
}

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 9px;
}

.footer-column h3 {
    font-size: 15px;

    margin-bottom: 10px;
}

.footer-column a,
.footer-column p {
    color: #aaa39b;

    font-size: 13px;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #383430;

    padding: 22px 0;

    text-align: center;

    color: #817b75;

    font-size: 12px;
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 950px) {

    .navigation {
        gap: 15px;
    }

    .blog-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =====================================
   MOBILE
===================================== */

@media (max-width: 700px) {

    .navbar {
        min-height: 70px;
    }

    .navigation {
        display: none;
    }

    .visit-button {
        padding: 9px 14px;
    }

    .logo img {
        width: 135px;
    }

    .blog-hero {
        padding: 65px 0;
    }

    .blog-hero h1 {
        font-size: 40px;
    }

    .blog-section {
        padding: 60px 0;
    }

    .featured-blog {
        grid-template-columns: 1fr;

        gap: 35px;

        padding-bottom: 60px;
    }

    .featured-image img {
        height: 350px;
    }

    .featured-content h2 {
        font-size: 31px;
    }

    .blog-header {
        padding: 60px 0 30px;
    }

    .blog-header h2 {
        font-size: 30px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

}

<!-- About Css -->
/* =====================================
   ABOUT HERO
===================================== */

.about-hero {
    background: #f2ebe1;
    padding: 100px 0;
    text-align: center;
}

.about-hero-content {
    max-width: 850px;
}

.about-hero h1 {
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.1;
    font-weight: 500;
    margin-bottom: 22px;
}

.about-hero p {
    max-width: 700px;
    margin: auto;
    color: #68615a;
    font-size: 16px;
}


/* =====================================
   STORY
===================================== */

.story-section {
    padding: 100px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.story-image {
    overflow: hidden;
}

.story-image img {
    height: 550px;
    object-fit: cover;
}

.story-content h2 {
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 25px;
}

.story-content p {
    color: #68615a;
    font-size: 15px;
    margin-bottom: 18px;
}


/* =====================================
   OFFER SECTION
===================================== */

.offer-section {
    background: #f8f5f0;
    padding: 100px 0;
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-heading > span {
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
}

.section-heading h2 {
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.2;
    font-weight: 500;
    margin: 12px 0 18px;
}

.section-heading p {
    color: #68615a;
}


.offer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.offer-card {
    background: white;
    border: 1px solid #e5ddd3;
    padding: 35px 25px;
    transition: 0.3s;
}

.offer-card:hover {
    transform: translateY(-5px);
}

.offer-icon {
    font-size: 32px;
    margin-bottom: 22px;
}

.offer-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.offer-card p {
    color: #68615a;
    font-size: 14px;
    margin-bottom: 20px;
}

.offer-card a {
    font-size: 13px;
    font-weight: 700;
    border-bottom: 1px solid #292521;
    padding-bottom: 3px;
}


/* =====================================
   APPROACH
===================================== */

.approach-section {
    padding: 100px 0;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.approach-card {
    border-top: 1px solid #bdb4aa;
    padding-top: 25px;
}

.approach-card > span {
    font-size: 12px;
    letter-spacing: 1px;
}

.approach-card h3 {
    font-size: 20px;
    margin: 20px 0 10px;
}

.approach-card p {
    color: #68615a;
    font-size: 14px;
}


/* =====================================
   KNOWLEDGE SECTION
===================================== */

.knowledge-section {
    background: #f2ebe1;
    padding: 85px 0;
}

.knowledge-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.knowledge-grid h2 {
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.2;
    font-weight: 500;
}

.knowledge-grid p {
    color: #68615a;
    margin-bottom: 25px;
}

.outline-button {
    display: inline-block;
    border: 1px solid #292521;
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 700;
}


/* =====================================
   ABOUT CTA
===================================== */

.about-cta {
    background: #292521;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.about-cta .container {
    max-width: 750px;
}

.about-cta span {
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
}

.about-cta h2 {
    font-size: clamp(35px, 5vw, 52px);
    line-height: 1.15;
    font-weight: 500;
    margin: 15px 0 20px;
}

.about-cta p {
    color: #c5bfb8;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #292521;
    padding: 14px 28px;
    font-size: 13px;
    font-weight: 700;
}


/* =====================================
   FOOTER
===================================== */

.site-footer {
    background: #191715;
    color: white;
    padding-top: 65px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 45px;
    padding-bottom: 55px;
}

.footer-brand img {
    width: 165px;
    margin-bottom: 18px;
}

.footer-brand p {
    color: #aaa39b;
    font-size: 14px;
    max-width: 340px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-column h3 {
    font-size: 15px;
    margin-bottom: 10px;
}

.footer-column a,
.footer-column p {
    color: #aaa39b;
    font-size: 13px;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #383430;
    padding: 22px 0;
    text-align: center;
    color: #817b75;
    font-size: 12px;
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 1000px) {

    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =====================================
   MOBILE
===================================== */

@media (max-width: 700px) {

    .navigation {
        display: none;
    }

    .about-hero {
        padding: 65px 0;
    }

    .about-hero h1 {
        font-size: 40px;
    }

    .story-section {
        padding: 65px 0;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-image img {
        height: 380px;
    }

    .offer-section {
        padding: 65px 0;
    }

    .offer-grid {
        grid-template-columns: 1fr;
    }

    .approach-section {
        padding: 65px 0;
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }

    .knowledge-section {
        padding: 65px 0;
    }

    .knowledge-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-cta {
        padding: 70px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

}

/*-- footer css --*/

.footer-social h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.footer-social ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
ul .social
{
  list-style:none;
}

.footer-social ul li {
    margin-bottom: 10px;
}

.footer-social ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-social ul li a:hover {
    color: #d4af37;
    padding-left: 5px;
}