:root {
 

    --primary: #C80B09;
    --primary-dark: #5D0706;

    --bg-white: #ffffff;
    --bg-light: #f0fdf4;

    --text: #1f2937;
    --text-light: #6b7280;

    --border-light: #e5e7eb;

    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.15);

    --hover-light: #5D0706;
    --hover-primary: #5D0706;

    --footer-bg: #5D0706;
    --footer-border: #C80B09;
    --text-white: #ffffff;
}

/* ================= GLOBAL ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: var(--text);
    line-height: 1.6;
    font-family: 'Inter', sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
.heading-font {
    font-family: 'Poppins', sans-serif !important;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}


/* ================= HEADER ================= */

.header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 0;
}

.logo img {
    height: 40px;
}


/* ================= NAV ================= */

.nav ul {
    display: flex;
    list-style: none;
    margin: 0;
}

.nav li {
    margin-left: 60px;
}

.nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    transition: 0.3s;
    border: 0;
    border-bottom: 2px solid transparent;
    box-shadow: none;
    outline: none;
}

.nav a:hover {
    color: var(--primary);
}

.nav a.active {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}


/* ================= HERO ================= */

.hero {
    /* padding: 110px 0; */
    /* background: linear-gradient(to right, var(--primary), var(--primary-dark)); */
    color: var(--bg-white);
    min-height: calc(100vh - 46px);
    /* background: url(../images/home-bg1.png); */
    max-height: calc(100vh - 46px);
}
.hero .carousel-inner{
    max-height: calc(100vh - 46px);
}
.hero .carousel-inner img{
        height: 100%;
    width: 100%;
    object-fit: cover;
}
.hero-text{
        position: absolute;
    width: 60%;
    min-height: 260px;
    background: rgba(0, 0, 0, .6);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    border-radius: 10px;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-align: center;
}

.hero-text p {
    margin-bottom: 30px;
    font-size: 18px;
}

.hero-card {
    background: var(--bg-white);
    color: var(--text);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}


/* ================= BUTTONS ================= */

.btn-primary {
    background: var(--bg-white);
    color: var(--primary);
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--hover-light);
     text-decoration: none;
}

.btn-secondary {
    background: var(--hover-primary);
    color: var(--bg-white);
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid var(--bg-white);
    cursor: pointer;
   
}

.btn-secondary:hover,
.btn-secondary:active,
.btn-secondary:focus  { 
     text-decoration: none;
     background: var(--hover-primary) !important;
}

.products-section img{
    height: 370px;
    width: 100%;
}
.line::after{
    content: '';
    position: absolute;
    height: 4px;
    width: 100%;
    background: var(--primary-dark);
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}


/* ================= ABOUT ================= */

.about {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}
.plus-size{
    font-size: 80px;
    font-weight: 700;
}

.about h2 {
    margin-bottom: 20px;
    font-size: 34px;
}


/* ================= SERVICES ================= */

.services {
    padding: 90px 0;
    text-align: center;
}

.section-title {
    font-size: 34px;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--primary);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
}


/* ================= CTA ================= */

.cta {
    padding: 80px 0;  
    text-align: center;
}

.cta h2 {
    margin-bottom: 25px;
}


/* ================= FOOTER ================= */

.footer {
    background: var(--footer-bg);
    color: var(--bg-white);
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid var(--footer-border);
}
.footer p{
    color: var(--text-white);
}


/* ================= PAGE HERO ================= */

.page-hero {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--bg-white);
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
}


/* ================= ABOUT COMPANY ================= */

.about-company {
    padding: 80px 0;
    text-align: center;
    background: var(--bg-light);
}

.about-company h2 {
    font-size: 34px;
    margin-bottom: 20px;
}


/* ================= MISSION ================= */

.mission-vision {
    padding: 80px 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 10px;
    border-top: 4px solid var(--primary);
    box-shadow: var(--shadow-sm);
}


/* ================= VALUES ================= */

.values {
    padding: 90px 0;
    background: var(--bg-light);
    text-align: center;
}

.values h2 {
    margin-bottom: 50px;
    font-size: 34px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: var(--bg-white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    border-bottom: 4px solid var(--primary);
    transition: 0.3s;
}

.value-card:hover {
    transform: translateY(-6px);
}


/* ================= SERVICES DETAIL ================= */

.services-detail {
    padding: 80px 0;
}

.service-row {
    background: var(--bg-white);
    padding: 30px;
    margin-bottom: 20px;
    border-left: 5px solid var(--primary);
    box-shadow: var(--shadow-sm);
}


/* ================= TRADING ================= */

.trading {
    padding: 90px 0;
    text-align: center;
}

.trading-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.trading-card {
    background: var(--bg-white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--primary);
    transition: 0.3s;
}

.trading-card:hover {
    transform: translateY(-8px);
}


/* ================= CONTACT ================= */

.contact-page {
    padding: 90px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid var(--border-light);
    border-radius: 5px;
    font-family: inherit;
}

.contact-form textarea {
    min-height: 120px;
}