/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0066cc;
    --secondary-color: #0052a3;
    --accent-color: #00a8e8;
    --dark-color: #1a1a1a;
    --light-color: #f5f5f5;
    --gray-color: #666;
    --text-dark: #333;
    --text-light: #666;
    --border-color: #ddd;
    --success-color: #28a745;
    --warning-color: #ff9800;
    --danger-color: #dc3545;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 5px rgba(0, 102, 204, 0.2));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 0.3rem;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline, .btn-large {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* ===== BUY/SELL FORM SECTION =====
   
   SECTION PURPOSE:
   Allows users to quickly submit buy or sell requests with essential details
   Features toggle between Buy and Sell modes with corresponding form data
   
   DESIGN STRATEGY:
   - Two-column responsive layout (left content, right form)
   - Left side: Benefits and features overview
   - Right side: Clean card-based form design
   - Buy/Sell toggle buttons at top for mode switching
   - Organized form groups with icons
   - Mobile number input with country code selector
   - Gradient submit button for visual appeal
   
   CONVERSION FOCUS:
   - Form is prominently placed after hero section
   - Benefits on left side provide social proof
   - Clear visual hierarchy with labeled fields
   - Icon indicators for better UX
   - Easy-to-use toggle for quick mode switching
===== */

.buy-sell-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

/* TWO COLUMN WRAPPER LAYOUT
   
   display: grid
   - Creates side-by-side layout for desktop
   
   grid-template-columns: 1fr 1fr
   - Equal width columns for balanced design
   
   gap: 3rem
   - Spacing between left content and right form
   
   align-items: start
   - Aligns items to top of containers
   - Prevents vertical centering of form
*/
.buy-sell-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* LEFT SIDE: BENEFITS CONTENT */
.buy-sell-content h2 {
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.buy-sell-content .subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* BENEFITS LIST STYLING
   
   Container for individual benefit items
   Each item includes icon, title, and description
*/
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Individual benefit item styling */
.benefit-item {
    display: flex;
    gap: 1.5rem;
}

/* Benefit icon styling
   
   Circle background with icon
   Provides visual interest and quick scanning
*/
.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-text h4 {
    color: var(--dark-color);
    font-size: 1rem;
    margin: 0 0 0.3rem 0;
    font-weight: 600;
}

.benefit-text p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Form card container styling */
.form-card {
    max-width: 100%;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 2.5rem;
    overflow: hidden;
}

/* FORM TOGGLE BUTTONS
   
   Allows users to switch between Buy and Sell modes
   Only one button can be active at a time
*/
.form-toggle {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    background: #f5f5f5;
    padding: 0.5rem;
    border-radius: 50px;
}

.toggle-btn {
    flex: 1;
    padding: 0.75rem 1.2rem;
    border: 2px solid transparent;
    background: transparent;
    color: var(--text-light);
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Inactive toggle button styling */
.toggle-btn:hover {
    background: white;
}

/* Active toggle button styling
   
   Shows which mode is currently selected
   Uses primary color for visual emphasis
*/
.toggle-btn.active {
    background: white;
    color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.15);
}

/* Buy toggle button specific styling */
.toggle-btn.buy-btn.active {
    border-color: var(--primary-color);
}

/* Sell toggle button specific styling */
.toggle-btn.sell-btn.active {
    border-color: #e94b8d;
    color: #e94b8d;
}

/* FORM GROUP STYLING
   
   Container for each form field with label
   Provides consistent spacing and organization
*/
.form-group {
    margin-bottom: 1.2rem;
}

/* Form field labels
   
   Clear, bold labels for each input field
   Helps users understand what information is needed
*/
.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.9rem;
}

/* SELECT/DROPDOWN FIELD STYLING
   
   Used for product selection
*/
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: white;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5em;
    padding-right: 2.5rem;
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

/* ERROR MESSAGE STYLING
   
   Displayed when form validation fails
   Example: "Please select product"
*/
.error-message {
    display: block;
    color: #e94b8d;
    font-size: 0.75rem;
    margin-top: 0.2rem;
}

