/* ============================================
   PRATHAM SOLUTIONS - Hydroflux Inspired Design
   ============================================ */

:root {
    --primary-color: #0066cc;
    --primary-dark: #0052a3;
    --primary-light: #3385d6;
    --secondary-color: #00a8e8;
    --accent-color: #ff6b35;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-white: #ffffff;
    --bg-light: #f5f7fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

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

/* ============================================
   Top Bar
   ============================================ */

.top-bar {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-bar-left {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.top-bar-left a,
.top-bar-right span {
    color: var(--text-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-left a:hover {
    text-decoration: underline;
}

.click-to-call {
    font-weight: 600;
}

/* ============================================
   Header / Navigation
   ============================================ */

.header {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar-logo {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.logo h1 {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
}

.gem-logo-header {
    display: flex;
    align-items: center;
}

.gem-logo-header img {
    height: 45px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo-group {
        gap: 15px;
    }
    
    .navbar-logo {
        height: 40px;
        max-width: 150px;
    }
    
    .gem-logo-header img {
        height: 35px;
        max-width: 140px;
    }
    
    .logo h1 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .logo-group {
        gap: 10px;
    }
    
    .logo h1 {
        display: none;
    }
    
    .navbar-logo {
        height: 35px;
        max-width: 120px;
    }
    
    .gem-logo-header img {
        height: 30px;
        max-width: 100px;
    }
}

.gem-logo-header {
    display: flex;
    align-items: center;
    /* margin-left: 20px; */
}

.gem-logo-header img {
    height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .gem-logo-header {
        display: none;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s;
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Background properties - images set via inline styles in HTML */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Fallback gradient if image doesn't load */
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* Removed this rule - it was preventing images from showing */

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Blue gradient overlay on top of background image - reduced opacity to see images better */
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.5) 0%, rgba(0, 82, 163, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--text-white);
    max-width: 800px;
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-white);
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-cta {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-white);
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

.hero-cta:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--text-white);
    width: 30px;
    border-radius: 6px;
}

/* ============================================
   Section Headers
   ============================================ */

.section-header {
    margin-bottom: 50px;
}

.section-header.center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-description {
    font-size: 16px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   About Section
   ============================================ */

.about {
    padding: 80px 0;
    background: var(--bg-white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-block {
    margin-bottom: 40px;
}

.about-block h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.about-block p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

/* GeM Badge Section */
.gem-badge-section {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(0, 168, 232, 0.05) 100%);
    border-radius: 15px;
    border: 2px solid rgba(0, 102, 204, 0.1);
}

.gem-badge-content {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.gem-badge-logo {
    flex-shrink: 0;
}

.gem-badge-logo img {
    width: 150px;
    height: auto;
    max-height: 120px;
    object-fit: contain;
}

.gem-badge-text {
    flex: 1;
}

.gem-badge-text h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.gem-badge-text p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .gem-badge-section {
        padding: 30px 20px;
        margin-top: 40px;
    }
    
    .gem-badge-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .gem-badge-logo img {
        width: 120px;
    }
    
    .gem-badge-text h3 {
        font-size: 20px;
    }
    
    .gem-badge-text p {
        font-size: 15px;
    }
}

/* ============================================
   Products Section
   ============================================ */

.projects {
    padding: 80px 0;
    background: var(--bg-white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 15px;
    text-align: center;
    transition: all 0.3s;
}

.project-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.project-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 12px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

/* ============================================
   Key Clients & Partner Brands
   ============================================ */

.clients,
.partners {
    padding: 80px 0 40px;
    background: var(--bg-light);
}

.clients + .partners {
    padding-top: 40px;
}

.clients-grid,
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.client-card,
.partner-card {
    background: var(--bg-white);
    border-radius: 8px;
    padding: 15px 12px;
    box-shadow: var(--shadow);
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.client-logo,
.partner-logo {
    height: 60px;
    margin-bottom: 10px;
    border-radius: 6px;
    background: var(--bg-white);
}

.client-logo img,
.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.partner-card span {
    display: block;
}

/* Material handling dustbins section */
.material-dustbins {
    padding: 60px 0;
    background: var(--bg-white);
}

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

.dustbin-card {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 16px;
    box-shadow: var(--shadow);
}

.dustbin-image {
    width: 100%;
    height: 230px;
    border-radius: 8px;
    background: var(--bg-white);
    margin-bottom: 12px;
}

.dustbin-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.dustbin-caption {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

@media (max-width: 992px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
    .project-image {
        height: 220px;
    }
}

.products {
    padding: 80px 0;
    background: var(--bg-light);
}

.products-main-heading {
    text-align: center;
    margin-bottom: 40px;
}

.products-main-heading span {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    display: inline-block;
}

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

.product-card {
    background: var(--bg-white);
    padding: 20px;
    border: 3px solid var(--primary-color);
    border-radius: 8px;
    min-height: 246px;
    transition: all 0.3s;
    position: relative;
}

.product-card:hover {
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.15);
    transform: translateY(-3px);
}

.product-card-mobile {
    margin-bottom: 15px;
}

.product-card-mobile h5 {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 600;
}

.product-card-mobile h5 a {
    text-decoration: none;
    transition: all 0.3s;
}

.product-card-mobile h5 a:hover {
    text-decoration: underline;
}

.product-card-content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
}

.product-card-left {
    flex: 1;
    min-width: 0;
    padding-right: 0;
    max-width: 100%;
    width: 100%;
    text-align: left;
}

.product-card-left p {
    margin: 0 0 15px 0;
    line-height: 1.8;
}

.product-card-left p a {
    color: var(--text-light);
    text-decoration: none;
    display: block;
    transition: all 0.3s;
    font-size: 14px;
}

.product-card-left p a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.product-list {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.8;
    text-align: left;
    width: 100%;
}

.product-list li {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 10px;
    padding-left: 0;
    display: block;
    text-align: left;
}

.product-list li:last-child {
    margin-bottom: 0;
}

.view-all-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
}

.view-all-link:hover {
    text-decoration: underline;
    color: var(--secondary-color);
}

.product-card-right {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.product-card-right img {
    width: 100% !important;
    max-width: 280px !important;
    height: auto !important;
    max-height: 240px !important;
    object-fit: contain;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover .product-card-right img {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.2);
}

.clearfix {
    clear: both;
}

.products-footer {
    text-align: center;
    margin-top: 30px;
}

.btn-explore {
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all 0.3s;
    background: var(--primary-color);
    color: var(--text-white);
    text-decoration: none;
    display: inline-block;
}

.btn-explore:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
    background: var(--secondary-color);
}

.hidden-xs {
    display: block;
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 991px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   Environmental Goals Section
   ============================================ */

.environmental-goals {
    padding: 80px 0;
    background: var(--bg-white);
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.goal-card {
    text-align: center;
    padding: 30px 20px;
}

.goal-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 28px;
}

.goal-card h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.goal-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   Scrolling Logos Section
   ============================================ */

.scrolling-logos {
    padding: 80px 0;
    background: var(--bg-light);
    overflow: hidden;
}

.logos-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
}

.logos-track {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: scroll-left 30s linear infinite;
    width: fit-content;
}

.logos-track:hover {
    animation-play-state: paused;
}

.logo-item {
    flex-shrink: 0;
    width: 150px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

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

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0%);
    opacity: 1;
    transition: all 0.3s;
    display: block;
}

.logo-item img[src$=".svg"] {
    width: 100%;
    height: 100%;
}

.logo-item:hover img {
    opacity: 0.9;
    transform: scale(1.05);
}

.logo-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
}

.logo-fallback i {
    font-size: 32px;
}

.logo-fallback span {
    font-size: 14px;
    font-weight: 600;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ============================================
   Industries Section
   ============================================ */

.industries {
    padding: 80px 0;
    background: var(--bg-light);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.industry-card {
    background: var(--bg-white);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    cursor: pointer;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    background: var(--primary-color);
    color: var(--text-white);
}

.industry-card:hover .industry-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-white);
}

.industry-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--primary-color);
    font-size: 24px;
    transition: all 0.3s;
}

.industry-card h3 {
    font-size: 16px;
    color: var(--text-dark);
    transition: color 0.3s;
}

.industry-card:hover h3 {
    color: var(--text-white);
}

/* ============================================
   Stats Section
   ============================================ */

.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 18px;
    opacity: 0.9;
}

/* ============================================
   Services Section
   ============================================ */

.services {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.service-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border-top: 4px solid var(--primary-color);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-size: 32px;
}

.service-title {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   Testimonials Section
   ============================================ */

.testimonials {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.testimonial-card {
    background: var(--bg-white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    font-style: italic;
    position: relative;
    padding-left: 25px;
}

.testimonial-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 48px;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-author {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    font-size: 16px;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 14px;
}

/* ============================================
   Get Solution Section
   ============================================ */

.get-solution {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    text-align: center;
    color: var(--text-white);
}

.get-solution h2 {
    font-size: 36px;
    color: var(--text-white);
}

/* ============================================
   Contact Section
   ============================================ */

.contact {
    padding: 80px 0;
    background: var(--bg-white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info .section-header {
    margin-bottom: 30px;
}

.contact-logo-wrapper {
    text-align: center;
    margin-bottom: 20px;
}

.contact-logo {
    max-width: 250px;
    height: auto;
    display: inline-block;
}

.email-with-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.mail-logo {
    width: 60px;
    height: auto;
    max-height: 60px;
    object-fit: contain;
}

.footer-email-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-mail-logo {
    width: 40px;
    height: auto;
    max-height: 40px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .contact-logo {
        max-width: 200px;
    }
    
    .mail-logo {
        width: 50px;
    }
    
    .footer-mail-logo {
        width: 35px;
    }
}

.contact-products {
    margin: 30px 0;
}

.contact-products h3,
.contact-details h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-products ul {
    list-style: none;
}

.contact-products li {
    padding: 8px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 20px;
}

.contact-products li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.contact-details p {
    margin-bottom: 15px;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-details i {
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-details a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: var(--primary-color);
}

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
}

.contact-form-wrapper h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: #1a1a1a;
    color: var(--text-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,
.footer-section h4 {
    color: var(--text-white);
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section ul li a:hover {
    color: var(--text-white);
}

.footer-associations {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.footer-gem-logo {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s;
}

.footer-gem-logo:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.footer-gem-logo img {
    height: 40px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

.footer-gem-logo span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .footer-gem-logo {
        flex-direction: column;
        gap: 10px;
        padding: 15px 20px;
    }
    
    .footer-gem-logo img {
        height: 35px;
        max-width: 120px;
    }
    
    .footer-gem-logo span {
        font-size: 12px;
    }
}

/* ============================================
   WhatsApp Float Button
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--bg-white);
        flex-direction: column;
        padding: 30px 20px;
        box-shadow: var(--shadow);
        transition: left 0.3s;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

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

    .products-main-heading span {
        font-size: 28px;
    }

    .product-card {
        min-height: auto;
        padding: 15px;
    }

    .product-card-content {
        flex-direction: column;
    }

    .product-card-left {
        width: 100%;
    }

    .hidden-xs {
        display: none !important;
    }

    .product-card-right {
        width: 100%;
        justify-content: flex-start;
        margin-top: 10px;
    }

    .product-card-right img {
        max-width: 80px;
        height: auto;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

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

    .top-bar-content {
        flex-direction: column;
        text-align: center;
    }

    .top-bar-left {
        flex-direction: column;
        gap: 10px;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .logo-item {
        width: 120px;
        height: 80px;
        padding: 15px;
    }

    .logos-track {
        gap: 40px;
        animation-duration: 20s;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 500px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

