   * {
       margin: 0;
       padding: 0;
       box-sizing: border-box;
       font-family: 'Poppins', sans-serif;
   }

   html {
       scroll-behavior: smooth;
   }

   body {
       background: #ffffff;
       color: #111;
       overflow-x: hidden;
   }

   .container {
       width: 90%;
       max-width: 1200px;
       margin: auto;
   }

   /* NAVBAR */

   nav {
       position: fixed;
       top: 0;
       width: 100%;
       background: #fff;
       padding: 18px 0;
       z-index: 1000;
       box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
   }

   .nav-wrapper {
       display: flex;
       justify-content: space-between;
       align-items: center;
   }

   .logo {
       font-size: 30px;
       font-weight: 800;
       color: #0066FF;
       letter-spacing: 1px;
   }

   .nav-links {
       display: flex;
       gap: 30px;
   }

   .nav-links a {
       text-decoration: none;
       color: #222;
       font-weight: 500;
       transition: 0.3s;
   }

   .nav-links a:hover {
       color: #0066FF;
   }

   .btn {
       display: inline-block;
       padding: 14px 30px;
       border-radius: 50px;
       text-decoration: none;
       font-weight: 600;
       transition: 0.3s;
   }

   .btn-primary {
       background: #0066FF;
       color: #fff;
   }

   .btn-primary:hover {
       background: #0050d4;
       transform: translateY(-3px);
   }

   /* HERO */

   .hero {
       min-height: 100vh;
       display: flex;
       align-items: center;
       background: linear-gradient(to right, #EAF4FF, #ffffff);
       padding-top: 100px;
   }

   .hero-content {
       display: grid;
       grid-template-columns: 1fr 1fr;
       align-items: center;
       gap: 50px;
   }

   .hero-text h1 {
       font-size: 64px;
       line-height: 1.1;
       margin-bottom: 20px;
       color: #0B1B35;
   }

   .hero-text h1 span {
       color: #0066FF;
   }

   .hero-text p {
       font-size: 18px;
       line-height: 1.8;
       color: #555;
       margin-bottom: 35px;
   }

   .hero-buttons {
       display: flex;
       gap: 20px;
       flex-wrap: wrap;
   }

   .hero-image img {
       width: 100%;
       animation: float 4s ease-in-out infinite;
   }

   @keyframes float {
       0% {
           transform: translateY(0px);
       }

       50% {
           transform: translateY(-15px);
       }

       100% {
           transform: translateY(0px);
       }
   }

   /* SECTION */

   section {
       padding: 100px 0;
   }

   .section-title {
       text-align: center;
       margin-bottom: 60px;
   }

   .section-title h2 {
       font-size: 42px;
       margin-bottom: 15px;
       color: #0B1B35;
   }

   .section-title p {
       max-width: 700px;
       margin: auto;
       color: #666;
       line-height: 1.7;
   }

   /* FEATURES */

   .features-grid {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
       gap: 30px;
   }

   .feature-card {
       background: #fff;
       border-radius: 25px;
       padding: 40px 30px;
       text-align: center;
       box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
       transition: 0.4s;
   }

   .feature-card:hover {
       transform: translateY(-10px);
   }

   .feature-icon {
       width: 80px;
       height: 80px;
       margin: auto;
       background: #EAF4FF;
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       font-size: 35px;
       margin-bottom: 25px;
   }

   .feature-card h3 {
       margin-bottom: 15px;
       color: #0066FF;
   }

   .feature-card p {
       color: #666;
       line-height: 1.7;
   }

   /* PRODUCTS */

   .products {
       background: #F8FBFF;
   }

   .product-grid {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
       gap: 30px;
   }

   .product-card {
       background: #fff;
       border-radius: 25px;
       overflow: hidden;
       box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
       transition: 0.4s;
   }

   .product-card:hover {
       transform: translateY(-10px);
   }

   .product-card img {
       width: 100%;
       height: 280px;
       object-fit: cover;
   }

   .product-content {
       padding: 25px;
   }

   .product-content h3 {
       margin-bottom: 12px;
       color: #0B1B35;
   }

   .product-content p {
       color: #666;
       line-height: 1.6;
       margin-bottom: 20px;
   }

   /* WHY */

   .why-wrapper {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 60px;
       align-items: center;
   }

   .why-wrapper img {
       width: 100%;
       border-radius: 25px;
   }

   .why-content h2 {
       font-size: 46px;
       margin-bottom: 25px;
       color: #0B1B35;
   }

   .why-content p {
       color: #666;
       line-height: 1.9;
       margin-bottom: 20px;
   }

   .points {
       margin-top: 20px;
   }

   .points div {
       margin-bottom: 15px;
       font-weight: 500;
       color: #222;
   }

   /* TESTIMONIALS */

   .testimonial-grid {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
       gap: 30px;
   }

   .testimonial {
       background: #fff;
       padding: 35px;
       border-radius: 20px;
       box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
   }

   .testimonial p {
       color: #555;
       line-height: 1.8;
       margin-bottom: 20px;
   }

   .testimonial h4 {
       color: #0066FF;
   }

   /* CONTACT */

   .contact {
       background: linear-gradient(135deg, #0066FF, #003FB3);
       color: #fff;
       text-align: center;
       border-radius: 40px 40px 0 0;
   }

   .contact h2 {
       font-size: 48px;
       margin-bottom: 20px;
   }

   .contact p {
       max-width: 700px;
       margin: auto;
       line-height: 1.8;
       margin-bottom: 35px;
   }

   .contact-form {
       max-width: 700px;
       margin: auto;
       display: grid;
       gap: 20px;
   }

   input,
   textarea {
       padding: 18px;
       border: none;
       border-radius: 12px;
       outline: none;
       font-size: 16px;
   }

   textarea {
       min-height: 150px;
       resize: none;
   }

   button {
       /*padding: 18px;*/
       /*border: none;*/
       /*border-radius: 50px;*/
       /*background: #fff;*/
       /*color: #0066FF;*/
       /*font-size: 16px;*/
       /*font-weight: 600;*/
       /*cursor: pointer;*/
       /*transition: 0.3s;*/
   }

   button:hover {
       transform: translateY(-3px);
   }

   footer {
       background: #0B1B35;
       color: #fff;
       text-align: center;
       padding: 25px 0;
   }

   /* MOBILE */

   @media(max-width:900px) {

       .hero-content,
       .why-wrapper {
           grid-template-columns: 1fr;
       }

       .hero-text h1 {
           font-size: 46px;
       }

       .nav-links {
           display: none;
       }

       .hero {
           text-align: center;
       }

       .hero-buttons {
           justify-content: center;
       }
   }

        * {
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
    
        .products-section {
            max-width: 1300px;
            margin: auto;
            padding: 80px 20px;
            /* background: #f3f4f6; */
        }
    
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 40px;
        }
    
        .section-header h2 {
            font-size: 42px;
            color: #111827;
            margin-bottom: 10px;
        }
    
        .section-header p {
            color: #6b7280;
            max-width: 600px;
            line-height: 1.7;
        }
    
        .filters {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }
    
        .filters input,
        .filters select {
            padding: 14px 18px;
            border: 1px solid #d1d5db;
            border-radius: 14px;
            background: #fff;
            outline: none;
            min-width: 220px;
        }
    
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }
    
        .product-card {
            background: #fff;
            border-radius: 28px;
            overflow: hidden;
            transition: 0.35s ease;
            border: 1px solid #eef2f7;
            box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
        }
    
        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
        }
    
        .product-image {
            height: 260px;
            overflow: hidden;
            position: relative;
        }
    
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.5s;
        }
    
        .product-card:hover img {
            transform: scale(1.08);
        }
    
        .product-category {
            position: absolute;
            top: 15px;
            left: 15px;
            background: rgba(255, 255, 255, 0.95);
            padding: 8px 14px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 600;
        }
    
        .wishlist-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            border: none;
            background: #fff;
            cursor: pointer;
            font-size: 18px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }
    
        .product-content {
            padding: 24px;
        }
    
        .product-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            gap: 10px;
        }
    
        .product-title {
            font-size: 22px;
            font-weight: 600;
            color: #111827;
        }
    
        .rating {
            background: #fef3c7;
            color: #b45309;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
        }
    
        .product-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
    
        .price {
            font-size: 28px;
            font-weight: 700;
            color: #2563eb;
        }
    
        .shipping {
            color: #6b7280;
            font-size: 14px;
        }
    
        .cart-btn {
            width: 100%;
            padding: 16px;
            border: none;
            border-radius: 18px;
            background: linear-gradient(135deg, #2563eb, #1d4ed8);
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
        }
    
        .cart-btn:hover {
            opacity: 0.9;
        }
    
        @media(max-width:768px) {
            .section-header h2 {
                font-size: 32px;
            }
    
            .filters {
                width: 100%;
            }
    
            .filters input,
            .filters select {
                width: 100%;
            }
        }

    /* POPUP STYLES */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.popup-box {
    width: 100%;
    max-width: 430px;
    background: #ffffff;
    border-radius: 30px;
    padding: 35px;
    position: relative;
    animation: popupAnimation 0.35s ease;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

@keyframes popupAnimation {
    from {
        transform: translateY(25px) scale(0.96);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #f3f4f6;
    color: #111827;
    font-size: 24px;
    cursor: pointer;
    transition: 0.3s;
}

.close-popup:hover {
    background: #e5e7eb;
    transform: rotate(90deg);
}

.text-center {
    text-align: center;
    margin-bottom: 25px;
}

.text-center h2 {
    font-size: 34px;
    color: #111827;
    margin-bottom: 10px;
    font-weight: 700;
}

.text-center p {
    color: #6b7280;
    font-size: 15px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.input-group input {
    width: 100%;
    height: 56px;
    border: 1px solid #d1d5db;
    border-radius: 16px;
    padding: 0 18px;
    font-size: 15px;
    outline: none;
    transition: 0.3s ease;
    background: #f9fafb;
}

.input-group input:focus {
    border-color: #2563eb;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.submit-btn {
    width: 100%;
    height: 56px;
    border: none;
    border-radius: 18px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    margin-top: 5px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.25);
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 15px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 50%;

    background: #f3f4f6;
    color: #111827;

    font-size: 28px;
    line-height: 1;

    cursor: pointer;
    transition: 0.3s;
    padding: 0;
}

.close-popup:hover {
    background: #e5e7eb;
    transform: rotate(90deg);
}


.founder-section{
    padding:100px 0;
    background:#fff;
}

.founder-content{
    display:flex;
    align-items:center;
    gap:60px;
}

.founder-image{
    flex:1;
}

.founder-image img{
    width:100%;
    max-width:450px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.founder-info{
    flex:1;
}

.subtitle{
    color:#0066FF;
    font-weight:600;
    text-transform:uppercase;
}

.founder-info h2{
    font-size:48px;
    margin:15px 0;
    color:#111;
}

.founder-info p{
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
}

.founder-signature h4{
    margin:0;
    color:#111;
}

.founder-signature span{
    color:#0066FF;
}

/*blog*/
/* BLOG SECTION */

.blogs {
    padding: 80px 0;
    background: #f8fafc;
}

.blogs h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px;
    color: #666;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-date {
    font-size: 14px;
    color: #888;
}

.blog-content h3 {
    margin: 12px 0;
    font-size: 1.3rem;
}

.blog-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.read-more {
    color: #0f766e;
    text-decoration: none;
    font-weight: 600;
}

.read-more:hover {
    text-decoration: underline;
}


@media(max-width:768px){
    .founder-content{
        flex-direction:column;
        text-align:center;
    }
}

@media(max-width: 480px) {
    .popup-box {
        padding: 25px;
        border-radius: 24px;
    }

    .text-center h2 {
        font-size: 28px;
    }
}

   /* MOBILE */

   @media(max-width:768px) {

       .section-heading h2 {
           font-size: 32px;
       }

   }