/* ===== Global Styles ===== */
:root {
    --primary: #2c3e50;
    --secondary: #e74c3c;
    --accent: #3498db;
    --light: #ecf0f1;
    --dark: #2c3e50;
    --gray: #95a5a6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: var(--dark);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn.primary {
    background: var(--secondary);
    color: white;
}

.btn.secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Header Styles */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}
.logo img {
    height: 50px;
    width: auto;
}

.logo-text h1 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.logo-text p {
    color: var(--secondary);
    font-size: 0.8rem;
    font-weight: 500;
    
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1; 
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 0;
    position: relative;
}

nav ul li a:hover {
    color: var(--secondary);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Mobile menu - hidden by default */
.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 15px;
        margin-top: 20px;
    }
    
    nav ul.show {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }
}
/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.3)), url('hero-image.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 180px 0 100px;
    margin-top: 80px;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* ===== Highlights Section ===== */
.highlights {
    padding: 80px 0;
    background: var(--light);
}

.highlights h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary);
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.highlight-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.highlight-card:hover {
    transform: translateY(-10px);
}

.highlight-card i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.highlight-card h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

/* ===== Footer ===== */
footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--secondary);
}

.footer-col i {
    margin-right: 10px;
    color: var(--secondary);
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--secondary);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    nav ul {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}




/* About Page Specific Styles */
.about-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.5)), url('about-hero-image.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 150px 0 80px;
    margin-top: 80px;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.about-content {
    padding: 80px 0;
}

.about-grid {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 2rem;
}

.about-text h3 {
    color: var(--secondary);
    margin: 25px 0 15px;
    font-size: 1.5rem;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--secondary);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.experience-badge .label {
    font-size: 0.9rem;
}

.cta-section {
    margin-top: 40px;
    display: flex;
    gap: 15px;
}

.values {
    background: var(--light);
    padding: 80px 0;
}

.values h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.value-card h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

.team {
    padding: 80px 0;
}

.team h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-items: center;
}

.team-member {
    text-align: center;
    max-width: 250px;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid var(--light);
}

.team-member h3 {
    color: var(--primary);
    margin-bottom: 5px;
}

.team-member p {
    color: var(--gray);
    margin-bottom: 5px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-grid {
        flex-direction: column;
    }
    
    .about-image {
        margin-top: 40px;
    }
    
    .cta-section {
        flex-direction: column;
    }
    
    .experience-badge {
        right: 0;
    }
}



/* Products Page Styles */
.products-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.2)), url('products-image.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 150px 0 80px;
    margin-top: 80px;
}
.products-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}




/* Product Grid Layout */
.product-showcase {
    padding: 40px 0;
  }
  
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
  }
  
  .product-card {
    border: 5px solid #eee;
    border-radius: 6px;
    padding: 15px;
    text-align: center;
    transition: transform 0.3s;
  }
  
  .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .product-card img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    margin-bottom: 12px;
  }
  
  .product-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .product-grid {
      grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
      gap: 15px;
    }
  }
  
  @media (max-width: 480px) {
    .product-grid {
      grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
      gap: 10px;
    }
    .product-card h3 {
      font-size: 0.85rem;
    }
  }










/*
.main-products {
    padding: 80px 0;
}

.section-intro {
    text-align: center;
    margin-bottom: 50px;
}

.section-intro h2 {
    color: var(--primary);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.product-category {
    margin-bottom: 60px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light);
}

.category-header i {
    font-size: 2rem;
    color: var(--secondary);
}

.category-header h3 {
    color: var(--primary);
    font-size: 1.8rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.product-image {
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-info h4 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.product-info p {
    margin-bottom: 20px;
    color: var(--gray);
}

.product-specs {
    list-style: none;
    margin-bottom: 25px;
    flex: 1;
}

.product-specs li {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.product-specs strong {
    color: var(--primary);
}

.btn.outline {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    align-self: flex-start;
}

.btn.outline:hover {
    background: var(--secondary);
    color: white;
}

.catalog-cta {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: var(--light);
    border-radius: 10px;
}

.catalog-cta p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.custom-solutions {
    background: var(--primary);
    color: white;
    padding: 80px 0;
}

.solution-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.solution-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.solution-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.solution-features {
    list-style: none;
    margin: 30px 0;
    display: inline-block;
    text-align: left;
}

.solution-features li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.solution-features i {
    color: var(--secondary);
    margin-right: 10px;
}

.btn.secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn.secondary:hover {
    background: white;
    color: var(--primary);
} */

