/*
Theme Name: Surya Bath Fitting
Description: Modern WordPress theme for Surya Bath Fitting business
Version: 1.0
Author: Your Name
*/

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #ffffff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto; 
    padding:0 20px;
} 
/* Header Styles */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.logo img {
    height: 45px;
    width: auto;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: #2c2c2c;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.main-nav a:hover {
    color: #ff8c42;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: #ff8c42;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #2c2c2c;
    cursor: pointer;
    padding: 5px;
}

/* Hero Section - Modern Layout */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0 80px;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    background: #ff8c42;
    color: white;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid #ff8c42;
}

.cta-button:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 66, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: #ff8c42;
    border: 2px solid #ff8c42;
}

.cta-button.secondary:hover {
    background: #ff8c42;
    color: white;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Simple Top Categories Section */
.top-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.category-tile-simple {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 3px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 2px solid transparent;
}

.category-tile-simple:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border-color: #ff8c42;
}

.category-tile-simple .category-tile-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff8c42, #e67e22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.category-tile-simple .category-tile-content {
    flex: 1;
}

.category-tile-simple h3 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 5px;
    font-weight: 600;
}

.category-tile-simple p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.category-tile-simple .category-tile-arrow {
    width: 35px;
    height: 35px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff8c42;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.category-tile-simple:hover .category-tile-arrow {
    background: #ff8c42;
    color: white;
    transform: translateX(3px);
}

/* Categories Page Styles */
.categories-main-section {
    padding: 40px 0 80px;
}

.brand-section {
    margin-bottom: 80px;
    scroll-margin-top: 100px; /* Ensures the section is visible when scrolled to */
}

.brand-header {
    text-align: center;
    margin-bottom: 50px;
}

.brand-header h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
}

.brand-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Categories Grid - Like the image */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.category-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    display: block;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border-color: #ff8c42;
}

.category-image {
    height: 200px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 18px 10px 18px;
    border-bottom: 1px solid #e9ecef;
    box-sizing: border-box;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    background: transparent;
    display: block;
    margin: 0 auto;
    box-shadow: none;
}

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

.category-name {
    padding: 20px;
    text-align: center;
}

