/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Rajdhani:wght@400;500;600;700&display=swap');

:root {
    --primary: #1F3C88;
    --accent: #FF6B00;
    --dark: #111827;
    --light: #F9FAFB;
    --gray: #6B7280;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

a {
    text-decoration: none;
}

/* Custom Utilities */
.text-primary-custom {
    color: var(--primary) !important;
}

.text-accent {
    color: var(--accent) !important;
}

.bg-primary-custom {
    background-color: var(--primary) !important;
}

.bg-accent {
    background-color: var(--accent) !important;
}

.bg-dark-custom {
    background-color: var(--dark) !important;
}

/* Buttons */
.btn-primary-custom {
    background-color: var(--primary);
    color: white;
    border: 2px solid var(--primary);
    padding: 10px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-primary-custom:hover {
    background-color: transparent;
    color: var(--primary);
}

.btn-accent {
    background-color: var(--accent);
    color: white;
    border: 2px solid var(--accent);
    padding: 10px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-accent:hover {
    background-color: transparent;
    color: var(--accent);
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.4);
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.nav-link {
    color: var(--dark) !important;
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(17, 24, 39, 0.8), rgba(17, 24, 39, 0.8)), url('../images/leath_hero_banner.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 90vh;
    display: flex;
    align-items: center;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 500;
    color: #cbd5e1;
}

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

.section-title {
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

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

/* Service Cards */
.service-card {
    border: 1px solid #e5e7eb;
    padding: 30px;
    transition: all 0.3s ease;
    background: white;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Product Cards */
.product-card {
    border: 1px solid #eee;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.product-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-img {
    height: 250px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.5s ease;
}

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

.product-info {
    padding: 20px;
}

/* Why Choose Us */
.feature-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.feature-list i {
    color: var(--accent);
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: #cbd5e1;
    padding-top: 60px;
}

footer h5 {
    color: white;
    margin-bottom: 25px;
}

footer a {
    color: #cbd5e1;
    transition: color 0.3s;
    display: block;
    margin-bottom: 10px;
}

footer a:hover {
    color: var(--accent);
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.social-icons a:hover {
    background: var(--accent);
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(31, 60, 136, 0.9), rgba(31, 60, 136, 0.9)), url('https://images.pexels.com/photos/1095814/pexels-photo-1095814.jpeg?auto=compress&cs=tinysrgb&w=1600');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
    text-align: center;
}

/* Contact Form */
.contact-form .form-control {
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 0;
}

.contact-form .form-control:focus {
    box-shadow: none;
    border-color: var(--primary);
}