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

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}


.fred {
    margin-bottom: 5rem !important;
    color: YELLOW !important;
}


h1, h2, h3, h4, h5, h6 {
    font-family: 'Quicksand', sans-serif;
    margin-bottom: 1rem;
    color: #2c3e50;
}

a {
    text-decoration: none;
    color: #3498db;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Header & Navigation */
header {
    background: linear-gradient(rgba(41, 128, 185, 0.9), rgba(44, 62, 80, 0.9)), url('../images/header-bg.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 1rem 0;
    position: relative;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
}

.logo-container {
    flex: 1;
}

.logo {
    max-width: 260px;
    height: auto;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: #fff;
    font-weight: 500;
    position: relative;
}

.nav-links a:hover {
    color: #ecf0f1;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #ecf0f1;
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 5rem 5% 8rem;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: #ecf0f1;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #ecf0f1;
}

.cta-button {
    display: inline-block;
    background-color: #e74c3c;
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #e74c3c;
}

.cta-button:hover {
    background-color: transparent;
    color: #fff;
}

/* Products Section */
.products-section {
    background-color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.products-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.products-section > .container > p {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.product-card p {
    margin-bottom: 1.5rem;
    color: #555;
}

.download-button {
    display: inline-block;
    background-color: #3498db;
    color: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.download-button:hover {
    background-color: #2980b9;
    color: #fff;
}

.custom-scripts {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.custom-scripts h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Q&A Section */
.qa-section {
    background-color: #f9f9f9;
    padding: 4rem 0;
}

.qa-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.questions-list {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.questions-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.questions-list li {
    margin-bottom: 0.5rem;
}

.questions-list a {
    display: block;
    padding: 0.8rem 1rem;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    font-weight: 500;
}

.questions-list a:hover {
    background-color: #3498db;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.answers {
    max-width: 800px;
    margin: 0 auto;
}

.answer-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.answer-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.answer-item p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.back-to-top {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    background-color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.contact-section > .container > p {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.contact-method {
    margin: 0 2rem;
    text-align: center;
}

.contact-method i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.contact-method h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact-form h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.submit-button {
    display: inline-block;
    background-color: #3498db;
    color: #fff;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
}

.submit-button:hover {
    background-color: #2980b9;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
}

.footer-links ul {
    display: flex;
    list-style: none;
}

.footer-links li {
    margin-right: 1.5rem;
}

.footer-links a {
    color: #ecf0f1;
    font-weight: 500;
}

.footer-links a:hover {
    color: #3498db;
}

.footer-copyright {
    margin-top: 1rem;
    width: 100%;
    text-align: center;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .hero h3 {
        font-size: 1.1rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        background-color: rgba(44, 62, 80, 0.95);
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 10;
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .nav-links li {
        margin: 1rem 0;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .questions-list ul {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        flex-direction: column;
    }
    
    .contact-method {
        margin: 1rem 0;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links ul {
        justify-content: center;
        margin: 1.5rem 0;
    }



.notify-form {
  background: #fff;
  border: 1px solid #ddd;
  padding: 1.5rem;
  border-radius: 10px;
  max-width: 500px;
  margin-top: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.notify-form h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #333;
}

.notify-form .form-group {
  margin-bottom: 1rem;
}

.notify-form label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 600;
  color: #444;
}

.notify-form input[type="text"],
.notify-form input[type="email"] {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Quicksand', sans-serif;
}

.notify-form button {
  background-color: #2563eb;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}

.notify-form button:hover {
  background-color: #1e40af;
}



}
