/* =================================== */
/* HELCON STEEL - STYLESHEET          */
/* =================================== */

/* ------------------- */
/* 1. ROOT VARIABLES  */
/* ------------------- */
:root {
    --color-primary: #005A9E; /* Helcon Blue */
    --color-accent: #D32F2F;  /* Industrial Red */
    --color-dark: #333333;
    --color-light: #F8F9FA; /* A slightly lighter grey */
    --color-white: #FFFFFF;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;  
    --container-width: 1200px;
    --transition-speed: 0.4s;
    --border-radius: 8px;
}

/* ------------------- */
/* 2. GENERAL STYLES  */
/* ------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-dark);
    line-height: 1.4; /* Your Change */
    background-color: var(--color-white); 
}
.gst-number {
    margin-right: 20px;
    font-weight: 600;
    color: #fff; /* keeps it visible on dark top bar */
    font-size: 14px;
    white-space: nowrap; /* prevents wrapping on small screens */
}

body.no-scroll {
    overflow: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 500;
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--color-accent);
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--color-primary);
}

.gst-number {
    margin-right: 20px;
    font-weight: 600;
    color: #fff; /* or your theme color */
    font-size: 14px;
}






section {
    padding: 80px 0;
    overflow: hidden;
}

.fade-in-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.image-placeholder { 
    background-color: #f0f0f0;
}


/* ------------------- */
/* 3. HEADER & NAV */
/* ------------------- */
.top-bar {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 8px 0;
    font-size: 14px;
}
.top-bar .container {
    display: flex;
    justify-content: space-between; /* Corrected for social icons */
    align-items: center;
}
.top-bar-contact a {
    color: var(--color-white);
    margin-left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color var(--transition-speed);
}
.top-bar-contact a:hover {
    color: var(--color-accent);
}
.top-bar-contact svg {
    width: 16px;
    height: 16px;
}
.top-bar-social {
    display: flex;
    align-items: center;
    gap: 15px;
}
.top-bar-social a {
    color: var(--color-white);
    transition: color var(--transition-speed);
}
.top-bar-social a:hover {
    color: var(--color-accent);
}
.top-bar-social svg {
    width: 18px;
    height: 18px;
}

.main-header {
    background-color: var(--color-white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: padding var(--transition-speed) ease;
}
.main-header.scrolled {
    padding: 8px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img {
    height: auto; 
    width: auto;
    max-height: 85px; /* Added for consistency */
    transition: max-height var(--transition-speed) ease;
}
.main-header.scrolled .logo img {
    max-height: 45px; /* Added for shrinking effect */
}
.header-right {
    display: flex;
    align-items: center;
    gap: 40px;
}
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
}
.main-nav a {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 16px;
    color: var(--color-primary);
    transition: color var(--transition-speed);
    position: relative;
    padding-bottom: 5px;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width var(--transition-speed) ease-in-out;
}
.main-nav a:hover, .main-nav a.active {
    color: var(--color-accent);
}
.main-nav a:hover::after, .main-nav a.active::after {
    width: 100%;
}

/* Modern Button Style */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-weight: 700;
    border-radius: 50px;
    transition: all var(--transition-speed) ease;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
    color: white; /* Your Change */
}
.btn-primary {
    background: linear-gradient(45deg, var(--color-accent), #e55353);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(211, 47, 47, 0.5);
}

/* Mobile Nav Toggle Button */
.mobile-nav-toggle {
    display: none;
    z-index: 1001;
    cursor: pointer;
    background: none;
    border: none;
}
.hamburger-icon {
    width: 30px;
    height: 22px;
    position: relative;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
}
.hamburger-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--color-primary);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}
.hamburger-icon span:nth-child(1) { top: 0px; }
.hamburger-icon span:nth-child(2) { top: 9px; }
.hamburger-icon span:nth-child(3) { top: 18px; }

/* Animation for hamburger to 'X' */
.mobile-nav-toggle.open .hamburger-icon span:nth-child(1) {
    top: 9px;
    transform: rotate(135deg);
}
.mobile-nav-toggle.open .hamburger-icon span:nth-child(2) {
    opacity: 0;
    left: -60px;
}
.mobile-nav-toggle.open .hamburger-icon span:nth-child(3) {
    top: 9px;
    transform: rotate(-135deg);
}

