/* Mark Computers Pvt. Ltd. - Custom Styles */
:root {
    --primary-blue: #0056b3;
    --secondary-blue: #007bff;
    --light-blue: #e3f2fd;
    --primary-orange: #ff6b35;
    --secondary-orange: #ff8c42;
    --light-orange: #fff3e0;
    --dark-gray: #333333;
    --light-gray: #f8f9fa;
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
}

/* Navbar Brand with Logo */
.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: bold;
    color: var(--primary-blue) !important;
    padding: 0;
    text-decoration: none;
}

.navbar-brand img {
    height: 50px;
    margin-right: 10px;
    max-width: none;
}

.navbar-brand .brand-text {
    display: none; /* Hide text when using logo */
}

/* Navbar Brand with Text (for home page) */
.brand-text-header {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-main {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-orange);
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1;
}

.brand-sub {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-blue);
    letter-spacing: 0.3px;
    text-transform: uppercase;
    line-height: 1.1;
}

.brand-tagline {
    font-size: 11px;
    font-weight: 500;
    color: var(--primary-blue);
    font-family: "Script MT Bold", cursive;
    font-style: italic;
    margin-top: 3px;
    line-height: 1;
}

.brand-line {
    width: 15%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange) 0%, var(--primary-orange) 100%);
    margin-top: 3px;
	margin-left:50px;
    border-radius: 2px;
    transform: rotate(-5deg);
}

/* Adjust navbar height for logo */
.navbar {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    min-height: 80px;
}

/* Responsive adjustments for logo */
@media (max-width: 768px) {
    .navbar-brand img {
        height: 40px;
    }
    
    .brand-main {
        font-size: 24px;
        letter-spacing: 0.8px;
    }
    
    .brand-sub {
        font-size: 14px;
    }
    
    .brand-tagline {
        font-size: 10px;
    }
    
    .navbar {
        min-height: auto;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand img {
        height: 35px;
    }
    
    .brand-main {
        font-size: 20px;
        letter-spacing: 0.5px;
    }
    
    .brand-sub {
        font-size: 12px;
    }
    
    .brand-tagline {
        font-size: 9px;
    }
}

.navbar-nav .nav-link {
    color: var(--dark-gray) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-orange) !important;
}

.navbar-nav .nav-link.active {
    color: var(--primary-orange) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff20" fill-opacity="1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,106.7C1248,96,1344,96,1392,96L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

/* Button Styles */
.btn-primary-custom {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: var(--secondary-orange);
    border-color: var(--secondary-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-outline-custom {
    background-color: transparent;
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background-color: var(--primary-orange);
    color: white;
    transform: translateY(-2px);
}

/* Card Styles */
.service-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

/* Section Styles */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-blue);
    margin-bottom: 20px;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--light-orange), var(--light-blue));
    padding: 60px 0;
}

.stat-box {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-blue);
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-top: 10px;
}

/* Footer */
.footer {
    background-color: var(--dark-gray);
    color: white;
    padding: 50px 0 20px;
}

.footer-widget h4 {
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
}

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

.footer-widget ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-widget ul li a:hover {
    color: var(--primary-orange);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* Product Cards */
.product-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Client Logos */
.client-logo {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
    padding: 20px;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Contact Form */
.bg-gradient {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-orange) 100%);
}

/* Quality Cards */
.quality-card .quality-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

/* Process Cards */
.process-card .process-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

/* Testing Method Cards */
.testing-method .method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Quality Metrics */
.metric-card .metric-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-orange);
    margin-bottom: 10px;
}

.metric-card .metric-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

/* Certification Cards */
.certification-card .cert-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

/* Expertise Cards */
.expertise-card {
    transition: transform 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-5px);
}

/* Process Timeline */
.process-timeline .step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Technology Cards */
.tech-card .tech-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.5rem;
}

.tech-card {
    transition: transform 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-3px);
}

/* Industry Cards */
.industry-card .industry-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.industry-card {
    transition: transform 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
}

/* Testimonial Cards */
.testimonial-card {
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
}

.client-avatar img {
    border: 3px solid var(--primary-blue);
}

/* Client Logo Container */
.client-logo-container {
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

/* Case Study Cards */
.case-study-card {
    transition: transform 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
}

.case-study-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.case-study-header .badge {
    flex-shrink: 0;
}

/* Contact Form Styles */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-item {
    padding: 20px;
    background: var(--light-gray);
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Map Container */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Social Links */
.social-links .btn {
    transition: all 0.3s ease;
}

.social-links .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* CTA Section */
.bg-gradient {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
}

/* Footer Links */
.footer-links {
    margin-top: 15px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-orange) !important;
}

/* Navbar scrolled effect */
.navbar-scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
.justify-text {
  text-align: justify;
}