.category-name h3 {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Category Products Page Styles */
.category-products-section {
    padding: 40px 0 80px;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb a {
    color: #ff8c42;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.products-grid-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.product-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: block;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border-color: #ff8c42;
}

.product-image-container {
    cursor: pointer;
    height: 200px;
    background: #f8f9fa;
    display: flex;
    object-fit: contain;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-bottom: 1px solid #e9ecef;
}

.product-image-container img {
    object-fit: cover;
    height: 155px;
    max-width: 100%; 
    transition: transform 0.3s ease;
}

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

.product-title {
    padding: 20px;
    text-align: center;
}

.product-title h3 {
    font-size: 1rem;
    color: #1a1a1a;
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.category-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.back-button {
    background: #6c757d;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.back-button:hover {
    background: #5a6268;
    transform: translateY(-2px);
    color: white;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-alt {
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Simple Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #ff8c42;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
}

.service-card h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Simple What We Do Section */
.what-we-do-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.what-we-do-item {
    background: white;
    padding: 25px 20px;
    border-radius: 8px;
    border-left: 4px solid #ff8c42;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.what-we-do-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.what-we-do-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 600;
}

.what-we-do-item p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666;
}

/* About Content */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-text p {
    color: #666;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Simple Page Header */
.page-header {
    background: #f8f9fa;
    padding: 100px 0 40px;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.page-header h1 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-header p {
    color: #666;
    font-size: 1rem;
}

/* Simple Modern Testimonials */
.testimonials-section {
    background: white;
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: #ffffff;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.testimonial-card:hover {
    border-color: #ff8c42;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
 
.testimonial-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
    margin-top: 15px;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff8c42, #e67e22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.testimonial-info {
    flex: 1;
}

.testimonial-author {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1rem;
    margin-bottom: 2px;
}

.testimonial-location {
    color: #666;
    font-size: 0.85rem;
}

.testimonial-rating {
    margin-top: 5px;
}

.testimonial-rating .star {
    color: #ffc107;
    font-size: 0.9rem;
}

/* Footer */
.site-footer {
    background: #2c2c2c;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    color: #ff8c42;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: #ff8c42;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .what-we-do-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .page-header {
        padding: 90px 0 30px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .top-categories-grid {
        grid-template-columns: 1fr;
    }
    
    .category-tile-simple {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .products-grid-layout {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .category-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .brand-section {
        margin-bottom: 60px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .section-title h2 {
        font-size: 1.6rem;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-card::before {
        font-size: 3rem;
        top: -8px;
        left: 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .category-tile-simple {
        padding: 20px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .category-card {
        margin-bottom: 15px;
    }
    
    .products-grid-layout {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .brand-header h2 {
        font-size: 1.8rem;
    }

    .contact-container {
        display: block;
    }
}

@media (max-width: 1024px) {
    .site-header{
        margin-bottom: 30px !important;
    }
    .hero-container {
        gap: 50px;
    }
    
    .hero-content h1 {
        font-size: 2.4rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .top-categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    
    .products-grid-layout {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .what-we-do-item {
        padding: 20px 15px;
    }
    
    .brand-section {
        margin-bottom: 50px;
    }
    
    .brand-header {
        margin-bottom: 30px;
    }
    
    .products-grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Category Card Links */
a.category-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

a.category-tile-simple {
    text-decoration: none;
    color: inherit;
    display: flex;
}

/* Anchor IDs for section navigation */
.brand-section {
    scroll-margin-top: 100px; /* Ensures the section is visible when scrolled to */
}
/* Product Modal Styles */
.product-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  position: relative;
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 900px;
  height: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10001;
}

.modal-close:hover {
  color: #ff8c42;
}

.modal-navigation {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 10001;
}

.modal-prev,
.modal-next {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 24px;
  padding: 15px 20px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.modal-prev:hover,
.modal-next:hover {
  background: rgba(255, 140, 66, 0.8);
}

.modal-image-container {
  width: 100%;
  height: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-image-container img {
    height: 70%;
    width: 70%;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.modal-image-container img.zoomed {
  transform: scale(2);
  cursor: zoom-out;
  z-index: 1000;
}

.modal-info {
  text-align: center;
  color: white;
  margin-top: 20px;
}

.modal-counter {
  font-size: 16px;
  margin-bottom: 10px;
  color: #ccc;
}

.modal-info h3 {
  font-size: 24px;
  margin: 0;
}
/* Mobile responsive styles */
@media (max-width: 768px) {
    
.modal-image-container img {
    height: 50%;
    width: 70%;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform 0.3s ease;
}
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 30px 20px;
    }
  .modal-content {
    width: 95%;
    height: 95%;
  }

  .modal-navigation {
    padding: 0 10px;
  }

  .modal-prev,
  .modal-next {
    font-size: 18px;
    padding: 10px 15px;
  }

  .modal-info h3 {
    font-size: 20px;
  }

  .what-we-do-item {
    padding: 25px 20px;
  }
}

@media (max-width: 480px) {
    
    .contact-form-wrapper {
        padding: 25px 15px;
    }
}
/* new contact edit */

/* Modern Contact Page Styles */
.contact-section {
    padding-top: 30px;
    background: #f8f9fa;
    padding: 80px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.contact-form-wrapper h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-form-wrapper .subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.contact-info-wrapper {
    padding: 20px 0;
}

.contact-info-wrapper h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-info-wrapper .subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.contact-item i {
    font-size: 1.3rem;
    color: #ff8c42;
    margin-right: 15px;
    margin-top: 2px;
    width: 25px;
    flex-shrink: 0;
}

.contact-item-content h4 {
    font-size: 1rem;
    color: #1a1a1a;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-item-content p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #2c2c2c;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff8c42;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.1);
}

.submit-btn {
    background: #ff8c42;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #e67e22;
    transform: translateY(-1px);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        display: none;
        padding: 20px;
        z-index: 999;
    }

    .main-nav.active {
        display: block;
    }

    .nav-menu {
        flex-direction: column !important;
        gap: 20px !important;
        align-items: flex-start !important;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 10px 0;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    /* Contact Page Mobile */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 30px 20px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .social-icons {
        justify-content: center;
    }

    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        height: auto; /* Remove fixed height on mobile */
        min-height: 250px;
    }

    .testimonial-text {
        -webkit-line-clamp: 3; /* Reduce lines on mobile */
    }
}

@media (max-width: 480px) {
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 25px 15px;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
    }

    .contact-item {
        margin-bottom: 25px;
        padding-bottom: 20px;
    }

    .testimonial-card {
        padding: 20px;
        min-height: 220px;
    }

    .testimonial-card::before {
        font-size: 3rem;
        top: -8px;
        left: 15px;
    }

    .map-container iframe {
        height: 300px;
    }
} 

.contact-container{
    padding-top:18px !important;
}
.categories-main-section{
    margin-top: 30px !important;
}
.contact-info-wrapper{margin-top: 15px;

}
.map-section{
    margin: 30px 0;
} 
/* new */
/* Mobile Menu Toggle Styles - Add this to your style.css */

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
}

.menu-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #2c2c2c;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.menu-toggle:hover {
    color: #ff8c42;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        display: none;
        padding: 20px;
        z-index: 999;
        border-top: 1px solid #f0f0f0;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav .nav-menu {
        flex-direction: column !important;
        gap: 0 !important;
        align-items: flex-start !important;
    }

    .main-nav .nav-menu li {
        width: 100%;
        margin-bottom: 0;
    }

    .main-nav .nav-menu a {
        display: block;
        padding: 15px 0;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
        font-size: 1rem;
    }

    .main-nav .nav-menu a::after {
        display: none; /* Remove hover underline effect on mobile */
    }

    .main-nav .nav-menu li:last-child a {
        border-bottom: none;
    }

    /* Hide desktop navigation on mobile */
    .header-content {
        position: relative;
    }
}

/* Ensure mobile menu works on smaller screens too */
@media (max-width: 480px) {
    .main-nav {
        padding: 15px;
    }

    .main-nav .nav-menu a {
        padding: 12px 0;
        font-size: 0.95rem;
    }
}

/* Additional mobile menu animation */
.main-nav {
    transition: all 0.3s ease;
}


.main-nav.active {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* even new */
/* Additional Mobile Menu Fixes */
@media (max-width: 768px) {
    /* Ensure the main navigation is hidden by default on mobile */
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        display: none;
        padding: 20px;
        z-index: 999;
        border-top: 1px solid #f0f0f0;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .main-nav.active {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

    /* Force mobile menu styles */
    .main-nav .nav-menu {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        align-items: flex-start !important;
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .main-nav .nav-menu li {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .main-nav .nav-menu a {
        display: block !important;
        padding: 15px 0 !important;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
        font-size: 1rem;
        color: #2c2c2c;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .main-nav .nav-menu a:hover {
        color: #ff8c42;
    }

    .main-nav .nav-menu a::after {
        display: none !important;
    }

    .main-nav .nav-menu li:last-child a {
        border-bottom: none;
    }

    /* Show mobile toggle button */
    .mobile-menu-toggle {
        display: block !important;
    }

    /* Hide desktop nav completely on mobile */
    .header-content {
        position: relative;
    }
}

/* Ensure desktop navigation is visible on larger screens */
@media (min-width: 769px) {
    .main-nav {
        display: block !important;
        position: static !important;
        background: none !important;
        box-shadow: none !important;
        padding: 0 !important;
    }

    .main-nav .nav-menu {
        display: flex !important;
        flex-direction: row !important;
        gap: 35px !important;
        align-items: center !important;
    }

    .mobile-menu-toggle {
        display: none !important;
    }
} 
    .brand-header{
        padding-top: 37px !important;
    }
 .about-content,.section-title{ 
        padding-top: 37px !important;
    }


@media (max-width: 769px) {
    .about-content,.section-title{
        padding-top: 40px !important;
    }
    .brand-header{
        padding-top: 25px !important;
    }
} 
/* images categoryu */
/* What We Offer Section */
/* What We Offer Section - Updated */
.what-we-offer-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.what-we-offer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.offer-image-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.offer-image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #ff8c42;
}

.offer-image-container {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: #ffffff;
}

.offer-image-container img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.offer-image-item:hover .offer-image-container img {
    transform: scale(1.05);
}

/* Large Desktop Styles */
@media (min-width: 1200px) {
    .what-we-offer-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
    
    .offer-image-container {
        height: 280px;
        padding: 12px;
    }
}

/* Desktop Styles */
@media (max-width: 1199px) and (min-width: 1025px) {
    .what-we-offer-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
    
    .offer-image-container {
        height: 250px;
        padding: 10px;
    }
}

/* Tablet Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .what-we-offer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .offer-image-container {
        height: 280px;
        padding: 12px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .what-we-offer-section {
        padding: 60px 0;
    }
    
    .what-we-offer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .offer-image-container {
        height: 300px;  
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .what-we-offer-section {
        padding: 50px 0;
    }
    
    .offer-image-container {
        height: 220px;
        padding: 8px;
    }
    
    .what-we-offer-grid {
        gap: 15px;
    }
}

/* latest */
/* Catalogs Section */
.catalogs-section {
    padding: 80px 0;
    background: white;
}

.catalogs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.catalog-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.catalog-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: #ff8c42;
}

.catalog-thumbnail {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: #f8f9fa;
}

.catalog-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.catalog-item:hover .catalog-thumbnail img {
    transform: scale(1.1);
}

.catalog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 140, 66, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    color: white;
}

.catalog-item:hover .catalog-overlay {
    opacity: 1;
}

.catalog-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: bounce 2s infinite;
}

.catalog-overlay span {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.catalog-info {
    padding: 25px;
    text-align: center;
}

.catalog-info h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-weight: 700;
}

.catalog-info p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* Catalog Modal */
.catalog-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.catalog-modal-content {
    position: relative;
    margin: 2% auto;
    width: 90%;
    max-width: 1000px;
    height: 90%;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

.catalog-modal-header {
    background: #ff8c42;
    color: white;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.catalog-modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.catalog-modal-close {
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 5px;
    line-height: 1;
}

.catalog-modal-close:hover {
    color: #f0f0f0;
}

.catalog-modal-body {
    height: calc(100% - 80px);
    padding: 0;
}

.catalog-modal-body iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .catalogs-section {
        padding: 60px 80px;
    }
    
    .catalogs-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .catalog-thumbnail {
        height: 400px;
    }
    
    .catalog-info {
        padding: 20px;
    }
    
    .catalog-modal-content {
        width: 95%;
        height: 85%;
        margin: 5% auto;
    }
    
    .catalog-modal-header {
        padding: 15px 20px;
    }
    
    .catalog-modal-header h3 {
        font-size: 1.3rem;
    }
    
    .catalog-modal-close {
        font-size: 24px;
    }
}

@media (max-width: 480px) { 
    .catalogs-grid {
        gap: 20px;
    }
    
    .catalog-thumbnail {
        height: 200px;
    }
    
    .catalog-info {
        padding: 15px;
    }
    
    .catalog-info h3 {
        font-size: 1.2rem;
    }
    
    .catalog-icon {
        font-size: 2.5rem;
    }
    
    .catalog-overlay span {
        font-size: 1rem;
    }
}
/* contact form */
/* Updated Contact Section - Single Column Layout */
.contact-container-updated {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.contact-info-wrapper-updated {
    background: white;
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    width: 100%;
    text-align: center;
}

.contact-info-wrapper-updated h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-info-wrapper-updated > p {
    color: #666;
    margin-bottom: 50px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #ff8c42;
    background: white;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff8c42, #e67e22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
}

.contact-details h4 {
    color: #1a1a1a;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-details p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Mobile Contact Action Buttons - Hidden on Desktop */
.mobile-contact-actions {
    display: none;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.whatsapp-button,
.call-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 18px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.whatsapp-button {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.whatsapp-button:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    color: white;
    text-decoration: none;
}

.call-button {
    background: linear-gradient(135deg, #ff8c42, #e67e22);
    color: white;
}

.call-button:hover {
    background: linear-gradient(135deg, #e67e22, #d35400);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.3);
    color: white;
    text-decoration: none;
}

.whatsapp-button i,
.call-button i {
    font-size: 1.3rem;
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .mobile-contact-actions {
        display: flex;
    }
    
    .contact-info-wrapper-updated {
        padding: 40px 30px;
    }
    
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .contact-item {
        padding: 20px 15px;
    }
    
    .whatsapp-button,
    .call-button {
        padding: 16px 25px;
        font-size: 1rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-info-wrapper-updated {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .contact-info-wrapper-updated h2 {
        font-size: 1.8rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 40px;
    }
    
    .contact-item {
        padding: 25px 20px;
    }
    
    .contact-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .contact-details h4 {
        font-size: 1.1rem;
    }
    
    .mobile-contact-actions {
        gap: 15px;
    }
    
    .whatsapp-button,
    .call-button {
        padding: 15px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .contact-info-wrapper-updated {
        padding: 25px 15px;
        margin: 0 10px;
    }
    
    .contact-info-wrapper-updated h2 {
        font-size: 1.6rem;
    }
    
    .contact-info-wrapper-updated > p {
        font-size: 1rem;
        margin-bottom: 35px;
    }
    
    .contact-item {
        padding: 20px 15px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .contact-details h4 {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .contact-details p {
        font-size: 0.9rem;
    }
    
    .whatsapp-button,
    .call-button {
        padding: 14px 18px;
        font-size: 0.9rem;
        gap: 12px;
    }
    
    .whatsapp-button i,
    .call-button i {
        font-size: 1.1rem;
    }
}
/* Updated Contact Icon Styles - Fixed White Icons */
.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff8c42, #e67e22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    position: relative;
}

.contact-icon i {
    color: white !important;
    font-size: 1.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
}

/* Ensure icons are properly centered on all screen sizes */
@media (max-width: 768px) {
    .contact-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .contact-icon i {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .contact-icon i {
        font-size: 1.2rem;
    }
}
.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.contact-item {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    padding: 32px 24px;
    min-width: 260px;
    max-width: 320px;
    flex: 1 1 260px;
    margin: 12px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.contact-section { 
    background: #f8f9fa;
    padding: 130px 0 80px 0;
}