/* ------------------- */
/* 4. HERO SLIDER     */
/* ------------------- */
.hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
    color: var(--color-white);
}
.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    display: flex;
    align-items: center;
}
.hero-slider .slide.active {
    opacity: 1;
}
.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 80%; 
    animation: slideUp 1s ease-out forwards;
}
@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 20px;
    line-height: 1.2;
}
.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}
.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
    margin-left: 15px;
}
.btn-hero {
    background: var(--color-primary);
    box-shadow: 0 4px 15px rgba(0, 90, 158, 0.3);
}
.btn-hero:hover {
    box-shadow: 0 7px 20px rgba(0, 90, 158, 0.5);
}
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}
.slider-nav .dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color var(--transition-speed);
}
.slider-nav .dot.active {
    background-color: var(--color-white);
}

/* ------------------- */
/* 5. TRUST BAR       */
/* ------------------- */
.trust-bar {
    background-color: var(--color-light);
    padding: 20px 0; /* Your Change */
}
.trust-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.trust-logos img {
    height: 80px; /* Your Change */
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all var(--transition-speed);
}
.trust-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* ------------------- */
/* 6. ABOUT SECTION (HOMEPAGE) */
/* ------------------- */
.about-section {
    background-color: var(--color-white);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.about-text h2 {
    text-align: left;
    margin-bottom: 30px;
}
.about-text h2.title-left::after {
    left: 0;
    transform: none;
}

/* Certifications (About page) */
.certifications-section {
    background-color: var(--color-white);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: stretch;
}

.cert-card {
    text-align: center;
    background: var(--color-light);
    border: 1px solid #e6e6e6;
    border-radius: var(--border-radius);
    padding: 30px 24px;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.cert-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

/* Certifications (About page) - Improved visibility */
.cert-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;          /* bigger container */
    height: 160px;
    margin: 0 auto 16px;
    background: #fff;
    border-radius: 12px;   /* changed from circle to rounded square for clarity */
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
    padding: 15px;         /* spacing inside so logos don’t touch edges */
}

.cert-badge img {
    max-width: 100%;       /* allow full logo size */
    max-height: 100%;
    object-fit: contain;   /* keep proportions */
    filter: none;          /* keep original logo colors */
    opacity: 1;
}

.cert-card h3 {
    color: var(--color-primary);
    font-size: 20px;
    margin: 10px 0 6px 0;
}

.cert-card p {
    color: #555;
    margin: 0;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .cert-grid { grid-template-columns: 1fr; }
}


.about-image-container {
    position: relative;
    height: 400px;
}
.about-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    clip-path: polygon(0 15%, 100% 0, 100% 85%, 0% 100%);
}
/* --- New Two Image Section (About Page) --- */
.two-image-section {
    padding-top: 0; /* To make it sit closer to the section above it */
}

.two-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.two-image-grid img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform var(--transition-speed) ease;
}

.two-image-grid img:hover {
    transform: scale(1.03);
}

/* Responsive adjustment for the new section */
@media (max-width: 768px) {
    .two-image-grid {
        grid-template-columns: 1fr;
    }
}
/* ------------------- */
/* 7. PRODUCTS SECTION (HOMEPAGE) */
/* ------------------- */
.products-section {
    background-color: var(--color-light);
}
.products-grid-reimagined {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr)); /* Your Change */
    gap: 60px; 
}
.product-cat-card {
    position: relative;
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    color: var(--color-white);
    display: block;
}
.product-cat-card .card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}
.product-cat-card:hover .card-bg {
    transform: scale(1.1);
}
.product-cat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
    transition: background 0.4s ease;
}
.product-cat-card:hover::after {
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0, 90, 158, 0.5) 100%);
}
.product-cat-card .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 2;
    transform: translateY(40px);
    transition: transform 0.4s ease;
}
.product-cat-card:hover .card-content {
    transform: translateY(0);
}
.product-cat-card .card-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    transition: background 0.4s ease;
}
.product-cat-card:hover .card-icon {
    background: var(--color-accent);
}
.product-cat-card .card-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-white);
}
.product-cat-card h3 {
    color: var(--color-white);
    font-size: 24px;
    margin-bottom: 10px;
}
.product-cat-card .card-cta {
    color: var(--color-white);
    opacity: 0;
    transition: opacity 0.4s ease;
    font-weight: 700;
}
.product-cat-card:hover .card-cta {
    opacity: 1;
}

