:root {
    --primary-blue: #1a73e8;
    --secondary-blue: #4285f4;
    --turquoise: #40e0d0;
    --light-blue: #e8f0fe;
    --white: #ffffff;
    --coral: #ff7f50;
    --dark-blue: #0d47a1;
    --text-dark: #333333;
    --text-light: #666666;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
    display: flex;
  align-items: center;
  color: inherit;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
  }
  
  .logo-img-wrapper {
    max-height: 40px;
    max-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  .logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    display: block;
  }
  
  .logo-text {
    margin-left: 10px;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-blue); /* adjust to match your palette */
  }
  
.logo {
    display: flex;
    align-items: center;
  }
  
  .logo-img {
    margin-right: 10px;
    height: 40px;
  width: auto;
  max-height: 40px;
  max-width: 150px;
  object-fit: contain;
  display: block;
  }

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-blue);
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('../images/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--coral);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    background-color: #ff6347;
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: var(--light-blue);
}

.about h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-blue);
}

.about-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-text {
    max-width: 800px;
    text-align: center;
}

/* Featured Products */
.featured-products {
    padding: 5rem 0;
}

.featured-products h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-blue);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 20px;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card h3 {
    margin: 15px 0 10px;
    color: var(--primary-blue);
}

.product-card p {
    padding: 0 20px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.product-card .btn {
    margin-top: auto;
}

.product-link {
    display: block;
    padding: 1rem;
    text-align: center;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.product-link:hover {
    color: var(--coral);
}

/* Footer */
.footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--turquoise);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

/* Products Header */
.products-header {
    background: linear-gradient(135deg, #1a237e, #0d47a1);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.products-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.products-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Products Grid */
.products-grid {
    padding: 60px 0;
}

.products-grid .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.product-image {
    position: relative;
    padding-top: 75%; /* 4:3 Aspect Ratio */
    overflow: hidden;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-content {
    padding: 25px;
}

.product-content h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.product-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-options {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.product-options .btn {
    min-width: 120px;
    text-align: center;
}

/* Call to Action Section */
.cta-section {
    background: #f5f5f5;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: #1a237e;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
    border: 2px solid var(--primary-blue);
}

.btn-primary:hover {
    background: var(--dark-blue);
    border-color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: none;
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .products-header {
        padding: 60px 0;
    }

    .products-header h1 {
        font-size: 2.5rem;
    }

    .products-grid .container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-content {
        padding: 20px;
    }

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

    .cta-section h2 {
        font-size: 2rem;
    }
} 


.contact-header {
    background: linear-gradient(135deg, #1a237e, #0d47a1);
    color: white;
    padding: 100px 20px 60px;
    text-align: center;
  }
  
  .contact-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .contact-header p {
    font-size: 1.2rem;
    opacity: 0.9;
  }
  
  .contact-section {
    padding: 60px 20px;
    background-color: #f4f8fc;
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
  }
  
  .contact-form,
  .contact-info {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }
  
  .contact-form h2,
  .contact-info h2 {
    margin-bottom: 20px;
    color: var(--primary-blue);
  }
  
  .contact-form .form-group {
    margin-bottom: 20px;
  }
  
  .contact-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
  }
  
  .contact-form .form-field {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
  }
  
  .contact-info h3 {
    margin-top: 30px;
    color: var(--dark-blue);
  }
  
  .contact-info p {
    margin: 10px 0;
    color: var(--text-light);
  }
  
  .contact-info .social-links a {
    display: inline-block;
    margin-right: 15px;
    color: var(--primary-blue);
    font-weight: 500;
    text-decoration: none;
  }
  
  .contact-info .social-links a:hover {
    color: var(--coral);
  }
  
  /* Responsive Contact Layout */
  @media (max-width: 768px) {
    .contact-grid {
      grid-template-columns: 1fr;
    }
  
    .contact-header h1 {
      font-size: 2.5rem;
    }
  
    .contact-form,
    .contact-info {
      padding: 30px 20px;
    }
  }

  .mt-40 {
    margin-top: 40px;
  } 

  .mb-40 {
    margin-bottom: 40px;
  }