/* Responsive Adjustments
@media (max-width: 768px) {
    .products-hero h1 {
        font-size: 2.2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-image {
        height: 200px;
    }
}
*/


/* Catalog Page Styles */
.catalog-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.2)), url('catalog-image.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 150px 0 80px;
    margin-top: 80px;
}

.catalog-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.catalog-download {
    padding: 80px 0;
    background: #f9f9f9;
}

.catalog-container {
    display: flex;
    gap: 50px;
    align-items: center;
}

.catalog-info {
    flex: 1;
}

.catalog-info h2 {
    color: var(--primary);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.catalog-info .intro {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--gray);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.feature {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.feature h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.download-options {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn.outline {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
}

.btn.outline:hover {
    background: var(--secondary);
    color: white;
}

.catalog-preview {
    flex: 1;
    position: relative;
}

.preview-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.preview-container img {
    width: 100%;
    display: block;
}

.floating-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--secondary);
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
}

.floating-badge span {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.floating-badge p {
    font-size: 0.9rem;
    margin-top: 5px;
}

.catalog-sections {
    padding: 80px 0;
    text-align: center;
}

.section-subtitle {
    color: var(--gray);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.sections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.section-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.section-card:hover {
    transform: translateY(-10px);
}

.section-icon {
    width: 80px;
    height: 80px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.section-icon i {
    font-size: 2rem;
    color: var(--secondary);
}

.section-card h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.section-card ul {
    list-style: none;
    text-align: left;
    padding-left: 20px;
}

.section-card ul li {
    margin-bottom: 10px;
    position: relative;
}

.section-card ul li::before {
    content: "•";
    color: var(--secondary);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.physical-copy {
    background: var(--primary);
    color: white;
    padding: 80px 0;
}

.copy-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.copy-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.copy-image img {
    width: 100%;
    display: block;
}

.copy-info {
    flex: 1;
}

.copy-info h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.copy-info p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.btn.secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn.secondary:hover {
    background: white;
    color: var(--primary);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .catalog-container {
        flex-direction: column;
    }
    
    .copy-container {
        flex-direction: column;
    }
    
    .copy-info {
        text-align: center;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .catalog-hero h1 {
        font-size: 2.2rem;
    }
    
    .download-options {
        flex-direction: column;
    }
    
    .download-options a {
        width: 100%;
        text-align: center;
    }
}


/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.1)), url('contactus-image.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 150px 0 80px;
    margin-top: 80px;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.contact-main {
    padding: 80px 0;
}

.contact-container {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
    background: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
}

.contact-info h2 {
    color: var(--primary);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.info-card {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-card i {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-top: 5px;
}

.info-card h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.social-links {
    margin-top: 40px;
}

.social-links h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.contact-form {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-form h2 {
    color: var(--primary);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary);
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.map-section {
    padding: 0 0 80px;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info,
    .contact-form {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.2rem;
    }
    
    .contact-info {
        padding: 30px;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .info-card {
        flex-direction: column;
        gap: 10px;
    }
}

/* thankyou page */

.thank-you {
    text-align: center;
    padding: 100px 0;
}

.thank-you h1 {
    color: var(--secondary);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.thank-you p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* error page */

.error-message {
    text-align: center;
    padding: 100px 0;
}

.error-message h1 {
    color: #e74c3c;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.error-message p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}


/* Vertical Gallery */
.vertical-gallery {
    padding: 60px 0;
    text-align: center;
  }
  
  .gallery-item {
    margin: 0 auto 30px;
    max-width: 1200px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s;
  }
  
  .gallery-item:hover {
    transform: scale(1.02);
  }
  
  .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 1px solid #eee;
  }
  
  .image-caption {
    padding: 15px;
    background: white;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
  }
  
  /*Add spacing between sections */
  .container > h2 {
    margin-bottom: 40px;
  }