/* style.css (Professional VBR Fabrication Theme) */

/* Import Google Fonts for Professional Typography */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #2c3e50; /* Professional dark text */
    background-color: #f8f9fa; /* Clean light background */
    font-weight: 400;
}

/* --- Navigation & Header --- */
.navbar {
    background-color: #051829E6 !important; /* Dark Navy Blue */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
}

.brand-text .vbr {
    color: #007bff;
    font-weight: 900;
    font-size: 1.8rem;
}

.brand-text .fabrication {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.4rem;
}

.nav-logo {
    width: 80px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #007bff; /* Accent border */
}

.navbar-nav .nav-link {
    font-size: 1rem;
    color: #ffffff !important;
    padding: 10px 15px;
    margin: 0 5px;
    transition: background-color 0.3s, color 0.3s;
}

.navbar-nav .nav-link:hover {
    background-color: #007bff !important; /* Accent Blue on hover */
    border-radius: 5px;
    color: #ffffff !important;
}

/* Highlight for Section Headings */
.highlight {
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: "";
    display: block;
    width: 100%;
    height: 4px; /* Subtler thickness */
    background-color: #007bff;
    margin-top: 5px;
    position: absolute;
    left: 0;
    bottom: -8px;
    border-radius: 2px;
}

/* --- Typography and General Content --- */
h1 {
    font-weight: 800;
    font-size: 2.8rem;
    color: #051829E6;
}
h2 {
    font-weight: 700;
    font-size: 2.2rem;
    color: #051829E6;
    padding-top: 10px;
}
h3 {
    font-weight: 600;
    font-size: 1.8rem;
    color: #051829E6;
}
h4 {
    font-weight: 600;
    font-size: 1.2rem;
    color: #007bff;
}
p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

/* --- Carousel / Hero Section --- */
.sliding {
    height: 60vh;
    object-fit: cover;
}

/* --- Index Page Sections --- */
.ser-btn {
    font-weight: 600;
    text-decoration: none;
    font-size: 1.2rem;
    background-color: #007bff;
    color: #fff;
    padding: 10px 30px;
    border-radius: 5px;
    transition: background-color 0.3s;
}
.ser-btn:hover {
    background-color: #051829E6;
    color: #fff;
}

.project {
    background-color: #051829E6;
    padding: 50px 0;
}
.project-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
}
.project-image:hover {
    transform: scale(1.05);
}
.project .container P {
    color: #e9ecef;
}
.strength-card {
    background: #ffffff;
    border-left: 5px solid #007bff;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    height: 100%;
}
.strength-card a {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}
.strength-card a:hover {
    color: #051829E6;
}

/* --- Contact Section (on Index) --- */
.contact-us {
    background-color: #051829; /* Fixed invalid color to solid dark navy */
    color: #fff;
    padding: 50px 0;
}
.contact-us h2 {
    color: #fff;
}
.contact-us .contact-info {
    background-color: rgba(255, 255, 255, 0.1); /* Subtle background for better contrast */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    transition: background-color 0.3s, border-color 0.3s;
}
.contact-us .contact-info:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #007bff;
}
.contact-us .contact-info i {
    color: #007bff;
    font-size: 1.5rem;
}
.contact-us .contact-info p {
    color: #fff;
    margin: 5px 0 0 0;
    font-weight: 500;
}

/* --- About Page (Quote Section) --- */
.quote {
    height: 300px;
    background-color: #051829E6;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.quote-btn {
    text-decoration: none;
    color: white;
    padding: 8px 30px;
    border: 3px solid #007bff !important;
    background-color: transparent;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.quote-btn:hover {
    background-color: #007bff;
    color: white;
}
.vision, .mission {
    padding: 20px;
    border: 2px solid #007bff;
    border-radius: 10px;
    transition: box-shadow 0.3s;
}
.vision:hover, .mission:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

/* --- Service Page (service.html) --- */
.service-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #ffffff;
    height: 100%;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.service-card .ser-img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}
.service-card-body {
    padding: 20px;
}
.service-card-body h5 {
    color: #051829E6;
    font-weight: 700;
    margin-bottom: 10px;
}
.service-card-body a {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}
.service-card-body a:hover {
    text-decoration: underline;
}

/* --- Gallery Page (Gallery.html) --- */
.gallery-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    text-align: center;
}
.gallery-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.gallery-card img {
    max-width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.gallery-details h2 {
    font-size: 1.5em;
    color: #051829E6;
    margin: 15px 0 10px;
}
.gallery-details p {
    font-size: 1em;
    color: #666;
}

/* --- Contact Page (contactus.html) --- */
.contact-form-s1 .form-group {
    display: inline-block;
    width: 49%;
    margin-right: 1%;
    margin-bottom: 15px;
    vertical-align: top;
}

.contact-form-s1 .form-group:nth-child(2n) {
    margin-right: 0;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

.contact-form-s1 label {
    font-weight: bold;
    color: #051829E6;
    display: block;
    margin-bottom: 5px;
}

.submit-btn-wrap {
    text-align: center;
    margin-top: 20px;
}

.theme-btn {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s;
}

.theme-btn:hover {
    background-color: #0056b3;
}

.contact-info {
    margin-bottom: 1rem;
    padding: 1rem;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}
.contact-info h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #343a40;
}
.contact-info i {
    color: #007bff;
    margin-right: 10px;
}
.contact-info p {
    margin: 0;
    color: #555;
}

/* --- Footer --- */
.info-section {
    background: #051829E6; /* Dark Navy Blue */
    color: #ffffff;
    padding: 60px 0; /* Increased padding for better spacing */
}

#logo {
    width: 100px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #007bff;
    margin-bottom: 20px;
}

