/* Base Styles */
:root {
--primary-color: #0d47a1;
--secondary-color: #e65100;
--dark-color: #333;
--light-color: #f4f4f4;
--success-color: #28a745;
--danger-color: #dc3545;
--max-width: 1200px;
}
body {
margin: 0;
padding: 0;
font-family: 'Roboto', Arial, sans-serif;
line-height: 1.6;
color: var(--dark-color);
background-color: #fff;
}
.container {
width: 90%;
max-width: var(--max-width);
margin: 0 auto;
padding: 0 15px;
}
a {
text-decoration: none;
color: var(--primary-color);
}
ul {
list-style: none;
padding: 0;
margin: 0;
}
h1, h2, h3, h4, h5, h6 {
font-weight: 700;
line-height: 1.2;
margin: 10px 0;
color: var(--dark-color);
}
p {
margin: 10px 0;
color: #555;
}
img {
max-width: 100%;
}
.text-center {
text-align: center;
}
.btn {
display: inline-block;
padding: 10px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
transition: all 0.3s ease;
font-weight: 500;
}
.btn-primary {
background-color: var(--primary-color);
color: #fff;
}
.btn-primary:hover {
background-color: #0a3d8f;
}
.btn-secondary {
background-color: var(--secondary-color);
color: #fff;
}
.btn-secondary:hover {
background-color: #d04d00;
}
.btn-light {
background-color: #fff;
color: var(--dark-color);
border: 1px solid #ddd;
}
.btn-light:hover {
background-color: #f4f4f4;
}
.btn-sm {
padding: 6px 12px;
font-size: 0.9em;
}
/* Header Styles */
.main-header {
background-color: #fff;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
position: sticky;
top: 0;
z-index: 100;
}
.main-header .container {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px;
}
.logo h1 {
margin: 0;
font-size: 1.8rem;
color: var(--primary-color);
}
.mobile-nav-toggle {
display: none;
background: transparent;
border: none;
font-size: 1.5rem;
cursor: pointer;
color: var(--primary-color);
z-index: 101;
}
.main-nav ul {
display: flex;
}
.main-nav li {
margin-left: 20px;
}
.main-nav a {
color: var(--dark-color);
font-weight: 500;
padding: 5px 0;
position: relative;
}
.main-nav a:hover, .main-nav a.active {
color: var(--primary-color);
}
.main-nav a:after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: 0;
left: 0;
background-color: var(--primary-color);
transition: width 0.3s ease;
}
.main-nav a:hover:after, .main-nav a.active:after {
width: 100%;
}
/* Responsive Styles */
@media screen and (max-width: 1200px) {
.container {
width: 95%;
}
.testimonials-slider {
grid-template-columns: 1fr;
}
}
@media screen and (max-width: 992px) {
.features-grid {
grid-template-columns: repeat(2, 1fr);
}
.services-grid, .projects-grid {
grid-template-columns: repeat(2, 1fr);
}
.about-grid, .facility-content, .contact-grid {
gap: 20px;
}
.team-grid {
grid-template-columns: repeat(2, 1fr);
}
.certifications-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media screen and (max-width: 768px) {
.container {
width: 95%;
padding: 0 10px;
}
.mobile-nav-toggle {
display: block;
}
.main-nav {
position: fixed;
top: 0;
right: -100%;
width: 70%;
height: 100vh;
background-color: #fff;
box-shadow: -2px 0 5px rgba(0,0,0,0.1);
transition: right 0.3s ease;
padding-top: 70px;
overflow-y: auto;
}
.main-nav.show {
right: 0;
}
.main-nav ul {
display: block;
padding: 0 20px;
}
.main-nav li {
margin: 0;
border-bottom: 1px solid #eee;
}
.main-nav a {
display: block;
padding: 15px 0;
}
.hero-content h2 {
font-size: 2rem;
}
.hero-buttons {
flex-direction: column;
gap: 10px;
align-items: center;
}
.features-grid {
grid-template-columns: 1fr;
}
.services-grid, .projects-grid {
grid-template-columns: 1fr;
}
.about-grid, .facility-content, .contact-grid {
grid-template-columns: 1fr;
}
.service-item.detailed {
grid-template-columns: 1fr;
}
.service-item.detailed.reverse {
direction: ltr;
}
.team-grid {
grid-template-columns: 1fr;
}
.equipment-grid {
grid-template-columns: 1fr;
}
.capabilities-grid {
grid-template-columns: repeat(2, 1fr);
}
.mission-vision-grid {
grid-template-columns: 1fr;
}
.category-tabs, .filter-buttons {
overflow-x: auto;
white-space: nowrap;
padding-bottom: 10px;
}
.tab-btn, .filter-btn {
display: inline-block;
}
.process-steps:before {
left: 15px;
}
}
@media screen and (max-width: 576px) {
.logo h1 {
font-size: 1.5rem;
}
.main-nav {
width: 80%;
}
.hero {
padding: 60px 0;
}
.hero-content h2 {
font-size: 1.8rem;
}
.section-header h2 {
font-size: 1.6rem;
}
.feature-item, .service-item, .project-item {
margin-bottom: 20px;
}
.facility-gallery {
grid-template-columns: 1fr;
}
.capabilities-grid {
grid-template-columns: 1fr;
}
.certifications-grid {
grid-template-columns: 1fr;
}
}
@media screen and (max-width: 480px) {
.logo h1 {
font-size: 1.4rem;
}
.main-header .container {
padding: 10px;
}
.hero-content p {
font-size: 1rem;
}
.btn {
padding: 8px 15px;
font-size: 0.9rem;
}
.section-header p {
font-size: 0.9rem;
}
.footer-content {
grid-template-columns: 1fr;
}
.footer-section {
margin-bottom: 20px;
}
.info-item {
flex-direction: column;
align-items: flex-start;
}
.info-item i {
margin-bottom: 10px;
}
}
/* Hero Section */
.hero {
background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('/img/man-welding.jpg') no-repeat center center/cover;
color: #fff;
padding: 100px 0;
text-align: center;
}
.hero-content {
max-width: 800px;
margin: 0 auto;
}
.hero-content h2 {
font-size: 2.5rem;
margin-bottom: 20px;
color: #fff;
}
.hero-content p {
font-size: 1.2rem;
margin-bottom: 30px;
color: #eee;
}
.hero-buttons {
display: flex;
justify-content: center;
gap: 15px;
}
/* Error Page Styles */
.error-section {
padding: 60px 0;
}
.error-content {
text-align: center;
max-width: 600px;
margin: 0 auto;
}
.error-icon {
font-size: 5rem;
color: #e74c3c;
margin-bottom: 20px;
}
.error-content h2 {
font-size: 2rem;
margin-bottom: 15px;
color: #333;
}
.error-content p {
font-size: 1.1rem;
margin-bottom: 30px;
color: #666;
}
.error-actions {
display: flex;
justify-content: center;
gap: 15px;
}
/* Section Styles */
.section-header {
text-align: center;
margin-bottom: 40px;
}
.section-header h2 {
font-size: 2rem;
position: relative;
padding-bottom: 15px;
}
.section-header h2:after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 3px;
background-color: var(--primary-color);
}
.section-header p {
color: #777;
font-size: 1.1rem;
}
/* Features Section */
.features {
padding: 80px 0;
background-color: #f9f9f9;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}
.feature-item {
text-align: center;
padding: 30px 20px;
background-color: #fff;
border-radius: 5px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
transition: transform 0.3s ease;
}
.feature-item:hover {
transform: translateY(-10px);
}
.feature-item i {
font-size: 2.5rem;
color: var(--primary-color);
margin-bottom: 20px;
}
.feature-item h3 {
margin-bottom: 15px;
}
/* Services Section */
.services-preview {
padding: 80px 0;
}
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin-bottom: 40px;
}
.service-item {
background-color: #fff;
border-radius: 5px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
transition: transform 0.3s ease;
}
.service-item:hover {
transform: translateY(-10px);
}
.service-item img {
width: 100%;
height: 200px;
object-fit: cover;
}
.service-item h3 {
padding: 20px 20px 10px;
}
.service-item p {
padding: 0 20px 20px;
}
.service-item .btn {
margin: 0 20px 20px;
}
/* Projects Section */
.projects-preview {
padding: 80px 0;
background-color: #f9f9f9;
}
.projects-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin-bottom: 40px;
}
.project-item {
position: relative;
border-radius: 5px;
overflow: hidden;
height: 250px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.project-item img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}
.project-item:hover img {
transform: scale(1.1);
}
.project-info {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: rgba(0,0,0,0.7);
color: #fff;
padding: 20px;
transform: translateY(100%);
transition: transform 0.3s ease;
}
.project-item:hover .project-info {
transform: translateY(0);
}
.project-info h3 {
color: #fff;
margin-bottom: 10px;
}
.project-info p {
color: #ddd;
margin-bottom: 15px;
}
/* Testimonials Section */
.testimonials {
padding: 80px 0;
}
.testimonials-slider {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
gap: 30px;
}
.testimonial-item {
background-color: #fff;
border-radius: 5px;
padding: 30px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.testimonial-content {
font-style: italic;
margin-bottom: 20px;
position: relative;
}
.testimonial-content:before {
content: '\201C';
font-size: 60px;
color: #ddd;
position: absolute;
left: -20px;
top: -20px;
}
.testimonial-author {
display: flex;
align-items: center;
}
.testimonial-author img {
width: 60px;
height: 60px;
border-radius: 50%;
margin-right: 15px;
object-fit: cover;
}
.author-info h4 {
margin: 0;
}
.author-info p {
color: #777;
margin: 5px 0 0;
}
/* CTA Section */
.cta {
background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1533613220915-609f661a6fe1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
color: #fff;
padding: 80px 0;
text-align: center;
}
.cta-content {
max-width: 700px;
margin: 0 auto;
}
.cta-content h2 {
color: #fff;
font-size: 2rem;
margin-bottom: 20px;
}
.cta-content p {
color: #ddd;
margin-bottom: 30px;
font-size: 1.1rem;
}
/* Footer Styles */
.main-footer {
background-color: #222;
color: #fff;
padding: 60px 0 0;
}
.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
margin-bottom: 40px;
}
.footer-section h3 {
color: #fff;
margin-bottom: 20px;
position: relative;
padding-bottom: 10px;
}
.footer-section h3:after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 50px;
height: 2px;
background-color: var(--secondary-color);
}
.footer-section.about p {
margin-bottom: 20px;
color: #ccc;
}
.contact span {
display: block;
margin-bottom: 10px;
color: #ccc;
}
.contact span i {
margin-right: 10px;
color: var(--secondary-color);
}
.socials {
margin-top: 20px;
}
.socials a {
display: inline-block;
width: 40px;
height: 40px;
background-color: #333;
color: #fff;
border-radius: 50%;
text-align: center;
line-height: 40px;
margin-right: 10px;
transition: all 0.3s ease;
}
.socials a:hover {
background-color: var(--primary-color);
}
.footer-section.links ul li {
margin-bottom: 10px;
}
.footer-section.links ul li a {
color: #ccc;
transition: all 0.3s ease;
}
.footer-section.links ul li a:hover {
color: var(--secondary-color);
padding-left: 5px;
}
.contact-input {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #444;
background-color: #333;
color: #fff;
border-radius: 4px;
}
.footer-bottom {
background-color: #1a1a1a;
padding: 20px 0;
text-align: center;
}
.footer-bottom p {
margin: 0;
color: #ccc;
}
/* Inner Page Styles */
.page-header {
background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1565193566173-7a0ee3dbe261?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
color: #fff;
padding: 60px 0;
text-align: center;
}
.page-header h2 {
font-size: 2.5rem;
color: #fff;
margin-bottom: 15px;
}
.page-header p {
color: #ddd;
font-size: 1.1rem;
}
/* Services Page Styles */
.services-section {
padding: 60px 0;
border-bottom: 1px solid #eee;
}
.services-section:last-child {
border-bottom: none;
}
.service-item.detailed {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 30px;
box-shadow: none;
}
.service-item.detailed.reverse {
grid-template-columns: 1fr 1fr;
direction: rtl;
}
.service-item.detailed .service-content {
direction: ltr;
}
.service-features {
list-style: disc;
padding-left: 20px;
margin-top: 20px;
}
.service-features li {
margin-bottom: 10px;
color: #555;
}
/* Projects Page Styles */
.projects-filter {
padding: 20px 0;
text-align: center;
margin-bottom: 30px;
}
.filter-buttons {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 10px;
}
.filter-btn {
padding: 8px 15px;
background-color: #f4f4f4;
border: 1px solid #ddd;
border-radius: 4px;
cursor: pointer;
transition: all 0.3s ease;
}
.filter-btn:hover, .filter-btn.active {
background-color: var(--primary-color);
color: #fff;
border-color: var(--primary-color);
}
.projects-gallery {
padding: 0 0 80px;
}
.project-process {
padding: 80px 0;
background-color: #f9f9f9;
}
.process-steps {
max-width: 800px;
margin: 0 auto;
position: relative;
}
.process-steps:before {
content: '';
position: absolute;
top: 0;
left: 20px;
height: 100%;
width: 2px;
background-color: var(--primary-color);
}
.process-step {
display: flex;
gap: 20px;
margin-bottom: 30px;
position: relative;
}
.step-number {
width: 40px;
height: 40px;
background-color: var(--primary-color);
color: #fff;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
font-weight: bold;
z-index: 1;
}
.step-content {
flex: 1;
padding: 0 20px;
}
.step-content h3 {
margin-bottom: 10px;
}
/* Equipment Page Styles */
.equipment-intro {
padding: 40px 0;
background-color: #f9f9f9;
}
.intro-content {
max-width: 800px;
margin: 0 auto;
text-align: center;
}
.equipment-categories {
padding: 60px 0;
}
.category-tabs {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 10px;
margin-bottom: 40px;
}
.tab-btn {
padding: 10px 20px;
background-color: #f4f4f4;
border: 1px solid #ddd;
border-radius: 4px;
cursor: pointer;
transition: all 0.3s ease;
}
.tab-btn:hover, .tab-btn.active {
background-color: var(--primary-color);
color: #fff;
border-color: var(--primary-color);
}
.tab-content {
display: none;
}
.tab-content.active {
display: block;
}
.equipment-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}
.equipment-item {
background-color: #fff;
border-radius: 5px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.equipment-item img {
width: 100%;
height: 200px;
object-fit: cover;
}
.equipment-info {
padding: 20px;
}
.equipment-info h3 {
margin-bottom: 15px;
}
.specs {
list-style: none;
padding: 0;
margin-top: 15px;
}
.specs li {
padding: 8px 0;
border-bottom: 1px solid #eee;
}
.specs li:last-child {
border-bottom: none;
}
.equipment-capabilities {
padding: 80px 0;
background-color: #f9f9f9;
}
.capabilities-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}
.capability-item {
text-align: center;
padding: 30px 20px;
background-color: #fff;
border-radius: 5px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.capability-item i {
font-size: 2.5rem;
color: var(--primary-color);
margin-bottom: 20px;
}
/* About Page Styles */
.about-intro {
padding: 60px 0;
}
.about-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: center;
}
.about-image img {
border-radius: 5px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.about-content h3 {
margin-bottom: 20px;
}
.about-content p {
margin-bottom: 15px;
}
.mission-vision {
padding: 60px 0;
background-color: #f9f9f9;
}
.mission-vision-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}
.mission-box, .vision-box, .values-box {
background-color: #fff;
padding: 30px;
border-radius: 5px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
text-align: center;
}
.mission-box .icon, .vision-box .icon, .values-box .icon {
width: 70px;
height: 70px;
background-color: var(--primary-color);
color: #fff;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
margin: 0 auto 20px;
}
.mission-box .icon i, .vision-box .icon i, .values-box .icon i {
font-size: 2rem;
}
.values-box ul {
text-align: left;
list-style: disc;
padding-left: 20px;
margin-top: 15px;
}
.values-box li {
margin-bottom: 10px;
color: #555;
}
.team-section {
padding: 80px 0;
}
.team-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}
.team-member {
background-color: #fff;
border-radius: 5px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.member-image img {
width: 100%;
height: 250px;
object-fit: cover;
}
.member-info {
padding: 20px;
}
.member-info h3 {
margin-bottom: 5px;
}
.position {
color: var(--primary-color);
font-weight: 500;
margin-bottom: 15px;
}
.facility-section {
padding: 80px 0;
background-color: #f9f9f9;
}
.facility-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: start;
}
.facility-gallery {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 15px;
}
.gallery-item img {
width: 100%;
height: 150px;
object-fit: cover;
border-radius: 5px;
}
.facility-info p {
margin-bottom: 20px;
}
.facility-features {
list-style: disc;
padding-left: 20px;
}
.facility-features li {
margin-bottom: 10px;
color: #555;
}
.certifications-section {
padding: 80px 0;
}
.certifications-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}
.certification-item {
text-align: center;
padding: 30px 20px;
background-color: #fff;
border-radius: 5px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.certification-item img {
width: 100px;
height: 100px;
object-fit: contain;
margin-bottom: 20px;
}
/* Contact Page Styles */
.contact-info {
padding: 60px 0;
}
.contact-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
}
.contact-details h3, .contact-form-container h3 {
margin-bottom: 30px;
position: relative;
padding-bottom: 10px;
}
.contact-details h3:after, .contact-form-container h3:after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 50px;
height: 2px;
background-color: var(--primary-color);
}
.info-item {
display: flex;
margin-bottom: 30px;
}
.info-item i {
font-size: 1.5rem;
color: var(--primary-color);
margin-right: 20px;
width: 30px;
text-align: center;
}
.info-content h4 {
margin-bottom: 10px;
}
.social-links {
margin-top: 40px;
}
.social-links h4 {
margin-bottom: 15px;
}
.social-icons {
display: flex;
gap: 10px;
}
.social-icon {
width: 40px;
height: 40px;
background-color: #f4f4f4;
color: var(--dark-color);
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
transition: all 0.3s ease;
}
.social-icon:hover {
background-color: var(--primary-color);
color: #fff;
}
.form-group {
margin-bottom: 20px;
}
.form-group label {
display: block;
margin-bottom: 8px;
font-weight: 500;
}
.form-group input, .form-group select, .form-group textarea {
width: 100%;
padding: 10px;
border: 1px solid #ddd;
border-radius: 4px;
}
.form-group.full-width {
grid-column: 1 / -1;
}
.form-group.checkbox {
display: flex;
align-items: center;
}
.form-group.checkbox input {
width: auto;
margin-right: 10px;
}
.form-group.checkbox label {
margin-bottom: 0;
}
.map-section {
padding: 60px 0;
background-color: #f9f9f9;
}
.map-container {
height: 450px;
border-radius: 5px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.faq-section {
padding: 80px 0;
}
.faq-item {
margin-bottom: 20px;
border: 1px solid #ddd;
border-radius: 5px;
overflow: hidden;
}
.faq-question {
padding: 15px 20px;
background-color: #f9f9f9;
display: flex;
justify-content: space-between;
align-items: center;
cursor: pointer;
}
.faq-question h4 {
margin: 0;
}
.toggle-icon {
font-size: 1.2rem;
}
.faq-answer {
padding: 0 20px;
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer {
padding: 20px;
max-height: 500px;
}
.faq-answer ul {
list-style: disc;
padding-left: 20px;
margin: 15px 0;
}
.faq-answer li {
margin-bottom: 10px;
}
