* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #0078d4;
            --primary-dark: #106ebe;
            --purple: #5c2d91;
            --green: #107c10;
            --gradient-blue: linear-gradient(135deg, #0078d4, #00a2ed);
            --secondary: #2b88d8;
            --text-dark: #1b1b1b;
            --text-light: #ffffff;
            --hover-bg: #f5f9fc;
            --orange: #ff6b00;
            --red: #d93025;
            --teal: #009688;
            --indigo: #3f51b5;
            --cyan: #00bcd4;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            background-color: #f8f9fa;
        }

        header {
            background: rgba(255, 255, 255, 0.98);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 120, 212, 0.1);
            transition: box-shadow 0.3s ease;
        }

        header.scrolled {
            box-shadow: 0 2px 20px rgba(0, 120, 212, 0.1);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0.8rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .logo-circle {
            width: 35px;
            height: 35px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            transform: rotate(-10deg);
            transition: transform 0.3s ease;
        }

        .logo:hover .logo-circle {
            transform: rotate(0deg);
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }

        nav a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 1rem;
            position: relative;
            padding: 0.5rem 0;
            transition: all 0.3s ease;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transition: width 0.3s ease;
            border-radius: 2px;
        }

        nav a:hover {
            color: var(--primary);
        }

        nav a:hover::after {
            width: 100%;
        }

        .nav-button {
            background: var(--primary);
            color: var(--text-light);
            padding: 0.8rem 1.8rem;
            border-radius: 4px;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .nav-button:hover {
            color: var(--text-light);
            background: var(--primary-dark);
            transform: translateY(-1px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .nav-button::after {
            display: none;
        }

        .hamburger {
            display: none;
            cursor: pointer;
            border: none;
            background: none;
            padding: 0.5rem;
        }

        .hamburger span {
            display: block;
            width: 22px;
            height: 2px;
            background-color: var(--text-dark);
            margin: 4px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        @media screen and (max-width: 768px) {
            .hamburger {
                display: block;
                z-index: 100;
            }

            .hamburger.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
                background-color: var(--primary);
            }

            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
                background-color: var(--primary);
            }

            nav ul {
                position: fixed;
                left: -100%;
                top: 0;
                flex-direction: column;
                background: rgba(255, 255, 255, 0.99);
                width: 100%;
                height: 100vh;
                padding-top: 80px;
                transition: 0.3s ease;
                gap: 2rem;
                backdrop-filter: blur(10px);
            }

            nav ul.active {
                left: 0;
            }

            nav a {
                font-size: 1.1rem;
                width: 100%;
                text-align: center;
                padding: 1rem 0;
            }

            .nav-button {
                margin-top: 1rem;
                width: auto;
                display: inline-block;
            }
        }












.hero-section {
        position: relative;
        min-height: 85vh;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        background: #10163a;
    }

    #heroCanvas {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
        padding: 2rem;
        color: white;
    }

    .hero-content h1 {
        font-size: 4rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        font-weight: 600;
        background: linear-gradient(to right, #fff, #88c3ff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: fadeInUp 0.8s ease-out;
    }

    .hero-content p {
        font-size: 1.4rem;
        margin-bottom: 2.5rem;
        color: rgba(255, 255, 255, 0.9);
        animation: fadeInUp 0.8s ease-out 0.2s backwards;
    }

    .hero-buttons {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        animation: fadeInUp 0.8s ease-out 0.4s backwards;
    }

    .primary-btn, .secondary-btn {
        padding: 1rem 2.5rem;
        border-radius: 3px;
        font-weight: 500;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        text-decoration: none;
        position: relative;
        overflow: hidden;
    }

    .primary-btn {
        background: #0078d4;
        color: white;
        border: none;
    }

    .secondary-btn {
        background: transparent;
        color: white;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .primary-btn:hover {
        background: #106ebe;
        transform: translateY(-2px);
    }

    .secondary-btn:hover {
        border-color: rgba(255, 255, 255, 0.8);
        transform: translateY(-2px);
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @media (max-width: 768px) {
        .hero-content h1 {
            font-size: 2.5rem;
        }

        .hero-content p {
            font-size: 1.2rem;
        }

        .hero-buttons {
            flex-direction: column;
            padding: 0 2rem;
        }
    }



.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    background: rgba(0, 120, 212, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #252525;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

.services-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

/* Color variations for icons */
.blue { background: var(--gradient-blue); }
.purple { background: var(--purple); }
.green { background: var(--green); }
.orange { background: linear-gradient(135deg, var(--orange), #ff9b50); }
.red { background: linear-gradient(135deg, var(--red), #ff4444); }
.teal { background: linear-gradient(135deg, var(--teal), #4db6ac); }
.indigo { background: linear-gradient(135deg, var(--indigo), #7986cb); }
.cyan { background: linear-gradient(135deg, var(--cyan), #4dd0e1); }

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #252525;
}

.service-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.service-features span {
    background: #f0f7ff;
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.9rem;
}

.service-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 0.8rem;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}




/* Products Section */
.products-section {
    padding: 6rem 2rem;
    background: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.gradient-blue {
    background: var(--gradient-blue);
}

.product-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.product-badge {
    background: #fff4e5;
    color: #ff9800;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.9rem;
}

.product-features-list {
    list-style: none;
    margin: 1.5rem 0;
}

.product-features-list li {
    padding: 0.5rem 0;
    color: #444;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-features-list li::before {
    content: "✓";
    color: var(--green);
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.product-demo, .product-cta {
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.product-demo {
    background: #f0f7ff;
    color: var(--primary);
}

.product-cta {
    background: var(--primary);
    color: white;
}

.product-demo:hover {
    background: #e1f0ff;
}

.product-cta:hover {
    background: var(--primary-dark);
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .services-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-actions {
        flex-direction: column;
    }
}
/* Add these gradient variations */
.gradient-purple {
    background: linear-gradient(135deg, #5c2d91, #8e44ad);
}

.gradient-green {
    background: linear-gradient(135deg, #107c10, #2ecc71);
}

.gradient-orange {
    background: linear-gradient(135deg, #ff6b00, #ff9b50);
}

.gradient-teal {
    background: linear-gradient(135deg, #009688, #4db6ac);
}

.gradient-indigo {
    background: linear-gradient(135deg, #3f51b5, #7986cb);
}

.gradient-red {
    background: linear-gradient(135deg, #d93025, #ff4444);
}

.gradient-cyan {
    background: linear-gradient(135deg, #00bcd4, #4dd0e1);
}




/* Footer Styles */
.site-footer {
  background: #1b1b1b; /* Dark gray footer */
  color: #ffffff;
  padding: 60px 5%;
  text-align: left;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin-bottom: 20px;
}

.footer-logo {
  font-family: 'Poppins', sans-serif; /* Choose a stylish font */
  font-size: 24px; /* Adjust size */
  font-weight: 700; /* Make it bold */
  color: white; /* Match the original logo color */
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
  color: #ddd; /* Slight color change on hover */
}

.footer-tagline {
  font-size: 14px;
  color: #ccc;
}

.contact-info p {
  font-size: 14px;
  margin: 5px 0;
  color: #ffffff !important;
}


/* Footer Links */
.footer-section h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: #bbb;
  transition: color 0.3s ease-in-out;
}

.footer-links a:hover {
  color: #0078D4; /* Microsoft blue */
}

/* Social Media Links */
.social-links a {
  display: inline-block;
  font-size: 18px;
  margin-right: 12px;
  color: #bbb;
  transition: color 0.3s ease-in-out;
}

.social-links a:hover {
  color: #0078D4; /* Microsoft blue */
}

/* Newsletter Subscription */
.newsletter-form {
  margin-top: 15px;
  display: flex;
  border: 1px solid #444;
  border-radius: 5px;
  overflow: hidden;
}

.newsletter-form input {
  flex: 1;
  padding: 10px;
  border: none;
  font-size: 14px;
  background: #222;
  color: white;
}

.newsletter-form button {
  background: #0078D4;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
}

.newsletter-form button:hover {
  background: #005a9e;
}

/* Copyright Section */
.copyright {
  text-align: center;
  padding-top: 20px;
  font-size: 14px;
  color: #bbb;
  border-top: 1px solid #333;
  margin-top: 30px;
}

.copyright a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.copyright a:hover {
  color: #0078D4;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    max-width: 300px;
    margin: auto;
  }
}



/* Services Hero Section */
.services-hero {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #ffffff;
  text-align: center;
  padding: 140px 20px;
  position: relative;
  overflow: hidden;
}

.services-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 20%, transparent 70%);
  animation: pulse 8s linear infinite;
}

@keyframes pulse {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.services-hero .hero-content {
  max-width: 800px;
  margin: auto;
  z-index: 2;
  position: relative;
}

.services-hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.services-hero p {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 30px;
}

.hero-button {
  display: inline-block;
  padding: 14px 32px;
  background: #00c6ff;
  background: linear-gradient(to right, #0072ff, #00c6ff);
  color: white;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.4s ease;
}

.hero-button:hover {
  background: linear-gradient(to right, #00c6ff, #0072ff);
}

/* Services Grid */
.services-list {
  padding: 80px 5%;
  text-align: center;
}

.services-list h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #0078D4;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.service-card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 80px;
  height: auto;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 22px;
  color: #333;
}

.service-card p {
  font-size: 16px;
  color: #666;
}

/* Call to Action */
.cta {
  background: #0078D4;
  color: white;
  text-align: center;
  padding: 60px 5%;
  border-radius: 10px;
  margin: 60px auto;
  max-width: 800px;
}

.cta h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.cta p {
  font-size: 18px;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-block;
  padding: 12px 24px;
  font-size: 18px;
  background: white;
  color: #0078D4;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.cta-button:hover {
  background: #005a9e;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .services-hero {
    padding: 100px 20px;
  }

  .services-hero h1 {
    font-size: 32px;
  }

  .services-list {
    padding: 60px 5%;
  }

  .cta {
    padding: 40px;
  }
}



/* About Hero Section */
.about-hero {
  background: url("../images/about-bg.jpg") center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 120px 20px;
}

.about-hero .container {
  max-width: 800px;
  margin: auto;
}

.about-hero h1 {
  font-size: 42px;
  font-weight: 700;
}

.about-hero p {
  font-size: 18px;
  margin-top: 10px;
}

/* Company Mission */
.company-mission {
  padding: 80px 5%;
  text-align: center;
}

.company-mission h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #0078D4;
}

.company-mission p {
  font-size: 18px;
  max-width: 800px;
  margin: auto;
  color: #555;
}

/* Team Section */
.team-section {
  padding: 80px 5%;
  text-align: center;
  background: #f4f7fc;
}

.team-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #0078D4;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  justify-content: center;
}

.team-member {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.team-member h3 {
  font-size: 20px;
  color: #333;
}

.team-member p {
  font-size: 16px;
  color: #666;
}

/* Call to Action */
.cta {
  background: #0078D4;
  color: white;
  text-align: center;
  padding: 60px 5%;
  border-radius: 10px;
  margin: 60px auto;
  max-width: 800px;
}

.cta h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.cta p {
  font-size: 18px;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-block;
  padding: 12px 24px;
  font-size: 18px;
  background: white;
  color: #0078D4;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.cta-button:hover {
  background: #005a9e;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .about-hero {
    padding: 100px 20px;
  }

  .about-hero h1 {
    font-size: 32px;
  }

  .company-mission {
    padding: 60px 5%;
  }

  .team-section {
    padding: 60px 5%;
  }

  .cta {
    padding: 40px;
  }
}






/* Contact Hero Section */
.contact-hero {
  background: url("../images/contact-bg.jpg") center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 120px 20px;
}

.contact-hero .container {
  max-width: 800px;
  margin: auto;
}

.contact-hero h1 {
  font-size: 42px;
  font-weight: 700;
}

.contact-hero p {
  font-size: 18px;
  margin-top: 10px;
}

/* Contact Form & Info Section */
.contact-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 80px 5%;
  max-width: 1200px;
  margin: auto;
}

.form-container {
  flex: 1;
  min-width: 400px;
}

.contact-section h2 {
  font-size: 28px;
  color: #0078D4;
  margin-bottom: 20px;
}

form {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 15px;
}

input, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

input:focus, textarea:focus {
  border-color: #0078D4;
  outline: none;
}

button.cta-button {
  width: 100%;
  padding: 12px;
  background: #0078D4;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
}

button.cta-button:hover {
  background: #005a9e;
}

/* Contact Info */
.contact-info1 {
  flex: 1;
  min-width: 300px;
  text-align: left;
  padding-left: 40px;
}

.contact-info1 p {
  font-size: 18px;
  color: #555;
  margin-bottom: 10px;
}

/* Google Maps */
.map-container {
  width: 100%;
  height: 400px;
  margin-top: 40px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px;
}

/* Success & Error Messages */
.success-message {
  color: green;
  font-weight: bold;
  margin-bottom: 15px;
}

.error-message {
  color: red;
  font-weight: bold;
  margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    text-align: center;
  }

  .form-container, .contact-info {
    min-width: 100%;
    padding: 0;
  }

  .contact-info {
    margin-top: 30px;
    text-align: center;
  }

  .map-container {
    height: 300px;
  }
}









/* Hero Section */
.hero1 {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(120deg, #1e3c72, #2a5298);
  color: #fff;
}

.hero1 h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.hero1 p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Products Grid */
.products-grid1 {
  padding: 60px 5%;
}

.products-grid1 h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}

/* Grid Layout */
.grid1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  justify-content: center;
  align-items: start;
}

/* Product Card */
.product-card1 {
  background: #ffffff;
  border-left: 6px solid #0078d4;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card1:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.15);
}

.product-info1 h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #0078d4;
}

.product-info1 p {
  font-size: 1rem;
  color: #666;
}

.learn-more {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 14px;
  background: #0078d4;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.learn-more:hover {
  background: #005ea6;
}



