/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo img {
    height: 40px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    transition: color 0.3s;
    position: relative;
}

nav ul li a:hover {
    color: #ff6e4b;
}
/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(rgba(255, 100, 72, 0.3), rgba(255, 72, 43, 0.6)), url('pharmacy1.jpg'); /* <-- your root image */
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.hero h1,
.hero p {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    opacity: 0.9;
}


.cta-button {
    display: inline-block;
    background-color: #fff;
    color: #ff6e4b;
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: 2px solid #fff;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 2;
}

.cta-button:hover {
    background-color: transparent;
    color: #fff;
    transform: scale(1.05);
}

/* Section Styles */
section {
    padding: 120px 0;
}

section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 70px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #1d1d1f;
}

section h3 {
    color: #ff6e4b;
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* About Section */
.about {
    background-color: #fff;
}

.about-section {
    margin-bottom: 80px;
}

.about-section:last-child {
    margin-bottom: 0;
}

/* Problem Section */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.problem-item {
    background-color: #f5f5f7;
    padding: 40px 30px;
    border-radius: 18px;
    transition: all 0.3s ease;
    text-align: center;
}

.problem-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.08);
}

.problem-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ff6e4b;
}

.problem-item h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: #1d1d1f;
}

/* Solution Section */
.how-it-works {
    text-align: center;
}

.steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 60px 0;
}

.step {
    flex: 1;
    min-width: 250px;
    margin: 20px;
    padding: 50px 30px;
    background-color: #f5f5f7;
    border-radius: 18px;
    position: relative;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.08);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff6e4b;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.shop-cta {
    margin-top: 40px;
}

.shop-button {
    display: inline-block;
    background-color: #ff6e4b;
    color: white;
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: 2px solid #ff6e4b;
}

.shop-button:hover {
    background-color: transparent;
    color: #ff6e4b;
    transform: scale(1.05);
}

/* Value Proposition Section */
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.value-column {
    background-color: #f5f5f7;
    padding: 40px 30px;
    border-radius: 18px;
}

.value-column h4 {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 30px;
    color: #1d1d1f;
    font-weight: 600;
}

.value-column ul {
    list-style: none;
}

.value-column ul li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 1.1rem;
    position: relative;
    padding-left: 30px;
}

.value-column ul li:last-child {
    border-bottom: none;
}

.value-column ul li:before {
    content: "✓";
    color: #0ab867;
    font-weight: bold;
    margin-right: 10px;
    position: absolute;
    left: 0;
    top: 15px;
}

/* Technology Section */
.technology {
    background-color: #fff;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tech-item {
    text-align: center;
    padding: 50px 30px;
    background-color: #f5f5f7;
    border-radius: 18px;
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.08);
}

.tech-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    color: #ff6e4b;
}

.tech-item h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: #1d1d1f;
}

/* Promise Section */
.promise {
    background: linear-gradient(135deg, #ff6e4b 0%, #ff522a 100%);
    color: white;
    text-align: center;
}

.promise h2 {
    color: white;
}

.promise p {
    max-width: 800px;
    margin: 25px auto;
    font-size: 1.3rem;
    line-height: 1.8;
    font-weight: 300;
    opacity: 0.9;
}

/* Products Section */
.products {
    background-color: #fff;
}

.product-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.category-btn {
    background-color: #f5f5f7;
    border: none;
    padding: 14px 30px;
    margin: 8px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    font-size: 1rem;
    letter-spacing: -0.01em;
}

.category-btn.active, .category-btn:hover {
    background-color: #ff6e4b;
    color: white;
    transform: scale(1.05);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.product-item {
    background-color: #f5f5f7;
    padding: 30px 20px;
    border-radius: 18px;
    text-align: center;
    transition: all 0.3s ease;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.08);
}

.product-image {
    margin-bottom: 20px;
}

.image-placeholder {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #ff6e4b;
}

.product-item h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #1d1d1f;
    font-weight: 600;
}

/* Contact Section */
.contact {
    background-color: #f5f5f7;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info h3, .contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #1d1d1f;
    font-weight: 600;
}

.contact-info p {
    font-size: 1.1rem;
    margin: 10px 0;
    color: #555;
}

/* Contact Form */
.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6e4b;
}

.submit-button {
    background-color: #ff6e4b;
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: -0.01em;
}

.submit-button:hover {
    background-color: #ff522a;
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: #1d1d1f;
    color: #f5f5f7;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 15px;
}

.footer-logo p {
    color: #86868b;
    font-size: 0.9rem;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    text-decoration: none;
    color: #86868b;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: #ff6e4b;
}

.footer-contact p {
    color: #86868b;
    font-size: 0.95rem;
    margin: 10px 0;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    color: #86868b;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.3rem;
    }
    
    .steps {
        margin: 40px 0;
    }
    
    .step {
        padding: 40px 25px;
        margin: 15px;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        padding: 15px 0;
    }
    
    nav ul {
        margin-top: 20px;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    .hero {
        margin-top: 120px;
        height: 80vh;
    }
    
    .hero h1 {
        font-size: 2.3rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    section {
        padding: 80px 0;
    }
    
    section h2 {
        font-size: 2.2rem;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .step {
        margin: 20px 0;
        width: 100%;
    }
    
    .value-grid {
        gap: 30px;
    }
    
    .value-column {
        padding: 30px 20px;
    }
    
    .product-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .category-btn {
        margin: 5px 0;
        width: 80%;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}