/* ------------------- */
/* 8. SERVICES SECTION (HOMEPAGE) */
/* ------------------- */
.services-section {
    background-color: var(--color-white);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}
.service-card {
    text-align: center;
    padding: 30px;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.service-card .icon {
    color: var(--color-accent);
    margin-bottom: 20px;
}
.service-card .icon svg {
    width: 50px;
    height: 50px;
}
.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--color-dark);
}

/* ------------------- */
/* 9. INDUSTRIES SECTION (HOMEPAGE) */
/* ------------------- */
.industries-section {
    background-color: var(--color-light);
}
.industries-section .subheading {
    max-width: 700px;
    margin: 0 auto 50px auto;
    text-align: center;
}
.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.industry-card {
    position: relative;
    height: 250px;
    border-radius: var(--border-radius);
    overflow: hidden;
    color: var(--color-white);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 70%);
    z-index: 1;
    transition: background var(--transition-speed);
}
.industry-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed);
}
.industry-card:hover img {
    transform: scale(1.1);
}
.industry-card h3 {
    position: relative;
    z-index: 2;
    font-size: 24px;
    color: var(--color-white);
}

/* ------------------- */
/* 10. FINAL CTA */
/* ------------------- */
.cta-section {
    background: linear-gradient(rgba(0, 90, 158, 0.9), rgba(0, 90, 158, 0.9)), url('images/cta-bg.jpg') no-repeat center center/cover;
    text-align: center;
    color: var(--color-white);
}
.cta-section h2 {
    color: var(--color-white);
    padding-bottom: 0;
    font-size: 42px; /* Your Change */
}
.cta-section h2::after {
    background-color: var(--color-white);
}
.cta-section p {
    max-width: 700px; /* Your Change */
    margin: 10px auto 30px; /* Your Change */
}
.btn-cta {
    font-size: 18px;
    padding: 15px 35px;
}

/* ------------------- */
/* 11. FOOTER */
/* ------------------- */
.site-footer { 
    background-color: var(--color-dark);
    color: #ccc;
    padding: 60px 0 0 0;
    font-size: 15px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 50px;
    padding-bottom: 40px;
}
.footer-grid h4 {
    font-size: 18px;
    color: var(--color-white);
    margin-bottom: 20px;
}
.footer-grid ul {
    list-style: none;
}
.footer-grid li {
    margin-bottom: 10px;
}
.footer-grid a {
    color: #ccc;
    transition: color var(--transition-speed);
}
.footer-grid a:hover {
    color: var(--color-accent);
}
.footer-logo {
    margin-bottom: 20px;
}
.footer-logo img {
    max-width: 300px; /* Replace max-content with a more specific value */
}
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 4px;
    width: 16px;
    height: 16px;
}
.bottom-bar {
    background-color: #000;
    color: #888;
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
}
.bottom-bar .credits {
    color: #aaa;
}

/* ------------------- */
/* 12. INNER PAGE STYLES */
/* ------------------- */ 
.page-header {
    background: linear-gradient(rgba(0, 90, 158, 0.8), rgba(0, 90, 158, 0.8)), url(images/products-banner.png); /* Your Change */
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    text-align: center;
    color: var(--color-white);
}
.page-header h1 {
    font-size: 48px;
    color: var(--color-white);
    margin-bottom: 10px;
}
.page-header p {
    font-size: 18px;
    opacity: 0.9;
}
.products-page-section, .about-page-section, .services-page-section, .contact-page-section {
    background-color: var(--color-white);
}
.products-page-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
}
.products-sidebar {
    border-right: 1px solid #e0e0e0;
    padding-right: 30px;
}
.products-sidebar h4 {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-primary);
}
.products-sidebar ul {
    list-style: none;
}
.products-sidebar ul li a {
    display: block;
    padding: 12px 15px;
    color: var(--color-dark);
    font-weight: 500;
    border-radius: 5px;
    transition: all var(--transition-speed);
}
.products-sidebar ul li a:hover {
    background-color: var(--color-light);
    color: var(--color-primary);
}
.products-sidebar ul li a.active {
    background-color: var(--color-primary);
    color: var(--color-white);
    font-weight: 700;
}
.products-main-content h2 {
    text-align: left;
    font-size: 36px;
    margin-bottom: 10px;
}
.product-category-header {
    margin-bottom: 40px;
}
.tabs-nav {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
}
.tab-link {
    padding: 10px 20px;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: #555;
    border-bottom: 3px solid transparent;
    transition: all var(--transition-speed);
}
.tab-link:hover {
    color: var(--color-primary);
}
.tab-link.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
    font-weight: 700;
}
.tab-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}
.tab-panel.active {
    display: block;
}
.tab-panel h3 {
    font-size: 28px;
    color: var(--color-accent);
    margin-bottom: 15px;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.product-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}