/* INPUT WITH ICON WRAPPER
   
   Creates styled input fields with left-aligned icons
   Provides visual cues for field purpose
*/
.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon i {
    position: absolute;
    left: 1rem;
    color: var(--text-light);
    font-size: 0.95rem;
    pointer-events: none;
}

/* TEXT INPUT STYLING
   
   Standard inputs with icon support
   - Padding includes space for left icon
   - Smooth border color transition on focus
*/
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"] {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: #f9f9f9;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input::placeholder {
    color: #ccc;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

/* MOBILE INPUT GROUP
   
   Special styling for phone number input
   Combines country code selector with number input
*/
.mobile-input-group {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

/* Country code selector styling */
.country-code select {
    padding: 0.75rem 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: #f9f9f9;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dark);
    min-width: 85px;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.country-code select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
}

/* Mobile number input styling */
.mobile-input-group input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: #f9f9f9;
    transition: all 0.3s;
}

.mobile-input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
}

/* SUBMIT BUTTON STYLING
   
   Gradient background from pink to orange
   Creates visual appeal and encourages action
   
   background: linear-gradient(135deg, #e94b8d 0%, #f97a4a 100%)
   - Pink (#e94b8d) on left
   - Orange (#f97a4a) on right
   - Diagonal gradient for modern look
*/
.btn-submit {
    width: 100%;
    padding: 0.95rem;
    background: linear-gradient(135deg, #e94b8d 0%, #f97a4a 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0.8rem;
    box-shadow: 0 4px 15px rgba(233, 75, 141, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 75, 141, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Responsive styling for buy/sell section */
@media (max-width: 1024px) {
    .buy-sell-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-card {
        padding: 2rem;
    }

    .buy-sell-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .buy-sell-section {
        padding: 2rem 1rem;
    }

    .buy-sell-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .form-card {
        padding: 1.5rem;
    }

    .buy-sell-content h2 {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }

    .buy-sell-content .subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .benefits-list {
        gap: 1.2rem;
    }

    .benefit-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .benefit-text h4 {
        font-size: 0.95rem;
    }

    .benefit-text p {
        font-size: 0.85rem;
    }

    .toggle-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-group label {
        font-size: 0.85rem;
    }

    .form-group select,
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group input[type="number"] {
        padding: 0.65rem 0.8rem 0.65rem 2.3rem;
        font-size: 0.9rem;
    }

    .mobile-input-group {
        gap: 0.3rem;
    }

    .country-code select {
        min-width: 75px;
        padding: 0.65rem 0.5rem;
        font-size: 0.85rem;
    }

    .mobile-input-group input {
        padding: 0.65rem 0.8rem;
    }

    .btn-submit {
        padding: 0.85rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .buy-sell-section {
        padding: 1.5rem;
    }

    .form-card {
        padding: 1rem;
    }

    .buy-sell-content h2 {
        font-size: 1.4rem;
    }

    .buy-sell-content .subtitle {
        font-size: 0.9rem;
    }

    .benefits-list {
        gap: 1rem;
    }

    .benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .benefit-item {
        gap: 1rem;
    }

    .benefit-text h4 {
        font-size: 0.9rem;
    }

    .benefit-text p {
        font-size: 0.8rem;
    }

    .form-toggle {
        gap: 0.5rem;
        margin-bottom: 1.2rem;
    }

    .toggle-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
        gap: 0.3rem;
    }

    .toggle-btn i {
        display: none;
    }

    .form-group label {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }

    .form-group select,
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group input[type="number"] {
        padding: 0.6rem 0.8rem 0.6rem 2.2rem;
        font-size: 0.85rem;
    }

    .input-with-icon i {
        left: 0.8rem;
        font-size: 0.85rem;
    }

    .country-code select {
        min-width: 70px;
        padding: 0.6rem 0.5rem;
        font-size: 0.8rem;
    }

    .mobile-input-group input {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }

    .btn-submit {
        padding: 0.75rem;
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 600px;
}

.hero-content {
    padding: 2rem;
}

.hero h1 {
    font-size: 3rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-search {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    background: white;
    padding: 0.5rem;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.hero-search input {
    flex: 1;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    outline: none;
}

.hero-products {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.product-chip {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.metal-graphic {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #0066cc, #00a8e8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 5rem;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Products Section */
.products {
    padding: 5rem 2rem;
    background: #f9f9f9;
}

.products h2, .services h2, .why-us h2, .industries h2, .insights h2, .testimonials h2 {
    font-size: 2.5rem;
    text-align: center;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.product-card, .service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.product-card:hover, .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.product-icon, .service-icon, .feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.product-card h3, .service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.product-card p, .service-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.link-arrow {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.link-arrow:hover {
    gap: 1rem;
}

.view-more {
    text-align: center;
}

/* Services Section */
.services {
    padding: 5rem 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* Insights Section */
.insights {
    padding: 5rem 2rem;
    background: #f9f9f9;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.insight-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-left: 4px solid var(--primary-color);
}

.insight-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.insight-card h4 {
    margin: 0;
    color: var(--dark-color);
}

.badge {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge.primary {
    background: #e3f2fd;
    color: var(--primary-color);
}

.badge.secondary {
    background: #f3e5f5;
    color: #7b1fa2;
}

.grade {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem 0;
}

.amount {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--dark-color);
}

.change {
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
}

.change.positive {
    color: var(--success-color);
    background: #d4edda;
}

.change.negative {
    color: var(--danger-color);
    background: #f8d7da;
}

.change.neutral {
    color: var(--text-light);
    background: #f0f0f0;
}

.location {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Why Us Section */
.why-us {
    padding: 5rem 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature {
    text-align: center;
    padding: 2rem;
}

.feature h3 {
    font-size: 1.2rem;
    margin: 1rem 0;
    color: var(--dark-color);
}

.stats-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 3rem 2rem;
    border-radius: 10px;
    text-align: center;
}

.stats-section h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 10px;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Industries Section */
.industries {
    padding: 5rem 2rem;
    background: #f9f9f9;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.industry-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    color: var(--primary-color);
}

.industry-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.industry-card h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 5rem 2rem;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--primary-color);
}

.cta-buttons .btn-primary:hover {
    background: #f0f0f0;
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 2rem;
    background: #f9f9f9;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.rating {
    color: #ffc107;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-text {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.author-name {
    margin: 0;
    font-weight: 600;
    color: var(--dark-color);
}

.author-role {
    margin: 0.25rem 0 0 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Products Page Styles */
.products-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    margin-top: 60px;
}

.products-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.products-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.products-search {
    display: flex;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    max-width: 600px;
    margin: 0 auto;
}

.products-search input {
    flex: 1;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    outline: none;
    color: var(--text-dark);
}

.products-search input::placeholder {
    color: #999;
}

/* Filter Section */
.products-filter-section {
    padding: 2rem;
    background: white;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 70px;
    z-index: 100;
}

.filter-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.filter-wrapper h3 {
    color: var(--dark-color);
    font-size: 1.1rem;
    margin: 0;
    white-space: nowrap;
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.2rem;
    border: 2px solid var(--border-color);
    background: white;
    color: var(--text-dark);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Products Main Section */
.products-main {
    padding: 3rem 2rem;
    min-height: 600px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.product-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
}

.product-icon {
    font-size: 3rem;
    color: var(--primary-color);
    padding: 2rem 1.5rem 1rem;
    text-align: center;
}

.product-card h3 {
    padding: 0 1.5rem;
    color: var(--dark-color);
    font-size: 1.3rem;
    margin: 0 0 0.5rem 0;
}

.product-card > p {
    padding: 0 1.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0 0 1.5rem 0;
    line-height: 1.5;
    flex-grow: 1;
}

.product-specs {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
}

.spec {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.spec i {
    color: var(--success-color);
    font-size: 0.85rem;
}

.product-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-range {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.product-card .link-arrow {
    font-size: 0.9rem;
}

/* Products CTA */
.products-cta {
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 2rem;
}

.products-cta h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.products-cta p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.products-cta .btn-primary,
.products-cta .btn-secondary {
    margin: 0 0.5rem;
}

/* Benefits Section */
.products-benefits {
    padding: 5rem 2rem;
    background: #f9f9f9;
}

.products-benefits h2 {
    font-size: 2.5rem;
    text-align: center;
    color: var(--dark-color);
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-card h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsive - Products Page */
@media (max-width: 768px) {
    .products-hero {
        padding: 2.5rem 1rem;
        margin-top: 60px;
    }

    .products-hero h1 {
        font-size: 1.8rem;
    }

    .products-search {
        flex-direction: column;
        border-radius: 10px;
    }

    .products-search input {
        width: 100%;
    }

    .products-filter-section {
        padding: 1.5rem;
        position: relative;
        top: auto;
    }

    .filter-wrapper {
        flex-direction: column;
        gap: 1rem;
    }

    .filter-wrapper h3 {
        align-self: flex-start;
    }

    .filter-buttons {
        width: 100%;
    }

    .filter-btn {
        flex: 1;
        min-width: calc(50% - 0.5rem);
    }

    .products-main {
        padding: 2rem 1rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .products-cta {
        padding: 2rem;
    }

    .products-cta h2 {
        font-size: 1.5rem;
    }

    .products-cta .btn-primary,
    .products-cta .btn-secondary {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }

    .products-benefits {
        padding: 3rem 1rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .products-hero h1 {
        font-size: 1.4rem;
    }

    .products-hero p {
        font-size: 1rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .product-card h3 {
        font-size: 1.1rem;
    }

    .product-card > p {
        font-size: 0.85rem;
    }

    .product-specs {
        gap: 0.4rem;
    }

    .spec {
        font-size: 0.8rem;
    }

    .price-range {
        font-size: 0.95rem;
    }

    .link-arrow {
        font-size: 0.8rem;
    }
}

/* Services Page Styles */
.services-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 5rem 2rem;
    text-align: center;
    margin-top: 60px;
}

.services-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.services-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.services-hero .btn-large {
    background: white;
    color: var(--primary-color);
}

.services-hero .btn-large:hover {
    background: #f0f0f0;
}

/* Main Services Section */
.services-main {
    padding: 5rem 2rem;
}

.services-main h2 {
    font-size: 2.5rem;
    text-align: center;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: white;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
}

.service-card > p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    margin: 1.5rem 0;
    flex-grow: 1;
}

.service-features h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.service-features i {
    color: var(--success-color);
    font-size: 0.9rem;
}

.service-card .btn-outline {
    align-self: flex-start;
    margin-top: 1rem;
}

/* Service Process Section */
.services-process {
    padding: 5rem 2rem;
    background: #f9f9f9;
}

.services-process h2 {
    font-size: 2.5rem;
    text-align: center;
    color: var(--dark-color);
    margin-bottom: 3rem;
}

.process-timeline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    min-width: 200px;
    flex-direction: column;
    text-align: center;
    transition: all 0.3s;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.step-content h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin: 0.5rem 0 0.3rem 0;
}

.step-content p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
}

.process-arrow {
    color: var(--primary-color);
    font-size: 1.5rem;
    display: none;
}

/* Show arrows on larger screens */
@media (min-width: 1024px) {
    .process-timeline {
        flex-wrap: nowrap;
    }

    .process-arrow {
        display: flex;
    }
}

/* ===== PRICING SECTION =====
   
   SECTION PURPOSE:
   Displays three pricing tiers (Basic, Professional, Enterprise) in a visually appealing card layout.
   Uses visual hierarchy and styling to highlight the recommended "Professional" plan.
   
   DESIGN STRATEGY:
   - Three-column responsive grid for desktop (single column on mobile)
   - Professional plan is featured with border highlight and slight scaling
   - Each card uses hover animations for interactivity
   - Features are listed with checkmarks for included items
   
   CONVERSION OPTIMIZATION:
   - Professional plan (middle tier) is scaled up and highlighted to encourage selection
   - Each plan has a clear call-to-action button with different styles
   - Price is prominently displayed in primary color
===== */

/* Container for the entire pricing section */
.services-pricing {
    padding: 5rem 2rem;
}

/* Main heading for pricing section */
.services-pricing h2 {
    font-size: 2.5rem;
    text-align: center;
    color: var(--dark-color);
    margin-bottom: 3rem;
}

/* CSS GRID LAYOUT FOR PRICING CARDS
   
   grid-template-columns: repeat(auto-fit, minmax(280px, 1fr))
   - "auto-fit": Automatically fits cards into available space
   - "minmax(280px, 1fr)": Each card has minimum width of 280px, grows to fill space
   - This creates responsive layout: 1 column on mobile, 2 on tablet, 3 on desktop
   
   gap: 2rem
   - Spacing between cards for visual separation
   
   margin-top: 3rem
   - Top spacing from subtitle to cards
*/
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* BASIC PRICING CARD STYLES
   
   Default styling applied to all pricing cards (Basic, Professional, Enterprise)
   Individual cards override with specific classes (.featured)
*/
.pricing-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;  /* Smooth animation for hover state */
    position: relative;    /* Required for positioned badge */
    border: 2px solid transparent;  /* Transparent border for all cards */
}

/* CARD HOVER EFFECT
   Provides visual feedback when user hovers over a pricing card
   - Lifts card up with translateY
   - Increases shadow for depth effect
*/
.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* FEATURED CARD STYLING (Professional Plan)
   
   This class is applied to the Professional plan to visually distinguish it
   as the recommended/most popular option
   
   border-color: var(--primary-color)
   - Changes border from transparent to primary blue color
   - Creates visual emphasis around the card
   
   transform: scale(1.05)
   - Enlarges the card to 105% of its size
   - Makes it stand out from other options
   - Works with hover:transform to create smooth animations
   
   z-index: 10
   - Places featured card above others (in case of visual overlap)
*/
.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    z-index: 10;
}

/* FEATURED BADGE STYLING
   
   The "MOST POPULAR" badge positioned above the Professional card
   
   position: absolute; top: -15px; left: 50%; transform: translateX(-50%)
   - Removes badge from document flow
   - Positions at top of card (-15px extends outside card)
   - Centers horizontally using left: 50% + translateX(-50%)
   
   This creates the appearance of the badge "floating" above the card
*/
.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Plan name/title styling */
.pricing-card h4 {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

/* PRICE DISPLAY STYLING
   
   Shows the plan price prominently
   Uses primary color to draw attention
   
   font-size: 2rem
   - Large size for visibility
   - font-weight: bold
   - Creates impact and draws eye
*/
.price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Billing period text (e.g., "/month") attached to price
   
   Smaller font size and lighter color to distinguish from main price
   Example: ₹5,000<span>/month</span>
*/
.price span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Descriptive text below price (e.g., "For growing businesses")
   
   Helps users understand which segment the plan targets
*/
.price-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* PRICING FEATURES LIST STYLING
   
   List of included features for each pricing tier
   
   border-top & border-bottom: 1px solid #f0f0f0
   - Visually separates features section from other content
   - Subtle divider lines without being obtrusive
   
   padding: 1.5rem 0
   - Vertical padding provides spacing around features
   
   text-align: left
   - Features are left-aligned for readability
   - Contrasts with center-aligned card content above/below
*/
.pricing-features {
    list-style: none;
    padding: 1.5rem 0;
    text-align: left;
    margin: 1.5rem 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

/* Individual feature list items
   
   display: flex
   - Aligns icon and text horizontally
   
   align-items: center
   - Vertically centers icon and text
   
   gap: 1rem
   - Space between checkmark icon and feature text
*/
.pricing-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Feature checkmark icons styling
   
   width: 20px
   - Fixed width ensures consistent alignment
   
   color: var(--success-color)
   - Green color indicates included features
   - Uses CSS variable for consistency
*/
.pricing-features i {
    width: 20px;
    color: var(--success-color);
}

/* Styling for "unavailable feature" indicators
   
   Used for features marked as not included in a plan
   Example: <i class="fas fa-times"></i>
   
   color: #ccc
   - Light gray color indicates feature is not available
   - Distinguishes from available features (green)
*/
.pricing-features .fa-times {
    color: #ccc;
}

/* CTA Button styling within pricing cards
   
   width: 100%
   - Button spans full width of card
   - Creates larger clickable target
   
   margin-top: 1.5rem
   - Spacing from features list
   - Ensures button is visually separated
   
   Uses .btn-primary or .btn-outline classes defined elsewhere
   for different visual styles across tiers
*/
.pricing-card button {
    width: 100%;
    margin-top: 1.5rem;
}

/* Benefits Section */
.services-benefits {
    padding: 5rem 2rem;
    background: #f9f9f9;
}

.services-benefits h2 {
    font-size: 2.5rem;
    text-align: center;
    color: var(--dark-color);
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-item h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
}

.benefit-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* CTA Section */
.services-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.services-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.services-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.services-cta .btn-large {
    background: white;
    color: var(--primary-color);
}

.services-cta .btn-large:hover {
    background: #f0f0f0;
}

/* Responsive - Services Page */
@media (max-width: 768px) {
    .services-hero {
        padding: 2.5rem 1rem;
        margin-top: 60px;
    }

    .services-hero h1 {
        font-size: 1.8rem;
    }

    .services-main {
        padding: 3rem 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-process {
        padding: 3rem 1rem;
    }

    .process-timeline {
        flex-direction: column;
    }

    .process-arrow {
        display: block !important;
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }

    .services-pricing {
        padding: 3rem 1rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .services-benefits {
        padding: 3rem 1rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .services-cta {
        padding: 2.5rem 1rem;
    }

    .services-cta h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 1.4rem;
    }

    .services-main h2,
    .services-process h2,
    .services-pricing h2,
    .services-benefits h2 {
        font-size: 1.6rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        font-size: 2.2rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .pricing-card h4 {
        font-size: 1.1rem;
    }

    .price {
        font-size: 1.6rem;
    }

    .benefit-icon {
        font-size: 2rem;
    }

    .benefit-item h4 {
        font-size: 0.95rem;
    }
}

/* Services Page */
.contact-section {
    padding: 5rem 2rem;
    background: #f9f9f9;
}

.contact-section h2 {
    font-size: 2.5rem;
    text-align: center;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form .btn-primary {
    margin-top: 0.5rem;
    align-self: flex-start;
}

.contact-info-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.info-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info-card h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.contact-info-card p {
    color: var(--text-light);
    margin: 0.25rem 0;
}

.contact-info-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.contact-info-card a:hover {
    color: var(--secondary-color);
}

.small-text {
    font-size: 0.85rem !important;
    color: #999 !important;
}

/* Responsive - Contact Section */
@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 1rem;
    }

    .contact-section h2 {
        font-size: 1.8rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-container {
        padding: 1.5rem;
    }

    .contact-info-container {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4, .footer-section h5 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: #bbb;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-bottom ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.footer-bottom a {
    color: #bbb;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .nav-links {
        display: none;
    }

    .nav-buttons {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-image {
        order: -1;
    }

    .metal-graphic {
        width: 200px;
        height: 200px;
        font-size: 3rem;
    }

    .hero-search {
        flex-direction: column;
        border-radius: 10px;
    }

    .hero-search input {
        width: 100%;
    }

    .products, .services, .why-us, .industries, .insights, .testimonials {
        padding: 3rem 1rem;
    }

    .products h2, .services h2, .why-us h2, .industries h2, .insights h2, .testimonials h2 {
        font-size: 1.8rem;
    }

    .products-grid, .services-grid, .industries-grid, .insights-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-section {
        padding: 3rem 1rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom ul {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .product-chip {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .hero-products {
        gap: 0.5rem;
    }

    .btn-primary, .btn-secondary {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons button {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}
.logo{
    display: flex;
    align-items: center;
}

.logo img{
    height: 55px;     /* adjust size you want */
    width: auto;
    object-fit: contain;
}