.info-section h3 {
    color: #ffffff;
    padding-top: 0;
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 1.4rem; /* Slightly larger for emphasis */
}

.n-link, .link1 {
    text-decoration: none !important;
    color: #ffffff;
    display: block;
    padding: 5px 0;
    transition: color 0.3s, padding-left 0.3s; /* Added padding-left transition for hover effect */
}

.n-link:hover, .link1:hover {
    color: #007bff;
    padding-left: 10px; /* Slight indent on hover for interactivity */
}

.arrow {
    color: #007bff;
    margin-right: 5px;
}

.footer {
    background-color: #000204;
    color: #ffffff;
    padding: 20px 0; /* Increased padding */
    text-align: center;
}

/* --- Footer Social Icons --- */
.footer-social .social-icon {
    color: #ffffff;
    font-size: 1.5rem; /* Larger icon size */
    margin: 0 10px;
    transition: color 0.3s;
}
.footer-social .social-icon:hover {
    color: #007bff; /* Accent color on hover for visual feedback */
}

/* --- Hero Section --- */
.hero-section {
    background: linear-gradient(135deg, #051829 0%, #34495e 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}
.hero-section h1 {
    color: #ffffff;
    font-weight: 900;
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.hero-section .lead {
    color: #ecf0f1;
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 300;
}
.hero-section .btn {
    margin: 0 10px;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}
.hero-section .btn-primary {
    background-color: #007bff;
    border: 2px solid #007bff;
}
.hero-section .btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}
.hero-section .btn-outline-primary {
    color: #007bff;
    border: 2px solid #007bff;
    background-color: transparent;
}
.hero-section .btn-outline-primary:hover {
    background-color: #007bff;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}
.hero-section img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* --- Testimonials Section --- */
.testimonials {
    background-color: #f8f9fa;
    padding: 80px 0;
}
.testimonials h2 {
    color: #051829;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}
.testimonial-card {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 30px;
    position: relative;
    overflow: hidden;
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: #007bff;
    opacity: 0.1;
    font-family: 'Georgia', serif;
}
.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}
.testimonial-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
}
.testimonial-card cite {
    font-weight: 700;
    color: #007bff;
    font-size: 1rem;
    display: block;
    text-align: right;
}
.testimonial-card .company {
    font-weight: 500;
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* --- Why Choose VBR Section --- */
.why-choose-vbr {
    background-color: #ffffff;
    padding: 80px 0;
    border-top: 1px solid #e9ecef;
}
.why-choose-vbr h2 {
    color: #051829;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}
.why-choose-vbr .feature {
    text-align: center;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.why-choose-vbr .feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.why-choose-vbr .feature i {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 20px;
}
.why-choose-vbr .feature h4 {
    color: #051829;
    font-weight: 600;
    margin-bottom: 15px;
}
.why-choose-vbr .feature p {
    color: #6c757d;
    line-height: 1.6;
}

/* Service Page Styles */
.service-features {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.service-features li {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.benefit-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* About Page Styles */
.company-stats h4 {
    font-weight: bold;
    color: #007bff;
}

.team-member {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.certification-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.certification-card:hover {
    transform: translateY(-5px);
}

/* Gallery Page Styles */
.filter-btn {
    margin: 0 5px 10px;
}

.gallery-item {
    margin-bottom: 20px;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-5px);
}

.gallery-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-details {
    padding: 15px;
    background: white;
}

.gallery-details h5 {
    margin-bottom: 10px;
    color: #333;
}

.gallery-details p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

/* Media Queries for Responsiveness */
@media (max-width: 991px) {
    .navbar-nav .nav-link {
        text-align: center;
    }
    .col-md-3, .col-md-4, .col-md-6 {
        margin-bottom: 20px;
    }
    .ser-btn {
        width: 100%;
    }
}
@media (max-width: 767px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    .contact-form-s1 .form-group {
        width: 100%;
        margin-right: 0;
    }
    .gallery-card img {
        height: auto;
    }

    /* Responsive adjustments for new elements */
    .service-card, .benefit-card, .team-member, .certification-card, .gallery-card {
        margin-bottom: 20px;
    }

    .filter-btn {
        display: block;
        width: 100%;
        margin-bottom: 5px;
    }
}