.product-item {
    text-align: center;
}
.product-item img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    border: 1px solid #eee;
    padding: 10px;
    border-radius: var(--border-radius);
    transition: box-shadow var(--transition-speed);
}
.product-item img:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.product-item p {
    margin-top: 10px;
    font-weight: 500;
    color: var(--color-dark);
}
.about-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}
.about-page-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.about-page-text h2 {
    text-align: left;
    margin-bottom: 20px;
}
.mission-vision-section {
  
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.mission-card, .vision-card {
    background: var(--color-light);
    padding: 40px;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--color-primary);
}
.mission-card h3, .vision-card h3 {
    margin-bottom: 15px;
    font-size: 24px;
}
.core-values-section {
    background-color: var(--color-light);
}
.service-detail-item {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}
.service-detail-item.reverse {
    grid-template-columns: 1.5fr 1fr;
}
.service-detail-item.reverse .service-detail-image {
    order: 2;
}
.service-detail-item:last-child {
    margin-bottom: 0;
}
.service-detail-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.service-detail-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
}
.capabilities-list {
    list-style-position: inside;
    margin-bottom: 1rem;
}
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}
.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}
.contact-info-item .icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--color-light);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact-info-item .icon svg {
    width: 24px;
    height: 24px;
}
.contact-info-item h4 {
    margin-bottom: 5px;
    font-size: 20px;
}
.contact-info-item p, .contact-info-item a {
    color: #555;
    font-size: 16px;
}
.contact-form .form-group {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 16px;
}
.contact-form textarea {
    resize: vertical;
}
.map-section {
    padding: 0;
}
.map-section iframe {
    display: block;
}

/* ------------------- */
/* 13. RESPONSIVENESS */
/* ------------------- */
@media (max-width: 992px) {
    .section-title { font-size: 36px; }
    .header-right .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 100vh;
        background-color: var(--color-dark);
        flex-direction: column;
        padding: 100px 40px 40px 40px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    }
    .main-nav.mobile-active { transform: translateX(0); }
    .main-nav ul { flex-direction: column; align-items: flex-start; gap: 0; }
    .main-nav a { display: block; width: 100%; padding: 15px 0; font-size: 20px; color: var(--color-white); }
    .main-nav a:hover { color: var(--color-accent); }
    .main-nav a::after { display: none; }
    .header-right .btn { display: none; }
    .mobile-nav-toggle { display: block; }
    .about-grid, .products-page-layout, .about-page-grid, .mission-vision-section, .contact-page-grid, .service-detail-item, .service-detail-item.reverse { grid-template-columns: 1fr; }
    .service-detail-item.reverse .service-detail-image { order: 0; }
    .services-grid, .industries-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .products-sidebar { border-right: none; border-bottom: 1px solid #e0e0e0; padding-right: 0; padding-bottom: 30px; }
}
@media (max-width: 768px) {
    .top-bar .container { justify-content: center; flex-direction: row; gap: 10px; }
    .hero-content h1 { font-size: 40px; }
    .hero-content p { font-size: 16px; }
    .services-grid, .industries-grid, .footer-grid { grid-template-columns: 1fr; }
    .footer-grid { text-align: center; }
    .footer-contact-item { justify-content: center; }
    .product-gallery { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
    .contact-form .form-group { flex-direction: column; }
    .logo img {height: auto; width: auto; max-height: 65px; transition: max-height var(--transition-speed) ease;
}


}
/* =================================== */
/* 14. STYLE MODIFIERS (ADDITIONS)    */
/* =================================== */ 

/* New modifier class for left-aligned titles */
.section-title.title-left {
    text-align: left;
}

/* This targets the red line ONLY for left-aligned titles */
.section-title.title-left::after {
    left: 0;
    transform: none; /* This removes the centering calculation *
}